-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path1382.xml
1298 lines (1298 loc) · 72.8 KB
/
1382.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.luckowenwpf151">beinecke.luckowenwpf151</recordid>
<otherrecordid localtype="BIB">12408101</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the Owen Luck, Photographs of Alaska and Haida Gwaii, British Columbia
</titleproper>
<titleproper localtype="filing">Luck (Owen), Photographs of Alaska and Haida Gwaii, 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>2019</date>
<num>WA Photos Folio 151</num>
</publicationstmt>
<notestmt>
<controlnote>
<p>This finding aid, which is compliant with theYale EAD Best Practice Guidelines, Version 1.0, has a MARC record in Yale's ILS with the following bib number: <num localtype="Orbis-bib">12408101</num>.</p>
</controlnote>
<controlnote localtype="onsite">
<p>Boxes: 1 (Oversize), 2-3 (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:22-05:00</eventdatetime>
<agenttype value="machine"/>
<agent>ArchivesSpace yale-rebased-v3.3.1</agent>
<eventdescription>This finding aid was produced using ArchivesSpace on Thursday January 9, 2025 at 00:37</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/1382" level="collection">
<did>
<unittitle>Photographs of Alaska and Haida Gwaii, British Columbia</unittitle>
<unitid>WA Photos Folio 151</unitid>
<repository>
<corpname>
<part>Beinecke Rare Book and Manuscript Library</part>
</corpname>
</repository>
<langmaterial>
<language langcode="eng">English</language>
<descriptivenote>
<p>Inscriptions in English.</p>
</descriptivenote>
</langmaterial>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>3.84</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">3 boxes</physdesc>
<unitdatestructured altrender="2011-2012" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="2011">2011</fromdate>
<todate standarddate="2012">2012</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_f7cb06ac8727e5f6283d05f9aca06bf0">Photographs of Alaska and Haida Gwaii (formerly known as the Queen Charlotte Islands), British Columbia, 2011-2012, printed as thirty-three black-and-white gelatin silver prints and five color inkjet prints that chiefly document Haida and Tlingit people, sites, and cultures.</abstract>
<origination label="Creator">
<persname rules="aacr">
<part localtype="agent_person">Luck, Owen Craig, 1947-</part>
</persname>
</origination>
</did>
<userestrict id="aspace_b04296a2827141660fe6724e20125b88">
<head>Conditions Governing Use</head>
<p>The 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>
<bioghist id="aspace_a8bcb90e2c738288c9c159db3ff8cad1">
<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.</p>
</bioghist>
<userestrict id="aspace_57cc8e0d47f55af19a18199b06a3ca86">
<head>Conditions Governing Use</head>
<p>The Owen Luck, Photographs of Alaska and Haida Gwaii, British Columbia, 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>
<acqinfo id="aspace_a5779ec1dd94217ba194a0b59beb6a32">
<head>Immediate Source of Acquisition</head>
<p>Purchased from Owen Luck on the Walter McClintock Memorial Fund, 2013.</p>
</acqinfo>
<prefercite id="aspace_a33e1e6fcf5de09778109e327626a78b">
<head>Preferred Citation</head>
<p>Owen Luck, Photographs of Alaska and Haida Gwaii, British Columbia. Yale Collection of Western Americana, Beinecke Rare Book and Manuscript Library.</p>
</prefercite>
<scopecontent id="aspace_4acafc071318d347eb2cfa5a1750e631">
<head>Scope and Contents</head>
<p>Photographs of Alaska and Haida Gwaii (formerly known as the Queen Charlotte Islands), British Columbia, 2011-2012, printed as thirty-three black-and-white gelatin silver prints and five color inkjet prints that chiefly document Haida and Tlingit people, sites, and cultures.</p>
<p>Images of Haida people and sites in 2011 include the installation of totem poles at Hydaburg, Alaska, and views of Ninstints, a historic Haida village site. Portraits of Haida include Crystal Robinson, Darin Swanson, Mary Swanson, Candace White, and Christian White.</p>
<p>Images of Tlingit people and sites include the installation of totem poles at Kalwock, Alaska, in 2011, and a celebration in Juneau, Alaska, in 2012. Identified Tlingit include members of dance groups including the Heinyaa Khwaan Dance Group led by Jonathan O. Rowan, Jr.</p>
<p>Several images document dance groups including Haida members of the Tluu Xaada Naay (Canoe Peoples House) Dance Group from Massett, British Columbia, and Tsimshian members of the Git-Hoan (People of the Salmon) Native Dance Group from Metlakatla, Alaska.</p>
<p>Signed, numbered, and dated by the photographer on versos of prints. Arranged by the photographer.</p>
</scopecontent>
<arrangement id="aspace_80c77bf55aa1952c08b205ae548b3695">
<head>Arrangement</head>
<p>Organized into four series: I. Black-and-White Photographs, 11 x 14 Inches (28 x 36 centimeters), 2011. II. Black-and-White Photographs, 16 x 20 Inches (41 x 51 centimeters), 2011. III. Black-and-White Photographs, 20 x 24 Inches (51 x 61 centimeters), 2011. IV. Color Inkjet Prints, 17 x 23 Inches (43 x 60 centimeters), 2011-2012.</p>
</arrangement>
<processinfo id="aspace_a2f8f2ad993c88adea1ce2d0cc5b79b4">
<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>
</processinfo>
<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>
<genreform identifier="http://vocab.getty.edu/aat/300127104" source="aat">
<part localtype="genre_form">Photographic prints</part>
</genreform>
<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">Hydaburg</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">Totem poles</part>
<part localtype="geographic">British Columbia</part>
<part localtype="geographic">Ninstints Site</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">
<part localtype="geographic">Hydaburg (Alaska)</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">Ninstints Site (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">
<part localtype="agent_person">Luck, Owen Craig, 1947-</part>
</persname>
<persname rules="aacr" source="local_beinecke">
<part localtype="agent_person">Robinson, Crystal</part>
<part localtype="genre_form">Portraits</part>
</persname>
<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, Darin</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, Candace</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/2924176"
id="aspace_5f1f5ed291e20bbcc8afe956d637a495"
level="series">
<did>
<unittitle>Black-and-White Photographs, 11 x 14 Inches (28 x 36 centimeters)</unittitle>
<unitid>Series I</unitid>
<unitdatestructured altrender="2011" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="2011">2011</fromdate>
</daterange>
</unitdatestructured>
</did>
<c altrender="/repositories/11/archival_objects/2924180"
id="aspace_f9ba21e3610dbcfc8323f11065b24228"
level="subseries">
<did>
<unittitle>Kagani Haida, Hydaburg, Alaska</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/2924188"
id="aspace_c56ea8e20ea21ff743a2802c2807e457"
level="file">
<did>
<unittitle>
<title>
<part>Generations Meet. The Totem Pole Raisings Take Place in Conjunction with Culture Camp where Haida Children Learn about their Culture and Art. The Poles are Carved by a few Haida Carvers.</part>
</title>
</unittitle>
<unitdatestructured altrender="2011" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="2011">2011</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/344568 /locations/4051"
containerid="39002093751882"
id="aspace_c56ea8e20ea21ff743a2802c2807e457_c1"
label="Mixed Materials"
localtype="box">1 (Oversize)</container>
<container id="aspace_c56ea8e20ea21ff743a2802c2807e457_c2"
localtype="folder"
parent="aspace_c56ea8e20ea21ff743a2802c2807e457_c1">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2924189"
id="aspace_c2c365634277fd318b22c0136bfc9f38"
level="file">
<did>
<unittitle>
<title>
<part>Children Get Carried to the Pole Park</part>
</title>
</unittitle>
<unitdatestructured altrender="2011" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="2011">2011</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/344568 /locations/4051"
containerid="39002093751882"
id="aspace_c2c365634277fd318b22c0136bfc9f38_c1"
label="Mixed Materials"
localtype="box">1 (Oversize)</container>
<container id="aspace_c2c365634277fd318b22c0136bfc9f38_c2"
localtype="folder"
parent="aspace_c2c365634277fd318b22c0136bfc9f38_c1">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2924190"
id="aspace_65227387f8dd760a4f23f770afe7ea84"
level="file">
<did>
<unittitle>
<title>
<part>Women Carry a Totem Pole to the Park for Raising</part>
</title>
</unittitle>
<unitdatestructured altrender="2011" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="2011">2011</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/344568 /locations/4051"
containerid="39002093751882"
id="aspace_65227387f8dd760a4f23f770afe7ea84_c1"
label="Mixed Materials"
localtype="box">1 (Oversize)</container>
<container id="aspace_65227387f8dd760a4f23f770afe7ea84_c2"
localtype="folder"
parent="aspace_65227387f8dd760a4f23f770afe7ea84_c1">3</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2924191"
id="aspace_3d2477613f622aa63d15780af6340a06"
level="file">
<did>
<unittitle>
<title>
<part>Totem Pole Going Up</part>
</title>
</unittitle>
<unitdatestructured altrender="2011" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="2011">2011</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/344568 /locations/4051"
containerid="39002093751882"
id="aspace_3d2477613f622aa63d15780af6340a06_c1"
label="Mixed Materials"
localtype="box">1 (Oversize)</container>
<container id="aspace_3d2477613f622aa63d15780af6340a06_c2"
localtype="folder"
parent="aspace_3d2477613f622aa63d15780af6340a06_c1">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2924192"
id="aspace_e731293a0b6bca7e9a75261695a21587"
level="file">
<did>
<unittitle>
<title>
<part>Higher . . .</part>
</title>
</unittitle>
<unitdatestructured altrender="2011" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="2011">2011</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/344568 /locations/4051"
containerid="39002093751882"
id="aspace_e731293a0b6bca7e9a75261695a21587_c1"
label="Mixed Materials"
localtype="box">1 (Oversize)</container>
<container id="aspace_e731293a0b6bca7e9a75261695a21587_c2"
localtype="folder"
parent="aspace_e731293a0b6bca7e9a75261695a21587_c1">5</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/2924181"
id="aspace_73e8565b04462583fb1af93d18d5e66e"
level="subseries">
<did>
<unittitle>Tlingit, Klawock, Alaska</unittitle>
</did>
<scopecontent id="aspace_402b2c588e92286879997c62b5b9102d">
<head>Scope and Contents</head>
<p>Context provided by Luck for the subseries: "Jon Rowan a respected Tlingit artist teaches, Tlingit children Tlingit Art, from kindergarten until they complete high school. [The year] 2011 marked the first time in eighty years that totem poles in the Totem Pole Park, weathered and worn, were replaced. Five heraldic monuments were stored away and replaced with five new replica poles carved by Jon Rowan and his apprentices, all students before graduating to go on to college.</p>
<p>In 2013 five more poles will be erected. Another eighty years will go by before this event is renewed."</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/2924193"
id="aspace_fb8021cce5de1b8e948b8d1379a6688e"
level="file">
<did>
<unittitle>
<title>
<part>On a Rainy August Morning the Killer Whale Pole is the First Totem Pole to be Carried from Jon Rowan's Long House for a Rainy Three Miles to the Totem Pole Park in the Heart of Klawock</part>
</title>
</unittitle>
<unitdatestructured altrender="2011" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="2011">2011</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/344568 /locations/4051"
containerid="39002093751882"
id="aspace_fb8021cce5de1b8e948b8d1379a6688e_c1"
label="Mixed Materials"
localtype="box">1 (Oversize)</container>
<container id="aspace_fb8021cce5de1b8e948b8d1379a6688e_c2"
localtype="folder"
parent="aspace_fb8021cce5de1b8e948b8d1379a6688e_c1">6</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2924194"
id="aspace_007b84fee2f74fee9ab51fd490502230"
level="file">
<did>
<unittitle>
<title>
<part>The Killer Whale Pole Moves Along . . .</part>
</title>
</unittitle>
<unitdatestructured altrender="2011" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="2011">2011</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/344568 /locations/4051"
containerid="39002093751882"
id="aspace_007b84fee2f74fee9ab51fd490502230_c1"
label="Mixed Materials"
localtype="box">1 (Oversize)</container>
<container id="aspace_007b84fee2f74fee9ab51fd490502230_c2"
localtype="folder"
parent="aspace_007b84fee2f74fee9ab51fd490502230_c1">7</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2924195"
id="aspace_510f66da2718c909452b44f6dd9010f2"
level="file">
<did>
<unittitle>
<title>
<part>Aided by a Young Tlingit Warrior, Tlingit Men Haul a Second as it Makes its Way to the Park</part>
</title>
</unittitle>
<unitdatestructured altrender="2011" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="2011">2011</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/344568 /locations/4051"
containerid="39002093751882"
id="aspace_510f66da2718c909452b44f6dd9010f2_c1"
label="Mixed Materials"
localtype="box">1 (Oversize)</container>
<container id="aspace_510f66da2718c909452b44f6dd9010f2_c2"
localtype="folder"
parent="aspace_510f66da2718c909452b44f6dd9010f2_c1">8</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2924196"
id="aspace_be0e8e5e502558b7775f5f2b841996e4"
level="file">
<did>
<unittitle>
<title>
<part>Straight into the Afternoon Sun of the Only Day it Did Not Rain. Tlingit Men Heft a Double Flicker Pole to its Raising Place</part>
</title>
</unittitle>
<unitdatestructured altrender="2011" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="2011">2011</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/344568 /locations/4051"
containerid="39002093751882"
id="aspace_be0e8e5e502558b7775f5f2b841996e4_c1"
label="Mixed Materials"
localtype="box">1 (Oversize)</container>
<container id="aspace_be0e8e5e502558b7775f5f2b841996e4_c2"
localtype="folder"
parent="aspace_be0e8e5e502558b7775f5f2b841996e4_c1">9</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2924197"
id="aspace_18a7c072e79155d26e91907d5e3a85b0"
level="file">
<did>
<unittitle>
<title>
<part>It Takes the Effort of Many Hands to Lift the Pole</part>
</title>
</unittitle>
<unitdatestructured altrender="2011" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="2011">2011</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/344568 /locations/4051"
containerid="39002093751882"
id="aspace_18a7c072e79155d26e91907d5e3a85b0_c1"
label="Mixed Materials"
localtype="box">1 (Oversize)</container>
<container id="aspace_18a7c072e79155d26e91907d5e3a85b0_c2"
localtype="folder"
parent="aspace_18a7c072e79155d26e91907d5e3a85b0_c1">10</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2924198"
id="aspace_4827417d9752113284fca7badf1e4358"
level="file">
<did>
<unittitle>
<title>
<part>A Tlingit Chieftain of the Flicker Clan Looks on as the Pole Celebrating his Clan is Made Fast</part>
</title>
</unittitle>
<unitdatestructured altrender="2011" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="2011">2011</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/344568 /locations/4051"
containerid="39002093751882"
id="aspace_4827417d9752113284fca7badf1e4358_c1"
label="Mixed Materials"
localtype="box">1 (Oversize)</container>
<container id="aspace_4827417d9752113284fca7badf1e4358_c2"
localtype="folder"
parent="aspace_4827417d9752113284fca7badf1e4358_c1">11</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2924199"
id="aspace_085172769935475029446ac368c20947"
level="file">
<did>
<unittitle>
<title>
<part>A Tlingit Elder Greets the Photographer</part>
</title>
</unittitle>
<unitdatestructured altrender="2011" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="2011">2011</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/344568 /locations/4051"
containerid="39002093751882"
id="aspace_085172769935475029446ac368c20947_c1"
label="Mixed Materials"
localtype="box">1 (Oversize)</container>
<container id="aspace_085172769935475029446ac368c20947_c2"
localtype="folder"
parent="aspace_085172769935475029446ac368c20947_c1">12</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2924200"
id="aspace_ff9c29828fc21adc59928acd55f20176"
level="file">
<did>
<unittitle>
<title>
<part>A Tlingit Family from Ketchikan, Alaska Poses</part>
</title>
</unittitle>
<unitdatestructured altrender="2011" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="2011">2011</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/344568 /locations/4051"
containerid="39002093751882"
id="aspace_ff9c29828fc21adc59928acd55f20176_c1"
label="Mixed Materials"
localtype="box">1 (Oversize)</container>
<container id="aspace_ff9c29828fc21adc59928acd55f20176_c2"
localtype="folder"
parent="aspace_ff9c29828fc21adc59928acd55f20176_c1">13</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2924201"
id="aspace_206f913d8041455c0e893b2a614e159b"
level="file">
<did>
<unittitle>
<title>
<part>Members of Jon Rowan's Dance Group Wearing Tlingit War Regalia Carved by Jon Rowan Gather for a Photograph</part>
</title>
</unittitle>
<unitdatestructured altrender="2011" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="2011">2011</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/344568 /locations/4051"
containerid="39002093751882"
id="aspace_206f913d8041455c0e893b2a614e159b_c1"
label="Mixed Materials"
localtype="box">1 (Oversize)</container>
<container id="aspace_206f913d8041455c0e893b2a614e159b_c2"
localtype="folder"
parent="aspace_206f913d8041455c0e893b2a614e159b_c1">14</container>
</did>
<scopecontent id="aspace_4c25275871bc989036eb6b8a46d0cb5f">
<head>Scope and Contents</head>
<p>Members of the Heinyaa Khwaan dance group.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/2924202"
id="aspace_ced48bb78da446257e603252ee51badb"
level="file">
<did>
<unittitle>
<title>
<part>Nonnie Mary Swanson, Matriarch of the Haida People</part>
</title>
</unittitle>
<unitdatestructured altrender="2011" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="2011">2011</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/344568 /locations/4051"
containerid="39002093751882"
id="aspace_ced48bb78da446257e603252ee51badb_c1"
label="Mixed Materials"
localtype="box">1 (Oversize)</container>
<container id="aspace_ced48bb78da446257e603252ee51badb_c2"
localtype="folder"
parent="aspace_ced48bb78da446257e603252ee51badb_c1">15</container>
</did>
</c>
</c>
</c>
<c altrender="/repositories/11/archival_objects/2924177"
id="aspace_0af47b3dfc638a08f9b2bad7f08953bb"
level="series">
<did>
<unittitle>Black-and-White Photographs, 16 x 20 Inches (41 x 51 centimeters)</unittitle>
<unitid>Series II</unitid>
<unitdatestructured altrender="2011" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="2011">2011</fromdate>
</daterange>
</unitdatestructured>
</did>
<scopecontent id="aspace_8e5db9b2067b71a613cebfabab224f5a">
<head>Scope and Contents</head>
<p>Black-and-white photographs are gelatin silver prints.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/2924182"
id="aspace_1a773ba33fe750233d91535c06da71b7"
level="subseries">
<did>
<unittitle>Old Masset, Haida Gwaii</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/2924203"
id="aspace_5bebc8cd49f993f550d30639fec193ef"
level="file">
<did>
<unittitle>
<title>
<part>Luck's Adoptive Haida Family. From left to right: Crystal Robinson (Mother), Darin Swanson (Uncle), Mary Swanson (Nonnie/Grandmother)</part>
</title>
</unittitle>
<unitdatestructured altrender="2011" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="2011">2011</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/344569 /locations/4051"
containerid="39002093751890"
id="aspace_5bebc8cd49f993f550d30639fec193ef_c1"
label="Mixed Materials"
localtype="box">2 (Oversize)</container>
<container id="aspace_5bebc8cd49f993f550d30639fec193ef_c2"
localtype="folder"
parent="aspace_5bebc8cd49f993f550d30639fec193ef_c1">16</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2924204"
id="aspace_3402209b89c358c19ba1bb06b00153a1"
level="file">
<did>
<unittitle>
<title>
<part>Mary Swanson, Matriarch of the Yahgu Jaanaas/Laanaas Clan, and Haida People</part>
</title>
</unittitle>
<unitdatestructured altrender="2011" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="2011">2011</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/344569 /locations/4051"
containerid="39002093751890"
id="aspace_3402209b89c358c19ba1bb06b00153a1_c1"
label="Mixed Materials"
localtype="box">2 (Oversize)</container>
<container id="aspace_3402209b89c358c19ba1bb06b00153a1_c2"
localtype="folder"
parent="aspace_3402209b89c358c19ba1bb06b00153a1_c1">17</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2924205"
id="aspace_8fa57cb554f0d71a0fc04cf390c98ce3"
level="file">
<did>
<unittitle>
<title>
<part>Darin Swanson, Chief Ginaawaan of Dadens, of the Yahgu Jaanaas/Laanaas Clan</part>
</title>
</unittitle>
<unitdatestructured altrender="2011" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="2011">2011</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/344569 /locations/4051"
containerid="39002093751890"
id="aspace_8fa57cb554f0d71a0fc04cf390c98ce3_c1"
label="Mixed Materials"
localtype="box">2 (Oversize)</container>
<container id="aspace_8fa57cb554f0d71a0fc04cf390c98ce3_c2"
localtype="folder"
parent="aspace_8fa57cb554f0d71a0fc04cf390c98ce3_c1">18</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2924206"
id="aspace_e4d2b7d37720042a8a57e7c51f178f18"
level="file">
<did>
<unittitle>
<title>
<part>Candace and Christian White in Christian's "Tluu Xaada Naay" Long House</part>
</title>
</unittitle>
<unitdatestructured altrender="2011" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="2011">2011</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/344569 /locations/4051"
containerid="39002093751890"
id="aspace_e4d2b7d37720042a8a57e7c51f178f18_c1"
label="Mixed Materials"
localtype="box">2 (Oversize)</container>
<container id="aspace_e4d2b7d37720042a8a57e7c51f178f18_c2"
localtype="folder"
parent="aspace_e4d2b7d37720042a8a57e7c51f178f18_c1">19</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2924207"
id="aspace_2bc534b311b1c249697fbc01a0314db0"
level="file">
<did>
<unittitle>
<title>
<part>Display of Christian White's Art</part>
</title>
</unittitle>
<unitdatestructured altrender="2011" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="2011">2011</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/344569 /locations/4051"
containerid="39002093751890"
id="aspace_2bc534b311b1c249697fbc01a0314db0_c1"
label="Mixed Materials"
localtype="box">2 (Oversize)</container>
<container id="aspace_2bc534b311b1c249697fbc01a0314db0_c2"
localtype="folder"
parent="aspace_2bc534b311b1c249697fbc01a0314db0_c1">20</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/2924183"
id="aspace_67695f23fbbb97abd810aee1c8478c3c"
level="subseries">
<did>
<unittitle>S'gung Gwaii, United Nations Educational, Scientific and Cultural Organization (UNESCO) World Heritage Site</unittitle>
</did>
<scopecontent id="aspace_3241d2be7d036c85d74aa8663d3319d9">
<head>Scope and Contents</head>
<p>S'gung Gwaii, also known as SG̱ang Gwaay Llanagaay ("Red Cod Island") or by its English name Ninstints, is a Haida village site and part of the Gwaii Haanas National Park Reserve and Haida Heritage Site on Haida Gwaii on the North Coast of British Columbia, Canada. The site became a United Nations Educational, Scientific and Cultural Organization (UNESCO) World Heritage Site in 1981.</p>
<p>Context provided by Luck for the subseries with a quote by Michael M. Ames, Director of the Museum of Anthropology at the University of British Columbia in the foreword to George F. MacDonald, <title>
<part>Ninstints, Haida World Heritage Site</part>
</title>, <title>
<part>Museum Note No. 12</part>
</title> (Vancouver: University of British Columbia Press, 1983), iii: "The Kunghit Haida of Ninstints are no more -- they did not survive the onslaught of Western civilization. Their village, now only ruins, has been declared a World Heritage Site in memory of the cultivated society that once flourished there. But Ninstints is more than a celebrated relic; it provides as well a lesson in history and morals."</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/2924208"
id="aspace_3bf33403d043e4e8bc6a5bb2c9fb0ec6"
level="file">
<did>
<unittitle>
<title>
<part>Sailing Along the Gwaii Haanas Coast on the Way to S'gung Gwaii</part>
</title>
</unittitle>
<unitdatestructured altrender="2011" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="2011">2011</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/344569 /locations/4051"
containerid="39002093751890"
id="aspace_3bf33403d043e4e8bc6a5bb2c9fb0ec6_c1"
label="Mixed Materials"
localtype="box">2 (Oversize)</container>
<container id="aspace_3bf33403d043e4e8bc6a5bb2c9fb0ec6_c2"
localtype="folder"
parent="aspace_3bf33403d043e4e8bc6a5bb2c9fb0ec6_c1">21</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2924209"
id="aspace_f11be6a685b17c41227005ea066fef9b"
level="file">
<did>
<unittitle>
<title>
<part>House Pit</part>
</title>
</unittitle>
<unitdatestructured altrender="2011" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="2011">2011</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/344569 /locations/4051"
containerid="39002093751890"
id="aspace_f11be6a685b17c41227005ea066fef9b_c1"
label="Mixed Materials"
localtype="box">2 (Oversize)</container>
<container id="aspace_f11be6a685b17c41227005ea066fef9b_c2"
localtype="folder"
parent="aspace_f11be6a685b17c41227005ea066fef9b_c1">22</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2924210"
id="aspace_2ce1ada6c5818dd6511813929eb6f0c4"
level="file">
<did>
<unittitle>
<title>
<part>Detail Totem Pole</part>
</title>
</unittitle>
<unitdatestructured altrender="2011" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="2011">2011</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/344569 /locations/4051"
containerid="39002093751890"
id="aspace_2ce1ada6c5818dd6511813929eb6f0c4_c1"
label="Mixed Materials"
localtype="box">2 (Oversize)</container>
<container id="aspace_2ce1ada6c5818dd6511813929eb6f0c4_c2"
localtype="folder"
parent="aspace_2ce1ada6c5818dd6511813929eb6f0c4_c1">23</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2924211"
id="aspace_220ec4a2cae1057550264c4cb0baa83c"
level="file">
<did>
<unittitle>
<title>
<part>Pole Detail</part>
</title>
</unittitle>
<unitdatestructured altrender="2011" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="2011">2011</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/344569 /locations/4051"
containerid="39002093751890"
id="aspace_220ec4a2cae1057550264c4cb0baa83c_c1"
label="Mixed Materials"
localtype="box">2 (Oversize)</container>
<container id="aspace_220ec4a2cae1057550264c4cb0baa83c_c2"
localtype="folder"
parent="aspace_220ec4a2cae1057550264c4cb0baa83c_c1">24</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2924212"
id="aspace_1f61c3d43dfea41637d08295d46b9dfb"
level="file">
<did>
<unittitle>
<title>
<part>Pole Detail in Foreground</part>
</title>
</unittitle>
<unitdatestructured altrender="2011" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="2011">2011</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/344569 /locations/4051"
containerid="39002093751890"
id="aspace_1f61c3d43dfea41637d08295d46b9dfb_c1"
label="Mixed Materials"
localtype="box">2 (Oversize)</container>
<container id="aspace_1f61c3d43dfea41637d08295d46b9dfb_c2"
localtype="folder"
parent="aspace_1f61c3d43dfea41637d08295d46b9dfb_c1">25</container>
</did>
</c>
</c>
</c>
<c altrender="/repositories/11/archival_objects/2924178"
id="aspace_1a31d6ba9f8aaf07bd7533a62a3dd443"
level="series">
<did>
<unittitle>Black-and-White Photographs, 20 x 24 Inches (51 x 61 centimeters)</unittitle>
<unitid>Series III</unitid>
<unitdatestructured altrender="2011" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="2011">2011</fromdate>
</daterange>
</unitdatestructured>
</did>
<c altrender="/repositories/11/archival_objects/2924184"
id="aspace_6ce53ab3fbd2fde87d90c4dde84491c9"
level="subseries">
<did>
<unittitle>S'gung Gwaii, United Nations Educational, Scientific and Cultural Organization (UNESCO) World Heritage Site</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/2924213"
id="aspace_bbb179639af485d050058e625c0c6d75"
level="file">
<did>
<unittitle>
<title>
<part>Beginning Down Footpath</part>
</title>
</unittitle>
<unitdatestructured altrender="2011" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="2011">2011</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/344570 /locations/4051"
containerid="39002091473349"
id="aspace_bbb179639af485d050058e625c0c6d75_c1"
label="Mixed Materials"
localtype="box">3 (Oversize)</container>
<container id="aspace_bbb179639af485d050058e625c0c6d75_c2"
localtype="folder"
parent="aspace_bbb179639af485d050058e625c0c6d75_c1">26</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2924214"
id="aspace_6771840443fa4f61f093e9ca1672cf50"
level="file">
<did>
<unittitle>
<title>
<part>Looking Back Up the Trail</part>
</title>
</unittitle>
<unitdatestructured altrender="2011" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="2011">2011</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/344570 /locations/4051"
containerid="39002091473349"
id="aspace_6771840443fa4f61f093e9ca1672cf50_c1"
label="Mixed Materials"
localtype="box">3 (Oversize)</container>
<container id="aspace_6771840443fa4f61f093e9ca1672cf50_c2"
localtype="folder"
parent="aspace_6771840443fa4f61f093e9ca1672cf50_c1">27</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2924215"
id="aspace_ee2d5cc0126fe89b26c8aa5ff899abba"
level="file">
<did>
<unittitle>
<title>