-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path1385.xml
1984 lines (1984 loc) · 122 KB
/
1385.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.luckowenwpf154">beinecke.luckowenwpf154</recordid>
<otherrecordid localtype="BIB">15757501</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the Owen Luck, Photographs of Alaska and British Columbia
</titleproper>
<titleproper localtype="filing">Luck (Owen) Photographs of Alaska and British Columbia</titleproper>
<author>by Matthew Daniel Mason</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>April 2021</date>
<num>WA Photos Folio 154</num>
</publicationstmt>
<notestmt>
<controlnote localtype="onsite">
<p>Boxes: 1 (Oversize), 2-3 (oversize), 4 (Oversize)</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:37:30-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:37</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/1385" level="collection">
<did>
<unittitle>Photographs of Alaska and British Columbia</unittitle>
<unitid>WA Photos Folio 154</unitid>
<repository>
<corpname>
<part>Beinecke Rare Book and Manuscript Library</part>
</corpname>
</repository>
<langmaterial>
<languageset>
<language langcode="eng">English</language>
<script scriptcode="Latn">Latin</script>
</languageset>
</langmaterial>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>8</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">4 boxes</physdesc>
<unitdatestructured altrender="2012-2013" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="2012">2012</fromdate>
<todate standarddate="2013">2013</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_40bbc7ab7de2bedbd143dff2718bb94a">Photographs at Klawock, Prince of Wales Island, Alaska, as well as West Cracroft Island and Haida Gwaii (formerly known as the Queen Charlotte Islands), British Columbia created during the summers of 2012 and 2013, and printed as 91 inkjet color and black-and-white prints that document Tlingit, Haida, and other indigenous people and cultures. The collection consists of six groups of images related to discrete events. Events include a memorial service for Dian Darlene White, the ceremonial destruction of a wooden panel, the repatriation of a house screen, an installation of totem poles, ravens, and murals created by Corey Bulpitt.</abstract>
<origination label="Creator">
<persname relator="pht" rules="aacr">
<part localtype="agent_person">Luck, Owen Craig, 1947-</part>
</persname>
</origination>
<origination label="Source">
<corpname relator="bsl" rules="local" source="local">
<part localtype="agent_corporate_entity">Owen Luck Photographs</part>
</corpname>
</origination>
</did>
<acqinfo id="aspace_3698c2b75e2b738ac4595577d286a288">
<head>Immediate Source of Acquisition</head>
<p>Purchased from Owen Luck on the Walter McClintock Memorial Fund, 2014.</p>
</acqinfo>
<arrangement id="aspace_f5775413f5c2f095a9c7fa28616b9a9b">
<head>Arrangement</head>
<p>Arranged by the photographer.</p>
</arrangement>
<bioghist id="aspace_7e56de61b89841e306246c19d2adddbd">
<head>Owen Luck (born 1947)</head>
<p>Owen Luck is an American photographer known for his photography of Native American and First Nation Canadian life and history. In 1973, after serving two tours as a combat medic in Vietnam, Luck travelled to Pine Ridge, South Dakota to provide medical support during the occupation of Wounded Knee by the American Indian Movement (AIM). He also carried a camera and created an extensive record of the confrontation between AIM and the United States Marshals Service, Federal Bureau of Investigation agents, and other law enforcement agencies. His account of that experience, "A Witness at Wounded Knee 1973," was published in <title>
<part>The Princeton University Library Chronicle</part>
</title> in 2006. In 1975 Luck documented the Menominee Warrior Society's occupation of the abandoned Alexian Brothers Novitiate in Gresham, Wisconsin, near the Menominee Indian Reservation. Since 2004 he has worked among indigenous communities of the Pacific Northwest. Luck has donated photographs to Ogallala Lakota College in Pine Ridge, to the Haida Gwaii Museum in Skidegate, and to the Makah Museum in Neah Bay. Significant collections of his work are held by Princeton University Library and the Beinecke Rare Book & Manuscript Library.</p>
</bioghist>
<prefercite id="aspace_e6f8377f80738ec7e90947773cc767f9">
<head>Preferred Citation</head>
<p>Owen Luck, Photographs of Alaska and British Columbia. Yale Collection of Western Americana, Beinecke Rare Book and Manuscript Library.</p>
</prefercite>
<processinfo id="aspace_3d257a2b94d35c1ab4011753c31f1d38">
<head>Processing Notes</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. These materials have been arranged and described according to national and local standards. For more information, please refer to the Beinecke Manuscript Unit Processing Manual.</p>
<p>Titles and image descriptions as well as arrangement provided by the photographer.</p>
<p>Each folder in the collection contains a single inkjet print.</p>
</processinfo>
<scopecontent id="aspace_4d2aa5316028842457d4398e361989d0">
<head>Description of Photographs</head>
<p>Photographs at Klawock, Prince of Wales Island, Alaska, as well as West Cracroft Island and Haida Gwaii (formerly known as the Queen Charlotte Islands), British Columbia created during the summers of 2012 and 2013, and printed as 91 inkjet color and black-and-white prints that document Tlingit, Haida, and other indigenous people and cultures. The collection consists of six groups of images related to discrete events. Events include a memorial service for Dian Darlene White, the ceremonial destruction of a wooden panel, the repatriation of a house screen, an installation of totem poles, ravens, and murals created by Corey Bulpitt.</p>
<p>A group of color photographs documents a memorial service for Dian Darlene White at Masset, Haida Gwaii, British Columbia, in June 2012 that includes images of the service as well as attendees including Mary Swanson, Christian White, and Lisa White.</p>
<p>A group of black-and-white photographs documents the transportation and ceremonial destruction of a wooden plaque at Bones Bay on the north side of West Cracroft Island, British Columbia, Canada, during the summer of 2012. Images document the ceremony as well as participants that included Haida wood carvers Corey Bulpitt and Christian White.</p>
<p>A group of color photographs documents the repatriation of a wooden screen that decorated the front of the traditional home of the Tuxekan L'eeneidi Clan (Dog Salmon Clan) at the Tlingit village of Tuxecan, Alaska, from the Smithsonian Institution in August 2013. Images include unpacking the screen from crates and assembling it at Klawock High School, which includes detail photographs of the screen, as well as portraits at a celebratory event that included Tlingit members of the Tuxekan L'eeneidi Clan, including Barbara Bean, as well as Haida individuals including Leslie Isaacs.</p>
<p>A group of color photographs documents totem poles installed at the Klawock Totem Park and associated potlaches during the three-day event that included Inupiat, Haida, Tlingit, Tsimshian people in August 2013. Poles installed include contributions from Alaskan Tlingit communities including the Brown Bear Peoples Clan from Kake, the Dowhiteidi Clan from Tuxekan, the North Country from Karluk, and the Shankweidi Peoples Clan from Tuxekan. Portraits of identified Tlingit individuals include wood carvers Nathan Jackson and Jonathan Rowan as well as the wife and daughter of the latter, Patricia Rowan and Eva Rowan, in addition to military veteran Alva "Dubsy" Pradavich. Portraits of identified Haida individuals include furrier Sherman Roger Alexander, attorney Lisa M. Lang, and mayor of Hydaburg, Alaska, Anthony Christianson, as well as a portrait of Tsimshian military veteran Ruth F. Buxton Snook.</p>
<p>A group of black-and-white photographs documents ravens (called Yaahl in Haida) in the Pacific Northwest during the summer of 2013, which relates to the Haida name of the photographer, Yaahl Huun Guuaaas (White Raven Traveling).</p>
<p>A group of color photographs documents murals by Haida artist Corey Bulpitt during the summer of 2013 and includes portraits of him with the works as well as with his son Koyas Bulpitt.</p>
<p>Individual prints are 28.5 x 43 cm. Signed and dated by the photographer on versos of prints. Titles in this guide created by the photographer.</p>
</scopecontent>
<accessrestrict id="aspace_b8fddc3c677acb38493681c160c77e0f">
<head>Conditions Governing Access</head>
<p>The Owen Luck, Photographs of Alaska and British Columbia 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>
</accessrestrict>
<controlaccess>
<subject source="local">
<part localtype="topical">Haida Indians </part>
<part localtype="genre_form">Pictorial works</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85065352"
source="lcsh">
<part localtype="topical">Indians of North America</part>
<part localtype="genre_form">Pictorial works</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85065356"
source="lcsh">
<part localtype="topical">Indians of North America</part>
<part localtype="genre_form">Portraits</part>
</subject>
<subject source="local_beinecke">
<part localtype="topical">Inupiat</part>
<part localtype="genre_form">Pictorial works</part>
</subject>
<subject source="local_beinecke">
<part localtype="topical">Ravens</part>
<part localtype="genre_form">Pictorial works</part>
</subject>
<subject source="local_beinecke">
<part localtype="topical">Tlingit Indians</part>
<part localtype="genre_form">Pictorial works</part>
</subject>
<subject source="local_beinecke">
<part localtype="topical">Totem poles</part>
<part localtype="geographic">Alaska</part>
<part localtype="geographic">Klawock</part>
<part localtype="genre_form">Pictorial works</part>
</subject>
<subject source="local_beinecke">
<part localtype="topical">Tsimshian Indians</part>
<part localtype="genre_form">Pictorial works</part>
</subject>
<geogname identifier="http://id.loc.gov/authorities/subjects/sh2008114147"
source="lcsh">
<part localtype="geographic">Alaska</part>
<part localtype="genre_form">Pictorial works</part>
</geogname>
<geogname source="local">
<part localtype="geographic">British Columbia</part>
<part localtype="genre_form">Pictorial works</part>
</geogname>
<geogname source="local">
<part localtype="geographic">Haida Gwaii (B.C.)</part>
<part localtype="genre_form">Pictorial works</part>
</geogname>
<geogname source="local_beinecke">
<part localtype="geographic">Klawock (Alaska)</part>
<part localtype="genre_form">Pictorial works</part>
</geogname>
<geogname source="local_beinecke">
<part localtype="geographic">Prince of Wales Island (Alaska) </part>
<part localtype="genre_form">Pictorial works</part>
</geogname>
<geogname source="local_beinecke">
<part localtype="geographic">West Cracroft Island (B.C.)</part>
<part localtype="genre_form">Pictorial works</part>
</geogname>
<genreform identifier="http://vocab.getty.edu/aat/300265621" source="aat">
<part localtype="genre_form">Inkjet prints</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300127104" source="aat">
<part localtype="genre_form">Photographic prints</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300046300" source="aat">
<part localtype="genre_form">Photographs</part>
</genreform>
<persname rules="aacr" source="local_beinecke">
<part localtype="agent_person">Rowan, Jonathan O., Jr.</part>
<part localtype="genre_form">Portraits</part>
</persname>
<persname rules="aacr" source="local_beinecke">
<part localtype="agent_person">Swanson, Mary</part>
<part localtype="genre_form">Portraits</part>
</persname>
<persname rules="aacr" source="local_beinecke">
<part localtype="agent_person">White, Christian, 1962-</part>
<part localtype="genre_form">Portraits</part>
</persname>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/513448"
id="ref1"
level="subseries">
<did>
<unittitle>Tuxekan L'eeneidi House, Dog Salmon House Front Repatriation</unittitle>
</did>
<scopecontent id="aspace_e37467a343c70d54a5a6dcf5a0914d9d">
<head>Scope and Contents</head>
<p>"This is the first of the Klawock Village Tlingit artifact repatriated from the Smithsonian Institution. The community appreciation of this act far outweighs the individual, and even the Tuxekan L'eeneidi Clan importance in its spritual significance. It goes beyond words." --John Rowan, Master Tlingit Carver</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/513449"
id="ref3"
level="file">
<did>
<unittitle>1. After a brief private prayer and song, I was requested not to photograph, the crate was unloaded from the transport truck and is opened under the supervision of this group of Tlingit men</unittitle>
<container altrender="/repositories/11/top_containers/65929 /locations/4051"
containerid="39002093751841"
encodinganalog="flat box (20d 3h 24w)"
id="aspace_ref3_c1"
label="Mixed Materials"
localtype="box">1 (Oversize)</container>
<container id="aspace_ref3_c2" localtype="folder" parent="aspace_ref3_c1">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/513450"
id="ref4"
level="file">
<did>
<unittitle>2. Detail of packing crate object</unittitle>
<unitdatestructured altrender="2013" label="creation" unitdatetype="inclusive">
<datesingle standarddate="2013">2013</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65929 /locations/4051"
containerid="39002093751841"
encodinganalog="flat box (20d 3h 24w)"
id="aspace_ref4_c1"
label="Mixed Materials"
localtype="box">1 (Oversize)</container>
<container id="aspace_ref4_c2" localtype="folder" parent="aspace_ref4_c1">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/513451"
id="ref5"
level="file">
<did>
<unittitle>3. Members of the Tuxekan L'eeneidi Clan (Dog Salmon Clan) with flats containing House Front panels</unittitle>
<unitdatestructured altrender="2013" label="creation" unitdatetype="inclusive">
<datesingle standarddate="2013">2013</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65929 /locations/4051"
containerid="39002093751841"
encodinganalog="flat box (20d 3h 24w)"
id="aspace_ref5_c1"
label="Mixed Materials"
localtype="box">1 (Oversize)</container>
<container id="aspace_ref5_c2" localtype="folder" parent="aspace_ref5_c1">3</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/513452"
id="ref6"
level="file">
<did>
<unittitle>4. Jon Rowan guides a panel into place</unittitle>
<unitdatestructured altrender="2013" label="creation" unitdatetype="inclusive">
<datesingle standarddate="2013">2013</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65929 /locations/4051"
containerid="39002093751841"
encodinganalog="flat box (20d 3h 24w)"
id="aspace_ref6_c1"
label="Mixed Materials"
localtype="box">1 (Oversize)</container>
<container id="aspace_ref6_c2" localtype="folder" parent="aspace_ref6_c1">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/513453"
id="ref7"
level="file">
<did>
<unittitle>5. Detail of panels being assembled</unittitle>
<unitdatestructured altrender="2013" label="creation" unitdatetype="inclusive">
<datesingle standarddate="2013">2013</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65929 /locations/4051"
containerid="39002093751841"
encodinganalog="flat box (20d 3h 24w)"
id="aspace_ref7_c1"
label="Mixed Materials"
localtype="box">1 (Oversize)</container>
<container id="aspace_ref7_c2" localtype="folder" parent="aspace_ref7_c1">5</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/513454"
id="ref8"
level="file">
<did>
<unittitle>6. Detail House Front Painting</unittitle>
<unitdatestructured altrender="2013" label="creation" unitdatetype="inclusive">
<datesingle standarddate="2013">2013</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65929 /locations/4051"
containerid="39002093751841"
encodinganalog="flat box (20d 3h 24w)"
id="aspace_ref8_c1"
label="Mixed Materials"
localtype="box">1 (Oversize)</container>
<container id="aspace_ref8_c2" localtype="folder" parent="aspace_ref8_c1">6</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/513455"
id="ref9"
level="file">
<did>
<unittitle>7. Family members of the Tuxekan L'eeneidi Clan (Dog Salmon Clan) gather before the assembled House Front</unittitle>
<unitdatestructured altrender="2013" label="creation" unitdatetype="inclusive">
<datesingle standarddate="2013">2013</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65929 /locations/4051"
containerid="39002093751841"
encodinganalog="flat box (20d 3h 24w)"
id="aspace_ref9_c1"
label="Mixed Materials"
localtype="box">1 (Oversize)</container>
<container id="aspace_ref9_c2" localtype="folder" parent="aspace_ref9_c1">7</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/513456"
id="ref10"
level="file">
<did>
<unittitle>8. Revered Tlingit matriarch, Barbara Bean, before the fest begins</unittitle>
<unitdatestructured altrender="2013" label="creation" unitdatetype="inclusive">
<datesingle standarddate="2013">2013</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65929 /locations/4051"
containerid="39002093751841"
encodinganalog="flat box (20d 3h 24w)"
id="aspace_ref10_c1"
label="Mixed Materials"
localtype="box">1 (Oversize)</container>
<container id="aspace_ref10_c2" localtype="folder" parent="aspace_ref10_c1">8</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/513457"
id="ref11"
level="file">
<did>
<unittitle>9. Jackson family, Raven Clan, Three generations</unittitle>
<unitdatestructured altrender="2013" label="creation" unitdatetype="inclusive">
<datesingle standarddate="2013">2013</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65929 /locations/4051"
containerid="39002093751841"
encodinganalog="flat box (20d 3h 24w)"
id="aspace_ref11_c1"
label="Mixed Materials"
localtype="box">1 (Oversize)</container>
<container id="aspace_ref11_c2" localtype="folder" parent="aspace_ref11_c1">9</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/513458"
id="ref12"
level="file">
<did>
<unittitle>10. Tlingit Dog Salmon Dancer</unittitle>
<unitdatestructured altrender="2013" label="creation" unitdatetype="inclusive">
<datesingle standarddate="2013">2013</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65929 /locations/4051"
containerid="39002093751841"
encodinganalog="flat box (20d 3h 24w)"
id="aspace_ref12_c1"
label="Mixed Materials"
localtype="box">1 (Oversize)</container>
<container id="aspace_ref12_c2" localtype="folder" parent="aspace_ref12_c1">10</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/513459"
id="ref13"
level="file">
<did>
<unittitle>11. Revered Dog Salmon Clan Elders</unittitle>
<unitdatestructured altrender="2013" label="creation" unitdatetype="inclusive">
<datesingle standarddate="2013">2013</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65929 /locations/4051"
containerid="39002093751841"
encodinganalog="flat box (20d 3h 24w)"
id="aspace_ref13_c1"
label="Mixed Materials"
localtype="box">1 (Oversize)</container>
<container id="aspace_ref13_c2" localtype="folder" parent="aspace_ref13_c1">11</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/513460"
id="ref14"
level="file">
<did>
<unittitle>12. A great day for the generations</unittitle>
<unitdatestructured altrender="2013" label="creation" unitdatetype="inclusive">
<datesingle standarddate="2013">2013</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65929 /locations/4051"
containerid="39002093751841"
encodinganalog="flat box (20d 3h 24w)"
id="aspace_ref14_c1"
label="Mixed Materials"
localtype="box">1 (Oversize)</container>
<container id="aspace_ref14_c2" localtype="folder" parent="aspace_ref14_c1">12</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/513461"
id="ref15"
level="file">
<did>
<unittitle>13. The cultural significance of repatriation spans the generations in celebration of the continued renaissance of the Coastal Pacific Northwest Nations</unittitle>
<unitdatestructured altrender="2013" label="creation" unitdatetype="inclusive">
<datesingle standarddate="2013">2013</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65929 /locations/4051"
containerid="39002093751841"
encodinganalog="flat box (20d 3h 24w)"
id="aspace_ref15_c1"
label="Mixed Materials"
localtype="box">1 (Oversize)</container>
<container id="aspace_ref15_c2" localtype="folder" parent="aspace_ref15_c1">13</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/513462"
id="ref16"
level="file">
<did>
<unittitle>14. Cultural pride in the youth is a great combatant in keeping indigenous youth away from drugs and alcohol</unittitle>
<unitdatestructured altrender="2013" label="creation" unitdatetype="inclusive">
<datesingle standarddate="2013">2013</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65929 /locations/4051"
containerid="39002093751841"
encodinganalog="flat box (20d 3h 24w)"
id="aspace_ref16_c1"
label="Mixed Materials"
localtype="box">1 (Oversize)</container>
<container id="aspace_ref16_c2" localtype="folder" parent="aspace_ref16_c1">14</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/513463"
id="ref17"
level="file">
<did>
<unittitle>15. Les Isaacs giving thanks with song and dance</unittitle>
<unitdatestructured altrender="2013" label="creation" unitdatetype="inclusive">
<datesingle standarddate="2013">2013</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65929 /locations/4051"
containerid="39002093751841"
encodinganalog="flat box (20d 3h 24w)"
id="aspace_ref17_c1"
label="Mixed Materials"
localtype="box">1 (Oversize)</container>
<container id="aspace_ref17_c2" localtype="folder" parent="aspace_ref17_c1">15</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/513464"
id="ref18"
level="file">
<did>
<unittitle>16. A young Haida man wearing a Shaman head dress dances in support of the neighboring Tlingit repatriation</unittitle>
<unitdatestructured altrender="2013" label="creation" unitdatetype="inclusive">
<datesingle standarddate="2013">2013</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65929 /locations/4051"
containerid="39002093751841"
encodinganalog="flat box (20d 3h 24w)"
id="aspace_ref18_c1"
label="Mixed Materials"
localtype="box">1 (Oversize)</container>
<container id="aspace_ref18_c2" localtype="folder" parent="aspace_ref18_c1">16</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/513465"
id="ref19"
level="file">
<did>
<unittitle>17. Respect</unittitle>
<unitdatestructured altrender="2013" label="creation" unitdatetype="inclusive">
<datesingle standarddate="2013">2013</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65929 /locations/4051"
containerid="39002093751841"
encodinganalog="flat box (20d 3h 24w)"
id="aspace_ref19_c1"
label="Mixed Materials"
localtype="box">1 (Oversize)</container>
<container id="aspace_ref19_c2" localtype="folder" parent="aspace_ref19_c1">17</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/513466"
id="ref20"
level="subseries">
<did>
<unittitle>Haa leelk tlatgi kaaw at uoow, "Belongings From Our Grandparents Land"</unittitle>
</did>
<scopecontent id="aspace_9f51cf63d198915660265d1dca5bdcf8">
<head>Scope and Contents</head>
<p>"This is the second totem pole raising and potlach in Klawock, Prince of Wales Island, Alaska."</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/513467"
id="ref22"
level="subseries">
<did>
<unittitle>Day One</unittitle>
</did>
<scopecontent id="aspace_a923173a29311e6f2521ce16c79360ce">
<head>Scope and Contents</head>
<p>Hefted from its frame in front of the new carving shed, this magnificent totem pole will be carried two miles to its final destination in the village Totem Pole Park overlooking Klawock Harbor. It will be a long hard slog through the rain. But no one seems to care.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/513468"
id="ref29"
level="subseries">
<did>
<unittitle>The Bear Hunter Totem Pole Kaats. The Tceikweide, Brown Bear Peoples Clan from Kake, Alaska</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/513469"
id="ref23"
level="file">
<did>
<unittitle>18. "Kaats" Bear Hunter Totem Pole</unittitle>
<unitdatestructured altrender="2013" label="creation" unitdatetype="inclusive">
<datesingle standarddate="2013">2013</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65929 /locations/4051"
containerid="39002093751841"
encodinganalog="flat box (20d 3h 24w)"
id="aspace_ref23_c1"
label="Mixed Materials"
localtype="box">1 (Oversize)</container>
<container id="aspace_ref23_c2" localtype="folder" parent="aspace_ref23_c1">18</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/513470"
id="ref25"
level="file">
<did>
<unittitle>19. Bear Hunter Totem Pole</unittitle>
<unitdatestructured altrender="2013" label="creation" unitdatetype="inclusive">
<datesingle standarddate="2013">2013</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65929 /locations/4051"
containerid="39002093751841"
encodinganalog="flat box (20d 3h 24w)"
id="aspace_ref25_c1"
label="Mixed Materials"
localtype="box">1 (Oversize)</container>
<container id="aspace_ref25_c2" localtype="folder" parent="aspace_ref25_c1">19</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/513471"
id="ref26"
level="file">
<did>
<unittitle>20. Bear Hunter Totem Pole</unittitle>
<unitdatestructured altrender="2013" label="creation" unitdatetype="inclusive">
<datesingle standarddate="2013">2013</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65929 /locations/4051"
containerid="39002093751841"
encodinganalog="flat box (20d 3h 24w)"
id="aspace_ref26_c1"
label="Mixed Materials"
localtype="box">1 (Oversize)</container>
<container id="aspace_ref26_c2" localtype="folder" parent="aspace_ref26_c1">20</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/513472"
id="ref27"
level="file">
<did>
<unittitle>21. Bear Hunter Totem Pole</unittitle>
<unitdatestructured altrender="2013" label="creation" unitdatetype="inclusive">
<datesingle standarddate="2013">2013</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65929 /locations/4051"
containerid="39002093751841"
encodinganalog="flat box (20d 3h 24w)"
id="aspace_ref27_c1"
label="Mixed Materials"
localtype="box">1 (Oversize)</container>
<container id="aspace_ref27_c2" localtype="folder" parent="aspace_ref27_c1">21</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/513473"
id="ref28"
level="file">
<did>
<unittitle>22. Bear Hunter Totem Pole</unittitle>
<unitdatestructured altrender="2013" label="creation" unitdatetype="inclusive">
<datesingle standarddate="2013">2013</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65929 /locations/4051"
containerid="39002093751841"
encodinganalog="flat box (20d 3h 24w)"
id="aspace_ref28_c1"
label="Mixed Materials"
localtype="box">1 (Oversize)</container>
<container id="aspace_ref28_c2" localtype="folder" parent="aspace_ref28_c1">22</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/513474"
id="ref30"
level="subseries">
<did>
<unittitle>Potlatch</unittitle>
</did>
<scopecontent id="aspace_528ca13688bee9d4d8e54881db799f3d">
<head>Scope and Contents</head>
<p>The grand entry is led by a procession of Veterans. As a Veteran, I am expected to march representing my Clan, and do not get to photograph that part of the ceremony.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/513475"
id="ref31"
level="file">
<did>
<unittitle>23. A rare moment when Tlingit Master Carver Jon Rowan is available at the start of the Grand Procession</unittitle>
<unitdatestructured altrender="2013" label="creation" unitdatetype="inclusive">
<datesingle standarddate="2013">2013</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65929 /locations/4051"
containerid="39002093751841"
encodinganalog="flat box (20d 3h 24w)"
id="aspace_ref31_c1"
label="Mixed Materials"
localtype="box">1 (Oversize)</container>
<container id="aspace_ref31_c2" localtype="folder" parent="aspace_ref31_c1">23</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/513476"
id="ref33"
level="file">
<did>
<unittitle>24. I was able to capture this portrait of Tlingit Master Carver Nathan Jackson from Ketchikan, Alaska in his regalia just before the start of the grand entry</unittitle>
<unitdatestructured altrender="2013" label="creation" unitdatetype="inclusive">
<datesingle standarddate="2013">2013</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65929 /locations/4051"
containerid="39002093751841"
encodinganalog="flat box (20d 3h 24w)"
id="aspace_ref33_c1"
label="Mixed Materials"
localtype="box">1 (Oversize)</container>
<container id="aspace_ref33_c2" localtype="folder" parent="aspace_ref33_c1">24</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/513477"
id="ref34"
level="file">
<did>
<unittitle>25. And then again as Tlingit Master Carver Nathan Jackson danced in his Chilkat Robe, and Chief's ermine headdress</unittitle>
<unitdatestructured altrender="2013" label="creation" unitdatetype="inclusive">
<datesingle standarddate="2013">2013</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65929 /locations/4051"
containerid="39002093751841"
encodinganalog="flat box (20d 3h 24w)"
id="aspace_ref34_c1"
label="Mixed Materials"
localtype="box">1 (Oversize)</container>
<container id="aspace_ref34_c2" localtype="folder" parent="aspace_ref34_c1">25</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/513478"
id="ref35"
level="file">
<did>
<unittitle>26. Lisa Lang, Kaigani Haida Native Rights Attorney, leads the Haida Women's Paddle Dance during entry protocols</unittitle>
<unitdatestructured altrender="2013" label="creation" unitdatetype="inclusive">
<datesingle standarddate="2013">2013</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65929 /locations/4051"
containerid="39002093751841"
encodinganalog="flat box (20d 3h 24w)"
id="aspace_ref35_c1"
label="Mixed Materials"
localtype="box">1 (Oversize)</container>
<container id="aspace_ref35_c2" localtype="folder" parent="aspace_ref35_c1">26</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/513479"
id="ref36"
level="file">
<did>
<unittitle>27. Iñupiaq women dancers, Iñupiaq, which translates into the "real people"</unittitle>
<unitdatestructured altrender="2013" label="creation" unitdatetype="inclusive">
<datesingle standarddate="2013">2013</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65930 /locations/4051"
containerid="39002093751858"
encodinganalog="flat box (20d 3h 24w)"
id="aspace_ref36_c1"
label="Mixed Materials"
localtype="box">2 (Oversize)</container>
<container id="aspace_ref36_c2" localtype="folder" parent="aspace_ref36_c1">27</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/513480"
id="ref37"
level="file">
<did>
<unittitle>28. Tony Christianson, Kaigani Haida, Mayor of Hydaburg, Alaska. Warrior Dance</unittitle>
<unitdatestructured altrender="2013" label="creation" unitdatetype="inclusive">
<datesingle standarddate="2013">2013</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65930 /locations/4051"
containerid="39002093751858"
encodinganalog="flat box (20d 3h 24w)"
id="aspace_ref37_c1"
label="Mixed Materials"
localtype="box">2 (Oversize)</container>
<container id="aspace_ref37_c2" localtype="folder" parent="aspace_ref37_c1">28</container>
</did>
</c>
</c>
</c>
<c altrender="/repositories/11/archival_objects/513481"
id="ref38"
level="subseries">
<did>
<unittitle>Day Two</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/513482"
id="ref41"
level="file">
<did>
<unittitle>Sun Chief Totem Pole</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/513483"
id="ref40"
level="file">
<did>
<unittitle>29. Sun Chief Totem Pole (Dowhiteidi Clan from Tuxekan, Alaska, Winter Village) is positioned and raised</unittitle>
<unitdatestructured altrender="2013" label="creation" unitdatetype="inclusive">
<datesingle standarddate="2013">2013</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65930 /locations/4051"
containerid="39002093751858"
encodinganalog="flat box (20d 3h 24w)"
id="aspace_ref40_c1"
label="Mixed Materials"
localtype="box">2 (Oversize)</container>
<container id="aspace_ref40_c2" localtype="folder" parent="aspace_ref40_c1">29</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/513484"
id="ref42"
level="file">
<did>
<unittitle>30. Sun Chief Totem Pole (Dowhiteidi Clan from Tuxekan, Alaska, Winter Village) is positioned and raised</unittitle>
<unitdatestructured altrender="2013" label="creation" unitdatetype="inclusive">
<datesingle standarddate="2013">2013</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65930 /locations/4051"
containerid="39002093751858"
encodinganalog="flat box (20d 3h 24w)"
id="aspace_ref42_c1"
label="Mixed Materials"
localtype="box">2 (Oversize)</container>
<container id="aspace_ref42_c2" localtype="folder" parent="aspace_ref42_c1">30</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/513485"
id="ref43"
level="subseries">
<did>
<unittitle>Mountain Bird Totem Pole</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/513486"
id="ref44"
level="file">
<did>
<unittitle>31. Mountain Bird Totem Pole, the oldest pole, is an anomaly from the North Country, Karluk, Alaska</unittitle>
<unitdatestructured altrender="2013" label="creation" unitdatetype="inclusive">
<datesingle standarddate="2013">2013</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65930 /locations/4051"
containerid="39002093751858"
encodinganalog="flat box (20d 3h 24w)"
id="aspace_ref44_c1"
label="Mixed Materials"
localtype="box">2 (Oversize)</container>
<container id="aspace_ref44_c2" localtype="folder" parent="aspace_ref44_c1">31</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/513487"
id="ref45"
level="subseries">
<did>
<unittitle>Plaques</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/513488"
id="ref46"
level="file">
<did>
<unittitle>32. Master Carver, Jon Rowan, and his Apprentice Carvers with a Plaque commemorating their work</unittitle>
<unitdatestructured altrender="2013" label="creation" unitdatetype="inclusive">
<datesingle standarddate="2013">2013</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65930 /locations/4051"
containerid="39002093751858"
encodinganalog="flat box (20d 3h 24w)"
id="aspace_ref46_c1"
label="Mixed Materials"
localtype="box">2 (Oversize)</container>
<container id="aspace_ref46_c2" localtype="folder" parent="aspace_ref46_c1">32</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/513489"
id="ref47"
level="file">
<did>
<unittitle>33. Detail of plaque</unittitle>
<unitdatestructured altrender="2013" label="creation" unitdatetype="inclusive">
<datesingle standarddate="2013">2013</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65930 /locations/4051"
containerid="39002093751858"
encodinganalog="flat box (20d 3h 24w)"
id="aspace_ref47_c1"
label="Mixed Materials"
localtype="box">2 (Oversize)</container>
<container id="aspace_ref47_c2" localtype="folder" parent="aspace_ref47_c1">33</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/513490"
id="ref48"
level="subseries">
<did>
<unittitle>Potlatch</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/513491"
id="ref49"
level="file">
<did>
<unittitle>34. Proud Tlingit woman dancing with eagle feathers</unittitle>
<unitdatestructured altrender="2013" label="creation" unitdatetype="inclusive">
<datesingle standarddate="2013">2013</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65930 /locations/4051"
containerid="39002093751858"
encodinganalog="flat box (20d 3h 24w)"
id="aspace_ref49_c1"
label="Mixed Materials"
localtype="box">2 (Oversize)</container>
<container id="aspace_ref49_c2" localtype="folder" parent="aspace_ref49_c1">34</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/513492"
id="ref50"
level="file">
<did>
<unittitle>35. Tlingit women</unittitle>
<unitdatestructured altrender="2013" label="creation" unitdatetype="inclusive">
<datesingle standarddate="2013">2013</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65930 /locations/4051"
containerid="39002093751858"
encodinganalog="flat box (20d 3h 24w)"
id="aspace_ref50_c1"
label="Mixed Materials"
localtype="box">2 (Oversize)</container>
<container id="aspace_ref50_c2" localtype="folder" parent="aspace_ref50_c1">35</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/513493"
id="ref51"
level="file">
<did>
<unittitle>36. Tlingit Bear Dancer, Roger Alexander</unittitle>
<unitdatestructured altrender="2013" label="creation" unitdatetype="inclusive">
<datesingle standarddate="2013">2013</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65930 /locations/4051"
containerid="39002093751858"
encodinganalog="flat box (20d 3h 24w)"
id="aspace_ref51_c1"
label="Mixed Materials"
localtype="box">2 (Oversize)</container>
<container id="aspace_ref51_c2" localtype="folder" parent="aspace_ref51_c1">36</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/513494"
id="ref52"
level="file">
<did>
<unittitle>37. Unidentified Tlingit / Kaigani Haida mask</unittitle>
<unitdatestructured altrender="2013" label="creation" unitdatetype="inclusive">
<datesingle standarddate="2013">2013</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65930 /locations/4051"
containerid="39002093751858"
encodinganalog="flat box (20d 3h 24w)"
id="aspace_ref52_c1"
label="Mixed Materials"
localtype="box">2 (Oversize)</container>
<container id="aspace_ref52_c2" localtype="folder" parent="aspace_ref52_c1">37</container>
</did>
</c>
</c>
</c>
<c altrender="/repositories/11/archival_objects/513495"
id="ref53"
level="subseries">
<did>
<unittitle>Day Three</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/513496"
id="ref54"
level="subseries">
<did>
<unittitle>Dog Eater Spirit Totem Pole</unittitle>
</did>
<scopecontent id="aspace_da5ab07a7e576c324c49b86aca8aaf78">
<head>Scope and Contents</head>
<p>The history of this Totem Pole goes back around three hundred years to a cultural exchange between the Tlingit and the Kwakawaka'wk People from Alert Bay, when the Kwakawaka'wk People gave the right to the Hamatsa (Cannibal Secret Society) to the Tlingit People.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/513497"
id="ref56"
level="file">
<did>
<unittitle>38. Dog Eater Spirit Totem Pole, Shankweidi Peoples Clan from Tuxekan, Alaska</unittitle>
<unitdatestructured altrender="2013" label="creation" unitdatetype="inclusive">
<datesingle standarddate="2013">2013</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65930 /locations/4051"
containerid="39002093751858"
encodinganalog="flat box (20d 3h 24w)"
id="aspace_ref56_c1"
label="Mixed Materials"
localtype="box">2 (Oversize)</container>
<container id="aspace_ref56_c2" localtype="folder" parent="aspace_ref56_c1">38</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/513498"
id="ref57"
level="file">
<did>
<unittitle>39. Dog Eater Spirit Totem Pole, Shankweidi Peoples Clan from Tuxekan, Alaska</unittitle>
<unitdatestructured altrender="2013" label="creation" unitdatetype="inclusive">
<datesingle standarddate="2013">2013</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65930 /locations/4051"
containerid="39002093751858"
encodinganalog="flat box (20d 3h 24w)"
id="aspace_ref57_c1"
label="Mixed Materials"
localtype="box">2 (Oversize)</container>
<container id="aspace_ref57_c2" localtype="folder" parent="aspace_ref57_c1">39</container>
</did>