-- -- PostgreSQL database dump -- \connect - rwb3y SET search_path = public, pg_catalog; -- -- TOC entry 2 (OID 561248) -- Name: institution_seq; Type: SEQUENCE; Schema: public; Owner: rwb3y -- CREATE SEQUENCE institution_seq START 1 INCREMENT 1 MAXVALUE 2147483647 MINVALUE 1 CACHE 1; -- -- TOC entry 4 (OID 561250) -- Name: collection_seq; Type: SEQUENCE; Schema: public; Owner: rwb3y -- CREATE SEQUENCE collection_seq START 1 INCREMENT 1 MAXVALUE 2147483647 MINVALUE 1 CACHE 1; -- -- TOC entry 6 (OID 561252) -- Name: storage_unit_seq; Type: SEQUENCE; Schema: public; Owner: rwb3y -- CREATE SEQUENCE storage_unit_seq START 1 INCREMENT 1 MAXVALUE 2147483647 MINVALUE 1 CACHE 1; -- -- TOC entry 8 (OID 561254) -- Name: object_seq; Type: SEQUENCE; Schema: public; Owner: rwb3y -- CREATE SEQUENCE object_seq START 1 INCREMENT 1 MAXVALUE 2147483647 MINVALUE 1 CACHE 1; -- -- TOC entry 10 (OID 561256) -- Name: log_seq; Type: SEQUENCE; Schema: public; Owner: rwb3y -- CREATE SEQUENCE log_seq START 1 INCREMENT 1 MAXVALUE 2147483647 MINVALUE 1 CACHE 1; -- -- TOC entry 12 (OID 561258) -- Name: cdi_accession_seq; Type: SEQUENCE; Schema: public; Owner: rwb3y -- CREATE SEQUENCE cdi_accession_seq START 1 INCREMENT 1 MAXVALUE 2147483647 MINVALUE 1 CACHE 1; -- -- TOC entry 14 (OID 561260) -- Name: person_seq; Type: SEQUENCE; Schema: public; Owner: rwb3y -- CREATE SEQUENCE person_seq START 1 INCREMENT 1 MAXVALUE 2147483647 MINVALUE 1 CACHE 1; -- -- TOC entry 16 (OID 561262) -- Name: project_seq; Type: SEQUENCE; Schema: public; Owner: rwb3y -- CREATE SEQUENCE project_seq START 1 INCREMENT 1 MAXVALUE 2147483647 MINVALUE 1 CACHE 1; -- -- TOC entry 18 (OID 561264) -- Name: site_seq; Type: SEQUENCE; Schema: public; Owner: rwb3y -- CREATE SEQUENCE site_seq START 1 INCREMENT 1 MAXVALUE 2147483647 MINVALUE 1 CACHE 1; -- -- TOC entry 20 (OID 561266) -- Name: projectperson_seq; Type: SEQUENCE; Schema: public; Owner: rwb3y -- CREATE SEQUENCE projectperson_seq START 1 INCREMENT 1 MAXVALUE 2147483647 MINVALUE 1 CACHE 1; -- -- TOC entry 22 (OID 561268) -- Name: projectinstitution_seq; Type: SEQUENCE; Schema: public; Owner: rwb3y -- CREATE SEQUENCE projectinstitution_seq START 1 INCREMENT 1 MAXVALUE 2147483647 MINVALUE 1 CACHE 1; -- -- TOC entry 24 (OID 561270) -- Name: personinstitution_seq; Type: SEQUENCE; Schema: public; Owner: rwb3y -- CREATE SEQUENCE personinstitution_seq START 1 INCREMENT 1 MAXVALUE 2147483647 MINVALUE 1 CACHE 1; -- -- TOC entry 36 (OID 561272) -- Name: institution; Type: TABLE; Schema: public; Owner: rwb3y -- CREATE TABLE institution ( institution_key integer DEFAULT nextval('institution_seq'::text) NOT NULL, full_name character varying(256), abbrev character varying(80), office character varying(80), street1 character varying(80), street2 character varying(80), city character varying(80), state character varying(80), zipcode character varying(32), contact_person character varying(80), office_hours character varying(80), phone character varying(80), fax character varying(80), email character varying(80), url character varying(256) ); -- -- TOC entry 37 (OID 561278) -- Name: collection; Type: TABLE; Schema: public; Owner: rwb3y -- CREATE TABLE collection ( collection_key integer DEFAULT nextval('collection_seq'::text) NOT NULL, name character varying(80), number character varying(80), finding_aid_available integer, finding_aid_notes character varying(256), other_data_source character varying(256), types_of_material character varying(80), extent_of_material character varying(80), recorders_comment character varying(256), cdi_analyst_recorder character varying(80), institution_key integer, person_key integer, date_entered integer ); -- -- TOC entry 38 (OID 561284) -- Name: storage_unit; Type: TABLE; Schema: public; Owner: rwb3y -- CREATE TABLE storage_unit ( storage_unit_key integer DEFAULT nextval('storage_unit_seq'::text) NOT NULL, institutions_catalog_no character varying(80), institutions_catalog_descriptions character varying(256), cdi_storage_unit_designator character varying(80), cdi_description_of_materials character varying(256), post_fieldwork_manuscript integer, manuscript_documentation character varying(256), field_notes integer, field_notes_description character varying(256), field_catalog integer, field_catalog_description character varying(256), photographs integer, photographs_description character varying(256), drawings integer, drawings_description character varying(256), maps integer, maps_description character varying(256), correspondence integer, correspondence_description character varying(256), other_description character varying(256), actions_needed character varying(1024), copyright_information character varying(256), collection_key integer, action_date integer, unit_number integer ); -- -- TOC entry 39 (OID 561290) -- Name: object; Type: TABLE; Schema: public; Owner: rwb3y -- CREATE TABLE object ( object_key integer DEFAULT nextval('object_seq'::text) NOT NULL, institutions_object_designation character varying(80), cdi_object_no character varying(80), cdi_object_type character varying(80), cdi_description character varying(2048), published integer, publication_description character varying(256), scanned integer, scanned_descrition_notes character varying(256), photographed integer, photo_description_notes character varying(256), copyright integer, copyright_information character varying(256), project_key integer, cdi_accession_key integer, extent character varying(50), actions_needed character varying(1024), object_number integer, high_priority integer, indicated_by character varying(512), priority_notes character varying(512), copy_requested integer, copy_requested_date character varying(80), comments character varying(2048) ); -- -- TOC entry 40 (OID 561296) -- Name: collection_survey_log; Type: TABLE; Schema: public; Owner: rwb3y -- CREATE TABLE collection_survey_log ( log_key integer DEFAULT nextval('log_seq'::text) NOT NULL, visitation_number character varying(80), cdi_staff_member character varying(80), worked_with character varying(256), description_of_work character varying(256), contact_next_visit character varying(256), institution_key integer, begin_date_of_visit integer, end_date_of_visit integer, survey_number integer ); -- -- TOC entry 41 (OID 561302) -- Name: cdi_accession; Type: TABLE; Schema: public; Owner: rwb3y -- CREATE TABLE cdi_accession ( cdi_accession_key integer DEFAULT nextval('cdi_accession_seq'::text) NOT NULL, cdi_file_catalog_number character varying(80), physical_file_location character varying(256), eltronic_file_uva character varying(256), description_of_data character varying(256), source_of_data character varying(80), receiver_of_data character varying(80), entered_by character varying(80), comments character varying(256), object_key integer, collection_key integer, date_received integer, "type" character varying(80), checked_out integer, person_checked_out character varying(80) ); -- -- TOC entry 42 (OID 561308) -- Name: person; Type: TABLE; Schema: public; Owner: rwb3y -- CREATE TABLE person ( person_key integer DEFAULT nextval('person_seq'::text) NOT NULL, scholar character varying(80) ); -- -- TOC entry 43 (OID 561311) -- Name: project; Type: TABLE; Schema: public; Owner: rwb3y -- CREATE TABLE project ( project_key integer DEFAULT nextval('project_seq'::text) NOT NULL, name character varying(80), description character varying(512), begin_fieldwork integer, end_fieldwork integer ); -- -- TOC entry 44 (OID 561314) -- Name: site; Type: TABLE; Schema: public; Owner: rwb3y -- CREATE TABLE site ( site_key integer DEFAULT nextval('site_seq'::text) NOT NULL, popular_name character varying(80), cdi_site_name character varying(80), state character varying(80), state_official character varying(80), bc_site_number character varying(80), nps_site_number character varying(80), comments character varying(256) ); -- -- TOC entry 45 (OID 561320) -- Name: project_institution; Type: TABLE; Schema: public; Owner: rwb3y -- CREATE TABLE project_institution ( prim_key integer DEFAULT nextval('projectinstitution_seq'::text) NOT NULL, project_key integer, institution_key integer, funding integer, staff integer, space integer, repository integer, dates character varying(80), role character varying(80) ); -- -- TOC entry 46 (OID 561323) -- Name: person_institution; Type: TABLE; Schema: public; Owner: rwb3y -- CREATE TABLE person_institution ( prim_key integer DEFAULT nextval('personinstitution_seq'::text) NOT NULL, person_key integer, institution_key integer, role character varying(80), dates character varying(80) ); -- -- TOC entry 47 (OID 561326) -- Name: project_collection; Type: TABLE; Schema: public; Owner: rwb3y -- CREATE TABLE project_collection ( project_key integer, collection_key integer ); -- -- TOC entry 48 (OID 561328) -- Name: log_collection; Type: TABLE; Schema: public; Owner: rwb3y -- CREATE TABLE log_collection ( log_key integer, collection_key integer ); -- -- TOC entry 49 (OID 561330) -- Name: storage_unit_object; Type: TABLE; Schema: public; Owner: rwb3y -- CREATE TABLE storage_unit_object ( storage_unit_key integer, object_key integer ); -- -- TOC entry 50 (OID 561332) -- Name: storage_unit_log; Type: TABLE; Schema: public; Owner: rwb3y -- CREATE TABLE storage_unit_log ( storage_unit_key integer, log_key integer ); -- -- TOC entry 51 (OID 561334) -- Name: site_object; Type: TABLE; Schema: public; Owner: rwb3y -- CREATE TABLE site_object ( site_key integer, object_key integer ); -- -- TOC entry 52 (OID 561336) -- Name: person_project; Type: TABLE; Schema: public; Owner: rwb3y -- CREATE TABLE person_project ( prim_key integer DEFAULT nextval('projectperson_seq'::text) NOT NULL, person_key integer, project_key integer, director integer, supervisor integer, excavator integer, staff_analyst integer, other integer, dates character varying(80), notes character varying(512) ); -- -- TOC entry 53 (OID 561339) -- Name: site_project; Type: TABLE; Schema: public; Owner: rwb3y -- CREATE TABLE site_project ( site_key integer, project_key integer ); -- -- TOC entry 54 (OID 561341) -- Name: eo_pk_table; Type: TABLE; Schema: public; Owner: rwb3y -- CREATE TABLE eo_pk_table ( name character varying(80) NOT NULL, pk bigint NOT NULL ); -- -- TOC entry 26 (OID 561343) -- Name: notes_seq; Type: SEQUENCE; Schema: public; Owner: rwb3y -- CREATE SEQUENCE notes_seq START 1 INCREMENT 1 MAXVALUE 2147483647 MINVALUE 1 CACHE 1; -- -- TOC entry 55 (OID 561345) -- Name: notes; Type: TABLE; Schema: public; Owner: rwb3y -- CREATE TABLE notes ( notes_key integer DEFAULT nextval('notes_seq'::text) NOT NULL, number character varying(32), contents character varying(2048) ); -- -- TOC entry 28 (OID 561351) -- Name: work_seq; Type: SEQUENCE; Schema: public; Owner: rwb3y -- CREATE SEQUENCE work_seq START 1 INCREMENT 1 MAXVALUE 2147483647 MINVALUE 1 CACHE 1; -- -- TOC entry 56 (OID 561353) -- Name: work; Type: TABLE; Schema: public; Owner: rwb3y -- CREATE TABLE "work" ( work_key integer DEFAULT nextval('work_seq'::text) NOT NULL, work_identifier character varying(80), creation_year1 character varying(32), creation_year1_circa integer, cdi_location character varying(256), preferred_title character varying(512), descriptive_note character varying(1024) ); -- -- TOC entry 30 (OID 561359) -- Name: doc_inst_seq; Type: SEQUENCE; Schema: public; Owner: rwb3y -- CREATE SEQUENCE doc_inst_seq START 1 INCREMENT 1 MAXVALUE 2147483647 MINVALUE 1 CACHE 1; -- -- TOC entry 57 (OID 561361) -- Name: documentary_instance; Type: TABLE; Schema: public; Owner: rwb3y -- CREATE TABLE documentary_instance ( doc_inst_key integer DEFAULT nextval('doc_inst_seq'::text) NOT NULL, preferred_title character varying(256), statement_of_responsibilty character varying(256), edition_statement character varying(256), place_of_publication character varying(80), publisher character varying(80), publication_year character varying(80), publication_year_circa integer, series_statement character varying(80), physical_description_form character varying(80), physical_description_extent character varying(80), identifier character varying(80), source_identifier character varying(80), "location" character varying(256), cdi_location character varying(80), work_id integer, institution_id integer, descriptive_note character varying(512) ); -- -- TOC entry 32 (OID 561367) -- Name: alt_title_seq; Type: SEQUENCE; Schema: public; Owner: rwb3y -- CREATE SEQUENCE alt_title_seq START 1 INCREMENT 1 MAXVALUE 2147483647 MINVALUE 1 CACHE 1; -- -- TOC entry 58 (OID 561369) -- Name: alternative_title; Type: TABLE; Schema: public; Owner: rwb3y -- CREATE TABLE alternative_title ( alt_title_key integer DEFAULT nextval('alt_title_seq'::text) NOT NULL, work_id integer, doc_inst_id integer, title character varying(256) ); -- -- TOC entry 59 (OID 561372) -- Name: work_work; Type: TABLE; Schema: public; Owner: rwb3y -- CREATE TABLE work_work ( work1_id integer, work2_id integer ); -- -- TOC entry 60 (OID 561374) -- Name: person_in_work; Type: TABLE; Schema: public; Owner: rwb3y -- CREATE TABLE person_in_work ( person_id integer, work_id integer ); -- -- TOC entry 34 (OID 561376) -- Name: pcw_seq; Type: SEQUENCE; Schema: public; Owner: rwb3y -- CREATE SEQUENCE pcw_seq START 1 INCREMENT 1 MAXVALUE 2147483647 MINVALUE 1 CACHE 1; -- -- TOC entry 61 (OID 561378) -- Name: person_created_work; Type: TABLE; Schema: public; Owner: rwb3y -- CREATE TABLE person_created_work ( person_id integer, work_id integer, role character varying(80), docorder character varying(80), creator_id integer NOT NULL ); -- -- TOC entry 62 (OID 561380) -- Name: institution_work; Type: TABLE; Schema: public; Owner: rwb3y -- CREATE TABLE institution_work ( institution_id integer, work_id integer ); -- -- TOC entry 63 (OID 561382) -- Name: person_doc_inst; Type: TABLE; Schema: public; Owner: rwb3y -- CREATE TABLE person_doc_inst ( person_id integer, doc_inst_id integer, role character varying(80), docorder character varying(80), pdi_key integer NOT NULL ); -- -- Data for TOC entry 80 (OID 561272) -- Name: institution; Type: TABLE DATA; Schema: public; Owner: rwb3y -- INSERT INTO institution VALUES (3, 'Etnografisk Samling Nationalmusset', NULL, NULL, NULL, NULL, 'Copenhagen', 'Denmark', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO institution VALUES (12, 'Natural History Museum of Los Angeles County', NULL, NULL, NULL, NULL, 'Los Angeles', 'CA', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO institution VALUES (15, 'Pitt Rivers Museum', NULL, NULL, NULL, NULL, 'Oxford', 'England', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO institution VALUES (17, 'Royal Ontario Museum', NULL, NULL, NULL, NULL, 'Toronto', 'Canada', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO institution VALUES (20, 'Southwest Museum', NULL, NULL, NULL, NULL, 'Los Angeles', 'CA', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO institution VALUES (1, 'American Museum of Natural History', 'AMNH', NULL, 'Central Park West at 79th Street', NULL, 'New York', 'NY', '10024-5192', 'David Hurst Thomas', NULL, '212-769-5890 - direct, 212-769-5375 - anthro', NULL, 'thomasd@amnh.org', 'http://www.amnh.org/'); INSERT INTO institution VALUES (2, 'Arizona State Museum, University of Arizona', NULL, NULL, '1013 E. University Blvd., P. O. Box 210026', NULL, 'Tucson', 'AZ', '85721-0026', 'Paul Fish', 'office rm. 209N', '(520) 621-2556 ', 'museum fax: (520)612-2976', NULL, 'http://www.statemuseum.arizona.edu/'); INSERT INTO institution VALUES (4, 'Field Museum of Natural History', 'FMNH', NULL, '1400 S. Lake Shore Dr.', NULL, 'Chicago', 'IL', '60605-2496', 'Steve Nash', NULL, 'museum phone: (312)922-9410 ', NULL, 'snash@fieldmuseum.org', 'http://www.fmnh.org/'); INSERT INTO institution VALUES (5, 'Hamburgisches Museum Fur Volkerkunde und Vorgeschichte', NULL, NULL, NULL, NULL, 'Hamburg', 'Germany', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO institution VALUES (6, 'Hunter College', NULL, NULL, '695 Park Ave.', NULL, 'New York', 'NY', '10021', NULL, NULL, NULL, NULL, NULL, 'http://www.hunter.cuny.edu/'); INSERT INTO institution VALUES (7, 'Museum of New Mexico', NULL, NULL, NULL, NULL, 'Santa Fe', 'NM', NULL, NULL, NULL, NULL, NULL, NULL, 'http://www.museumofnewmexico.org/'); INSERT INTO institution VALUES (8, 'Museum of Northern Arizona', 'MNA', NULL, '3101 N. Ft. Valley Rd.', NULL, 'Flagstaff', 'AZ', '86001', 'Elaine Hughes (Anthropology collection)', NULL, '928-774-5211 ext 228.', 'museum: 928-779-1527', 'ehughes@mna.mus.az.us ', 'http://www.musnaz.org/'); INSERT INTO institution VALUES (13, 'National Anthropological Archives', 'NAA', NULL, 'Smithsonian Institution Museum Support Center', '4210 Silver Hill Road', 'Suitland', 'MD', '20746', 'Jake Homiak', NULL, '301.238.2872', '301.238.2883', 'homiak.jake@nmnh.si.edu', 'http://www.nmnh.si.edu/naa/'); INSERT INTO institution VALUES (9, 'National Geographic Society', 'NGS', NULL, '1145 17th Street N.W.', NULL, 'Washington', 'D.C.', '20036-4688', NULL, NULL, NULL, NULL, NULL, 'http://www.nationalgeographic.com/'); INSERT INTO institution VALUES (27, 'University of Oklahoma', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO institution VALUES (29, 'The Catholic University of America', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO institution VALUES (30, 'Northwestern University', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO institution VALUES (31, 'Eastern New Mexico University', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO institution VALUES (32, 'Prescott College', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO institution VALUES (34, 'Koogle and Pouls Engineering', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO institution VALUES (35, 'Stanford Research Institute', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO institution VALUES (37, 'University of Texas, El Paso', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO institution VALUES (38, 'Midwest Archaeological Center', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO institution VALUES (39, 'University of Nebraska', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO institution VALUES (40, 'Quivira Research Center', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO institution VALUES (41, 'Endangered Plant Studies', NULL, NULL, NULL, NULL, 'Orem', 'Utah', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO institution VALUES (43, 'University of New Mexico Photo Services', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO institution VALUES (44, 'Simons Li & Associates', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO institution VALUES (46, 'University of Arizona', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO institution VALUES (47, 'Sonora Desert Museum', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO institution VALUES (48, 'Navajo Community College', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO institution VALUES (50, 'Southwest Archaeological Consultants', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO institution VALUES (45, 'National Park Service', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO institution VALUES (51, 'Washington State University', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO institution VALUES (52, 'Louisiana State University', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO institution VALUES (42, 'Arizona State University', 'ASU', NULL, NULL, NULL, 'Tempe', 'AZ', '85287 ', NULL, NULL, NULL, NULL, NULL, 'http://www.asu.edu/ http://www.asu.edu/main/'); INSERT INTO institution VALUES (14, 'Peabody Museum of Archaeology and Ethnology, Harvard University', NULL, NULL, 'Harvard University', '11 Divinity Ave.', 'Cambridge', 'MA', '02138', NULL, NULL, '(617)496-1027', NULL, 'pmresrch@fas.harvard.edu', 'http://www.peabody.harvard.edu/default.html'); INSERT INTO institution VALUES (11, 'National Museum of Natural History', NULL, NULL, '10th St.', 'Constitution Ave., NW', 'Washington', 'D.C.', '20560', 'Jake Homiak', NULL, NULL, NULL, 'homiak.jake@nmnh.si.edu', 'http://www.mnh.si.edu/ http://www.nmnh.si.edu/anthro/'); INSERT INTO institution VALUES (10, 'National Museum of the American Indian', 'NMAI', NULL, 'Fourth St.', 'Independence Ave.', 'Washington', 'D.C.', '20560', NULL, NULL, NULL, NULL, 'NMAIcollections@si.edu. ', 'http://www.nmai.si.edu/ '); INSERT INTO institution VALUES (16, 'Robert S. Peabody Museum of Archaeology, Phillips Academy', NULL, NULL, 'Main St. (Route 28)', 'Phillips St.', 'Andover', 'MA', '01810', 'Alexandra Kornyu', NULL, NULL, NULL, 'akornyu@andover.edu', 'http://www.andover.edu/rspeabody/home.htm'); INSERT INTO institution VALUES (18, 'San Diego Museum of Man', NULL, NULL, '1350 El Prado, Balboa Park ', NULL, 'San Diego', 'CA', '92101', 'Eric Chamberlin', NULL, NULL, NULL, 'echamberlin@museumofman.org', 'http://www.museumofman.org/'); INSERT INTO institution VALUES (19, 'School of American Research', NULL, NULL, 'PO Box 2188', NULL, 'Santa Fe', 'NM', '87504', NULL, NULL, '(505) 954-7202 ', NULL, 'library@sarsf.org', 'http://www.sarweb.org/n4.htm'); INSERT INTO institution VALUES (49, 'Solstice Project', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Anna Sofaer', NULL, NULL, NULL, NULL, 'http://www.solsticeproject.org/'); INSERT INTO institution VALUES (23, 'University of Colorado Museum', 'CU Museum', NULL, 'UCB 218', NULL, 'Boulder', 'CO', '80309 ', 'Steve Lekson', 'office: Henderson 217', '(303)492-6671', NULL, 'lekson@colorado.edu', 'http://cumuseum.colorado.edu/Research/Anthro/'); INSERT INTO institution VALUES (21, 'Tulane University, Latin American Library', NULL, NULL, '7001 Freret Street ', NULL, 'New Orleans', 'LA', '70118', 'David Dressing, Curator of Manuscripts', NULL, '(504) 865-5681', 'Fax: (504) 862-8970', 'ddressi@tulane.edu', 'http://www.tulane.edu/~latinlib/pepperpaperscoll.html'); INSERT INTO institution VALUES (36, 'University of Arizona, Laboratory of Tree-Ring Research', 'TRL', NULL, 'Building 58T', 'Main Office, 105 West Stadium', 'Tucson', 'AZ', '85721 ', 'Jeff Dean', 'Office 230', '(520) 621-2320 ', '520-621-8229 ', 'jdean@ltrr.arizona.edu', 'http://www.ltrr.arizona.edu/'); INSERT INTO institution VALUES (22, 'University of California, Lowie Museum: now known as the Phoebe A. Hearst Museum of Anthropology', NULL, NULL, '103 Kroeber Hall', NULL, 'Berkeley', 'CA', '94720', 'Joan Knudsen', NULL, '(510) 643-6390 ', NULL, 'pakhet@berkeley.edu', 'http://hearstmuseum.berkeley.edu/index.html'); INSERT INTO institution VALUES (24, 'University of Michigan, Museum of Anthropology', NULL, NULL, '1109 Geddes Avenue', NULL, 'Ann Arbor', 'MI', '48109', 'John Speth', NULL, '734-764-1240', NULL, 'jdspeth@umich.edu', 'http://www.umma.lsa.umich.edu/ http://www.umma.lsa.umich.edu/museum.html'); INSERT INTO institution VALUES (54, 'University of New Mexico: Maxwell Museum of Anthropology', NULL, NULL, 'MSC01 1050', '1 University of New Mexico', 'Albuquerque', 'NM', '87131', 'Bruce Huckell', NULL, NULL, NULL, 'bhuckell@unm.edu ', 'http://filo.unm.edu/~maxwell/'); INSERT INTO institution VALUES (25, 'University of New Mexico, Chaco Archives', NULL, NULL, 'General Library', 'University of New Mexico', 'Albuquerque', 'NM', '87131', NULL, NULL, '(505)766-8390', NULL, 'CHCU_Curations@NPS.Gov', NULL); INSERT INTO institution VALUES (26, 'University of Pennysylvania Museum of Archaeology and Anthropology', NULL, NULL, '3260 South Street', NULL, 'Philadelphia', 'PA', '19104', NULL, NULL, NULL, NULL, 'apezzati@sas.upenn.edu', 'http://www.museum.upenn.edu/new/edu/archives/archives.shtml'); INSERT INTO institution VALUES (55, 'Laboratory of Anthropology', 'LA', NULL, NULL, NULL, 'Santa Fe', 'NM', NULL, 'Diane Bird, Archivist', '9-4, M, T, W ', NULL, NULL, NULL, NULL); -- -- Data for TOC entry 81 (OID 561278) -- Name: collection; Type: TABLE DATA; Schema: public; Owner: rwb3y -- INSERT INTO collection VALUES (7, 'Monroe Amsden', NULL, 0, NULL, NULL, '3 copies of the same manuscript.', NULL, NULL, 'Carrie Heitman', 13, 399, NULL); INSERT INTO collection VALUES (6, 'George Hubbard Pepper (1873-1924)', NULL, 1, 'available online. ', NULL, NULL, NULL, 'More complete finding aid needs to be ordered from David Dressing. It is 42 pages long - can be ordered for $0.40/page with a $3.50 surcharge and 15% postage and handling.', 'Carrie Heitman', 21, 2, 20040330); INSERT INTO collection VALUES (2, 'Papers of Frank H.H. Roberts at the National Anthropological Archives', '0002', 1, 'Register to the Papers of Frank Harold Hanna Roberts Jr. by Janette Saquet. James R. Glenn, General Editor. National Anthropological Archives 1983', NULL, 'Illustrations, notes Field notes, publications, correspondence', '10.5 feet of shelf space', NULL, 'Phil Trella', 13, 13, 20040317); INSERT INTO collection VALUES (9, 'Anna Osler Shepard Archival Collection', NULL, 1, 'An abridged version of the finding aid was accessioned as #000091 - see file.', NULL, 'See below.', '16 file drawers', 'Correspondence, business/personal papers, reserach notes, experiment and ceramic analysis resluts, manuscripts and draft copies, and sherd/thin section catalogs.', 'Carrie Heitman', 23, 13, 20040824); INSERT INTO collection VALUES (1, 'Papers of Neil Judd at the National Anthropological Archives', '0001', 1, 'Register ot the Papers of Neil Merton Judd.', NULL, 'Field notes, correspondence', '14 linear feet of shelf space', NULL, 'Phil Trella', 13, 12, 20040302); INSERT INTO collection VALUES (8, 'Jesse Walter Fewkes', NULL, 0, NULL, 'Located this "photo lot" collection through the Smithsonian SIRIS database', 'Photographs', 'unknown', 'I came across this collection of photographs while searching SIRIS for Aztec Ruin. I don''t know much about the full extent of this photo collection. There are, presumably, about 15 boxes?', 'Carrie Heitman', 13, 1054, 20040721); INSERT INTO collection VALUES (10, 'E. H. Morris Collection', NULL, 1, 'We have an abridged version of the finding aid in our accessions.', NULL, 'Correspondence, field notes,manuscripts, photographs, etc.', 'Unknown', NULL, 'Carrie Heitman', 23, 644, NULL); INSERT INTO collection VALUES (11, 'Aztec Ruins Files', NULL, 0, NULL, NULL, 'Notes and field catalog', NULL, NULL, 'Phil Trella', 1, 644, NULL); INSERT INTO collection VALUES (13, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO collection VALUES (14, 'Aztec Ruins National Monument Headquarters', NULL, 0, NULL, NULL, 'maps, photographs, correspondences, notes', NULL, NULL, 'Abby Holeman', 45, NULL, NULL); -- -- Data for TOC entry 82 (OID 561284) -- Name: storage_unit; Type: TABLE DATA; Schema: public; Owner: rwb3y -- INSERT INTO storage_unit VALUES (4, 'Box 10', 'Specimen Field Notes 1501-2368. ', '0004', 'Continuation of object cards from Pueblo Bonito. Entire box of material', NULL, NULL, 0, NULL, 0, NULL, 0, NULL, 0, NULL, 0, NULL, 0, NULL, 'Object Cards. ', NULL, NULL, 1, NULL, NULL); INSERT INTO storage_unit VALUES (11, 'Box 11', 'Material Relating to Judd''s Bureau of American Ethnology Expeditions between 1915 and 1920, "Utah File" 1914-1936, Material Concerning Edward Palmer caa. 1870-1921, Correspondence with WIlliam B. Marye 1932-1945 ', '00010', 'Includes excavation notes, field diaries, correspondence, financial records, and sketches. None of the material in Box 11 relates specifically to Chaco Canyon -- though there are some interesting notes about cave dwellings in Northern AZ, and Utah...', NULL, NULL, 0, NULL, 0, NULL, 0, NULL, 0, NULL, 0, NULL, 0, 'COrrespondence with Edward Palmer regarding his work in AZ and Utah (1870-1921), and Correspondence with William B. Marye 1932-45 regarding Indian bridges in Maryland, Delaware, Virginia, and North Carolina. ', NULL, 'None', NULL, 1, NULL, NULL); INSERT INTO storage_unit VALUES (12, 'Box 12', 'Miscellaneous Correspondence 1930-75. Includes exchanges with friends, collegues, and inquiries from the public.', '00011', 'Correspondence - mostly personal. Includes Colton, Hodge, McNitt, NGS, NPS, and SI (among others). ', NULL, NULL, 0, NULL, 0, NULL, 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, NULL, 1, NULL, NULL); INSERT INTO storage_unit VALUES (13, 'Box 13', 'Papers of Neil M. Judd: Miscellaneous Correspondence. ', '00012', 'Although the catalog description lists this box as correspondence, written on the box is "Munuscripts of Writings" and this is more accurate--box contains primarily copies of Judd''s Nat''l Geographic and other manuscripts', NULL, 'Manuscripts of more general papers for National Geographic', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, NULL, 1, NULL, 12); INSERT INTO storage_unit VALUES (14, 'Box 14', 'Miscellany 1919-1966: Awards and Honors, Biographical Data, Discovery of Rainbow Bridge, List of explorations, Printed Materials including annotated copy of Pepper''s Pueblo Bonito. ', '00014', NULL, NULL, NULL, 0, NULL, 0, NULL, 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, NULL, 1, NULL, NULL); INSERT INTO storage_unit VALUES (5, 'Box 02', 'Pueblo Bonito Correspondence. Reports, S.J. Holsinger and others. Rainbow Bridge. William Jackson, Jean A. Jeancon, Sylvanus Morley, Earl Morris, Lee K. Napalee', '0005', 'Correspondence including. Report on the prehistoric ruins of chaco canyon , N.M. 1901, ordered by General Land Officer. S.J. Holsinger special agent General Land Officer--in 3 parts. Interior Department.', NULL, NULL, 0, NULL, 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, 'Correspondence winh William Jackson, Jean A. Jeancon Sylvanus Morley, Earl Morris, Lee Napalee. ', 'Contains General Report on Chaco canyon including ruins from 1901', NULL, NULL, 1, NULL, NULL); INSERT INTO storage_unit VALUES (7, 'Box 03', 'Judd--Correspondence with the National Geographic Society, Correspondence Regarding Judd''s Publications, Franklin L. Bur Award, Pueblo Bonito Expeditions 1921-1927, Agreement between the society and Judd. ', '0007', NULL, NULL, NULL, 0, NULL, 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, 'Mostly about Beam expeditions (expenses, strategy) contains reports on tree rings from Chaco and other sites. ', 'This box also contains Judd''s annual reports to the NGS concerning Pueblo Bonito. Many short reports with a lot of financial and logistical information. ', NULL, NULL, 1, NULL, NULL); INSERT INTO storage_unit VALUES (8, 'Box 04', 'Pueblo Bonito Correspondence, NGS: RE: Braced up cliff, Hewett, permits, transfer of specimens ot the US nat''l museum, with Smithsonian RE Judd''s employment by NGS, Finances, Rupert''s report on P. del Arroyo, 1920 recon of the canyon. ', '0008', NULL, NULL, NULL, 0, NULL, 0, NULL, 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, NULL, 1, NULL, NULL); INSERT INTO storage_unit VALUES (9, 'Box 05', 'Pueblo Bonito Correspondence, Nelson, N.C. through W. ', '0009', 'Judd''s Correspondence, N.C. Nelson through W (end of correspondence). ', NULL, NULL, 0, NULL, 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, 'Nels Nelson, Nusbaum, Pepper, Popenoe, H.H. Roberts, Ruppert, Sat. Evening post, Scofield, Scott, Sharp, Shepard, Stacher, Thackery, Thord-Gray and Tozzer. ', NULL, NULL, NULL, 1, NULL, NULL); INSERT INTO storage_unit VALUES (1, 'Box 06', 'First box of the "Chaco Canyon Notes, notebooks and note cards" section. Mostly from 1920s and 50 inches in extent', '0001', NULL, NULL, NULL, 1, 'Judd''s field notes and Frans blom''s notes and sketches. Judd''s notebook and diary relating ot the 1920 recon. of the canyon. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, NULL, 1, NULL, NULL); INSERT INTO storage_unit VALUES (2, 'Box 08', 'Notes on Excavations', '0002', '3/4 of box consists of Notecards on excavations of Pueblo Bonito ordered by room. Cards appear to date from 1921-26. A lot of material here with very detailed information on room dimensions etc. Rest of box relates to other sites in the canyon. ', NULL, NULL, 0, NULL, 0, NULL, 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, NULL, 1, NULL, NULL); INSERT INTO storage_unit VALUES (3, 'Box 09', 'Specimen Field Notes, Number 1-1500', '0003', 'Specimen field notes go to 1181 (catalog says 1500). This is an entire box of object cards from Pueblo Bonito. ', NULL, NULL, 0, NULL, 0, NULL, 0, NULL, 0, NULL, 0, NULL, 0, NULL, 'Object cards describing artifacts. ', NULL, NULL, 1, NULL, NULL); INSERT INTO storage_unit VALUES (18, 'Box 2', 'Sherd Percentages, Miscellany: Judd''s notes on water and soil analysis with letters from Kirk Bryan, Records of test pit photoswith a note on the location of the test pits (1921-25).', '00016', 'Index cards with all of Roberts tabular data on pottery, notes on test pits.', NULL, NULL, 1, NULL, 0, NULL, 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, NULL, 2, NULL, 16); INSERT INTO storage_unit VALUES (17, 'Box 01', 'Frank H.H. Roberts Jr 4851 "Archaeological Sites" Chaco Canyon Box 1', '00016', 'Consists of Field notebooks, cartographic material, site measurements, specimen inventories, and pottery notes.', NULL, NULL, 1, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, 0, NULL, 'This box is amazing. We''ll probably want most of what is here...', NULL, NULL, 2, NULL, 16); INSERT INTO storage_unit VALUES (20, 'Box 9', 'Cartographic materials from 1940 excavations BC 53. Profiles, plans, specimen inventory, 1940 and 1941 field cards, burial records 1940 and 1941. Sherd Percentages 1940. Compilation of data for all levels in rooms and kivas...', '00018', 'Plans and Profiles from 1940 season with specimen inventories, burial recordsand sherd percentages', NULL, NULL, 0, NULL, 0, NULL, 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, NULL, 2, NULL, 18); INSERT INTO storage_unit VALUES (22, 'Box 12', 'Frank H.H. Roberts Jr 4851 Manuscripts P - Untitled. Various manuscripts - some published, some unpublished. Very few pertain directly to Chaco Canyon', '00020', 'Mostly typed manuscripts, some hand written', NULL, NULL, 0, NULL, 0, NULL, 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, NULL, 2, NULL, 20); INSERT INTO storage_unit VALUES (24, 'test', NULL, '1080222654432', NULL, NULL, NULL, 0, NULL, 0, NULL, 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO storage_unit VALUES (26, 'Box 13', 'Correspondence: Incoming Letters: A-Z. Includes letters from Emil Haury, Alex Hrdlicka, Neil Judd, and Anna Shepard. One folder of letters sent', '1081865423236', 'Most folders contain just one or two letters, many regarding Folsom sites. ', NULL, NULL, 0, NULL, 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, NULL, NULL, NULL, 2, NULL, NULL); INSERT INTO storage_unit VALUES (25, 'Box 15', 'Illustrations, Publications, Archaeological Sites, Pottery', '1081864678414', 'Contains illustrations from: BAE Bull 121, SI-AR 1935, SI-MC vol.94 no. 4, SI-AR 1938, SI-EF 1927, SI-MC vol. 81 no. 7, SI-MC vol. 95 no. 10, SI-MC vol. 99 no. 2, SI-MC vol. 103 no. 4. Also contains Linda Roberts illustrations 1929, 1930', NULL, NULL, 0, NULL, 0, NULL, 0, NULL, 1, 'Illustrations of pottery animal forms, handles, applique, ladle handles, extensive decoration illustrations and a nice illustration of pier pilaster kiva', 0, NULL, 0, NULL, NULL, 'I''m not sure what the topics of these SI publications are. That being the case, I''m not sure which, if any, of these illustrations are relevant to Chaco? We might need to track down the titles of these Roberts publications. Check the finding aid...', NULL, 2, NULL, NULL); INSERT INTO storage_unit VALUES (27, 'Box 16', 'Illustrations, Pottery, Stratigraphy, Miscellaneous. Includes oversized plates, reduced copies of oversized plates, stratigraphy of pottery test sections.', '1081868292268', 'Extensive illustrations of decorated pottery including type description but no provenience info. Probably published elsewhere (maybe Chaco ceramic publication? or an SI publication?). ', NULL, NULL, 0, NULL, 0, NULL, 0, NULL, 1, 'Mostly bowls, including some weird effigy forms, some canteens, handles, a shell trumpet handle!!, ladles, and petroglyphs', 0, NULL, 0, NULL, NULL, 'We may want to come back to these illustrations if we decide we want nice examples of chacoan ceramics.', NULL, 2, NULL, NULL); INSERT INTO storage_unit VALUES (15, 'Box 15', 'Cartographic Material - site locations, site plans, drawings and illustrations of artifacts, wall paintings, and profiles. Includes original drawings by Frans Blom, Oscar B. Walsh, Karl Ruppert, and others. Some items held in Map cases.', '00014', 'See above. The range and extent of illustrations contained in this box are too numerous to list here. See finding aid. Many of these objects will eventually be digitized.', NULL, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, 1, NULL, 0, NULL, NULL, 'Eventually we will need to send some of these illustrations to the digitization lab or to the Smithsonian Photo Services division (a.k.a. OPPS).', NULL, 1, NULL, 15); INSERT INTO storage_unit VALUES (31, 'Box 23', 'Photographs National Geographic Society Photographs Chaco Canyon--Crownpoint area ruins--Monument Valley', '1081954573345', NULL, NULL, NULL, 0, NULL, 0, NULL, 0, 'These all appear to be NGS photographs. ', 0, NULL, 0, NULL, 0, NULL, 'The only excavation photos in here are of ruins 3 and 13. I think these are interesting images of small house sites. ', 'Some of these small site ruins (like 3 and 13) may be of interest to us. ', NULL, 1, NULL, NULL); INSERT INTO storage_unit VALUES (33, 'Box 25', 'Photographs: National Geographic Society Photographs. Pueblo Bonito, Excavations--Pueblo Bonito, Camps Workers', '1081970648179', 'NGS photos of Pueblo Bonito Excavations. ', NULL, NULL, 0, NULL, 0, NULL, 1, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, 'NGS ', 1, NULL, NULL); INSERT INTO storage_unit VALUES (32, 'Box 24', 'Photographs National Geographic Society Photographs Navaho Indians--Pueblo Bonito, Excavations', '1081955538441', 'This box contains a major collection of burial photos by OC Havens. It also contains some excavation photos from 1920-1923, braced up cliff, as well as some photos of artifacts and Navaho workmen and their familes.', NULL, NULL, 0, NULL, 0, NULL, 1, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, NULL, 1, NULL, NULL); INSERT INTO storage_unit VALUES (34, 'Box 26', 'Papers of Neil M. Judd. Photograps--National Geographic Society Photographs. Pueblo Bonito, General Views--Pueblo Bonito, Kivas', '1089730779274', 'Continuation of Judd''s National Geographic Society photographs of Pueblo Bonito. Box appears to contain primarily shots of Bonito from afar. ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL); INSERT INTO storage_unit VALUES (40, 'Box 19', 'Photographs of Judd''s expeditions 1920', '1089725902870', 'Contains images of Rito de los Frijoles, expedition photos, images of people and buildings at Hopi and Acoma, various ruins in Chaco Canyon, Pueblo Viejo, Bright Angel Creek, Santa Fe, Pariah Plateau, Saddle Canyon,...see finding aid.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL); INSERT INTO storage_unit VALUES (41, 'Box 27', 'National Geographic Society Photographs. Pueblo Bonito, Miscellany-- Pueblo Bonito, Restoration Models', '1089739125427', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL); INSERT INTO storage_unit VALUES (35, 'Box 28', 'Papers Neil M. Judd Photographs. National Geographic Society Photographs, Pueblo Bonito, Pottery-- Pueblo Bonito, Rooms.', '1089818273989', 'Box of NGS photographs. Most are mounted on cards. Pottery photographs are not mounted and have little description to go with them. ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL); INSERT INTO storage_unit VALUES (36, 'Box 20', 'Photographs of Judd''s Expeditions 1921-27', '1089818593641', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL); INSERT INTO storage_unit VALUES (37, 'Box 29', 'National Geographic Society Photographs. Pueblo del Arroyo', '1089828246119', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL); INSERT INTO storage_unit VALUES (38, 'Box 33', 'Papers of Neil M. Judd. Photographs: Collection of Miscellaneous Photographs Archaeological Subjects, Colorado--Archaeologcal subjects, New Mexico, Restoration models of Pueblo Bonito', '1089904840912', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 7152004, NULL); INSERT INTO storage_unit VALUES (39, 'Box 36', 'Photographs of the Hyde Expedition', '1089905315535', 'Hyde Expedition: lists of photographs, misc. photos, braced-up cliff, middens, rooms 1-190 (some small gaps), and a few Pueblo del Arroyo photos.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL); INSERT INTO storage_unit VALUES (30, 'Box 22', 'National Geographic Society Photographs. Chaco Canyon--Arroyo, Pictographs, Pine trees, Miscellaneous Ruins', '1081953833185', 'Box of Judd photos from NGS, all mounted on cards, typically 2 or three photos per 8" by 10" card. All labeled in type and covered with plastic holders. ', NULL, NULL, 0, NULL, 0, NULL, 1, 'Judd photos from NGS', 0, NULL, 0, NULL, 0, NULL, NULL, NULL, NULL, 1, NULL, NULL); INSERT INTO storage_unit VALUES (44, 'Box 21', 'Frank H. H. Roberts, Jr. 4851. Photographs - Negatives. Artifacts - Miscellaneous.', '1090348577586', 'Negatives of miscellaneous artifacts with little context. Many of the negatives are apparently missing. See note 18. ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Locate missing negatives from folders. ', NULL, 2, NULL, NULL); INSERT INTO storage_unit VALUES (45, 'Box 23', 'Frank H. H. Roberts Jr. 4851 Photographs-Prints. Sites-Agate Basin-Lindenmeier.', '1090350588773', 'Prints from various sites in Chaco Canyon, including Pueblo Bonito, Shabik''eshchee, 1690 House, and Bc 53. Includes photos of excavations, skulls, and general photos.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2, NULL, NULL); INSERT INTO storage_unit VALUES (47, 'Box 26', 'Frank H.H. Roberts Jr. 4851. Photographs--Prints Artifacts--Miscellaneous. ', '1090354486238', 'Box of Roberts Photo prints, primarily contains artifacts from Chaco and other sites. ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Box contains folders with such as Type - Bone tools that have prints with little info. prints with objedct numbers starting with L - are assumed to be from the Lindenmeier site. BC 53 objects are labeled with BC 53. ', NULL, NULL, 2, NULL, NULL); INSERT INTO storage_unit VALUES (49, 'F.H.H. Roberts Jr. Lantern Slides 4851 (Box 29)', 'Glass Plate Lantern Slides', '1090425374662', 'Storage box has 10 boxes of lantern slides. We are arbitrarily calling this box 29, although ,there is no number assigned to the box. ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2, NULL, NULL); INSERT INTO storage_unit VALUES (50, 'NITRATE MS 4851 F.H.H. Roberts Jr. Papers total 965 Negs. Box 31', 'This box has no number, so we''re assigning it Number 31.', '1090431937465', 'Box of Nitrate Negatives pulled from various boxes of the Roberts collection. This box has no number, so we''re assigning it Number 31. Box contains a total of 965 negatives from various sites including Lindenmeier and Shabik''eshchee', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2, NULL, NULL); INSERT INTO storage_unit VALUES (52, 'NITRATE MS. 4851 F.H.H Roberts, Jr. Papers 599 Negs. Box 32 ', 'This box is not described or labled with a box number. We have arbitrarily designated it "Box 32" because that is the next sequential box number available in the Roberts collection.', '1090434523741', 'This box contains roughly 29 folders of negatives. These are negatives made from nitrate negatives that were removed from their original storage unit locations.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'As a result, each folder of negatives connects back to a particular box and folder and are labled accordingly.', 'We need to figure out if the artifact class folders (i.e. "Artifacts- Pottery Pitchers and jugs") in this box are from Bc 53. I''ve gone through them all and there is no identifying coding on any of the artifacts.', NULL, 2, NULL, NULL); INSERT INTO storage_unit VALUES (53, 'Box 34', 'Papers of Neil M. Judd Photographs Collection of Miscellaneous Photo graphs Archaeological Subjects, Unidentified, Structural Dwellings. ', '1090436597715', 'Box of Miscellaneous photos from Judd Collection. We''re going though these just to check and see if there is anything that we missed from Chaco. ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL); INSERT INTO storage_unit VALUES (54, 'Box 35', 'Photographs Photographs re. Expeditions of Walter Hough', '1090436835770', 'Scenic photographs of Arizona and NM- including Holbrook, Heber, Grasshopper, Spur Ranch, Magdalina, Socorro, Leroux Wash and the Blue House moutains', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'I looked through this box as a test - to see if we happened upon any information on Chaco Canyon in a box with many miscellaneous folder categories. I did not find anything relating to Chaco in this box.', NULL, NULL, 1, NULL, NULL); INSERT INTO storage_unit VALUES (55, 'Box 31', 'Photographs. Collections of Miscellaneous Photographs. Archaeological Subjects, Alaska pictograph-- Arizona, pictographs', '1090438231239', 'This box contains folders that all refer to areas in Arizona. ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL); INSERT INTO storage_unit VALUES (56, 'Photo Lot 4321 Box 7', 'Fewkes Photograph Collection: Mexico (cont.) to New Mexico', '1090441103404', 'This box contains folders of photographs - these include Hawikuh, Mississippi Valley, Chaco Canyon and Aztec Ruin. The bulk of the material in this box is from the Mimbres Valley.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 8, NULL, NULL); INSERT INTO storage_unit VALUES (6, 'Box 01', 'Pueblo Bonito Correspondence. A through I, includes Interior Department, Chaco Canyon National Monument, Proclamation Maps and Notes. ', '0006', 'Correspondence with Glover Allen, contains a report on Canid remains from Pueblo Bonito. C with Bryant Bannister, indicates that Judd''s correspondence with A.E. Douglass is held at the Univeristy of Arizona''s Laboratory of Tree Ring Research. ', NULL, NULL, 0, NULL, 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, 'Allen, AMNH, Amsden, Bannister, Breazeale, Colton, Conant, Dodge, Farrell, Fontana, Gladwin, Hewett, Hodge, Interior Department, Chaco National Monument, RE boundaries and holdings, RE braced up cliff, RE wall repair', NULL, NULL, NULL, 1, NULL, NULL); INSERT INTO storage_unit VALUES (58, 'OVERSIZED N.M. Judd Collection Pueblo Bonito (1)', 'None given. This folder is not included in the finding aid - nor are these folders numbered. As a result, we are designating this folder as a storage unit. ', '1090505719590', 'We are describing this folder as its own storage unit. Oversized material from Judd collection. Profile maps from Pueblo Bonito. ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL); INSERT INTO storage_unit VALUES (59, 'OVERSIZED N.M. Judd Collection Pueblo Bonito (2)', 'None given. This folder is not included in the finding aid - nor are these folders numbered. As a result, we are designating this folder as a storage unit. ', '1090511362362', 'Oversized material from Judd collection. Miscellaneous architectural details and ceramic tabular data from Pueblo Bonito.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL); INSERT INTO storage_unit VALUES (57, 'OVERSIZED Neil Judd Collection Maps Chaco Area', 'None given. This folder is not included in the finding aid - nor are these folders numbered. As a result, we are designating this folder as a storage unit. ', '1090504549305', '1 folder of oversized maps from Chaco canyon. Oversized material from Chaco includes maps.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL); INSERT INTO storage_unit VALUES (60, 'OVERSIZED N.M. Judd Collection: Artwork for figures in Pueblo del Arroyo', 'None given. This folder is not in the finding aid. ', '1090522087917', 'Seems to be all figures (with figure numbers) from the Pueblo del Arroyo volume. As a result, we are not going to acquire these objects.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL); INSERT INTO storage_unit VALUES (61, 'OVERSIZED N.M. Judd Collection: Drawings Pueblo del Arroyo', 'None given. This folder is not included in the finding aid - nor are these folders numbered. As a result, we are designating this folder as a storage unit. ', '1090523136809', 'This folder contains drawings and tabular data from Pueblo del Arroyo.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL); INSERT INTO storage_unit VALUES (62, 'OVERSIZED N.M. Judd Collections: Drawings other than Pueblo Bonito ', 'None given. This folder is not included in the finding aid - nor are these folders numbered. As a result, we are designating this folder as a storage unit. ', '1090523819259', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL); INSERT INTO storage_unit VALUES (63, 'OVERSIZED N.M. Judd Collection: Photographs and Art Prints', 'None given. This folder is not included in the finding aid - nor are these folders numbered. As a result, we are designating this folder as a storage unit.', '1090524838442', 'Art prints, awards, plan views, and some photographs.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL); INSERT INTO storage_unit VALUES (46, 'Box 07', 'Papers of Neil M. Judd. Chaco Canyon Notes, Notebooks and Note Cards. ', '1090352097267', 'Box of notecards from Pueblo del Arroyo. One set is specimen cards, the other is of room descriptions, some of which contain drawings of the room on one side. ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL); INSERT INTO storage_unit VALUES (21, 'Box 11', 'Titled Manuscripts', '00019', 'Contains manuscripts including "Bc 53 Wall Sequence", "Burial Customs of Bc-53", Judd''s Ch. 5 from the Material Culture of PB, "The Pottery from Plueblos Bonito and Del Arroyo and the Ceramic Sequence in the Chaco Canyon" 2 versions', NULL, NULL, 0, NULL, 0, NULL, 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, NULL, 2, NULL, 19); INSERT INTO storage_unit VALUES (28, 'OVERSIZED Roberts Folder 1 of 13 MS 4851', 'Chaco Canyon NM cartographic materials This folder is being listed as its own storage unit as it contains materials other than those listed on the out-card in Box 16. ', '1081878574432', '5 profiles and one map of what we believe to be Shabik''eshchee.', NULL, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, 1, NULL, 0, NULL, NULL, NULL, NULL, 2, NULL, NULL); INSERT INTO storage_unit VALUES (65, 'OVERSIZED Roberts Folder 2 of 13 MS 4851', 'Chaco Canyon Illustrations (Pottery Test Sections)', '1091544152886', 'There are duplicates of test section drawings; contains general Bonito cross sections as well as specific test section profiles.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2, NULL, NULL); INSERT INTO storage_unit VALUES (66, 'OVERSIZED Roberts Folder 3 of 13 MS 4851', 'Chaco Canyon, N. Mex. Bc 53 Cartographic Materials', '1091546392389', 'Architectural plans, stratigraphic ceramic information from Bc 53.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2, NULL, NULL); INSERT INTO storage_unit VALUES (67, 'OVERSIZED Roberts Folder 13 of 13 MS 4851', 'Chaco Canyon Illustrations (Pottery Test Sections)', '1091548481101', 'Mostly maps and illustrations of sites in Arizona or unknown locations. Mostly Mt. Floyd area. Only one page relevant to Chaco.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2, NULL, NULL); INSERT INTO storage_unit VALUES (19, 'Box 8', '1940-41, Chaco Canyon, N. Mex., Bc 53 Site.Compilation of all notes: Anderson, Jack C., Atins, Ruth, Baby, Raymond S., Deacon, John C., Greenwood, Walter B., Hill, Ernest H. Jr., Kyte, Dorothy, Leonard, Jane, Morgan, Dorothy, Roberts, Frank H. H....', '00017', 'Complete set of field notes from 1940 season, Bc 53 arranged by excavator''s name. ', NULL, NULL, 1, 'All Field Notes from 1940 season at BC 53', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, NULL, 2, NULL, 17); INSERT INTO storage_unit VALUES (68, 'MS 4853 (1)', 'Creator: Amsden, Monroe. Title: "Small Sites of the Chaco". 1925 or later.', '1091646063517', 'Contains Amsden manuscript "Small Sites of the Chaco".', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 7, NULL, NULL); INSERT INTO storage_unit VALUES (69, 'Box 29', 'None given. This box has no NAA designation. In the finding aid, boxes 27-31 are described as "unarranged photographs." The boxes, however, have no box numbers. I have arbitrarily designated this as box 28. ', '1091646945268', 'This box contains 4 smaller boxes of photographs and large negatives of unlabled/unprovenienced artifcats. Some may be from Chaco, some duplicate images we have already seen elsewhere. ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2, NULL, NULL); INSERT INTO storage_unit VALUES (29, 'OVERSIZED MS 4853:1 (PT)', 'Monroe Amsden - oversized materials', '1081881041489', 'Oversized cartographic folder containing 7 architectural plans and profiles as well as 6 charts (all on blue acetate?). The 6 charts plot frequencies of ceramic types, wares, hatchure, utility vs decorated, etc.', NULL, NULL, 0, NULL, 0, NULL, 0, NULL, 1, 'Architectural plans include Turkey House, small pueblo 9 miles east of Bonito, protokvia profile, slab-house cluster near protokiva, ruin 13, ruin 3, Mesa Verde house. ', 1, NULL, 0, NULL, NULL, 'Figure out if all of this is relevant to Chaco or not...some items are not labled and we have no way of knowing if they are relevant to CDI or not.', NULL, 7, NULL, NULL); INSERT INTO storage_unit VALUES (71, 'D8.N8', 'The institution catalog number refers to D8 (Drawer 8), N8 (Notebook 8). This notebook contains thin section analysis results. ', '1093443121321', 'A notebook containing thin section analysis results.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 9, NULL, NULL); INSERT INTO storage_unit VALUES (73, 'AZRU 212', 'Aztec Notes', '1093449592411', 'One sheet of microfiche, only partially filled. There are only about 20 pages of material contained in AZRU 212. Most of the material in this storage unit consists of descriptions of Kivas. ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Like AZRU 211, there is no collection survey log information for this storage unit. The microfiche was originally loaned to us by the University of Colorado Museum and digitized at UVa 11/2002.', NULL, NULL, 10, NULL, NULL); INSERT INTO storage_unit VALUES (72, 'AZRU 211 ', 'Aztec Ruin, notes, misc.', '1093448765948', 'From 4 sheets of Microfiche includes complete Aztec Reconnaissance report, administrative report, catalogue of specimens, field notes, maps drawings. Also contains a technical report on cliff dwellings by Stanley Morse. ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'There will be no collection survey log for this storage unit as the microfiche was sent to us in 11/2002 and digitized here before the creation of this database. Morse cliff dwelling report will not be entered as an object.', NULL, NULL, 10, NULL, NULL); INSERT INTO storage_unit VALUES (70, 'D8', 'Thin sections: catalogs and analysis results.', '1093441693161', 'This is a binder which contains a list of thin sections made by Shepard. The thin sections are grouped by site.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 9, NULL, NULL); INSERT INTO storage_unit VALUES (75, 'D1 J1', '"J1 Neil M. Judd, U.S. National Museum, D.C. 1935-54"', '1093555409872', 'N. M. Judd correspondence. This file folder contains both copies of outgoing as well as incoming correspondence. ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Catalog refers to D1 (Drawer 1). Based on our review of the Judd collection at the National Anthropological Archive it seems that this correspondence file is not complete. ', NULL, 9, NULL, NULL); INSERT INTO storage_unit VALUES (74, 'File F21', 'Unknown', '1093464965612', 'Tabular data, notes of analysis and some short typewritten temper and pigment reports on Bonito and Red Rock ceramics. ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 9, NULL, NULL); INSERT INTO storage_unit VALUES (43, 'Box 18', 'Frank H.H. Roberts Jr. 4851. Photographs - Negatives Sites: Chaco Canyon - Lindenmeier. ', '1090346159584', 'Box has folders listing negatives from sites throughout Chaco Canyon. Actual negatives are lantern slides kept in separate boxes. ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'See Note 18.', NULL, NULL, 2, NULL, NULL); INSERT INTO storage_unit VALUES (48, 'Box 27', 'None given. Boxes 27-31 are described in the finding aid as "Unarranged photographs." ', '1090422188127', 'This box contains 2 smaller boxes. 1 holds glass plate negatives which are almost complete destroyed (these are not Puebloan). The other holds negatives for and prints of illustrations for Robert''s Whitewater District BAE bulletin 126 (1940). ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'I have arbitrarily designated this box as "box 27" - for these miscellaneous boxes are not labled with box numbers. The finding aid says there are five - but it turns out that there are only 4 - so we will refer to them as 27, 28, 29, and 30 respectively.', 'Without Joan or some other experienced set of eyes here to look at the negatives, there is no way we can definitvely link these to Chaco.', NULL, 2, NULL, NULL); INSERT INTO storage_unit VALUES (51, 'Box 30', 'None given. Roberts boxes 27-31 are described in the finding aid as "unarranged photos." There are actually only 4 of these boxes (27-30) and they are not labeled with box numbers. As a result, I have arbitrarily designated this box as #30.', '1090432100254', 'There 19 lantern slide boxes in this box. Each contains roughly 10 slides. Very few of these slides are labeled with site/provenience information. Those that are labeled include slides from Red Paint Canyon, Sandia Cave, and San Jon.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '3 lantern slide boxes contain slides which may be of interest to us - now or down the road. A box labeled "1700-50-45" (stamped on back) one (continued below) ', 'tied with red string and a red box labled "Roberts #2" contain images of a basketmaker village. These could be Shabik''eshchee.', NULL, 2, NULL, NULL); INSERT INTO storage_unit VALUES (64, 'Box 28', 'None given. This box has no NAA designation. In the finding aid, boxes 27-31 are described as "unarranged photographs." The boxes, however, have no box numbers. I have arbitrarily designated this as box 28.', '1090526500961', '10 boxes of lantern slides. They are either unlabeled or from places other than Chaco - therefore not of interest to CDI. SEP 9/15/2004-see ''actions needed''.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'do not digitize - SEP 9/15/2004 9/15/2004 -- I reexamined these boxes and some are solely from one sites (e.g., Lindenmeier) and others are mixes of material from different places. Many show various places in the Southwest where Roberts worked (e.g., Kiatuthlana). There are images of vessel (many are drawings) from Chaco and at least one plan view from Shabik''eshchee. Most appear to be duplicates of images elsewhere, perhaps because these were prepared for Roberts for his lectures.', NULL, 2, NULL, NULL); INSERT INTO storage_unit VALUES (76, 'New Mexico arch/ H1405-H1530', 'Photo Archives H-Boards H.1405-1530 New Mexico Box 15 of 267', '1097173661087', 'Photographs of various ruins and objects from New Mexico. All photos are mouned on cardboard. The Chaco images seem to be gifts from various individuals/institutions - possibly for teaching purposes (according to the archivist).', NULL, NULL, 0, NULL, 0, NULL, 1, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO storage_unit VALUES (77, '39-79', 'Archaeological material from Chaco, New Mexico. Exchange - U of New Mexico, Frank Hibben. Exchange inventory and correspondence, 1939-1940; Cross-reference form', '1097181139780', 'See object description. There is only one folder in this envelope', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO storage_unit VALUES (78, 'New Jersey New Mexico arch/ H1308-H1395', 'Photo Archives H-Boards H.1308-1395 New Jersey New Mexico Box 14 of 267', '1097257446608', 'Photographs from various areas (New Jersey and New Mexico) mounted on cardboard. According to the Peabody Archivist, these images were probably used for teaching purposes.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO storage_unit VALUES (79, 'New Mexico arch/ H1531-H1647.27', 'Photo Archives H-Boards H.1531-H1647.27 New Mexico Box 16 of 267', '1097266970674', 'Photos mounted on cardboard from various sites in New Mexico - some historic, some prehistoric sites. The Peabody Archivist says these were probably used for teaching purposes.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'CCH - I did not finish going through this box and there is more material here to be inventoried. There are more photos by Lummis and by Tozzer. To be postponed until a later date.', NULL, NULL, NULL, NULL); -- -- Data for TOC entry 83 (OID 561290) -- Name: object; Type: TABLE DATA; Schema: public; Owner: rwb3y -- INSERT INTO object VALUES (4, NULL, '1080758296390', 'Other', 'Structure and Contents of the SAS Library Containing Chaco Canyon Fieldwork Data from 1972-1985. Created by LuAnn Wandsnider, December 1, 1987', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (5, 'None', '1088783496055', 'List-Code', 'List of Material type codes from Chaco Project Data', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (258, 'Pueblo Bonito Excavations', '1089727690635', 'Photograph-Print', 'Three photos mounted on card. Caption reads: "Upper left: West Steps over north wall of east refuse mound enclosure, Pueblo Bonito. 28573-A. Lower left: Eastern flight of steps to top of east refuse mound. #28500. Photos by O. C. Havens, 1924. Above North end o fEast trench, showing base of outer south wall of Room 171 Pueblo Bonito and large fireplace lower down. #34495-A. Photo by O.C. Havens, 1925."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (262, 'Pueblo Bonito Excavations', '1089728943245', 'Photograph-Print', 'Two photos mounted on card. Caption reads: "Upper left: Investigation trench in east mound, Pueblo Bonito. #31991-A. Upper right: Wall beneath refuse mound East trench, Pueblo Bonito #34505-A. Photos by O.C. Havens, 1925."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '2 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (271, 'Pueblo Bonito General Views', '1089732504643', 'Photograph-Print', 'Three photos mounted to card. Caption reads "Upper left: Outer SE corner of Pueblo Bonito, from the South. #28497. Lower left: Clearing debris form outer south wall of Pueblo Bonito. #28369-A. Above: Pueblo Bonito hidden by its refuse mounds. View from S. #38362-A. Photo by O.C. Havens, 1924. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (273, 'Pueblo Bonito General Views', '1089733061979', 'Photograph-Print', 'One photo mounted to card. "Upper left: Shrine rooms at outer S.E. corner of Pueblo Bonito. #23314-A. Photo by Neil M. Judd, 1923." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (280, 'Pueblo Bonito, General Views', '1089740005351', 'Photograph-Print', 'One photo mounted on card. Caption reads: "Excavated portion of Pueblo Bonito at close of 3rd season''s explorations. Photo by E.L. Wisherd, 1923. Negative # 4..." Piece of tape with negative number is paritially ripped off. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (282, 'Pueblo Bonito, General Views', '1089741070233', 'Photograph-Print', 'One print photo on card. Caption reads: "Pueblo Bonito before N.G.S. excavations. View from cliff NW. of Ruin. Photo by Charles Martin, 1920."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (293, 'Pueblo Bonito, Kivas', '1089745441087', 'Photograph-Print', 'Four photos mounted on a card. Captions read: "Excavating Kivas A. and B. Kivas 161 & 162 in foreground. Photo by O.C. Havens, 1921. #11913-A." "Excavating rooms surrounding Kiva B. Photo by O.C. Havens, 1921. #11902-A." "Beginning excavation of Kiva B. View from the south. Photo by Neil . Judd, 1921. #11959-A." "Beginning excavation of Kiva A (from the NE.) Photo by O.C. Havens, 1921. #11896-A."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '4 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (295, 'Pueblo Bonito, Kivas', '1089746242990', 'Photograph-Print', 'Two photos mounted on a card. Captions read: "Upper left: Scraping earth from Kiva A, Pueblo Bonito. view from N.E. #11960-A. Photo by O.C. Havens, 1921." "Lower left: Loading earth scraped from Kiva A, view toward S. #11934-A. Photo by O.C. Havens, 1921."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '2 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (299, 'Pueblo Bonito, Kivas', '1089746869228', 'Photograph-Print', 'Three photos on card. Captions read: "Excavated rooms at south side of Kiva A. Photo by O.C. Havens, 1921. No no." "The same, from the northeast. Photo by Havens, 1921. #7640-A." "Judd in Kiva A at the beginning of excavations. Photo by O.C. Havens, 1921. #7641-A." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (301, 'Pueblo Bonito, Kivas', '1089747123022', 'Photograph-Print', 'Three photos mounted to card. Captions read: "Excavating Kiva A; view from the southeast. Photo by Neil M. Judd, 1921. #11850-A." Handwritten annotation on caption indicates that a square pile of stones in the background sits in Room 146 and a round pile in Room 148. Next photo: "The same. Scraping out earth with team. Photo by Neil M. Judd, 1921. #11925-A." "Kiva A, Pueblo Bonito, as seen from the NW. Photo by O.C. Havens, 1921. #7659-A. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (304, 'Pueblo Bonito, Kivas', '1089748115598', 'Photograph-Print', 'Three photos mounted on card. Caption reads "Views of Kiva A., showing various furnishings. Photo above, by Neil M. Judd, 1921. #7656-A. Photo upper left, Neil M. Judd, 1921. #7670-A. Photo lower left, O.C. Havens, 1921. 11923-A. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (305, 'Pueblo Bonito, Kivas', '1089748353630', 'Photograph-Print', 'Two photos mounted to card. Captions read: "Upper left: Razed kiva walls beneath N.W. quarter of Kiva A floor, Pueblo Bonito; view from N. steps. #39551-A. Above: subfloor kiva walls beneath N.E. pillar, Kiva A, Pueblo Bonito; view from N. steps. #39599-A. Photos by N.M.Judd, 1926." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '2 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (308, 'Pueblo Bonito, Kivas', '1089748700651', 'Photograph-Print', 'Three photos mounted to card. Caption reads "Various views in Kiva B. Above- fireplace & sub-floor chamber. #7672-A. Upper left- excavations in progress; Ruppert removing offerings from pilaster log. View from the east. #11914-A. [in this photo, intact plaster is visible on the kiva bench] Lower left- Trowel work near floor. #7673-A. All photos by Havens, 1921." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (594, 'Pueblo Bonito, Miscellany', '1089742073754', 'Photograph-Print', '2 photos mounted on a card. Caption 1: "N. wall and bench of abandoned 1st type kiva north of kiva 2-C, Pueblo Bonito. #39574-A" Caption 2: "Partially razed 1st type kiva under R. 347, Bonito, with superposed, plastered walls, also partly razed. #38994-A" Photos by N. M. Judd, 1926.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '2 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (117, 'Judd', '00104', 'Not Specified', 'This object entry is obsolete.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, NULL, NULL, 104, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (314, 'Pueblo Bonito, Kivas', '1089812282820', 'Photograph-Print', 'Three photos mounted to card: Captions read: "Above. Bench with two squared pilaster logs; bench recess; ceremonial passage and fireplace (in foreground) of Kiva F. View from the north. 18663-A. Upper Left. Room 277 (above Zuni boy seated on bench of Kiva F) and west wall of Kiva J (in which ladder stands), from the east. 18664-A. Lower left. West wall of Kiva F, showing bench and remains of two squared pilaster logs. 18661-A. Photos by Judd, 1922. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (325, 'Pueblo Bonito, Kivas', '1089813403173', 'Photograph-Print', 'Three photos mounted to card. Caption reads: "Above. Pilaster No. 3 and rebuilt section of Kiva G wall, from the south. 18653-A. Upper left. Walls at NE corner of Kiva G (shown at lower left) 18623-A. Lower left. Partially excavated recess in north bench of Kiva G. 18624-A. Photos by Judd, 1922." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (327, 'Pueblo Bonito, Kivas', '1089813657505', 'Photograph-Print', 'Three photos mounted to card. Caption reads: "Above. Bench and poles on east side of Kiva G, form the west. Rebuilt section of wall shows at right 2/3. Pilaster #1 at right. 18652-A. Upper left. Posts at back of bench on east side of Kiva G. 18626-A. Pilaster #2. Lower left. Bench, pilasters 2 and 3 (left) bench posts on NE side of Kiva G. Rebuilt section of wall shows at left. 18633-A. Photos by Judd, 1922. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (329, 'Pueblo Bonito, Kivas', '1089813891204', 'Photograph-Print', 'Two photos mounted on card. Caption reads: "Upper left: Kiva H from N.E. showing fireplace and ventilator (lower foreground) and So. bench recess. #16258-A. Photo by Judd, 1922. Above: West side of Kiva I, (from upper S. wall) showing portion of sub-floor kiva of San Juan type. #16269-A. Photo by Judd, 1922. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '2 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (338, 'Pueblo Bonito, Kivas', '1089816514291', 'Photograph-Print', 'Two photos mounted on card. Caption reads: "Upper left: South half of Kiva Q, Pueblo Bonito, showing floor furnishings. #28480A. Lower left: South chamber and steps, Kiva Q, Pueblo Bonito. #28476A. Photos by O.C. Havens, 1924. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '2 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (341, 'Pueblo Bonito, Kivas', '1089816707960', 'Photograph-Print', 'Three photos mounted to card. Caption reads: "Upper left: Completing excavation of Kiva Q, Pueblo Bonito; arc of Kiva R. in left foreground. [handwritten annotation: "copy Neg # 2003-23432"] #28444-A. Lower left: Excavating Kiva Q.,[handwritten annotation "Lower left copy Neg # 2003-23433] Pueblo Bonito #28445-A. Above: Repairing north wall of Kiva Q, Pueblo Bonito #28511-A. Photos by O.C. Havens, 1924. ', 1, 'Annotations on caption indicate that the second picture described above (#28445-A) was published in National Geographic Sept. 1925 p. 230. The last photo (#28511-A) was published in same issue, p. 228. ', 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (348, 'Pueblo Bonito Pottery', '1089818708778', 'Photograph-Print', 'Photo of 4 cylinder vessels. On back of photo is written "5016-B". Not sure if that is a negative number or not. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (351, 'Pueblo Bonito, Pottery', '1089819432131', 'Photograph-Print', 'Photo of 6 bowls with the following numbers appearing over top, 1957, 1955, 2102, 1624, 1954, 2113. No other notes are present. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (350, 'Pueblo Bonito Pottery', '1089819059163', 'Photograph-Print', 'Photo of what appears to be two large constricted neck seed jars with numbers 324801 and 324837 handwritten beneath them. Not sure if these are object numbers of some sort or not. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (353, 'Pueblo Bonito, Pottery', '1089819709947', 'Photograph-Print', 'Photo showing 6 bowls with the following numbers written beneath them: 1354, 1896, 194, 1677 1962, 2151. The numbers are probably specimen or object numbers. No other information is on the photo. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (354, 'Pueblo Bonito, Pottery ', '1089819841163', 'Photograph-Print', 'Photo of 6 bowls with the following numbers written beneath them. 1637, 1639, 1642, 1640, 892, 1124. Nothing more is written on the photo. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (356, 'Pueblo Bonito, Pottery', '1089820287475', 'Photograph-Print', 'Photo of three Ollas, the following numbers are written beneath them; 1011, 1477 and 1610, respectively. These are probably specimen or object numbers. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (358, 'Pueblo Bonito, Pottery', '1089820444378', 'Photograph-Print', 'Photo showing 7 bowls. The top row of bowls is annotated "Black Interior". The following numbers appear over each of the bowls, respectively: 1660, 1465, 1965 and 1645. The lower row, contains three bowls and is annotated "Black on Red". These bowls have the following numbers written beneath them, respectively: 1475, 1671 and 1573. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (360, 'Pueblo Bonito, Pottery', '1089825088040', 'Photograph-Print', 'Photo of 3 bowls with the following numbers beneath them: 869, 1653 and 1627. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (361, 'Pueblo Bonito, Pottery', '1089825207100', 'Photograph-Print', 'One photo of 9 cylinder vessels in two rows. The top row has five vessels with the following numbers written above them: 1856, A-126, 2156, 1849, and 1980. The four on the bottom row have the following numbers written below them: 1850, 1855, 1848, 1851. There is no other information on the photo. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (362, 'Pueblo Bonito, Pottery', '1089825405127', 'Photograph-Print', 'Photo of four cylinder vessels with the following numbers written beneath them: 1351, 1394, 1662, 1350. No other information is provided on the photo. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (363, 'Pueblo Bonito, Pottery', '1089825516414', 'Photograph-Print', 'Photo of six bowls in two rows of three bowls each. The top row has the following numbers written beneath them: 1858, 1964, and 1959. The bottom row has the following numbers written beneath them: 558, 1467 and 2169. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (366, 'Pueblo Bonito, Pottery', '1089825778112', 'Photograph-Print', 'Photo with 6 shouldered pitchers in two rows. The top row of three pitchers has the following numbers written above them: 1615, 1618 and 1395. The bottom row has the following numbers written beneath them: 1617, 1977, 1976. There is no other information on the photo. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (374, 'Pueblo Bonito, Pottery', '1089826848695', 'Photograph-Print', 'Photo of three bowls with the following numbers written beneath them: 1466, 557, 900. There is no other information on the photo.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (376, 'Pueblo Bonito, Pottery', '1089826963325', 'Photograph-Print', 'Photo of 11 shouldered and long-necked pitchers. The top row of 6 pitchers has the following numbers written below them: 1972, 1889, 1971, 1970, 2154, 1619. The bottom row of 5 (larger) pitchers has the following numbers written below them: 1887, 1620, 1616, 1621 and 1885. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (378, 'Pueblo Bonito, Pottery', '1089827108120', 'Photograph-Print', 'Photo of 6 bowls in two rows of three each. The top three have the following numbers written beneath them: 888, 1644, and 1636. The bottom row have the following numbers written beneath them: 1900, 1676, and 1901. There is no other information on the photo. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (379, 'Pueblo Bonito, Pottery', '1089827256258', 'Photograph-Print', 'Photo of 6 bowls in two rows. The top row of three bowls has the following numbers written beneath them: 1635, 880, 872. The bottom row has the following numbers written beneath them: 874, 1958, 1125. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (380, 'Pueblo Bonito, Pottery', '1089827404017', 'Photograph-Print', 'Photograph of 6 bowls in two rows. Top row of three bowls has the following numbers written above them: 1656, 1956, and 1629. The bottom row of three bowls has the following numbers written below them: 1654, 1352 and 1130. There is no other information on the photo. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (381, 'Pueblo Bonito, Pottery', '1089827636104', 'Photograph-Print', 'Photograph of 9 long-necked and shouldered pitchers arranged in two rows. The top row of 5 (smaller) pitchers has the following numbers written above them: 1670, 1361, 1622, 1372 and 1365. The bottom row of 4 (larger) pitchers has the following numbers written beneath them: 1400, 2138, 1399 and 1357. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (368, 'Ruins: Chaco Canyon', '1089826227025', 'Photograph-Print', 'Caption: "Incised lines on plaster of N. wall room 41, del Arroyo, Ruppert 1925, No Neg."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (382, 'Pueblo Bonito, Pottery', '1089827829152', 'Photograph-Print', 'Photo of 6 shouldered pitchers arranged in two rows. Top row has the following numbers written above the pitchers: 1668, 1847, and 1338. The bottom row of three pitchers has the following numbers written below them: 1859, 1667 and 2136. There is no other information on the photo. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (391, 'Pueblo Bonito, Pottery', '1089829685340', 'Photograph-Print', 'Photo of 5 shouldered and long-necked pitchers and one effigy pitcher in two rows. Crossed out, handwritten description on the back reads "Pitchers from prehistoric Pueblo Bonito. the duck-shaped vessel [what I call effigy pitcher] in the lower row is 5 1/4" high. Photo by Charles Martin, Courtesy of the National Geographic Society. Neg. # 5015-B. Note on the bottom says "Reduce to 4 1/8 inches". There are 2 copies of this photo. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (393, 'Pueblo Bonito, Pottery', '1089831260947', 'Photograph-Print', 'Photo of 5 bowls arranged in two rows. Description on the back reads: "The ancient potters of Pueblo Bonito ornamented their food bowls with a wealth of geometric design. The vessel at the lower right is 6 1/2 " in diameter; others in the collection vary from 2" to 13". Negative Number 5017-B. Photo by Charles Martin. Courtesy of the National Geographic Society." There is also a note requesting that the photo be reduced to 4 1/8".', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (409, 'Pueblo Bonito, Rooms', '1089834318257', 'Photograph-Print', 'One photo mounted on card. Caption reads: "Room 44B from NE. 1st type S wall of 48-50 at lower right; at upper left, 4th type S. wal of R. 44C as exterior of Kiva 16 enclosure. Photo by O.C. Havens, 1921. Neg. 11849A." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (422, 'Pueblo Bonito, Rooms', '1089835666098', 'Photograph-Print', 'One photo mounted to card. Caption reads: "Upper left: Room 92 Door to Room 3d, from West. Photo by Judd, 1922. #18636-A." No other information on photo. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (435, 'Pueblo Bonito, Rooms', '1089898763614', 'Photograph-Print', 'Two photos mounted to card. Caption 1: "Left: Partially blocked door in W. wall of R. 175, Pueblo Bonito. #39555-A." Caption 2: "Right: Partially blocked door in N. wall of R. 175, Pueblo Bonito. #39592-A. Photos by Neil M. Judd, 1926."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '2 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (476, 'Pueblo Bonito, Rooms', '1089903378149', 'Photograph-Print', 'Three photos mounted to card. Caption 1: "Above: N. wall of R. 265. #16270-A. Photo by Judd, 1922." Caption 2: "Upper left. ''Pot Holes'' (pot shaped storage cists) beneath floor of R. 266. 18621-A." Caption 3: "Lower left. Pot-holes or storage cists under floor of R. 266; view from the south. 18669-A. Photos by Judd, 1922."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (433, 'Pueblo del Arroyo', '1089898510482', 'Photograph-Print', '2 photos mounted on a card. Caption 1: "Room 324 with fireplace at lower right, Pueblo Bonito. #28373-A." Caption 2: "Southeast corner of Room 324, showing east door, fireplace and sub-floor kiva. #28439-A." Photos by O.C. Havens', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '2 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (490, 'New Mexico: Ruins, Chaco Canyon, Braced-up Cliff', '1089905622089', 'Photograph-Print', 'Photo of Pueblo Bonito from Mesa top after the fall of Braced-up cliff. Handwritten note on back reads: "PB after fall of Braced-up cliff. Courtesy of NPS." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (493, 'Hyde Expedition: Misc. Chaco Canyon Photographs', '1089906069926', 'Photograph-Print', '1 image of stairway in cliff east of Chettro Kettle.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (494, 'Hyde Expedition: Misc. Chaco Canyon Photographs', '1089906181915', 'Photograph-Print', '1 photo. Caption reads "Irrigation ditch. 1899 - near Kin Neole, N.M"', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (495, 'New Mexico: Ruins Chaco Canyon, braced-up Cliff', '1089906118611', 'Photograph-Print', '2 photos of the back of Pueblo Bonito looking WSW and E. Snow is on the ground. Notes on back indicate that these are 1958 prints of Mindeleff photos from 1887. "BAE 3022" is written on the back of the photo looking WSW. A Stamp on this same photo says "If Reproduced Credit Should be Given to the Smithsonian Institution." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '2 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (496, 'Hyde Expedition: Misc. Chaco Canyon Photographs', '1089906367690', 'Photograph-Print', '6 General architecture overview shots, including: Una Vida, Fajada Butte, Cliff House, Hungo Pavie, Chettro Kettle, and mound west of Wegiji.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '6 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (499, 'New Mexico: Ruins Chaco Canyon, braced-up Cliff', '1089911067456', 'Photograph-Print', 'Photo of what appears to be excavations of wall(s?) abutting the back of Pueblo Bonito. May be after the fall of Braced-up Cliff as large chunk of stone appears very near back wall of Pueblo Bonito. There is a number on the back of the photo, 23319-A. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (519, 'Pueblo Bonito: Miscellany', '1089914901650', 'Photograph-Print', '1 print. Caption reads: "Large Kiva - O. NE Court. South of Kiva #75. NMJ."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (525, 'Cosmos Mindeleff Photos with annotations by Judd', '1089916101073', 'Photograph-Print', 'Copy of a Mindeleff photo annotated by Judd. Notes on back read: "Bonito, Mindeleff - 1887 BAE Bonito - 3rd story wall in foreground stands @ NW corner of R. 200; nearest door opens into unnumbered room between 100 and 200. Ceiling poles to outside?" ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (528, 'Pueblo Bonito: Debris, mid-sections', '1089916453049', 'Photograph-Print', '6 prints. These images show a trench dug through the refuse mounds in front of Bonito at various stages of completion. There are some overview shots. One image shows a close up of the staircase leading up the mound. This caption reads: "Steps in large refuse heap, Bonito." 2 images show close-ups of stratigraphy. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '6 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (521, 'Pecked Beam rests in Cliff (East of Pueblo Bonito?)', '1089915049924', 'Photograph-Print', '2 prints. Caption 1: "Holes in cliff for ends of roof poles. (later note) Just West of Bonito - Part of prehistoric ramp. Tom Windes, Chaco Center, NPS, 18 Jan 78." Caption 2: "Showing holes in large rock for roof timbers." - Editorial note - there is not indication of where in the canyon this is - presumably they are both from near Pueblo Bonito?', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '2 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (524, 'Cosmos Mindeleff Photos with annotations by Judd', '1089915733773', 'Photograph-Print', 'Copy of Mindeleff photo with Judd''s notes on back. Notes read: "Bonito Mindelef - 1887 BAE. West side Bonito - outer S. wall of R. 325 in R. foreground; R. 319 next on L.: excavation @ L. is in N. end of R. 116. NMJ 5/5/55." Another note not in Judd''s writing reads: "New Mex. 160". ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (517, 'Pueblo Bonito: Miscellany', '1089914813032', 'Photograph-Print', '1 print. Caption reads: "2nd story N. door in room N. of R. 296. NMJ"', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (523, 'Cosmos Mindeleff Photos with annotations by Judd', '1089915512878', 'Photograph-Print', 'Copy of Mindeleff photo annotated by Judd. Notes on back of photo read: "Bonito Mindeleff - 1887 BAE Southwest corner of room # 180, second floor; doorway in corner leads into room #242 B. Wall @ left above door, now fallen. Ok. NMJ 5/5/55." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (516, 'Pueblo Bonito: Miscellany', '1089914666492', 'Photograph-Print', '1 print. Caption reads: "SW corner doorway, R. 178. Compare NGS Neg. 3235A by Martin, 1920." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (515, 'Pueblo Bonito: Miscellany', '1089914509190', 'Photograph-Print', '1 print. Caption reads: "S. 3rd story R. 228. View S.W."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (512, 'Pueblo Bonito: General Views', '1089913456636', 'Photograph-Print', '1 print. Caption reads: "Western end of Bonito. Shows worked rooms (2,1,7,8)."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (509, 'Pueblo Bonito: General Views', '1089913180939', 'Photograph-Print', '1 print. Caption reads: "View of excavated (N) rooms. Looking West (SW) NMJ. Pepper, 1920, fig.31, p. 87"', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (508, 'Pueblo Bonito: General Views', '1089913037082', 'Photograph-Print', '1 print. Caption reads: "(Kiva 16) R.17 (NGS 211) before excavation showing metate. Kiva Q left foreground. W. wall of R. 17 in middle." The # 73 is written in pencil.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (507, 'Pueblo Bonito: General Views', '1089912795136', 'Photograph-Print', '19 prints (plus 2 negatives). Most of the photos contained in this file seem to be Pepper''s photos from 1920 - taken from north cliff. These 19 are all general shots of large areas of Pueblo Bonito.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '19 prints, 2 negatives', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (529, 'Cosmos Mindeleff Photos with annotations by Judd', '1089916958481', 'Photograph-Print', 'Copy of Mindeleff photo annotated by Judd. Notes on back read: "Mindeleff. 1887. N. wall of Pueblo Bonito from NE. Braced-up Cliff @ R." Stamp on back reads "Photograph from the Smithsonian Institution." Another note reads: "N.M.-170." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (492, 'Hyde Expedition: Misc Chaco Canyon Photographs', '1089905889554', 'Photograph-Print', '1 photo of the stairway in mesa behind Hungo Pavie.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (530, 'Cosmos Mindeleff Photos with annotations by Judd', '1089917116646', 'Photograph-Print', 'Copy of Mindeleff photo annotated by Judd. Notes on the back read: "Bonito BAE Mindeleff 1887 Kiva F in foreground Blocked door (center) in NE wall of R. 174 B (?) Inner NE quarter. NMJ 5/5/55 High wall @ R. above E. cor. of R. 260(?)" Another note not in Judd''s writing reads: "New Mex 176." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (532, 'Pueblo Bonito: Rooms 1-25', '1089917489472', 'Photograph-Print', '1 print. Caption: "R. 20. Sealed doorway. Pepper, 1920, fig. 32, p.88." This image shows a pile of offerings on the doorway sill.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (533, 'Cosmos Mindeleff Photos with annotations by Judd', '1089917533528', 'Photograph-Print', 'Copy of Mindeleff photo with annotations by Judd. Notes on back read: "Baggage in front of door to R. 14b." Other notes on back read "Neg. New Mexico 163 N. wall Pueblo Bonito from west V. Mindeleff." Stamps on the back say "Bureau of American Ethnology" and "Photo... Smithsonian Instititution." Also, "N.M. 163" appears handwritten on the back. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (535, 'Cosmos Mindeleff Photos with annotations by Judd', '1089917812991', 'Photograph-Print', 'Copy of Mindeleff photo annotated by Judd. Notes on the back read: "Bonito Mindeleff - 1887 BAE Outer SW corner of Bonito looking N. All walls since fallen. NMJ 5/5/55." Also handwritten on the back is "New Mex. 177." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (538, 'Pueblo Bonito: Rooms 1-25', '1089918074656', 'Photograph-Print', '1 print. Caption: "R. #3. Interior of square kiva. Pepper, 1920, fig. 9, p. 41."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (539, 'Pueblo Bonito: Rooms 1-25', '1089918199836', 'Photograph-Print', '1 print. Caption: "R. #5, 4 and 5. Pepper 1920, fig. 10, p. 42"', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (540, 'Cosmos Mindeleff Photos with annotations by Judd', '1089918221256', 'Photograph-Print', 'Copy of Mindeleff photo annotated by Judd. Photo shows 10 horsemen on top of Bonito ruins. Notes on back read: "Bonito Mindeleff 1887 BAE. Above left horseman shadowed NW corner, R. 173 B-C; highest wall in middle, is 3rd story @ NW. cor. R. 175. NMJ 5/5/55. Group @ SE corner Bonito." Also handwritten on back "New Mex 165". ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (541, 'Pueblo Bonito: Rooms 1-25', '1089918324455', 'Photograph-Print', '2 prints. Both images bear a caption that reads "R. 13. Sand Painting." Hard to see the painting in this image...', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '2 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (546, 'Pueblo Bonito: Rooms 1-25', '1089918847657', 'Photograph-Print', '3 prints. These are images of room 25. 1 view of the NE corner, 1 view of the east wall, one view of both the east wall and NE corner (broader shot).', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (549, 'Cosmos Mindeleff photos with annotations by Judd', '1089919619573', 'Photograph-Print', 'Copy of Mindeleff photo annotated by Judd. Notes on back read: "Bonito BAE, Mindeleff - 1887. Chettro Ketle S. wall of outer N. tier? from SE NMJ, 2nd or 3rd story." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 photo ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (550, 'Pueblo Bonito: Rooms 26-44', '1089919400800', 'Photograph-Print', '1 print. Caption: "Paint room. NW corner. NMJ. Pepper, 1920, fig. 41, p. 113."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (551, 'Cosmos Mindeleff photos with annotations by Judd', '1089919850259', 'Photograph-Print', 'Copy of Mindeleff photo annotated by Judd. Notes on back read "Bonito BAE Mindeleff - 1887 Chettro Kettle, from NW NMJ." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (552, 'Cosmos Mindeleff photos with annotations by Judd', '1089919989956', 'Photograph-Print', 'Copy of Mindeleff photo annotated by Judd. Note on back reads: "Bonito Mindeleff - 1887 BAE Chettro Kettle Outer N. Wall NMJ" Although the photo has both Bonito and Chettro Kettle written on it, it appears to be Chettro Kettle. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (553, 'Cosmos Mindeleff photos with annotations by Judd', '1089920179547', 'Photograph-Print', 'Copy of Mindeleff photo annotated by Judd. Notes on back read: "Mindeleff - 1887 BAE. Una Vida. SW corner from SW NMJ." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (555, 'Cosmos Mindeleff photos with annotations by Judd', '1089920296835', 'Photograph-Print', 'Copy of Mindeleff photo annotated by Judd. Notes on back read: "Mindeleff - 1887 BAE Una Vida SW corner from SE Middle block and that @ right now fallen." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 photo ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (557, 'Cosmos Mindeleff photos with annotations by Judd', '1089920504321', 'Photograph-Print', 'Copy of Mindeleff photo annotated by Judd. Notes on back read: "Mindeleff 1887 BAE Del Arroyo from S.E. BAE no. New Mexico # 147. South wing of Pueblo del Arroyo from SE." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (560, 'Pueblo Bonito: Rooms 26-44', '1089920860265', 'Photograph-Print', '1 print. Room 44. No other information given.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (561, 'Cosmos Mindeleff photos with annotations by Judd', '1089920935491', 'Photograph-Print', 'Copy of Mindeleff photo annotated by Judd. Notes on back read: "Bonito Mindeleff 1887. BAE. BAE no. New Mexico #146. Outer N. wall of Pueblo del Arroyo from N.E. NMJ, 5/5/55."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 photo ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (564, 'Cosmos Mindeleff photos with annotations by Judd', '1089921202069', 'Photograph-Print', 'Copy of Mindeleff photo annotated by Judd. Notes on back read: "Bonito BAE pl.15A Mindeleff 1887, South wall of Pueblo del Arroyo view from SE, BAE no. New Mexico # 224." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (566, 'Pueblo Bonito: Rooms 26-44', '1089921317051', 'Photograph-Print', '1 print. Caption: "R. 35. (NE corner of room - NMJ) N. End."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (567, 'Pueblo Bonito: Rooms 26-44', '1089921405431', 'Photograph-Print', '1 print. Caption: "R.#36. Bonito, View looking north." (door at L. opens into 2nd story of R. 2 - NMJ). Pepper, 1920, fig.80, p.181."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (569, 'Pueblo Bonito: Rooms 26-44', '1089921504799', 'Photograph-Print', '1 print. Caption: "R.#37 - NW corner. Pepper, 1920, Fig. 81, p. 182. (Door at R. opens into 2nd story of R. 4-5 - NMJ)."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (571, 'Cosmos Mindeleff photos with annotations by Judd', '1089921549272', 'Photograph-Print', 'Copy of Mindeleff photo annotated by Judd. Photo has sheet of paper with notes attached to back. Notes read: "pl. 16B Northeast corner of north wing, with second sotry ceiling beams projecting from outer north wall. Photograph by Victor Mindeleff, 1887. Courtesy of Bureau of American Ethnology. NM #144." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (577, 'Pueblo Bonito: Rooms 26-44', '1089922091327', 'Photograph-Print', '1 print. Caption: "R.#40 Bonito, view looking north. ''Bin'' is entry to S. door in 1st type room under R.28 - NMJ. At shadow edge at right, ''mosaic'' of chips in outer 1st type wall below ceiling level of R.28a."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (578, 'Pueblo Bonito: Rooms 26-44', '1089922251227', 'Photograph-Print', '1 print. Caption: "R.#41. View north."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (579, 'Pueblo Bonito: Rooms 26-44', '1089922319528', 'Photograph-Print', '1 print. Caption: "R.#42. View N.W. Pepper, 1920, fig.88, p.202"', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (580, 'Cosmos Mindeleff photos with annotations by Judd', '1089922245562', 'Photograph-Print', 'Copy of Mindeleff photo annotated by Judd. Stamp at the top reads "Photograph from the Smithsonian Institution" "N.M. 144" is written at the top. "Outer N. wall of Pueblo del Arroyo from NE." "pl. II-91". ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 photo ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (581, 'Pueblo Bonito: Rooms 26-44', '1089922390912', 'Photograph-Print', '1 print. Caption: "R.#42. View N.West"', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (611, 'Cosmos Mindeleff photos with annotations by Judd', '1090331647641', 'Photograph-Print', 'Copy of Mindeleff photo annotated by Judd. Notes on back of photo read: "BAE, Mindeleff 1887 Neg. 143. Outer N. wall of Pueblo del Arroyo, only lower 2'' of stonework with 4'' @ right now remains. Stones @ lower right served as identification. NMJ 5/5/55."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 photo.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (612, 'Cosmos Mindeleff photos with annotations by Judd', '1090332030006', 'Photograph-Print', 'Copy of Mindeleff photo annotated by Judd. Notes on back of photo read: "Bonito. BAE. Mindeleff 1887. South wall of Pueblo del Arroyo. View from SE. pl. 15A. BAE No. New Mexico #224."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 photo.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (614, 'Pueblo Bonito: Rooms 54-75', '1090332339343', 'Photograph-Print', '1 photo. Caption: "R #55. West wall. View west. (NW corner, 2nd type repairs @R. - NMJ).', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (543, 'Pueblo Bonito: Rooms 1-25', '1089918470799', 'Photograph-Print', '1 print. Caption: "R. 14B (kitchen) ceiling. Pepper, 1920, fig. 25, p. 74." This is a close-up of ceiling construction - shows latillas and matting. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (615, 'Cosmos Mindeleff photos with annotations by Judd', '1090332212571', 'Photograph-Print', 'Copy of Mindeleff photo annotated by Judd. Stamp on back: "Photograph from the Smithsonian Institution." Handwritten notes read: "Outer NW corner of Pueblo del Arroyo from NW. Pueblo Bonito in L. distance. NMJ." Two other notes on back of photo: "251" and "II-91?". ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 photo.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (616, 'Pueblo Bonito: Rooms 54-75', '1090332464082', 'Photograph-Print', '1 photo. Caption: "Hosa Luba looking out of room #56, Bonito. [in R.53? Doesn''t agree with Pepper''s placement of W. door, to R. 56. But S. wall of R.61 was ''built around upright stakes'' (Pepper, 1920, p.222.) see also, R.63 (p.236).]" Shows ceiling support posts. One post seems to have some kind of thatching wrapped around it.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (620, 'Pueblo Bonito: Rooms 54-75', '1090333006454', 'Photograph-Print', '1 photo. Caption: "R.#59 Pueblo Bonito." This is a key-hole shaped kiva.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (622, 'Cosmos Mindeleff photos with annotations by Judd', '1090332902120', 'Photograph-Print', 'Copy of Mindeleff photo annotated by Judd. Handwritten notes in pencil on a piece of paper taped to the back of the photo read: "Bonito. Mindeleff 1887. BAE. pl. 16B. Northeast corner of north wing, with second-story ceiling beams projecting from outer north wall. Photograph by Victor Mindeleff, 1887. Courtesy of the ["the" is crossed out] Bureau of American Ethnology. NM #144. 19." Underneath this taped paper are handwritten notes in pencil on the actual back of the photo, which read: "BAE New Mexico #144. (no. ok)[the "(no ok)" is crossed out]. Outer N. wall of Pueblo del Arroyo from NE. NMJ." "3296 old no." is crossed out.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 photo.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (624, 'Cosmos Mindeleff photos with annotations by Judd', '1090333535982', 'Photograph-Print', 'Copy of Mindeleff photo annotated by Judd. Stamp on back of photo reads: "Photograph from the Smithsonian Institution." Handwritten notes on back of photo read: "NM - 147. South wing of Pueblo del Arroyo from SE. - NMJ. pl. 1."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (625, 'Cosmos Mindeleff photos with annotations by Judd', '1090333745991', 'Photograph-Print', 'Copy of Mindeleff photo annotated by Judd. Stamp on back reads: "Photograph from the Smithsonian Institution." Handwritten note in pencil in corner on back of photograph reads "NMJ 146." We are fairly certain that this photo is of Pueblo del Arroyo.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 photo.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (623, 'Pueblo Bonito: Rooms 54-75', '1090333097554', 'Photograph-Print', '7 photos of room 60. Caption 1: "Doorway closed. N. wall of room 60." (2 copies of this photo). Caption 2: "R #60. SW corner." Caption 3: "R #60. View south. Jar in situ." Shows intact plaster. Caption 4: "R #60." No other caption. This photo shows an underlying cross wall which parallels the east (?) wall? Caption 5: "R. #60 East end, Pueblo Bonito." Caption 6: "R #60 West End."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '7 photos (includes 1 duplicate)', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (628, 'New Mexico: Ruins Chaco Canyon Small house on arroyo bank', '1090334101821', 'Notes-Miscellaneous', 'One page of handwritten notes included in a folder with pictures of a small house ruin on the arroyo bank near Pueblo del Arroyo. The notes refer to an object found at this site. "Chaco-small-house ruins. Jet pendant # 335610 (189) 1 3/4 X 1 3/16 X 3/8 found on small ruin, S. bank, opp. P. del Arroyo by Earl H. Morris 1921. Ill. in pl. 13(?) Chapt. III PB vol. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 page', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (630, 'Cosmos Mindeleff photos with annotations by Judd', '1090334221574', 'Photograph-Print', 'Copy of Mindeleff photo with annotations by Judd. Stamp on back of photo reads: "Photograph from the Smithsonian Institution." Handwritten notes on back of photo read: "145. S. wall of R. 49B (?) P. del Arroyo from N. Mindeleff 1877. pl. 15B." A crossed out note reads: "II-45".', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 photo.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (627, 'Cosmos Mindeleff photos with annotations by Judd', '1090334081499', 'Photograph-Print', 'Copy of Mindeleff photo with annotations by Judd. Handwritten notes on back read: "N. M. 144. pl. 16B." We are fairly certain that this photo is of Pueblo del Arroyo.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 photo.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (631, 'New Mexico: Ruins Chaco Canyon Small house on arroyo bank', '1090334372801', 'Photograph-Print', 'Photo with handwritten notes on back. Notes read: "Chaco Canyon Nat. Monument, N.M. Chaco Cayon arroyo near Pueblo del Arroyo; shows remains of small ''arroyo ruin'' on W. bank. (photo by Neil . Judd, 8/29/29.)" Handwritten note underneath reads: "personal". ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (633, 'Cosmos Mindeleff photos with annotations by Judd', '1090334460689', 'Photograph-Print', 'Copy of Mindeleff photo with annotations by Judd. Stamp on back of photo reads: "Photograph from the Smithsonian Institution." Handwritten notes in pencil on back of photo read: "N. M.-144. Outer N. wall of Pueblo del Arroyo from NE. pl. II-91".', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 photo.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (562, 'Cosmos Mindeleff photos with annotations by Judd', '1089921058555', 'Photograph-Print', 'Copy of Mindeleff photo annotated by Judd. Notes on back read: BAE Mindeleff 1887 Neg. 143. Outer N. wall of Pueblo del Arroyo. Only lower 2'' of stonework with 4'' @ right now remains. Stones @ lower right served as identification. NMJ 5/5/55". Two copies of this photo: one with notes above, and the other with stamp on back that reads: "Photograph from the Smithsonian Institution" and a handwritten note that reads: "N. Mex - 143."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '2 photos.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (636, 'Pueblo Bonito: Rooms 54-75', '1090334660050', 'Photograph-Print', '1 photo. Caption: "NW corner of Room #66. Bonito." This image shows a square pit in the floor (?), and various niches in the north and west walls. Also shows intact plaster with smoke-blackening (?).', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (642, 'Pueblo Bonito: Rooms 54-75', '1090335759999', 'Photograph-Print', '1 photo. Caption: "R. #70. Pueblo Bonito. North wall." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (645, 'Cosmos Mindeleff photos with annotations by Judd', '1090335817394', 'Photograph-Print', 'Copy of Mindeleff photo annotated by Judd. Handwritten notes on back of photo read: "Mindeleff 1887. BAE. New Mex. 181. Bonito, Room 200. fr. SE. 2nd & 3rd story masonry @ NW. cor. of R. 200. -NMJ 5/5/55. 3301." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (646, 'Pueblo Bonito: Rooms 54-75', '1090336040349', 'Photograph-Print', '1 photo. Caption: "R #72."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (647, 'Cosmos Mindeleff photos with annotations by Judd', '1090336125262', 'Photograph-Print', 'Copy of Mindeleff photo annotated by Judd. Handwritten notes on back of photo read: "Bonito. Mindeleff 1887. BAE. New Mex 173. Bonito - R. 113 in foreground. At L. center, inner SW corner of R. 113 with E & W. walls @ S. end of R. 96 beyond. Outer or W. wall of R. 96 had fallen prior to Hyde Exped. Neg. 492. N. unit of Pueblo del Arroyo in R. background - NMJ 5/5/55. 3149."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 photo.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (649, 'Cosmos Mindeleff photos with annotations by Judd', '1090336399457', 'Photograph-Print', 'Copy of Mindeleff photo annotated by Judd. Handwritten notes on back of photo read: "Mindeleff 1887 - Pueblo Bonito. BAE. New Mex 159. Standing wall, left foreground is outer SE cor. of unnumbered room E. of R. 116. High wall in middle (dressed stones) @ E. junction of Rs. 115 & 116, above SW. cor. of R. 118. NMJ 5/5/55. 3170."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 photo.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (652, 'New Mexico: Ruins Chaco Canyon aerial photographs by Lindbergh', '1090336713485', 'Photograph-Print', 'One photo. Notes on back read: "Chaco Canyon Pueblo Bonito. Lindbergh". Picture is aerial photo of Pueblo Bonito. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 photo ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (656, 'Cosmos Mindeleff photos with annotations by Judd', '1090336911973', 'Photograph-Print', 'Copy of Mindeleff photo annotated by Judd. Handwritten notes on back of photo read: "Mindeleff 1887. BAE. Pueblo Bonito. High wall @ L. is ["3rd story" is crossed out here] SE wall of R. 184C view fr. NE. NMJ 5/5/55. 3207." There is a note written in pencil that is crossed out, which reads: "Chaco Canyon ruin, probably"', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 photo.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (658, 'Cosmos Mindeleff photos with annotations by Judd', '1090337169543', 'Photograph-Print', 'Copy of Mindeleff photo annotated by Judd. Handwritten notes written on back of photo read: "Mindeleff 1887. BAE. New Mex 155. Outer N. wall of Bonito showing ancient rebuilding. Blocked door (R) (light lintel) & ventilator @ R. are in R. 297B. Open vent. next on L. (above middle of large break) & blocked vent. @ L. of center are in unnumbered 2nd story room E. of 297. 3rd hole from lower L. pierces outer wall 2nd room E of 297. NMJ 5/4/55. 3209."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (659, 'New Mexico: Ruins Chaco Canyon aerial photographs by Lindbergh', '1090337442433', 'Photograph-Print', 'Lindbergh aerial photo of Chetro Ketl. Notes on the back of the photo read: "Chaco Canyon - Chettro Kettle." There is also a "54" with a checkmark underneath written in the center of the back of the photo. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 photo ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (660, 'Cosmos Mindeleff photos with annotations by Judd', '1090337479440', 'Photograph-Print', 'Copy of Mindeleff photo annotated by Judd. Handwritten note on back reads: "Mindeleff 1887. BAE. Holes broken through outer north wall of Bonito. NMJ 5/4/55. N. outside of unexcavated room N. of R. 87. 3214."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (661, 'Cosmos Mindeleff photos with annotations by Judd', '1090337679332', 'Photograph-Print', 'Copy of Mindeleff photo, annotated by Judd. Handwritten notes on back of photo read: "Bonito. Mindeleff - 1887. BAE. New Mex. 154. High wall in foreground above NW. corner, R. 200: Half blocked door @ L. opened into R. 202. NMJ - 5/4/55. 3292."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 photo.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (662, 'New Mexico: Ruins Chaco Canyon aerial photographs by Lindbergh', '1090337827121', 'Photograph-Print', 'Lindbergh photo of canyon. Notes on the back read "Excavations - Chaco Canyon intersections of As and Bs and Cs S. side of Chaco about 9 mi. E. of Bonito." In center of first photo is written "24" with a checkmark underneath. The photo shows 1 small ruin inthe left center and what might be excavation trenches near the bank of an arroyo. Other photo with same notes on the back doesn''t appear to show any excavations. It is unclear what "As and Bs and Cs" is meant to indicate. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '2 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (667, 'New Mexico: Ruins Chaco Canyon aerial photographs by Lindbergh', '1090343453560', 'Photograph-Print', 'Lindbergh aerial photo of Pueblo del Arroyo. Notes on the back read: "Chaco Canyon - Pueblo del Arroyo." In center of photo on back is "22" written with a checkmark underneath. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (668, 'New Mexico: Ruins Chaco Canyon aerial photographs by Lindbergh', '1090343654477', 'Photograph-Print', 'Lindbergh aerial photo of Wijiji. Notes on the back of photo read: "Chaco Canyon - Ruins at intersection of A. Weje-gi." Underneath, in center of back of photo is "25" with a checkmark underneath it. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (671, 'New Mexico: Ruins Chaco Canyon aerial photographs by Lindbergh', '1090344725683', 'Photograph-Negative', 'Negative of Lindbergh aerial photo of Pueblo Bonito. There are no notes associated with the negative. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 negative', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (673, 'Pueblo Bonito: Rooms 76-100 and Dark room east of 100', '1090344960013', 'Photograph-Print', '1 photo. Caption: "R #81. From southern bank" Image shows 2 niches: 1 very small - oval on the horizontal axis, the other is square.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (674, 'Pueblo Bonito: Rooms 76-100 and Dark room east of 100', '1090345094320', 'Photograph-Print', '2 photos of room 82. Caption 1: "R #82. Looking north." Caption 2: "R #82 Pitcher and bowls." This image also shows quite a few long bones. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '2 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (676, 'New Mexico: Ruins Chaco Canyon aerial photographs by Lindbergh', '1090345459499', 'Photograph-Print', 'Lindbergh aerial photo of Pueblo Bonito. Notes on the back read: "Chaco Canyon - Pueblo Bonito in middle." In center on back is "32" with a checkmark beneath. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (677, 'New Mexico: Ruins Chaco Canyon, aerial photographs by Lindbergh', '1090345877973', 'Not Specified', 'Lindbergh aerial photograph of Pueblo Bonito. Casa Rinconada and Pueblo del Arroyo are also visible. Notes on the back read "Chaco Canyon Circular excavation in right hand lower corner is Casa Rinconada. Pueblo Bonito in middle." In center of photo is a number "31" with a checkmark underneath. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (680, 'Pueblo Bonito: Rooms 76-100 & Dark room east of 100', '1090345984801', 'Photograph-Print', '1 photo. Caption: "R #83-5"', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (682, 'New Mexico: Chaco Canyon (Pueblo Bonito) - restoration models', '1090345888444', 'Illustration-Architechture', 'Four copies of a pencil drawing of the "Jackson model" of Pueblo Bonito, a reconstruction. 3 of the copies of the drawing are large (large postcard size). On the front of these three is printed: "U.S. Geological Survey", "Plate LXXII", and "T. Sinclair & Son. lith. Phila." Each of the large copies has written a number on the back; "8283 L.S.". The fourth copy is smaller (small postcard size), and does not have the above printed on the front. On the back, the small copy has handwritten notes as follows: "Jackson Model, Bonito. See: NGS Neg. 8283LS. 1877." Above the "1877" is written "1873 (?)" which is crossed out.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '4 copies of pencil drawing.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (684, 'New Mexico: Chaco Canyon (Pueblo Bonito) - restoration models', '1090346522916', 'Photograph-Print', '5 photographs of a scale restoration model of Pueblo Bonito. Photos taken from different angles. Two photos from the front, each with a handwritten number on the back: 116355-A and 116352-A. Two photos from the back, each with a handwritten number on the back: 116356-A and 116353-A. One photo from the southwest side, with a handwritten number on the back: 116354-A. All 5 of the photographs have a stamp on the back, which reads: "Photograph by Richard R. Stewart."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '5 photos of a restoration model of Pueblo Bonito', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (687, 'New Mexico: Chaco Canyon (Pueblo Bonito) - restoration models', '1090347056367', 'Photograph-Print', 'Two copies of a photograph of a restoration model of Pueblo Bonito, one is slightly larger and is mounted on a card. The smaller photo is not mounted on a card and has a handwritten label on the back that says "Presented by WH Jackson". On the front of the photos, the model itself is labeled "A Restoration of the Pueblo Bonito, An Ancient Ruin in Chaco Canon, New Mexico. Prepared by the U.S. Geological Survey of the Territories. F.V. Hayden in charge. Scale, 1:240, or 20 feet to 1 inch. Design by W.H. Jackson, model by Dr. W.J. Hoffman."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '2 copies of a photo.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (681, 'Pueblo Bonito: Rooms 76-100 & Dark room east of 100', '1090346085137', 'Photograph-Print', '1 photo. Caption: "R #84 View from West bank". Image shows a circular pit in the floor.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (697, 'Pueblo Bonito: Rooms 76-100 & Dark room east of 100', '1090349185325', 'Photograph-Print', '1 photo. Caption: "Rs #93-94 and 95 (in foreground) View N.E." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '1 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (701, 'Pueblo Bonito: Rooms 76-100 & Dark room east of 100', '1090350149898', 'Photograph-Print', '1 photo. Caption: "#98. 2nd story N. door"', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (721, 'Notecards; Pueblo del Arroyo, Specimen field notes.', '1090352365227', 'Notes-Notecards', 'Set of notecards bound in twine. Note at the beginning of card set reads: "Pueblo del Arroyo Specimen Field Cards 1-648." Cards follow this format (info taken from actual card): Number: 648 Name: Corrugated cooking pot, restored; Date: (empty); Locality: Room 65; Remarks: Smooth body; rubbed-over coils anti-clockwise, form shoulder to flaring rim. Dia. 12"; R; 15". Two conical lugs, 2 and 1/2" below rim." Other cards have museum numbers on them. This set would lend itself well to providing an inventory by room for finds from Pueblo del Arroyo. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '648 cards', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (725, 'Pueblo Bonito: Rooms 101-125', '1090352928565', 'Photograph-Print', '1 photo of room 111. Caption: "R #111 ''View looking SW.'' Door thru 2nd story or 3rd story W. wall of R. 111. NMJ" ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (737, 'Photo-Prints, Sites, Chaco Canyon, New Mexico, Pueblo Bonito-Excavations', '1090354066702', 'Photograph-Print', '1 small print, labeled on the back with a small, printed, stamped, faded, purple "22". View of Pueblo Bonito from the east/northeast.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (742, 'Pueblo Bonito: Rooms 126-149', '1090354764609', 'Photograph-Print', '3 photos - Rooms 130-132. No captions except the room numbers. Room 130 is a round room.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (748, 'Chaco Canyon, NM Pueblo Bonito--Other NGS Photos elated to N. Judd Publications', '1090415910750', 'Photograph-Print', 'Seven prints of pottery, presumably from Pueblo Bonito. These may even be published in the Material Culture of Pueblo Bonito as I''m quite sure I''ve seen them elsewhere. On the back of each, there is a stamp that reads: "Copyright The National Geographic Society. All Rights Reserved." There is also a sequence of numbers written on the back of the photos. They are 5015 B through 5018 B, 10280 C, 10280 E, and 30784-A. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (750, 'Photo-Prints, Sites, Chaco Canyon, New Mexico, Pueblo Bonito-Excavations ', '1090416597836', 'Photograph-Print', '1 small somewhat blurry print of at least 11 men behind a campfire. Labeled on the back in handwritten ink, "Zuni Dancers, Pueblo Bonito, 1925". Also a small purple stamp is present on the back that reads "12".', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (766, 'Pueblo Bonito: Rooms 151-190; 303; unidentified rooms', '1090418979846', 'Photograph-Print', '2 photos of room 190. Caption 1: "Shrine-Room 190" Caption 2: "Metate room. East court. Stones torn up. R. 190 - NMJ"', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '2 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (769, 'Pueblo Bonito: Rooms 151-190; 303; unidentified rooms', '1090419375658', 'Photograph-Print', '1 photo. Caption: "Small window in a room showin deposit. Probably ''niche'' in S [SW] wall of R. 91 (p.40)."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (772, 'Pueblo Bonito: Rooms 151-190; 303; unidentified rooms', '1090419522255', 'Photograph-Print', '1 photo. Caption: "R #65 (Can''t be R. 65) Pepper, 1920, fig. 103, p. 240." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (764, 'Pueblo Bonito: Rooms 151-190; 303; unidentified rooms', '1090418669287', 'Not Specified', '3 photos of rooms 175-177. Caption 1: "#175 NW corner", Caption 2: "#176 NW cor", Caption 3: "R #177 second story. NW corner". ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (774, 'Pueblo Bonito: Rooms 151-190; 303; unidentified rooms', '1090419692722', 'Photograph-Print', '1 photo. Caption: "R #83 Looking West Kiva in bottom of room. Not R. 83" We can''t know with certainty which room this is. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (777, 'Chaco Canyon, NM Pueblo Bonito--Other NGS Photos related to N. Judd Publications', '1090420055542', 'Photograph-Print', 'Two copies of a photo of 12 bowls accompanied by several sheets of notes comprising tables with measurement (diameter and height) and provenience info. for each bowl in addition to the field no. and national museum number for each. The photo is Neg. 130089 A, and appears to have been published in Judd''s Material Culture volume. ', 1, 'May have been published in Ch. 5 of Judd''s Material Culture of Pueblo Bonito. ', 0, NULL, 0, NULL, 0, NULL, 88, NULL, '2 photos and several pages notes with tables', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (779, 'Chaco Canyon, NM Pueblo Bonito--Other NGS Photos related to N. Judd Publications', '1090420546537', 'Photograph-Print', 'Two copies of the same print showing three bowls accompanied by one page of notes. The note page has a sketch of the bowls and includes room numbers, museum numbers and measurements for the three bowls. Negative # is 130131A. ', 1, 'May have been published in Ch. 5 of Judd''s Material Culture of Pueblo Bonito. ', 0, NULL, 0, NULL, 0, NULL, 88, NULL, 'two copies of prints and one page of notes', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (781, 'Chaco Canyon, NM Pueblo Bonito--Other NGS Photos related to N. Judd Publications', '1090420906431', 'Photograph-Print', 'One print photo of 9 pitchers from Pueblo Bonito. The first page of notes is a sketch of the pitchers with letters next to the pitchers and museum numbers written below. The other two pages are a table listing measurements, museum numbers, provenience (room numbers) and field numbers for each of the pitchers. ', 1, 'Likely published in Ch. 5 of Judd''s Material Culture of Pueblo Bonito. ', 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 print with 3 pages of notes and tables', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (782, 'Chaco Canyon, NM Pueblo Bonito--Other NGS Photos related to N. Judd Publications', '1090421247391', 'Photograph-Print', 'One print photo of three bowls. Note on front of picture reads "p.III". There is an ''x'' on the bottom. Number on back reads "37617-A." At bottom on back is "[copy neg. #96-10783]. ', 1, 'May have been published in Ch. 5 of Material Culture of Pueblo Bonito by Judd. ', 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 print', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (790, 'Photo Prints Artifacts Types Pottery Pitchers and Jugs', '1090422907067', 'Photograph-Print', 'This folder has roughly 50 prints of pitchers and jugs. No notes are written on the prints. Some of the prints have objects cut out of them as though they were taken and pasted into another document. The object numbers appearing beneath the bowls do not indicate where they came from and I''m entereing them collectively as an object just in case we should end up with info linking them to BC 53 or some other chaco site, but they do not appear to be from chaco. Object numbers are, for example, 30/355, 30/353 etc.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, 'circa 50 prints', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (793, 'Photo-Prints, Sites, Chaco Canyon, N.M., Shabik''eshchee Village-General', '1090423552357', 'Photograph-Print', '1 photo print. Negative of this photo appears as Object 791. The photo is labeled on the back in ink with "Kiva, East". Shows interior of an excavated kiva with beams laying on the floor and a scale bar. Probably Shabik''eshchee because it occurs in the context of other photos of Shabik''eshchee and appeared in the folder labeled "Shabik''eshchee Village". ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (794, 'Photo-Prints, Sites, Chaco Canyon, N.M., Shabik''eshchee Village-General', '1090423808700', 'Photograph-Print', '1 print, labeled on the back in ink "Kiva,". Appears to be the same kiva as in Objects 791 and 793 (Kiva, East probably at Shabik''eshchee) although a different view/angle/part of the kiva. Beams lying on the floor. Photo taken from the floor.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (795, 'Photo Prints Artifacts Type Pottery Misc', '1090423923333', 'Photograph-Print', 'Roughly 50 prints in a miscellaneous folder. Some prints have negative numbers on the back, others do not. None indicate where they are from. Many have certain objects cut out of them probably for use in a report of some sort. Some of the vessels are clearly from Chaco and include pitchers, bowls, jars and ladles.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, 'circa 50 prints', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (796, 'Photo-Prints Artifacts Type - Shell Beads', '1090424260973', 'Photograph-Print', '8 prints of shell beads. No provenience information is provided on photos. All photos show strings of beads. Object numbers on the back are 30/244 etc. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '8 prints', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (798, 'Photo-Prints, Sites, Chaco Canyon, N.M., Shabik''eshchee Village-General ', '1090424421426', 'Photograph-Print', '1 small print, labeled on the back in ink as "Burial #7", in pencil with "Neg. Available", and a small purple ink stamp that reads "24". Shows an excavated skeleton. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (815, 'Photo-Prints, Sites, Chaco Canyon, N.M., Shabik''eshchee Village-General ', '1090431194598', 'Photograph-Print', '2 small prints. Both labeled on the back in pencil with "Neg. Available" and stamped with purple "24". First photo shows a skull resting on the back of the skull on a paper bag to show the view of the top of the head. Second photo shows the same skull resting upright on the ground with the paper bag behind it in order to show the view from the left side. Both probably from Shabik''eshchee because they were found in context with many other photos from that site and they were found in the folder with general photos from that site.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '2 photos.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (816, 'Photo-Prints, Sites, Chaco Canyon, N.M., Shabik''eshchee Village-General ', '1090431536305', 'Photograph-Print', '1 small print, labeled on the back in ink with "Skull, Burial #1", in pencil with "Neg. Available", and purple stamped "26". Possibly (probably?) same skull as in Object 815 photos. Probably from Shabik''eshchee because these photos were found in context with many photos from that site, and it was found in the folder with general photos from that site.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (819, 'MS 4851 Photo Negs Box 18 folder 1a Chaco Canyon, NM Shabik''eshche Village', '1090432228790', 'Photograph-Negative', '25 nitrate negatives from excavations at Shabik''eshchee village. These are mainly excavation photos and include photos of burials. Some negatives are poor quality and difficult to see. Since the original photo was in box 18, I''m linking this object to two different boxes. (See note 18). ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '25 negatives', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (825, 'MS 4851 Photo Negs Box 18 folder 1a Chaco Canyon, NM Other Localities', '1090432979092', 'Photograph-Negative', 'Group of negatives from shots around Chaco. Does not appear to be any one site in particular. However, there do appear to be 3 photos of in situ burials with associated objects. No other information or negative numbers accompany these photos. These originally came from box 18, folder 1a "Chaco Canyon, N.M. Other Localities" Please see Note 18. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '43 negatives', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (828, 'Photo-Prints, Sites, Chaco Canyon, N.M., Shabik''eshchee Village-General', '1090433383689', 'Photograph-Print', '1 large print, labeled on the back in blue ink as "Shabik''eshchee Village, Broken metates and mano lying on southwest rim of kiva".', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (829, 'Photo-Prints, Sites, Chaco Canyon, N.M., Shabik''eshchee Village-General', '1090433556879', 'Photograph-Print', '1 large print, labeled on the back in blue ink as "Shabik''eshchee Village, House E, Looking east". ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (830, 'Photo-Prints, Sites, Chaco Canyon, N.M., Shabik''eshchee Village-General', '1090433681812', 'Photograph-Print', '1 large print, labeled on the back in blue ink as "Shabik''eshchee Village, Big kiva - from west rim, looking east".', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (832, 'Photo-Prints, Sites, Chaco Canyon, N.M., Shabik''eshchee Village-General', '1090433823854', 'Photograph-Print', '1 large print, labeled on the back in blue ink as "Shabik''eshchee Village, From near the kiva, view up canyon to the east".', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (833, 'Photo-Prints, Sites, Chaco Canyon, N.M., Shabik''eshchee Village-General', '1090433947590', 'Photograph-Print', '1 large print, labeled on the back in blue ink as "Shabik''eshchee Village, View across canyon toward north mesa".', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (834, 'Photo-Prints, Sites, Chaco Canyon, N.M., Shabik''eshchee Village-General', '1090434055402', 'Photograph-Print', '1 large print, labeled on the back in blue ink as "Shabik''eshchee Village, View south, toward mesa with covering of small pinon and juniper".', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (835, 'Photo-Prints, Sites, Chaco Canyon, N.M., Shabik''eshchee Village-General', '1090434193382', 'Photograph-Print', '1 large print, labeled on the back in blue ink as "Shabik''eshchee Village, A portion of House F, looking south-southeast." Also on the back in pencil is written "[Copy Neg. #96-10781]". ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (838, 'NITRATE MS. 4851 F.H.H. Roberts, Jr. Papers', '1090434953831', 'Photograph-Negative', 'A folder of negatives from Bc 53. Folder caption reads: "MS 4851 F.H.H. Roberts, Jr. Photo-negs Box 21 Folder 2 Chaco Canyon, NM Bc 53 site" These are all images of objects - no excavation photos. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, 'roughly 12 negatives', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (827, 'MS 4851 Photo Negs Box 18 folder 2b Chaco Canyon, NM Bc 53 site 1942 Season', '1090433361736', 'Photograph-Negative', 'Group of 6 nitrate negatives of Bc 53. All appear to be general shots from a distance of site. There does not appear to be any excavation in progress. Negatives were originally kept in Box 18, folder 2b. Please see Note 18. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, '6 negatives', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (824, 'Photo-Prints, Sites, Chaco Canyon, N.M., Shabik''eshchee Village-General', '1090432968591', 'Photograph-Print', '1 small print, labeled on the back in ink as "Later firepit, Entry House F," in pencil with "Neg. Available", and stamped with purple ink with "26". ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (844, 'Photo-Prints, Sites, Chaco Canyon, N.M., Other sites in the area', '1090436103237', 'Photograph-Print', '1 small print, labeled on the back in ink as "Turkey House, 1926 - Leonard, Pancho, Pinto." and in pencil with "Neg. Available." Photo shows 3 workmen at work, excavating in rooms in the ruin.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (845, 'Photo-Prints, Sites, Chaco Canyon, N.M., Other sites in the area', '1090436363348', 'Photograph-Print', '1 small print and 2 large prints. Small print is labeled on back in ink which reads "-Turkey House. 1926. Bill Pancho & Leonard." and in pencil "Neg. Available." One of the large prints is not labeled at all, and the other has "PC3" written on the back in ink. Photo shows 2 men at work in rooms in Turkey House.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (846, 'Photo-Prints, Sites, Chaco Canyon, N.M., Other sites in the area', '1090436647915', 'Photograph-Print', '1 small print, labeled on the back in ink which reads "-Turkey House-1926. Chuyate", in pencil "Neg. Available", and stamped in purple ink, "17". Shows 1 workman at work in rooms in Turkey House.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (847, 'Photo-Prints, Sites, Chaco Canyon, N.M., Other sites in the area', '1090436848523', 'Photograph-Print', '1 small print, labeled on the back in ink which reads "-North end of Turkey House, 9 miles east of Bonito. Summer of 1926. -Left to right. Charlie Chuyate, Leonard, Bill Pancho, Wailen, Charlie Pinto." and in pencil, "Neg. Available". Shows 5 men working in Turkey House with cliffs in the background.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (848, 'Photo-Prints, Sites, Chaco Canyon, N.M., Other sites in the area', '1090437091201', 'Photograph-Print', '1 small print, found in a small manilla envelope labeled in pencil "Chetro Ketl, Chaco Canyon, N.M." with a small note inside the envelope that said "Chetro Ketl, Chaco Canyon". This print is labeled on the back in ink that reads "Chetro Kettle, Chaco Canyon" and with a small purple stamp that reads "7". View is from the cliff to the north and east of Chetro Ketl.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (849, 'Photo-Prints, Sites, Chaco Canyon, N.M., Other sites in the area', '1090437344922', 'Photograph-Print', '1 small print, found in a small manilla envelope labeled in pencil "Chetro Ketl, Chaco Canyon, N.M." with a small note inside the envelope that said "Chetro Ketl, Chaco Canyon". This photo is labeled on the back in ink, "Chetro Kettle, Chaco Canyon" and stamped in ink "18". The photo shows a section of a masonry wall, with the end of a beam visible. Most of this section of the wall is composed of small thin stones with very little mortar between, although a band (1 course wide) of thicker stones runs through the middle of the photo horizontally.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (850, 'Photo-Prints, Sites, Chaco Canyon, N.M., Other sites in the area', '1090437624169', 'Photograph-Print', '1 small print, found in a small manilla envelope labeled in pencil "Chetro Ketl, Chaco Canyon, N.M." with a small note inside the envelope that said "Chetro Ketl, Chaco Canyon". This photo is labeled on the back in ink as "Chetro Kettle, Chaco Canyon" and stamped with an "18". This photo shows a large portion of wall (the back wall?) with small windows and a couple of ends of beams visible.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (851, 'Photo-Prints, Sites, Chaco Canyon, N.M., Other sites in the area', '1090437840867', 'Photograph-Print', '1 small print, found in a small manilla envelope labeled in pencil "Chetro Ketl, Chaco Canyon, N.M." with a small note inside the envelope that said "Chetro Ketl, Chaco Canyon". This photo is labeled on the back in pencil, "Chetro Ketl, ''Great Kiva''" and stamped in purple with a "28". Visible in this photo is a set of stairs leading down to the floor of the great kiva.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (856, 'Photo-Prints, Sites, Chaco Canyon, N.M., Other sites in the area', '1090438702723', 'Photograph-Print', '1 small print, labeled on the back in ink "-Burial #5, Turkey House refuse mound. 9 miles east of Pueblo Bonito. Season 1926." and stamped in purple ink, "17". Shows a skeleton with a ladle to its right side near the skull.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (857, 'Photo-Prints, Sites, Chaco Canyon, N.M., Other sites in the area', '1090438929055', 'Photograph-Print', '1 small print, labeled on the back in ink "#1 burial, Turkey House, Season of 1926.", in pencil "Neg. Available", and stamped in purple ink, "17". Shows a skeleton with a ceramic mug near the skull.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (859, 'Photo-Prints, Sites, Chaco Canyon, N.M., Other sites in the area', '1090439093125', 'Photograph-Print', '1 small print, labeled on the back in ink with "#3 Burial, Turkey House refuse mound. Season 1926.", in pencil with "Neg. Available", and stamped in purple ink "17". Shows a skeleton with 3 ceramic vessels.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (861, 'Photo-Prints, Sites, Chaco Canyon, N.M., Other sites in the area', '1090439221236', 'Photograph-Print', '1 small print, labeled on the back in ink "#6 Burial-Turkey House refuse mound. Season 1926", in pencil "Neg. Available", and stamped in purple ink "17". ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (869, 'Photo-Prints, Sites, Chaco Canyon, N.M., Other sites in the area', '1090439859633', 'Photograph-Print', '1 small print, labeled on the back in ink, "Pueblo Bonito", in pencil "Neg. Available", and stamped in purple ink "68". Also stamped on the back: "Mack Photo Service, Santa Fe, N.M." The photo shows a view of Pueblo Bonito from the south, looking north, with Threatening Rock visible before it fell.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (875, 'Photo-Prints, Sites, Chaco Canyon, N.M., Other sites in the area', '1090440389145', 'Photograph-Print', '1 small print, in a small manilla envelope. The envelope is labeled in pencil "Stairway behind Hungo Pavi, Chaco Canyon, N.M." The photo has a small handwritten pencil note paperclipped to it that reads "Stairway behind Hungo Pavi, Chaco Canyon." The photo itself has a purple "18" stamped on the back.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (878, 'Photo-Prints, Sites, Chaco Canyon, N.M., Other sites in the area', '1090440574125', 'Photograph-Print', '1 small print in a manilla envelope. The envelope is labeled in pencil: "Pueblo del Arroyo, Chaco Canyon, N.M. 1926". The photo inside has a small piece of paper paperclipped to it that says in pencil "Pueblo del Arroyo, Chaco Canyon." The photo itself is labeled on the back in ink "Del Arroyo, Chaco Canyon," and stamped with a purple "12".', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (881, 'Photo-Prints, Sites, Chaco Canyon, N.M., Other sites in the area', '1090440839841', 'Photograph-Print', '1 small print, labeled on back in pencil with "Neg. Available" and stamped in purple ink "10". The photo has a handwritten ink note paperclipped to it, which reads: "Found on large boulder on flats next to NPS boundary fence below Shabik''eshchee Village, Chaco Canyon. Tom Windes, 4 Jan 1978, Chaco Center, NPS, Albuq., N.M. According to Roberts (1929: 1) this is a Navajo glyph meaning "Sun Picture Place" or "Shabik''eshchee"."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (922, 'N.M. Judd Collection Pueblo Bonito', '1090507976864', 'Plan-Archaeological', '1 plan of Pueblo Bonito with annotations indicating location of tree ring dates. "(Gladwin dates)" written in the upper left hand corner.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 plan', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (927, 'Photo-Prints, Sites, Chaco Canyon, N.M., Shabik''eshchee Village-NGS Photos', '1090509333716', 'Photograph-Print', '3 prints. Two are labeled in ink on the back "House Q", in pencil on the back "Shabik''eshchee Village, Chaco Canyon, 1927", and in colored pencil on the back "40073A". The third print is only labeled on the back with "40073A". These photos show House Q during excavations.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (928, 'Photo-Prints, Sites, Chaco Canyon, N.M., Shabik''eshchee Village-NGS Photos', '1090509675869', 'Photograph-Print', '2 prints of one photo. One of which is labeled on the back in ink "House D", in pencil "Shabik''eshchee Village, Chaco Canyon, 1927", and "40062A". The other print only is labeled in pencil on the back with "40062A". Both show House D during excavation.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '2 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (930, 'Photo-Prints, Sites, Chaco Canyon, N.M., Shabik''eshchee Village-NGS Photos', '1090509904328', 'Photograph-Print', '2 prints, one is labeled on the back in ink as "House C" and in pencil as "40058A". The other print is simply labeled on the back in pencil as "40058A". Both show House C during excavation, including scale bar.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '2 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (932, 'Photo-Prints, Sites, Chaco Canyon, N.M., Shabik''eshchee Village-NGS Photos', '1090510063403', 'Photograph-Print', '2 prints, one is labeled on the back in ink as "Kiva, S.E." and in pencil as "40066A". The other print is simply labeled on the back in pencil as "40066A". Both show kiva during excavations with beams scattered on the floor.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '2 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (933, 'N.M. Judd Collection Pueblo Bonito', '1090510084581', 'Profile', '1 profile entitled "Stratigraphic Sections" - we may have already seen this one. It is annotated and has a key. Dated 1924.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 profile', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (924, 'N.M. Judd Collection Pueblo Bonito', '1090508185281', 'Plan-Archaeological', '1 plan view of Pueblo Bonito with color annotation of wall types. No date. There are lots of Judd''s annotations.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 plan', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (934, 'Photo-Prints, Sites, Chaco Canyon, N.M., Shabik''eshchee Village-NGS Photos', '1090510278314', 'Photograph-Negative', '1 photo negative. No labeling at all on the negative or on the envelope that it is in, but I recognize it to be the negative of the photos that are entered in the database as Object 932. Therefore shows Shabik''eshchee, "Kiva, S.E.", and is number "40066A".', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 negative', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (936, 'N. M. Judd Collection Pueblo Bonito (2)', '1090512072192', 'Plan-Architecural', '1 plan drawing of room 336 (contains key-hole shaped kiva). Scale is 1"=5''. By Frans Blom, 1924. Seems to show sub-floor walls? ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 plan', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (952, 'N. M. Judd Collections: Drawings of Pueblo del Arroyo', '1090523956547', 'Plan-Architecural', 'Surveyed in 1925 by Oscar B. Walsh, U.S. Surveyor. Plan of Pueblo del Arroyo. Excavated rooms and kivas numbered. Shows a slab-lined fireplace and some wall foundations to the east of del Arroyo. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 plan', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (951, 'N.M. Judd Collection: Drawings del Arroyo ', '1090523660964', 'Plan-Architecural', '1 architectural plan of the tri-wall structure and surrounding boxed-in kivas at Pueblo del Arroyo. Entitled "Tower West Side Arroyo" scale 1"=20''. No date, no author.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 plan', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (776, 'Photo-Prints, Sites, Chaco Canyon, New Mexico, Pueblo Bonito-Excavations ', '1090420163928', 'Photograph-Print', '1 print, labeled on the back with a stamp that reads "Taken By and Property of National Geographic Society" and with the handwritten pencil number "32363-A". Shows 9 men (probably the same group as in Object #767, including Neil M. Judd). They are standing behind a small kiva and in front of another. Cliffs visible in background. Probably taken in Pueblo Bonito, because this photo occurs within the context of several other photos of Bonito and appears in the folder marked "Pueblo Bonito-Excavations". ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (780, 'Photo-Prints, Sites, Chaco Canyon, New Mexico, Pueblo Bonito-Excavations ', '1090420694295', 'Photograph-Print', '1 large print of Pueblo Bonito prior to extensive excavations. Labeled on the back with a stamp that reads "COPYRIGHT The National Geographic Society All Rights Reserved" and a handwritten pencil number that reads "3018-B". View of the entire ruin from the cliff north and slightly to the west. View facing south. Shows a masonry wall running up against the back wall of Pueblo Bonito and a small rectangular structure with two doors built against the back wall of the ruin at what appears to be the middle of the north arc of Pueblo Bonito''s back wall.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (771, 'Photo-Prints, Sites, Chaco Canyon, New Mexico, Pueblo Bonito-Excavations ', '1090419351839', 'Photograph-Print', '1 print, labeled on the back with a stamp that reads "COPYRIGHT The National Geographic Society All Rights Reserved" and with handwritten pencil that reads "18657-A". A view of Pueblo Bonito from the cliff on the northeast side. Shows some masonry and possibly earthen architecture behind the back wall of Pueblo Bonito (to the north and northeast).', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (767, 'Photo-Prints, Sites, Chaco Canyon, New Mexico, Pueblo Bonito-Excavations ', '1090419083522', 'Photograph-Print', '1 print, stamped on the back with a purple stamp that reads "Taken By and Property of National Geographic Society" and is labeled on the back in handwritten pencil, "32367-A". Shows 9 men standing among the ruins (appears to be Pueblo Bonito: Threatening Rock is visible in the background). One man is sitting astride a low portion of a wall. One of the men is Neil M. Judd.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (765, 'Photo-Prints, Sites, Chaco Canyon, New Mexico, Pueblo Bonito-Excavations ', '1090418759958', 'Photograph-Print', '1 print, labeled on the back with a purple stamp that reads "COPYRIGHT The National Geographic Society All Rights Reserved" and handwritten in pencil "11892-A". Shows a section of a masonry wall marked by a square of string. The stones are packed very closely together; very little mortar is visible. Stones appear to be medium sized, long, and thin. We believe that this photo was taken in Pueblo Bonito because it occurs in context with many other photos from Pueblo Bonito and appeared in the folder marked "Pueblo Bonito-Excavations", but we are not 100% sure.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (763, 'Photo-Prints, Sites, Chaco Canyon, New Mexico, Pueblo Bonito-Excavations ', '1090418444350', 'Photograph-Print', '1 print, labeled on the back with a stamp that reads "COPYRIGHT The National Geographic Society All Rights Reserved" and handwritten in pencil "11894-A". Shows a portion of a masonry wall sectioned off by a square of string. Stones alternate between bands (1 course thick) of long thick stones and bands (3-7 courses thick) of shorter, thinner stones. Very little mortar visible, stones packed closely together. We believe this was taken at Pueblo Bonito because the photo occurs in context with many other photos from Pueblo Bonito and it appeared in the folder marked "Pueblo Bonito-Excavations", but we are not 100% sure.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (760, 'Photo-Prints, Sites, Chaco Canyon, New Mexico, Pueblo Bonito-Excavations ', '1090418161309', 'Photograph-Print', '1 print, labeled on the back with two purple stamps that read "COPYRIGHT The National Geographic Society All Rights Reserved" and handwritten in pencil "11893-A". Shows a section of a masonry wall blocked off by a square of string. The wall has long thin stones and lots of mortar. We believe that this photo was taken at Pueblo Bonito because it occurs in context with many other photos from Bonito and it appeared in the folder marked "Pueblo Bonito-Excavations" but we are not 100% sure.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (749, 'Photo-Prints, Sites, Chaco Canyon, New Mexico, Pueblo Bonito-Excavations ', '1090416349018', 'Photograph-Print', '1 small print, labeled on the back only with a small, purple, stamped "8". Appears to be the back wall of Pueblo Bonito (in context with other Bonito photos and in the Bonito folder). A small wall running up to the back of Pueblo Bonito appears in another photo that we examined earlier, and in this photo it appears that part of this wall has been removed (the part that runs directly up against the back of Pueblo Bonito).', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (747, 'Photo-Prints, Sites, Chaco Canyon, New Mexico, Pueblo Bonito-Excavations ', '1090416108222', 'Photograph-Print', '1 small print, labeled on the back in handwritten ink: "Great Kiva, Pueblo Bonito." Cliff visible in background. Small, very faded purple stamp on back also: only the number "1" is visible, but I believe that this is a two digit number (several of the other photos had a two digit number like this stamped on the back).', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (744, 'Photo-Prints, Sites, Chaco Canyon, New Mexico, Pueblo Bonito-Excavations', '1090354877581', 'Photograph-Print', '1 small print, labeled on the back "Pueblo Bonito" handwritten in ink. Also on the back is a small, purple, stamped, faded "6" or "9" (but probably a "6" judging by the orientations of the other stamped numbers on the other stamped photos). Standing architecture. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (738, 'Photo-Prints, Sites, Chaco Canyon, New Mexico, Pueblo Bonito-Excavations', '1090354227891', 'Photograph-Print', '1 small print, labeled on the back with a small, purple, faded, stamped "22". Shows a great kiva and other standing masonry architecture: we believe that this is Pueblo Bonito because it occurs in context with several other photos of Pueblo Bonito in a folder labeled "Pueblo Bonito-Excavations."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (736, 'Photo-Prints, Sites, Chaco Canyon, New Mexico, Pueblo Bonito-Excavations', '1090353906717', 'Photograph-Print', '1 small print, labeled on the back "Stairs, Pueblo Bonito" in handwritten ink. Also stamped on the back with a small purple "8". T-shaped doorway.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (735, 'Photo-Prints, Sites, Chaco Canyon, New Mexico, Pueblo Bonito-Excavations', '1090353719965', 'Photograph-Print', '1 small print, labeled on the back "Corner Door, Pueblo Bonito", handwritten in ink. Also the back is stamped with a small purple "18". Shows a room in Pueblo Bonito, with an upper story corner door, beams visible, and a few metates stacked in the lower corner.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (724, 'Photo-Prints, Sites, Chaco Canyon, New Mexico, Pueblo Bonito-Excavations', '1090352954384', 'Photograph-Print', '1 print. Labeled on the back in handwritten ink, "Pueblo Bonito". Masonry walls, corner.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (732, 'Photo-Prints, Sites, Chaco Canyon, New Mexico, Pueblo Bonito-Excavations', '1090353580509', 'Photograph-Print', '1 small print, labeled on the back "Pueblo Bonito" in handwritten ink and with a small purple stamped "18". Shows a masonry wall with a hole at the bottom.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (731, 'Photo-Prints, Sites, Chaco Canyon, New Mexico, Pueblo Bonito-Excavations', '1090353432009', 'Photograph-Print', '1 small print, labeled on the back "Pueblo Bonito" in handwritten ink, also with a small stamped 2 digit number which is unintelligible. Masonry wall detail.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (727, 'Photo-Prints, Sites, Chaco Canyon, New Mexico, Pueblo Bonito-Excavations', '1090353291645', 'Photograph-Print', '1 small print, labeled on the back with "Pueblo Bonito" handwritten in ink and a purple stamped "18". Masonry wall detail.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (726, 'Photo-Prints, Sites, Chaco Canyon, New Mexico, Pueblo Bonito-Excavations', '1090353079235', 'Photograph-Print', '1 small print, labeled on the back only with a purple stamped "96". Photo shows some kind of a door or window: not sure. We have reason to believe that this photo was taken at Pueblo Bonito because it occurs in context with several other photos from Pueblo Bonito: also the folder is labeled as "Pueblo Bonito-Excavations."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (720, 'Photo-Prints, Sites, Chaco Canyon, New Mexico, Pueblo Bonito-Excavations', '1090352691515', 'Photograph-Print', '1 print, labeled on the back in handwritten ink, "Kiva, Pueblo Bonito." Pier pilasters.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (723, 'Photo-Prints, Sites, Chaco Canyon, New Mexico, Pueblo Bonito-Excavations', '1090352825875', 'Photograph-Print', '1 print. Labeled in handwritten ink on the back, "Pueblo Bonito". Shows a masonry wall with what appears to be a filled in door or window.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (718, 'Photo-Prints, Sites, Chaco Canyon, New Mexico, Pueblo Bonito-Excavations', '1090352490305', 'Photograph-Print', '1 print, labeled on the back with "Pueblo Bonito", an "X" in pencil, and a purple stamped "12". Appears to be a place where one wall abuts the other, with a beam visible in one of the walls.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (715, 'Photo-Prints, Sites, Chaco Canyon, New Mexico, Pueblo Bonito-Excavations', '1090352252257', 'Photograph-Print', '1 print, with "Metates, Pueblo Bonito" written on the back in ink. Shows several metates and manos leaning up against a masonry wall.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (713, 'Photo-Prints, Sites, Chaco Canyon, New Mexico, Pueblo Bonito-Excavations', '1090352112268', 'Photograph-Print', '1 print, labeled on the back in pencil, "F.H.H.R." A view of Pueblo Bonito from the north cliff, looking to the southwest.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (717, 'Photo-Prints, Sites, Chaco Canyon, New Mexico, Pueblo Bonito-Excavations', '1090352391978', 'Photograph-Print', '1 print, completely unlabeled, of a rock art figure.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (707, 'Photo-Prints, Sites, Chaco Canyon, New Mexico, Pueblo Bonito-Excavations', '1090351230558', 'Photograph-Print', 'Small photo. On back labeled with a purple stamp that says "12" and a handwritten note in pencil that reads: "[Copy Neg. #99-40670]". We believe that this is a photo a little east of Pueblo Bonito, looking north at the base of Threatening Rock before it fell, showing part of the retaining wall against the cliff and parts of the foundation complex.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (704, 'Photo-Prints, Sites, Chaco Canyon, New Mexico, Pueblo Bonito-Excavations', '1090350883411', 'Photograph-Print', 'Photo of Threatening Rock before it fell. Contains what may be part of the foundation complex in the photo. On back of photo: a faded purple stamp says "12", and a handwritten note in pencil reads: "[Copy Neg. #99-40671]".', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (778, 'Photo-Prints, Sites, Chaco Canyon, New Mexico, Pueblo Bonito-Excavations ', '1090420423294', 'Photograph-Print', '1 print, labeled on the back with a stamp that reads "COPYRIGHT The National Geographic Society All Rights Reserved" and a handwritten pencil note that says 32354-A". Shows what appears to be the excavation of the northeast foundation complex at Pueblo Bonito. View facing south from the cliff to the northeast of Pueblo Bonito.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (178, 'Chaco Canyon Miscellany Pictographs', '1081954094269', 'Photograph-Print', 'Three mounted photos on card: "Incised drawings on cliff at N.W. of Pueblo Bonito. #16272-A. Photo by Judd, 1922." "Pictographs in cliff west of Pueblo Bonito, N. Mex. #28581-A. Photo by O. C. Havens, 1924." "Pictures carved on cliff near Pueblo Bonito. Photo by O. C. Havens, 1923. ', 0, NULL, 0, NULL, 0, NULL, 1, 'Owned by NGS', 88, NULL, '3 pictures on one card', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (177, 'National Geographic Photos', '1081952571951', 'Photograph-Print', 'Two mounted photograhs of 1927 flood in Chaco taken by Judd. Photos are labeled "#50599-A Mid-September floods in Chaco Canyon, 1927. Photo by Neil M. Judd." and "#37807 - Fallen Arroyo bank, in front of Pueblo Bonito, 1927. Photo by Neil M. Judd."', 0, NULL, 0, NULL, 0, NULL, 1, 'Prints from numbered National Geographic Society Negatives. ', 88, NULL, '2 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (179, 'Chaco Canyon Miscellany Pictographs', '1081954691994', 'Photograph-Print', 'Three photos mounted on card. "Navaho sun symbol - 8 and 1/2 mi. E. of Bonito. #38983-A. Photo by N M. Jud, 8/5/26". "Cliff north of Pueblo Bonito where prehistoric occupants ground axes. #31999-A". "Cliff back of Pueblo Bonito where stone axes and bone awls were sharpened by the Bonitians [shows indian grinding stone object]". "Photos by O.C. Havens, 1925. Misc, coll. vol. 124 pl. 23I." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos on one card', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (953, ' N.M. Judd Collection: Photographs and Art Prints ', '1090525326310', 'Photograph-Print', '1 large photo of mound ruin in arroyo near Pueblo del Arroyo. Caption: "Chas. Martin photo 1920 NGS Neg. 3213A"', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (950, 'N. M. Judd Collections: Drawings of Pueblo del Arroyo', '1090523592962', 'Plan-Architecural', 'Series of 4 drawings of levels of Pueblo del Arroyo. 4th story level, 3rd story level, 2nd story level, and ground floor are present. Rooms and kivas are not numbered. Contains very few notes or details.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '4 plans', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (949, 'N.M. Judd Collection: Drawings del Arroyo', '1090523503809', 'Plan-Architecural', '1 partial architectural plan of Pueblo del Arroyo. This plan includes the tri-wall structure and the western row of rooms (8-49). Scale 1"=20'' O.B. Walsh, 1926.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 plan', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (948, 'N. M. Judd Collections: Drawings of Pueblo del Arroyo', '1090523196116', 'Plan-Architecural', 'Series of plan drawings of kivas at Pueblo del Arroyo by Ruppert and Frans Blom. All are drawn to scale of 1 inch = 4 ft. Many date to Aug 1926. Kivas drawn include: A, B, C, E, F, G, H, I, and J. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (947, 'N. M. Judd Collection: Drawings of Pueblo del Arroyo', '1090522818808', 'Plan-Architecural', 'Drawing of Pueblo del Arroyo by O. B. Walsh, 1925. Illustrates the following rooms: 8B2, 8B1, 9B3, 9B2, 9B1, 10B, 11B. Scale: 1 inch = 5 ft. Also shows locations of beams.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 plan.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (946, 'N.M. Judd Collection: Drawings Pueblo del Arroyo', '1090522806901', 'Profile', '1 profile entitled "Profile of Del Arroyo and subfloor walls west through A-A1" Horizontal scale 1"=10''. Vertical scale 1"=10''. Datum same as Profile of Bonito through A to A1. O.B. Walsh, 1926.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 profile', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (945, 'N. M. Judd Collection Pueblo Bonito (2)', '1090520691274', 'Plan-Architecural', 'A group of architectural plan views of kivas: Kiva A: 3 plan drawings (1 very large), and 1 cross-section; Kiva B: 3 plan drawings; Kiva C: 3 plan drawings; Kiva D: 3 plan drawings, 2 profiles; Kiva E: 3 plan drawings; Kiva F: 3 plan drawings; Kiva G: 3 plan drawings; Kiva H: 3 plan drawings; Kiva I: 3 plan drawings; Kiva J: 3 plan drawings; Kiva K: 4 plan drawings; Kiva L: 3 plan drawings; Kiva M: 3 plan drawings; Kiva N: 3 plan drawings; Kiva Q: 1 plan drawing (large). We assume all of these are from Pueblo Bonito. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '44 plans, 3 profiles', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (943, 'N. M. Judd Collection Pueblo Bonito (2)', '1090519757431', 'Plan-Architecural', '1 plan and 1 profile of room 309 mounted on poster board. Scale is 1"=2'' The plan includes a macaw and infant burial. No site # given. The plan view does make a connection to 309B. There are two versions of these same drawings. The second one looks like a publication illustration - it is labeled Fig. 12. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '2 drawings - 2 copies', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (944, 'N. M. Judd Collection Pueblo Bonito (2)', '1090520229396', 'Profile', '1 profile of the staircase into Kiva A at Pueblo Bonito. Caption says "North Stairs Kiva A Fig. 16A" - we''re assuming this has been published.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 profile', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (940, 'N. M. Judd Collection Pueblo Bonito (2)', '1090518622963', 'Profile', '2 profiles on one sheet of paper: (1) "room 242 west side of trench" and (2) "West side of trench." Scale is 1/2"=1'' August 1924, F. Blom. No site given. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 profile drawings', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (939, 'N. M. Judd Collection Pueblo Bonito (2)', '1090518429387', 'Plan-Architecural', 'A plan view of the southwestern corner of Pueblo Bonito. It appers to have a room block extending west from room 118/119 of Pueblo Bonito. No further information is given. There is a profile of this room block included on the map showing the wall heights of this room block. #D-47', 1, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 plan', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (938, 'N. M. Judd Collection Pueblo Bonito (2)', '1090517988562', 'Profile', '2 profiles (2 versions of the same drawing). Each consists of 2 separate drawings. Scale is 1"=10''. N/S cross section of rooms at Pueblo Bonito. One is an original, one looks like it was prepared for publication. The one prepared for publication is labeled Fig. 8. Room #s include: 267, 265, 263, 252, 247, 245, 266, 264, 262, 251, 249, 248, and 246. The original also includes an E/W profile of rooms 262, 263, and 258. These drawings show multiple floor levels and some storage pits. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '2 drawings', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (941, 'N. M. Judd Collection Pueblo Bonito (2)', '1090519165317', 'Tabular Data', '2 large sheets of graph paper. These sheets list pottery type counts and cumulative percents by type - by room, Pueblo Bonito. There are 21 types of pottery listed. Also includes kivas. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '2 sheets', NULL, NULL, NULL, NULL, NULL, 1, '7/22/2004', NULL); INSERT INTO object VALUES (937, 'N. M. Judd Collection Pueblo Bonito (2)', '1090517206714', 'Plan-Architecural', 'A group of drawings of kivas from Pueblo Bonito: Kiva Q: 1 plan drawing; Kiva R: 3 plan drawings, 1 cross section drawing; Kiva T: 2 plan drawings; Kiva V: 6 plan drawings; Kiva W: 3 plan drawings; Kiva Y: 3 plan drawings; Kiva X: 2 plan drawings; Kiva 2D: 2 plan drawings; Kiva 161: 1 plan drawing; Kiva 5G: 1 plan drawing; Kiva 162: 1 plan drawing - lots of annotation. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, 'roughly 25 drawings', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (935, 'N.M. Judd Collection Pueblo Bonito', '1090510232965', 'Profile', '3 profiles mounted on poster board - showing cross-sections of rooms through Pueblo Bonito. One is labeled Fig. 14, the other as Fig. 13. We assume these are published. Fig. 14 is a cross section from B to B1, Fig 13. is a section from A to A1. Scale for both is 1"=20''. The third is labeled Fig. 15. It shows "C to C1 cross-section through Bonito. The scale is the same as the other 2. These drawings are numbered D-7a, D-7b, and D-7c (I think this is a NAA tracking number).', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '2 profile drawings', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (931, 'N.M. Judd Collection Pueblo Bonito', '1090509885717', 'Plan-Archaeological', 'This plan is labeled as ''Fig. 23.'' It appears to have been prepared for publication. It is a cleaned up version of the earlier refuse mound plan we entered in the database earlier. It shows the east and west refuse mounds with location of staircases and shows the location of the east mound trench, the middle trench, and the west mound trench. It also shows pit #3. It includes the front rooms of Pueblo Bonito. #D-41', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 plan', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (929, 'N.M. Judd Collection Pueblo Bonito', '1090508982419', 'Profile', '6 profile sections mounted on 2 separate pieces of poster board. One is profiles from the "West mound and West Court Trench" (3 sections) #D-39. The other is profiles of "East Mound Trench from R. 171 to flat" (3 sections) #D-43. Labeled as "Fig. 24". These profiles show the locations of test sections and architectural features. There is no key and little labeling.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '6 profile drawings', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (926, 'N.M. Judd Collection Pueblo Bonito', '1090508698256', 'Profile', '1 profile by Frans Blom entitled "Trench North to South from South wall of Pueblo Bonito by Southwest Corner August 1924." There is a note on the top of the profile by Judd which reads "Duplicates (?) extension of east mound trench to room 171".', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 profile', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (925, 'N.M. Judd Collection Pueblo Bonito', '1090508324122', 'Profile', '1 profile entitled "Profile of section of canyon floor in front of Pueblo Bonito. Frans Blom, 1925." No scale given. Extends from from cliff through arroyo - at a very gross scale. Shows location of #3 test pit and section in west refuse dump, as well as test pits 1 and 2.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 profile', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (921, 'N.M. Judd Collection Pueblo Bonito', '1090507660630', 'Profile', 'Profile entitled "Cross section showing sub-floors and walls as well as stratifications from cliff through eastern side of pueblo to stairway on north side of eastern refuse mound." Additional annotation reads: "Not quite correct as regards level. F.B 1925." There is no key - but it is well labeled. #D-57. Room numbers are labeled. The word "omit" is written on the reverse side of this profile and some others - which makes us think Judd was going through these maps pulling out ones for publication and writting "omit" on some.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 profile', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (918, 'N.M. Judd Collection Pueblo Bonito', '1090507519750', 'Profile', '1 profile entitled "Profile of Trench East end of NE Foundations, Outside Curved Walls." #D-49. Dated September 19, 1926. This profile is annotated - shows a 25'' expanse of trench. Scale 1"-2''', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 profile', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (916, 'N.M. Judd Collection Pueblo Bonito', '1090507311269', 'Profile', '1 stratigraphic profile drawing entitled "Section A Eastern Refuse Mound". Numbered "D-48." This profile is annotated - and also labeled as "Stratigraphic test section."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 profile', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (206, 'NGS Photographs, Pueblo Bonito: Burials and buried objects', '1081964541234', 'Photograph-Print', 'Photo label reads: "A necklace of turquoise beads formed a bracelet for the left wrist of burial 12, Room 326." Photograph by OC Havens 1924. Neg#28489A. This number is again crossed out and "98A" is penciled in. ', 0, NULL, 0, NULL, 0, 'Neg#28489A', 1, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (910, 'N.M. Judd Collection Pueblo Bonito', '1090506654846', 'Profile', '1 profile mounted to poster board. "West Mound Stratigraphy 1924" #D-40. This profile is annotated - and shows the west/north/east walls. This may be a profile of one of their pottery test sections? Strata are labeled numerically. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 profile', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (908, 'N.M. Judd Collection Pueblo Bonito', '1090506501262', 'Profile', '1 profile mounted on poster board entitled "Walls East of Bonito." Vertical scale - 1"=10'', Horizontal scale - 1"=20''. This profile is labeled as "D-46" ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 profile', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (906, 'N.M. Judd Collection Pueblo Bonito', '1090506249002', 'Plan-Architecural', '1 plan drawing title "Original Walsh Survey. D-44". This plan is of the foundation complex extending off the east side of Pueblo Bonito. It shows the terrace wall and the location of a 1926 trench. The trench label says "1926 Trench 3''3" wide x 2.5 ft. Outside E. corner 12'' fr. #4 corner." There are elevation notes written in the margins.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 plan', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (903, 'N.M. Judd Collection Pueblo Bonito', '1090505912885', 'Profile', '2 profiles taped to a poster board - mounted with scotch tape. Profile 1: "Middle Trench (between MDS)". Roughly 25% of this profile is not inked. Scale is 1"=2''. The profile covers 80 feet - but there is no specific provenience information. Profile 2: "Far East Trench." It is roughly 70 feet - same scale.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '2 profiles', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (894, 'BAE - Fewkes, Jesse Walter Photographs, New Mexico - Chaco Canyon', '1090504974770', 'Photograph-Print', '3 photos mounted on a card. The general caption reads "Three views of Kin-a-a (Described in article)." There are directions on this card for how to reproduce these so I''m assuming these photos were for publication. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (892, 'N.M. Judd Collection Maps Chaco Area', '1090504679326', 'Map', '7 copies of a map of Chaco entitled "From Surveys by the Pueblo Bonito Expeditions of the National Geographic Society. Topography by Robert P. Anderson 1922." Map was drawn by James M. Darley and has a contour interval of 20 feet and shows Navaho Hogans and ancient ruins. One of the copies has annotations by Judd. One of the copies is very large and in negative. One looks like a ditto copy (blue and white) and is also very large. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '4 copies of same map', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (891, 'BAE - Fewkes, Jesse Walter Photographs, New Mexico - Chaco Canyon', '1090504633405', 'Photograph-Print', '4 prints from Chaco Canyon. 2 are labeled simply "Chaco Canyon" - these are of a ruin I can''t identify. 2 are labeled "Pueblo Bonito". These are all general architecture shots. There is no date given.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '4 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (882, 'Photo Prints Sites Chaco Canyon, N.M. Bc 53 Site 1940 Season 3a', '1090441029043', 'Photograph-Print', 'Print with following notes on back: "Bc 53. Room 7: First pot (Escavada-Gallup) of at least eight found just above floor, randing around walls of room or skeleton. Pressure cracked by Earth, it was broken by excavator''s shovel. All pieces recovered, pot restored. Excavator: Ted Stern Chaco Canyon N.M. 1940." Sketch shows location of pot in room. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (880, 'Photo Prints Sites Chaco Canyon, N.M. Bc 53 Site 1940 Season 3a', '1090440913680', 'Photograph-Print', 'Print with following notes on back: "Bc 53. Room 7: third Level Background: Jackson (center), Bart Greenwood (right) Excavator: Ted Stern, Chaco Canyon, N.M. 1940." Photo shows excavation of 3rd level of Room 7. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, '1 print', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (879, 'Photo Prints Sites Chaco Canyon, N.M. Bc 53 Site 1940 Season 3a', '1090440765927', 'Photograph-Print', 'Print with the following notes on the back: "Bc 53 Room 7: First level, Dot Morgan in background Excavator: Ted Stern. Chaco Canyon, N.M. 1940." General photo of beginning excavation in Room 7. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, '1 print', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (877, 'Photo Prints Sites Chaco Canyon, N.M. Bc 53 Site 1940 Season 3a', '1090440620876', 'Photograph-Print', 'Print with following notes on back: "Bc 53, Room 6: Slab and broken pot(s). Extending to the right from below the slab was found the skeleton of a child smewhat disturbed. South wall. Excavators: Dot Morgan, Bart Greenwood. Chaco Canyon, N.M. 1940." Includes sketch showing location of burial within room. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (876, 'Photo Prints Sites chaco Canyon, N.M. Bc 53 Site 1940 Season 3a', '1090440503457', 'Photograph-Print', 'Print with following notes on back: "Bc 53, Room 6: Burial child, with miniature vessels (2); under slab (?) in SW corner of room. Excavators: Dot Morgan, Bart Greenwood. Chaco Canyon, N.M. 1940." Includes sketch of location of burial in room. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (874, 'Photo Prints Sites Chaco Canyon, N.M. Bc 53 Site 1940 Season 3a', '1090440371809', 'Photograph-Print', 'Print with following notes on back: "Bc 53. room 6: Burial, child, somewht disturbed. Found some distance beneath a slab which overlay the lower parts of the body. A broken pot or pots were found associated with the slab - against south wall (see slab) Excavators: Dot Morgan, Bart Greenwood. Chaco Canyon, N.M. 1940." Includes sketch of the location of burial within room. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (873, 'Photo Prints Sites Chaco Canyon, N.M. Bc 53 Site 1940 Season 3a', '1090440240900', 'Photograph-Print', 'Print with following notes on the back: "Bc 53, Room 6: Burial, child with miniature vessels (2); under slab (?) in SW corner of room. Excavators: Dot Morgan, Bart Greenwood. Chaco Canyon, N.M. 1940." Includes small sketch of location of burial within room. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, '1 print. ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (871, 'Photo-Prints, Sites, Chaco Canyon, N.M., Other sites in the area', '1090440161922', 'Photograph-Negative', '2 negatives in a thin envelope which reads "Roberts 4857 Box 23 Folder Chaco #2f 2 copy negs." One is the negative of the photo in Object 845 (and therefore shows excavations in Turkey House), and the other it is unclear as to what is in the photo.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '2 negatives in envelope', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (872, 'Photo Prints Sites Chaco Canyon, N.M. Bc 53 Site 1940 Season 3a', '1090440101161', 'Photograph-Print', 'Print with following notes on back: "Bc 53, Room 6: First burial child, being excavated. Found with it: Pot (pieces), matting - - -(?) South wall, head to wall. Excavators: Dot Morgan, Bart Greenwood. Chaco Canyon N.M. 1940. Includes sketch of room with location of burial. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, '1 print', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (870, 'Photo Prints Sites Chaco Canyon, N.M. Bc 53 Site 1940 Season 3a', '1090439991062', 'Photograph-Print', 'Print photo with following notes on the back: "Bc 53, room 2: Burial adult, on floor in NE corner. Head to south Excavator: Ray Baby. Chaco Canyon, NM 1940." Includes sketch of room with location of burial. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, '1 print', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (868, 'Photo Prints Sites Chaco Canyon, N.M. Bc 53 Site 1940 Season 3a', '1090439863777', 'Photograph-Print', 'Print with following notes on back: "Bc 53, Room 2: Showing step at west side of room and floor level of rest of room. Excavator: Ray Baby, Chaco Canyon NM 1940." Includes sketch of room. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, '1 print. ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (867, 'Photo Prints Sites Chaco Canyon, N.M. Bc 53 Site 1940 Season 3a', '1090439719574', 'Photograph-Print', 'Photo with following notes on the back: "Bc 53, Exterior of wall of rooms 6-7. (shot from exploratory trench in which Dr. Wige [sp?] took his profiles.) Chaco Canyon N.M. 1940." Includes small sketch of trench and rooms 6 and 7. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, '1 print', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (865, 'Photo Prints Sites Chaco Canyon, N.M. Bc 53 Site 1940 Season 3a', '1090439602541', 'Photograph-Print', 'Photo with following notes on the back: "Bc 53 Room 7: Fourth pot (escavada) of at least eight found just above floor, ranging around walls of room or skeleton. Excavator: Ted Stern Chaco Canyon N.M. 1940." Includes small sketch with location of pot in room. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, '1 print', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (866, 'Photo-Prints, Sites, Chaco Canyon, N.M., Other sites in the area', '1090439493017', 'Photograph-Print', '1 small print, labeled on the back in ink. "-Floor level of pit-house exposed in arroyo bank 9 miles east of Pueblo Bonito-Season of 1926", in pencil "Neg. Available, and stamped in purple ink "17". Attached by paperclip to the photo is a scrap of paper which reads "Just below the Shabik''eshchee Village. Tom Windes, 4 Jan 1978, Chaco Center, NPS, Albuquerque, NM." Above the note this is written but crossed out: "Possibly Half House excavated in 1949?"', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (232, 'NGS Photographs', '1081969431187', 'Photograph-Print', '"Cylindrical jars from Pueblo Bonito." Neg#5016-B. Display of 4 cylinder jars.', 0, NULL, 0, NULL, 0, 'Neg#5016-B', 1, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (864, 'Photo Prints Sites chaco Canyon, N.M. Bc 53 Site 1940 Season 3a', '1090439429266', 'Photograph-Print', 'Photo with following notes on back: "Bc 53 Room 7: Skull of much-scattered skeleton just above floor(?). Bark strip underlies skull; matting underlay pelvis and articulated vertebrae and stretched from North to south at least 51 consecutive inches. Skull lying N-S, top to N, resting on right cheek. No mandible. Tooth (2nd incisor) lying at base of skull. Skull broken by excavator''s shovel(?) Excavator: Ted Stern Chaco Canyon N.M. 1940."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (862, 'Photo Prints Sites Chaco Canyon, N.M. Bc 53 Site 1940 Season 3a', '1090439313670', 'Photograph-Print', '1 print photo with notes on back. Notes read: "Bc 53 General, though contracted view when both ''A'' and ''B'' groups were working, Chaco Canyon N.M. 1940." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, '1 print', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (860, 'Photo Prints Sites Chaco Canyon, N.M. Bc 53 Site 1940 Season 3a', '1090439222528', 'Photograph-Print', 'One photo from Bc 53. Notes on back read: "Bc 53, General Dig: Second Week from Talus Slope at Base of south wall of canyon. Chaco Canyon N.M. 1940."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, '1 print', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (858, 'Photo Prints Sites Chaco Canyon, N.M. Bc 53 Site 1940 Season 3a', '1090438934368', 'Photograph-Print', '2 Photos from Bc 53. Notes on the back of print read: "Chaco Canyon, Dot and a burial, 53, 1940. Our copy to Dr. Roberts." Photos are of a child burial. There appears to be a couple objects nearby. A woman sitting next to the burial must be "Dot". It appear that these were given to Roberts by one of his students. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, '2 prints', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (842, 'Photo-Prints, Sites, Chaco Canyon, N.M., 1690 House', '1090435769226', 'Photograph-Print', '1 small print, labeled on the back in ink as "1690 House, Chaco Canon", in pencil with "Neg. Available", and stamped in purple ink with what appears to read "A 7". A few masonry walls are visible, built up against the rock face under an overhang.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', 'Find out if 1690 House has another name.', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (836, 'MS 4851 Frank H.H. roberts, Jr. Chaco Canyon, N.M. 1940', '1090434627002', 'Photograph-Negative', 'Envelope with 10 strips of negatives (2 negatives on each strip). Photos appear to be of excavations primarily in a kiva. since they are in the Roberts collection and dated 1940, I''m going to assume that they''re from Bc 53. Although all the other envelopes in this box contain negatives that were originally pulled from box 18, this folder has no such reference, so it is unclear to me whether it originally came from box 18 or not. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, '20 negatives', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (607, 'Ruins: Chaco Canyon (Chettro Kettle; Hungo Pavie; Kimenioli)', '1089726266236', 'Photograph-Print', '"Chaco Canyon, N. Mex. Chettro Kettle SE corner of E. L. Hewett excav." Neil M. Judd 9-14-20 [Neg 33]', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (791, 'Photo-Prints, Sites, Chaco Canyon, N.M., Shabik''eshchee Village-General', '1090422946236', 'Photograph-Negative', '1 photo negative in a small envelope. The negative appears to be the negative of another photo in the folder (Object 793), which is labeled "Kiva, East". Shows interior of an excavated kiva with beams laying on the floor and a scale bar. Probably Shabik''eshchee because it occurs in the context of other photos of Shabik''eshchee and appeared in the folder labeled "Shabik''eshchee Village".', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo negative', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (775, 'Pueblo del Arroyo', '1090419929766', 'Photograph-Print', '5 general photos (with one duplicate) of Pueblo del Arroyo and the "mound ruin on arroyo near Pueblo del Arroyo". 2 photos of the mound ruin. 3 of these photos are attributed to H.L. Shapiro of the AMNH 2 mound 3 H.L.Shapiro. 5 of them are labeled with plate numbers indicating that they are published elsewhere. They are all labled "Hyde Expedition." Plate numbers include: Pl. 43B, Pl. 53A (2 copies), Pl. 53C, Pl. 53B.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '5 photos and 1 duplicate', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (773, 'Chaco Canyon, NM Pueblo Bonito--Other NGS Photos related to N. Judd Publications', '1090419614806', 'Photograph-Print', 'One print photo, mounted on a card. Photo shows 4 ollas, or constricted neck storage jars. Notes on front of card read "appear as pl. 4 pp. 399-413 Judd 1924. Note next to olla in upper right corner reads, 324837. Note next to olla in upper left corner reads "324801". On back of card, note reads "Pit house and R. 326 ollas." Negative number on back is 130095-A. ', 1, 'May have been published in Judd''s Ch. 5 of Material Culture of Pueblo Bonito. ', 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 print', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (768, 'Pueblo Bonito: Rooms 151-190; 303; unidentified rooms', '1090419131392', 'Photograph-Print', '2 photos. Caption 1: "(Room back of kitchen #14A) R. 303 - NMJ. Shown in Pepper, 1920, Fig. 24, p. 73 as ''Floor boards in Room 14A''". These boards are unbelievable. Caption 2: "R. 303 NMJ Back room of kitchen adobe and bark in situ. Plainly N. Wall of R. 303. Shown in Pepper, 1920, Fig. 23, p. 72 as ''Interior of Room 14A''". ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '2 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (259, 'Pueblo Bonito Excavations', '1089728039200', 'Photograph-Print', '3 photos mounted on card. Captions read "Upper left: N.E. corner of wall enclosing east refuse mound, Pueblo Bonito. #28596-A. Lower left: N.E. corner of awall enclosing east refuse mound, Pueblo Bonito. #28597-A. Above: Exposing east side of wall enclosing east refuse mound, Pueblo Bonito #28513-A. Photos by O.C. Havens, 1924."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (260, 'Pueblo Bonito Excavations', '1089728286184', 'Photograph-Print', 'Two photos mounted on card. Caption reads "Uppper left: Investigation trench in east mound, Pueblo Bonito. #31991-A. Upper right: Wall beneath refuse mound, East trench, Pueblo Bonito # 34505-A Photos by O.C. Havens, 1925."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '2 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (762, 'Pueblo Bonito: Rooms 151-190; 303; unidentified rooms', '1090418283109', 'Photograph-Print', '8 photos ranging from room 165-171: Caption 1: "R #165 from SW: Passage #166 at L.", Caption 2: "#166-7 fr. SW; R. 167 at L.", Caption 3: "#168 NW corner", Caption 4: "R 168 W. end N. wall. Lintels of steps from R. 168A to room formerly occupied by kiva 161 (?)", Caption 5: "Rs #168-169 (@R.)", Caption 6: "#170 NW corner", Caption 7: "R #171-172 (foreground)", Caption 8: "#171 NW corner". ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '8 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (583, 'Ruins: Chaco Canyon (Chettro Kettle; Hungo Pavie; Kimenioli)', '1089728265584', 'Photograph-Print', '"Chaco Canyon, N. Mex. Chettro Kettle E. wing from South." Neil Judd 9-14-20 [Neg. 35]', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 photo', 'Link to NGS?', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (761, 'Chaco Canyon, NM Pueblo Bonito--Other NGS Photos related to N. Judd Publications', '1090418197167', 'Photograph-Print', 'One print of two constricted neck storage jars with three sheets of notes attached. First note appears to be from Judd to Roberts. "Frank- I pulled these mounted prints out of my chap. on pottery for your use, if wanted." The second note is a sketch of the two objects with what is probably national museum numbers beneath them. The numbers are 324801 and 324837, respectively. Handwritten notes surrounding the two objects read "Ollas (neg. #130094-A) with 336506, 336507 on Neg. 130095A." "pottery Pit House omit?" "(see also Neg. 130095-A)." The third page of notes is a copy of the second. This photo appears to have been published in the Material Culture of Pueblo Bonito, Ch. 5. But the notes indicating that these ollas may have been from a pit house raise questions. ', 1, 'May have been published in the material culture of Pueblo Bonito, Ch. 5. ', 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo with 3 pages notes', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (261, 'Pueblo Bonito Excavations', '1089728689036', 'Photograph-Print', '3 photos mounted on cards. Caption reads "Above: Chronological section in old Hyde Trench in east refuse mound, Pueblo Bonito. #11953-A. Photo by O.C. Havens, 1921. Upper Left. Chronological section, east refuse mound, showing stratification, and at right of Indian, wall covered by the mound. 18671-A. Lower left. Beginning chronological section in 1922 trench, east refuse mound, looking north. 18641-A. Photos by Judd, 1922. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (600, 'Ruins: Chaco Canyon (Chettro Kettle; Hungo Pavie; Kimenioli)', '1089728785502', 'Photograph-Print', '"Chaco Canyon, N. Mex. Hungo Pavie fr. N.W. W and S.W." Neil M. Judd 9-17-20 (3 negatives) [Neg 38] There is only one print here - not sure which direction it''s facing or where the other negatives are.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (601, 'Ruins: Chaco Canyon (Chettro Kettle; Hungo Pavie; Kimenioli)', '1089728982626', 'Photograph-Print', '"Chaco Canyon, N.Mex. Hungo Pavie fr. N.W., W. and S.W." Neil M. Judd 9-17-20 3 negatives [Neg. 39] There is only one print here in the folder - not sure which direction it''s facing, or where the other negatives/prints are.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 print', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (754, 'Photo-Prints, Sites, Chaco Canyon, New Mexico, Pueblo Bonito-Excavations ', '1090416974099', 'Photograph-Print', '1 small print, labeled on the back in handwritten ink "Zuni Mason, Pueblo Bonito." Also stamped on the back with a small purple "18". Shows a man in front of several masonry walls/rooms, holding a trowel and a masonry stone in place on the wall.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (602, 'Ruins: Chaco Canyon (Chettro Kettle; Hungo Pavie; Kimenioli)', '1089729349282', 'Photograph-Print', '3 b/w prints of Hungo Pavie taken from a distance by Neil M. Judd - dated 9/17/20. Neg #s 40-42. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 prints', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (598, 'Ruins: Chaco Canyon (Chettro Kettle; Hungo Pavie; Kimenioli)', '1089729486548', 'Photograph-Print', 'A group of b/w photos of Kimenioli are contained in this folder. All taken by Neil M. Judd. 2 taken 7-24-20, 8 taken 9-20-20. Negatives 43-52. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '9 prints, 1 reference to a negative', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (759, 'Photo-Prints, Sites, Chaco Canyon, New Mexico, Pueblo Bonito-Excavations ', '1090417882367', 'Photograph-Print', '1 print, unlabeled. Shows a workman with a shovel during excavations: possibly in a kiva or great kiva (rounded walls). We believe this is at Pueblo Bonito because it occurs in context with many other photos from Pueblo Bonito and it is in the folder labeled "Pueblo Bonito-Excavations". 9/14/04 C. Heitman: I''ve reviewed the photos in this folder. This image, as well as three others, is on a differnt kind of photo paper. It''s printed on a light cardboard - with no gloss surface. This print is clearly from somewhere else (S. Plog thinks it''s from Mesa Verde) - which makes me think these 4 images are not of Pueblo Bonito.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (756, 'Pueblo Bonito: Rooms 151-190; 303; unidentified rooms', '1090416880617', 'Photograph-Print', '10 photos of rooms ranging from 151-159. Caption 1: "R #151 fr. SW corner". Caption 2: "R #152 West and N. wall". Caption 3: "Rs #152-153-154 R/ 153 in foreground view fr. SW. Door at L is in N. wall of R. 152." Caption 4: "S. of R. 154. Vew N. West. Sections made by Dodge and strata noted Pepper. (S. of rooms 153-154 NMJ) Opp. S. front of R. 154". Caption 5: "R #154 155-156-157-158. R. 154 foreground, 155, 156, 158". Caption 6: "R #155 View W. Shows gateway. Pepper". Caption 7: "R #155 W. S. and N. Walls. R. 154 at L. looking N." Caption 8: "R #156A - South of floor. Not a room but portion of floor cleared. Directly above sherd box is S. door of R. 155". Caption 9: "R #157-158. Looks like 156 (foreground), 157, 158. Caption 10: "R #158. NE corner. NMJ".', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '10 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (264, 'Pueblo Bonito Excavations', '1089729634692', 'Photograph-Print', 'Two photos mounted on card. Caption reads: "Chronological section, W. Bonito refuse heap. Photo by O.C. Havens, 1921. #11947-A." Upper left: "Chronological section, 20'' in height, west refuse mound. Photo by Havens, 1924. #28593-A." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '2 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (751, 'Pueblo Bonito: Rooms 126-149', '1090416680054', 'Photograph-Print', '7 photos of rooms ranging from #141-149. Caption 1: "R #141-142". Caption 2: "R #143-144". Caption 3: "R #144". Caption 4: "R #145". Caption 5: "R #146-147-148-149". Caption 6: "R #146-147-148". Caption 7: "R #149".', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '7 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (265, 'Pueblo Bonito, Camps Workers', '1089730447867', 'Photograph-Print', 'Three photos mounted to card. This is the last card in the box and appears in the "Pueblo Bonito, Camps Workers" folder, but it''s actually pictures of architecture. The caption reads: "Upper left: Shrine room at outer S.E. corner of Pueblo Bonito #23329-A. Lower left: Shrine room at outer S.E. corner of Pueblo Bonito (Note types of masonry and white plaster). #23340-A. Above: Shrine rooms at east end of S. wall of Pueblo Bonito. #23327-A. Photos by Neil M. Judd, 1923."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (266, 'Pueblo Bonito General Views', '1089730974132', 'Photograph-Print', 'Three photographs mounted on card. Caption reads: "Above Pueblo Bonito from Northwest. #7650-A. Photo by O.C. Havens, 1921." "Upper left: Outer north wall of Pueblo Bonito, viewed from the base of North Cliff. #34486-A." "Lower left: "Pueblo Bonito from the Northwest #32631-A. Photos by O.C. Havens, 1925." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (745, 'Photo-Prints, Sites, Chaco Canyon, New Mexico, Pueblo Bonito-Excavations', '1090355035693', 'Photograph-Print', '1 small print, labeled on the back only with a small, purple, stamped "18". Photo of Fajada Butte.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (746, 'Pueblo Bonito: Rooms 126-149', '1090354950687', 'Photograph-Print', '8 photos showing different rows of rooms (131-138). Caption 1: "R #s 131-132-133-134-135-136-137-138". Caption 2: "R #s 131-132-133-134-135-136-137-138". Caption 3: "R #s 131-132-133-134-135-136. Room 133." Caption 4: "R #138-139-140". Caption 5: "R #138-139. R-140 @right margin". Caption 6: "R #137-138-139". Caption 7: "R #134-135-136-137". Caption 8: "R #s 131-132-133-134-135-136-137-138". ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '8 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (740, 'Pueblo Bonito: Rooms 126-149', '1090354541804', 'Photograph-Print', 'Photos of rooms 126-129. Caption 1: "R #126 N & E Wall". Caption 2: "R #127 East wall". Caption 3: "R #128 Before excavation; wall in foreground that ofR #127 HBR July 13, 1927". Caption 4: "R #129 N and E walls". ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '4 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (734, 'Pueblo Bonito: Rooms 101-125', '1090353713004', 'Photograph-Print', '4 photos of rooms 122-125. Caption 1: "R #122. E and N Wall" . Caption 2: "R #123 E and N Wall". Caption 3: "R #124 N and E wall". Caption 4: "R #125 N and E walls".', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '4 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (733, 'Pueblo Bonito: Rooms 101-125', '1090353499356', 'Photograph-Print', 'Photos of rooms 117, 119, 120, and 121. Caption 1: "R #117 N & E Wall". Caption 2: "R #117. View E." Caption 3: "R #119 (?) E. Wall Hyde Exped". Caption 4: "R #120 N & E Wall. Hyde Exped?". Caption 5: "R #121 N.E. Wall. Hyde Exped?".', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '5 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (268, 'Pueblo Bonito, General Views', '1089731416917', 'Photograph-Print', 'Two photos mounted on card. Caption reads "Pueblo Bonito from the northeast. Photo by Chas. Martin, 1920. #5994-A. [handwritten note reads "NG. Mag. 6/1921, p. 638." Assuming this means it was published] Pueblo Bonito and North cliff from camp. Photo by O.C. Havens, 1921. #11906-A. ', 1, 'Note indicates that the first photo described above was published in the June 1921 copy of National Geographic magazine. ', 0, NULL, 0, NULL, 0, NULL, 88, NULL, '2 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (728, 'Pueblo Bonito: Rooms 101-125', '1090353210237', 'Photograph-Print', 'Photos of rooms 113-116. Caption 1: "Old and new wall points at S. end of R. #96. SW corner of R. 113 @ L with 2nd story SE wall of R. 96 beyond. Looking SW." Caption 2: "R#114 N & E Wall" 2 copies. Caption 3: "R #115. N & E wall. From S." Caption 4: "R #116 N & E wall". ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '4 photos, plus 1 duplicate', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (267, 'Pueblo Bonito General Views', '1089731201732', 'Photograph-Print', 'Three photos mounted to card. Caption reads: "Upper left: Outer S.E. corner of Pueblo Bonito, after removal of debris. #23325-A. Lower left: Pueblo Bonito from the S.E. after removal of sand accumulations. #23315-A. Above: Pueblo Bonito from the N.E. after removal of debris. #23326-A. Photos by Neil M. Judd, 1923."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (729, 'Note cards; Pueblo del Arroyo Notes on Room Excavations', '1090352834664', 'Notes-Notecards', 'Set of notecards from room excavations in Pueblo del Arroyo. These cards are well organized and appear to contain a lot of information on all rooms and kivas excavated in Pueblo del Arroyo. What follows is an example of the information appearing on one of these cards: "R.1 (2cds.) Entire series of houses built against S. side of ruin are of inferior masonry and irregular in shape. These rooms may have been suggested by buttresses built at fairly regular intervals against the s. wall of del Arroyo. These buttreses are of rather uniform dimensions and their masonry is superior to that which joins them together forming small rooms 1 to 7. R. 1 measures 8''9" on N., 5''11" on E., 8''4" on S., 6''6" on W..." There is another 1.5 cards of info on R. 1. These cards also have sketches in color, of some of the rooms on the back side. Also included with the cards is a notecard that has a printed plan drawing of Pueblo del Arroyo with excavated room numbers and kiva letters. This drawing also has some handwritten annotations including beam dates in particular rooms. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, 'probably over 250 cards', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (722, 'Pueblo Bonito: Rooms 101-125', '1090352805815', 'Photograph-Print', '2 photos of room 108. Caption 1: "Room in E. part of Bonito. R. 108 fr NW". Caption 2: "R #108 View N.W. Showing N. corner and 1st and 2nd story doors to R.107A.B. NMJ".', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '2 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (719, 'Pueblo Bonito: Rooms 101-125', '1090352567734', 'Photograph-Print', '3 photos of room 107. Caption 1: "R #107 Floor. E. and SE walls. NMJ". Caption 2: "Upper floor R #107. E. end; R. 101 @ left - NMJ". Caption 3: "R 107 East wall. Shows part of upper floor. SE wall and door; 2nd type N.E. wall @ lower left - NMJ". ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (716, 'Pueblo Bonito: Rooms 101-125', '1090352251728', 'Photograph-Print', '2 photos of room 106. Caption 1: "R #106". Caption 2: "R #106 Wall @upper L. is @ N. End of R. 105 (see Hyde print 484) Above excav. N. Walls of R. 25 (right) on Hyde plan as R. 23". ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '2 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (270, 'Pueblo Bonito General Views', '1089732317069', 'Photograph-Print', 'Two photos mounted on card. Captions read: "Southeast corner of Bonito fr. slightly W. of south. No no. Photo by O.C. Havens, 1921." "The Same. Photo by O.C. Havens, 1921. #7639-A." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '2 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (712, 'Pueblo Bonito: Rooms 101-125', '1090351934942', 'Photograph-Print', '2 photos of room 103. Caption 1: "R #103". Caption 2: "R #103 N.W. End".', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (711, 'Pueblo Bonito: Rooms 101-125', '1090351723668', 'Photograph-Print', '4 photos of room 102 Caption 1: "R #102 N.E. end NMJ". Caption 2: "R #102 N.E. End". Caption 3: "R #102 N.E. End. Floor beams in corner". Caption 4: "R #102 View N.W."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '4 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (710, 'Photo-Prints, Sites, Chaco Canyon, New Mexico, Pueblo Bonito-Excavations', '1090351627495', 'Photograph-Print', '1 print. Labeled on the back, handwritten in pencil, it says "#3" and "F.H.H.R." We believe that this is a photo looking north toward Threatening Rock, with Pueblo Bonito in view.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (585, 'Ruins: Chaco Canyon (Penasco Blanco; Pueblo del Arroyo)', '1089732937222', 'Photograph-Print', 'A small group of photographs - all general architecture shots of ruins. Ruins include: "Bonito, Pithouse S. of across Canyon," "Room used as chicken coop. Pueblo del Arroyo," Pueblo del Arroyo, and Penasco Blanco. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '4 prints, 1 piece of paper describing a negative', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (709, 'Pueblo Bonito: Rooms 101-125', '1090351562091', 'Photograph-Print', '3 photos of room 101. Caption 1: "R #101. NW Wall and W corner". Caption 2: "R #101 View North". Caption 3: "View South. SW end with 2nd story floor offset. NMJ".', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (706, 'Pueblo Bonito: Rooms 101-125', '1090351331562', 'Photograph-Print', '3 photos. Caption 1: "Rs 101-102-107 View North". Caption 2: "R #104-100 View S. West R. 104 with post end showing. NMJ". Caption 3: "Old series of rooms west side of Bonito. Rs. 102 (foreground) 103 and 113 looking SW - NMJ". ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (705, 'Pueblo Bonito: Rooms 76-100 & Dark room east of 100', '1090350738440', 'Photograph-Print', '2 photos. Caption 1: "R. 112? Room east of 100. ''dark room'' HBA". Caption 2: "Ceiling on Roof of Dark Room. Ill. as R. 112. fig. 137, p. 331 - Pepper. Unquestionably room E. of R. 100 - NMJ".', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '2 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (703, 'Pueblo Bonito: Rooms 76-100 & Dark room east of 100', '1090350413077', 'Photograph-Print', '8 photos of room 99. Caption 1: "R 99. East and S. West wall shows stone step. Pepper, 1920, fig. 129, p. 310". Caption 2: "R #99 View from west (NW)". Caption 3: "R #99 east end". Caption 4: "R #99 Pitchers in N.W. corner." Pepper, 1920, fig. 131, p. 312." Caption 5: "R #99. Doorway in N. Wall. Pepper, 1920, fig. 130, p. 311". Caption 6: "R #99 West end". Caption 7: "R #99 West end". Caption 8: "R #99 Pottery in N.W. Corner". ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '8 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (702, 'Pueblo Bonito: Rooms 76-100 & Dark room east of 100', '1090350278118', 'Photograph-Print', '2 photos. Caption 1: "Rs #104 and 100. View N.W. R. 104, shadowed, @ left NMJ". Caption 2: "R #100 Floor in S. end".', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '2 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (700, 'Pueblo Bonito: Rooms 76-100 & Dark room east of 100', '1090349893366', 'Photograph-Print', '4 photos of room 97. Caption 1: "R #97 Showing wattle wall". Caption 2: #R #97 Showing floor". Caption 3: "R #97 S. end wall. Pepper, 1920, fig. 127, p. 307". Caption 4: "R #97". This image shows a close-up of the wall plaster. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '4 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (699, 'Pueblo Bonito: Rooms 76-100 & Dark room east of 100', '1090349670720', 'Photograph-Print', '2 photos. Caption 1: "Rs #96 and 95 (@ rear) View N.E." Caption 2: "Old and new wall. Point at S. end of R. #96. SW corner of R. 113 (with ventilator) and 2nd story SE wall of R. 96 beyond @ right. View from R. 109; unexcavated R. 112 in left foreground. NMJ". ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '2 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (696, 'Pueblo Bonito: Rooms 76-100 & Dark room east of 100', '1090348965905', 'Photograph-Print', '2 photos of room 93. Caption 1: "R #93 View looking northeast". Caption 2: "R #93". These two photos are the same image/view - but with different light exposures.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '2 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (604, 'Ruins: Chaco Canyon (Pueblo Pintado; Una Vida; Weji-gi)', '1089733767798', 'Photograph-Print', '3 general architectural photo prints of Una Vida. Taken by Judd in July and September 1920. Negative #s 82-84.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 prints', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (605, 'Ruins: Chaco Canyon (Pueblo Pintado; Una Vida; Weji-gi)', '1089733960638', 'Photograph-Print', '3 general architectural shots of Una Vida. 2 pieces of paper describing negatives for which there are no prints. These were taken by Judd in Spetember and July of 1920. Negatives #s85-89. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 prints, 2 pieces of paper describing negatives', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (695, 'Pueblo Bonito: Rooms 76-100 & Dark room east of 100', '1090348802415', 'Photograph-Print', '2 photos of R. #92: Caption 1: "R #92 fireplace in middle". Caption 2: "R 92 Floor. View from East trench. R. 92 is 2nd story of R. 97 (3a) View fr S.E. SW wall on L; NE on R."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '2 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (694, 'Pueblo Bonito: Rooms 76-100 & Dark room east of 100', '1090348412061', 'Photograph-Print', '7 photos of room 90. Caption 1: "R #90 Metate ruins. E. End" Image shows mealing bins. Caption 2: "R #90 Floor. Metates in ruins." Caption 3: "R #90 View N. West Metate ruins." Caption 4: "R #90" This is the best image of the mealing bins. Caption 5: "R #90 West end. Metate bins." Caption 6: "R #90 So. Wall" Caption 7: "R #90 E. end, N. wall. Pepper, 1920, fig. 125, p. 296" ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '7 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (275, 'Pueblo Bonito, General Views', '1089738651906', 'Photograph-Print', 'One photo mounted on card. Caption reads: "Pueblo Bonito before N.G.S. excavations. View from the cliff NW. of ruin. Photo by Charles Martin 1920. Negative # 3018-B". Written in pencil on card is "In NG Mag, Jun , 1921, p. 642."', 1, 'Based upon the annotation written on the photo card, I''m assuming that this photo was published by National Geographic Magazine in June, 1921.', 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (608, 'Pueblo Bonito, Miscellany', '1089739205975', 'Photograph-Print', '2 photos mounted on card. Caption 1 reads: "Kiva R, Pueblo Bonito, showimg 1st type of bench (at bottom) and 2 subsequent types of reconstruction" #50581-A. 1927 Photo by Neil M. Judd Caption 2 reads: "Kiva R, from the W., Pueblo Bonito" #28438-A Photo by O.C. Havens, 1924.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '2 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (586, 'Pueblo Bonito, Miscellany', '1089739434430', 'Photograph-Print', '3 photos mounted on card. Caption 1: "Beginning excavation of Kiva R., Pueblo Bonito. #28418-A" Caption 2: "Beginning Excavation of Kiva R., Pueblo Bonito. #28366-A" Caption 3: "Deep ''firepit'' at SW corner of Kiva R., Pueblo Bonito. #28364-A" Photos by O.C. Havens, 1924', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (693, 'Pueblo Bonito: Rooms 76-100 & Dark room east of 100', '1090347813762', 'Photograph-Print', '3 photos of room 89. Caption 1: "R #89. East end". Caption 2: "R #89". Caption 3: "R #89 Workmen".', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (276, 'Pueblo Bonito General views', '1089739190210', 'Photograph-Print', 'One photo mounted on card. Caption reads: "Pueblo Bonito as seen from the north cliff near close of 1924 season. Photo by O.C. Havens. Neg. No. 28494-A. Enlarged." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (278, 'Pueblo Bonito General Views', '1089739532552', 'Photograph-Print', 'One photo mounted on card. Caption reads: "Pueblo Bonito from the north wall of Chaco Canyon, at the close of the third season''s explorations. (Compare with Neg. No. 3018-B.) Photo by Edwin L. Wisherd, 1923.) Negative No. 4305-B." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 Photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (689, 'Pueblo Bonito: Rooms 76-100 & Dark room east of 100', '1090347616677', 'Photograph-Print', '4 photos of room 88. Caption 1: "R #88 Floor of room. N. corner". There appears to be some smoke blackening in this corner. Caption 2: "R #88 Angular room below". Caption 3: "R #88 W. end". Caption 4: "R #88 Floor shows angular divisions." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '4 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (688, 'Pueblo Bonito: Rooms 76-100 & Dark room east of 100', '1090347358540', 'Photograph-Print', '7 photos of room 87. Caption 1: "R 87 Floor looking west." Caption 2: "R #87 Floor showing angular room". Caption 3: "R #87 Pepper, 1920, fig. 124, p. 288 (reduced)". Caption 4: "R #87 N. East corner" . Caption 5: "R #87 Western end". Caption 6: "R #87 W. end - NMJ".', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '6 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (686, 'Pueblo Bonito: Rooms 76-100 & Dark room east of 100', '1090347145186', 'Photograph-Print', '3 photos. Caption 1: "R #86 N. Wall and bowl in NE cor. NMJ". Caption 2: "R #86 Bowl in N. East corner View looking N." Caption 3: "R #86 Burned mat in SE cor. Pepper, 1920, fig. 123, p. 289 (reduced)". ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (587, 'Pueblo Bonito, Miscellany', '1089739745442', 'Photograph-Print', '2 photos (a 3rd has been removed) mounted on a card. Caption 1: "Pilaster with four poles, Kiva T., Pueblo Bonito. #28437-A" Caption 2: "Sub-floor chamber in Kiva T., Pueblo Bonito. #28430-A" Photos by O.C. Havens, 1924', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '2 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (588, 'Pueblo Bonito, Miscellany', '1089739926634', 'Photograph-Print', '2 photos (a 3rd removed) mounted on a card. Caption 1: "Passageway at SW corner of Room 16, Pueblo Bonito. #28363-A" Caption 2: "Outer SW corner of Room 16, Pueblo Bonito. #28367-A" Photo by O.C. Havens 1924', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (591, 'Pueblo Bonito, Miscellany', '1089740059175', 'Photograph-Print', '3 photos mounted on a card. Caption 1: "Fireplace, ventilator opeining, and south recess of Kiva Y, Pueblo Bonito. #28515-A" Caption 2: Southeast 1/4 of Kiva V, Pueblo Bonito. #28475" Caption 3: "South recess of Room 59, (kiva) with fireplace and ventilator, P.B. #28585-A." Photos by O.C. Havens 1924', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (279, 'Pueblo Bonito, General Views', '1089739716237', 'Photograph-Print', 'Three Photos mounted on card. Caption reads: "Upper left: N.W. quarter of Pueblo Bonito, from above R. 148. (R.212, foregr.) #39561-A. Lower left: Rooms E. of East Court, Pueblo Bonito, from above R.148. N.P.S. repairs and concrete capping. #39552-A. Above: North wall of Rooms 14a;301, etc., Pueblo Bonito;view from W. #39560-A. Photos by N.M. Judd, 1926." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (590, 'Pueblo Bonito, Miscellany', '1089740670456', 'Photograph-Print', '2 photos mounted on a card Caption 1: "Inner N.E. 1/4 of Kiva 2-D, Pueblo Bonito. #39943-A" Caption 2: "Kiva 2-D, from west, Bonito. #38990-A" Photos by N.M.Judd, 8/20/26 and 7/7/26 , respectively.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '2 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (592, 'Pueblo Bonito, Miscellany', '1089740860474', 'Photograph-Print', '2 photos mounted on a card. Caption 1: "Kiva 161, from the NE. Pilaster logs and roof poles. Photo by OC Havens, 1921. #11946-A" Caption 2: "Kiva 161 from the east. Photo by OC Havens, 1921. #11935-A" No site designation given.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '2 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (685, 'Pueblo Bonito: Rooms 76-100 & Dark room east of 100', '1090346330003', 'Photograph-Print', '15 photos of room 85. Caption 1: "R 85 East end of room". Image shows ceiling support posts. Caption 2: "R #85 looking west. Corrugated jar in place." This image also nicely shows the wall plaster. Caption 3: "R. #85 Taken from West wall. SE cor. bins @ upper right". This image also shows ceiling support posts. Caption 4: "R #85 West end shows group of ruins." Caption 5: "R #85 Pottery in situ West end. Pepper, 1920, fig. 120, p. 277." Caption 6: "Shown as R. 85 in Pepper''s text Fig. 118 - p. 275 and on pring #333 as R. 85. Pepper 1920." Note - R #105 is written on the top of this photo but it has been crossed out. Caption 7: "R #85 North wall. 2nd story. Pepper, 1920, fig. 117, p. 274 (reduced)." Nice view of the plaster. Caption 8: "R #85 Floor- Sticks in place. West end." Caption 9: "R. #85. Pepper, 1920, fig. 119, p. 276." This image shows hewn wooden plank with round beam protruding out. Caption 10: "R #85 E. End". Caption 11: "Below 2nd story floor level, NW corner. Identified as R. 85. HMR". Caption 12: "R. #85 N. East corner. Fallen floor beams." Caption 13: "West end of room #85". Caption 14: "R #85 Corner wall west end of room". Caption 15: "R. #85 West end." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '15 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (679, 'New Mexico: Ruins Chaco Canyon, aerial photographs by Lindbergh', '1090345992808', 'Photograph-Print', 'Lindbergh aerial photo of Wijiji. Notes on back read: "Ruins - Chaco Canyon Weje-gi." Number on back of photo is "23" with checkmark underneath. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (678, 'Pueblo Bonito: Rooms 76-100 and Dark room east of 100', '1090345217383', 'Photograph-Print', '15 photos of room 83. Caption 1: "R #83 View fr. east." Seems to show flagstone floor. Caption 2: "R #83 Third floor view from East bank." Caption 3: "R #83 West wall." This image shows paire-post stair-steps, and smoke-blackened (?) plaster. Caption 4: "R #83 View from East end." Caption 5: "R #83 N.E. Corner". Caption 6: "R #83 Kiva wall". Caption 7: "R #83" Same image as above - better resolution. Caption 8: "R# 83. Looking West. Kiva in bottom of room". Caption 9: "R #83 Arc of old kiva under floor". Caption 10: "R #83". Caption 11: "R #83 North wall (in foreground)". Caption 12: "R #83 South (? or Surf.?) Kiva". Caption 13: "R #83" Roughly the same image as the previous photo. Caption 14: "R #83". Caption 15: "R #83 Kiva in lower part. Similar to Pepper, 1920, fig. 114, p. 272 (reduced) but from opposite side." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '15 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (675, 'New Mexico: Ruins Chaco Canyon aerial photographs by Lindbergh', '1090344934997', 'Photograph-Print', 'Lindbergh aerial photo of Pueblo Bonito. Notes on back read: "Chaco Canyon - Pueblo Bonito." Notes in another hand read "pl. 1 full p. Lindbergh 1929 R. 58 Judd pl. 1. Number in center of back. May be print of negative described in object number 671. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 photo ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (672, 'Pueblo Bonito: Rooms 76-100 and Dark room east of 100', '1090344676483', 'Photograph-Print', '4 photos of room 80. Caption 1: "R #80 Floor and lower rooms. Metates probably let down from floor of room for right hand half of tabular metate shows leaning against wall in Print 269 (NMJ). Caption 2: "R #80. Metate (269)". Caption 3: "R #80. Painted mortar. West end. Enlarged and trimmed for Fig. 109, p.265." Caption 4: "267A Mortar from R #80. Pepper, 1920, fig. 110, p. 266." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '4 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (669, 'Pueblo Bonito: Rooms 76-100 and Dark room east of 100', '1090343813075', 'Photograph-Print', '7 photos of room 76. Caption 1: "R #76" No other caption. Caption 2: "#76 West end." Caption 3: "Room #76". Caption 4: "R #76 Floor and West end of rooms". Caption 5: "R #76 Pepper, 1920, fig. 107, p. 260 (reduced)". Caption 6: "R #76 View looking west". Caption 7: "R #76". Many of these images show an earlier (?) bisecting wall, and round slab-lined pit with a square bin next to it. This appears to be a bisected kiva.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '7 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (666, 'New Mexico: Ruins Chaco Canyon aerial photographs by Lindbergh', '1090339632573', 'Photograph-Print', 'Copy of Lindbergh aerial photograph. Notes on back read: "Chaco Canyon 3 ruins. Irrigated area - intersection A. Pueblo del Arroyo, Pueblo Bonito, Chettro Kettle." All three of these ruins are visible. Picture is looking W. Just to the southwest of Pueblo Bonito is visible, what appears to be the remnants of standing water behind a small dam. This pool of water is visible in other photos. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (665, 'New Mexico: Ruins Chaco Canyon aerial photographs by Lindbergh', '1090339064290', 'Photograph-Print', 'Lindbergh aerial photo. Notes on the back read: "Chaco Canyon - Ruins at intersections of as and Bs S. side of Chaco, 9 mi. E. of Pueblo Bonito." In different pen, notes read: "Roberts'' partly excavated P.III site overlooking main arroyo, upper middle." See object 662 for similar description. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 photo ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (663, 'New Mexico: Ruins Chaco Canyon aerial photographs by Lindbergh', '1090338846348', 'Photograph-Print', 'Lindbergh aerial photo. Notes on the back read: "Excavations Chaco Canyon District. Roberts'' BM III site 9 mi E. of P.B." In center of photo on back is a "15" with a checkmark underneath. In the center of the photo a site including several round structures is visible. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 photo ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (654, 'New Mexico: Ruins Chaco Canyon aerial photographs by Lindbergh', '1090336876009', 'Photograph-Print', 'Aerial photo of Pueblo Bonito. Notes on the back read: "Phots. by Col. Chas. A. Lindbergh, 1929. sent by Dr. A.V. Kidder Carnegie Instn. of Washington, with letter of July 1, 1947." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (653, 'Cosmos Mindeleff photos with annotations by Judd', '1090336729342', 'Photograph-Print', 'Copy of Mindeleff photo annotated by Judd. Handwritten notes on back of photo read: "Bonito. Mindeleff 1887. BAE N. Mex. 157. Outer N. tier of Bonito, looking west. NW corner of R. 188 in R. foreground. NMJ 5/4/55. 3191."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 photo.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (651, 'Pueblo Bonito: Rooms 54-75', '1090336415522', 'Photograph-Print', '2 photos of room 75. Caption 1: "Kiva #75 Lower 2/3 in Pepper, 1920, fig. 106, P. 259." Image shows all the radial beam pilaster masonry boxes with the beams gone. Caption 2: "412003 Estufa Room 75 Pueblo Bonito From North Side Chaco Canyon, New Mexico." Note - this image is stamped with warning which reads: "On payment of required reproduction fee, the purchaser of this photograph is licensed for one reproduction useage only. This photograph may not be duplicated, re-used, rented, or resold. The American Museum of Natural History retains all rights for future Usage. Credit Line Must Read: Courtesy of the AMERICAN MUSEUM OF NATURAL HISTORY"', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '2 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (648, 'Pueblo Bonito: Rooms 54-75', '1090336152643', 'Photograph-Print', '4 photos of room 73. Caption 1: "Cleared doorway. 3 in one. 228-B (NGS) E. Wall. Pepper''s R. 73. Illustrated: Pepper, 1920, fig. 89, p. 204 as R. 43." Caption 2: "R #73 E. wall and SE corner NGS R. 228-B. NMJ." Caption 3: "R #73. S. wall of R. 228-B - NGS. door to R. 172-B. NMJ. @ L., SE corner of R. 228-A." Caption 4: "R #73 W. end of NGS R. 228-B. NMJ."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '4 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (643, 'Pueblo Bonito: Rooms 54-75', '1090335838130', 'Photograph-Print', '1 photo. Caption: "R #71. NW corner." Image shows underlying round room.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (644, 'New Mexico: Ruins Chaco Canyon aerial photographs by Lindbergh', '1090335781140', 'Photograph-Print', 'Photo of Pueblo Bonito from the air. Photo is accompanied by (though both are loose) a page of typewritten notes, with some handwritten corrections. The notes read: "Plate I Pueblo Bonito from the air. Photograph by Col. Charles A. Lindbergh, 1929; reproduced through courtesy of Dr. A. V. Kidder and the Laboratory of Anthropology, Santa Fe, New Mexico. Richard Wetherill''s dam is shown in front of and to the right of the ruin; his combined residence and store, at the left corner. At the right margin, the road crosses the new [crossed out and replaced with "1928"] bridge, curves pass the site of the National Geographic Society''s camp and two abandoned corrals, to end at the black-roofed building that was the Hyde Expedition''s boarding house. Dimly seen below this latter, the old freight road descends to cross the arroyo, passes four excavated rooms of [last 4 words crossed out] a small ruin on the shadowed [last word inserted] arroyo edge, and turns southward." Notes on the back of the picture read "Chaco Canyon box 34. pl. 1 Material Culture of PB. SI. Misc. Collections vol. 124 1954. [copy neg. # 83-13405]." Underneath this is written "49". ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 photo with one page of notes', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (639, 'Pueblo Bonito: Rooms 54-75', '1090334943196', 'Photograph-Print', '6 photos of room 67. This is a kiva - but I''m not sure what the letter designation is. Caption 1: "Kiva #67 below floor level." Caption 2: "R #67 Turquoise in situ in log." Caption 3: "Kiva #67 West side. Pepper, 1920, fig. 104, p. 249." Caption 4: "Kiva #67 Mould of log." Caption 5: "R #67 Turquoise in situ in log." Caption 6: "R #67 Showing hole in timber of pillar in kiva. Enlarged in Pepper, 1920, fig. 105, p. 250." This image shows the hole in pilaster (?) after they removed the turquoise. Also shows the stone plug. General note - the general shots of this kiva show a seam/horizontal gap in the masonry above two of the radial beam pilasters. Not sure what those are - but they do seem to be associated with the pilasters - at a consistent elevation.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '6 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (634, 'Pueblo Bonito: Rooms 54-75', '1090334408793', 'Photograph-Print', '2 photos of room 64. Caption 1: "R #64". No further caption. This photo shows smoke blackening on the wall, a viga, a dividing wall (?), a sealed doorway, and a vent or niche. Caption 2: "R #64 East end, Pueblo Bonito." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '2 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (621, 'New Mexico: Ruins Chaco Canyon Misc. ', '1090333007946', 'Photograph-Print', 'One photo mounted on card. Notes on the back of the card read: "Fr. Hrdlicka 1898." "1897 or 8." is crossed out. Another note reading "Hyde neg.?" is also crossed out. The number "2104" is written on the back. The photo is of Pueblo Bonito from the Mesa top looking SSE. At the back of Bonito, the Hyde expedition kitchen is clearly visible. There also appears to be a sizeable wall, which I approximate to be 1 story height abutting the back of Bonito, running toward the cliff wall and then curving to the east. Large chunks of stone from the cliff wall lie near the wall, which makes it appear as though it may have been some sort of retaining wall.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 photo', 'This is a good, early photo of the back of Bonito and should be considered a priority. ', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (619, 'Pueblo Bonito: Rooms 54-75', '1090332712995', 'Photograph-Print', '1 photo. Caption: "R. #57. NW corner - NMJ. Foreground=imprint of lintels over blocked S. door". Photo is looking down into a lower level - shows a ceiling support post and a vertical intermural beam.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (613, 'Pueblo Bonito: Rooms 54-75', '1090332030581', 'Photograph-Print', '2 photos. Caption 1: "R #54 Metates in situ. Pepper, 1920, fig. 92, p.54." Caption 2: R. 54 Looking W. NMJ. Pepper, 1920, fig. 93, p.212". These show intermural beams, and ceiling support posts. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '2 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (82, 'Inked Map of Turkey House', '00077', 'Map', '"Inked Map of Turkey House Filed with Monroe Amsden Oversized Maps: 4853:1." Flagged with an "out card" in Roberts Box 1, Folder entitled "Archaeological Sites Chaco Canyon: Cartographic Materials 1924-27." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, NULL, NULL, 77, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (626, 'Pueblo Bonito: Rooms 54-75', '1090333582455', 'Photograph-Print', '6 photos of room 62. Caption 1: "R 62. West end." Caption 2: "R #62. W. wall. NMJ. Pepper, 1920, fig. 98, p.225." Caption 3: "R #62. Lower levels and pot holes". This image shows 3 holes filled with pots adjacent to one another, and one under (?) the west wall. It also shows variably sized niches in the west wall. Lots of intact plaster. Caption 4: "R #622 - Pocket No.2 in foreground. Pottery in situ in west end of room pot-holes and baskets. Reduced for Pepper, 1920, fig. 100, p. 227." Caption 5: "R #62. Pottery in situ below floor." Image shows the same view as the above to photos. Caption 6: "R #62. Reduced for Pepper, fig. 99, p.226." Again, this image shows the same view as the 3 previous photos - but a close-up of south half of the west wall. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '6 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (618, 'New Mexico: Ruins, Chaco Canyon, misc. ', '1090332705881', 'Photograph-Print', 'One photo mounted on card. Notes on back of card read: "fr. Hrdlicka 1897 - or 8 [crossed out and replaced with] 1898 or 9. R. Wetherill built his house and store, 1898." Photo is of Wetherill house next to (w. of) Pueblo Bonito. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 photo ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (576, 'Cosmos Mindeleff photos with annotations by Judd', '1089922085807', 'Photograph-Print', 'copy of Mindeleff photo annotated by Judd. Notes on back read: "S. wall of R. 49B(?) P. del Arroyo from N. Mindeleff 1877. pl. 15B." "145" is written at the top, this is probably the BAE New Mexico Number. There is also a stamp on the back that reads "Photograph from the Smithsonian Institution". ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (574, 'Cosmos Mindeleff photos with annotations by Judd', '1089921855807', 'Photograph-Print', '2 Copies of photos by Mindeleff. Have no annotations, but they are photos of Pueblo del Arroyo from a distance. "NM 146" and "NM 144" are written on the back. There is also a stamp that reads: "Photograph from the Smithsonian Institution." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (572, 'Cosmos Mindeleff photos with annotations by Judd', '1089921712549', 'Photograph-Print', 'Copy of Mindeleff photo annotated by Judd. Stamp on back reads "Photograph from the Smithsonian Institution". Handwritten notes read: "NM - 147". "South wing of Pueblo del Arroyo from SE. NMJ."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (573, 'Pueblo Bonito: Rooms 26-44', '1089921691292', 'Photograph-Print', '1 print. Caption: "R#39A, 39B". Editorial note: This image seems to show horizonal beam dividing wall. It also shows an upright ceiling support post.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (568, 'Cosmos Mindeleff photos with annotations by Judd', '1089921371198', 'Photograph-Print', 'Copy of Mindeleff photo annotated by Judd. Notes on back read: "BAE. No. New Mexico # 223. Pueblo del Arroyo NE cor., S. wing, fr. SE. Mindeleff. 1887 BAE. Compare walls @ E end of Martin, 1920 Neg. 3239A. Window in 3rd (?) story W. wall of room N. of R. 17 (?) NMJ".', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 photo ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (565, 'Pueblo Bonito: Rooms 26-44', '1089921245395', 'Photograph-Print', '1 print. Caption: "R.#34. Fireplace. W. wall to NW corner NMJ."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (563, 'Pueblo Bonito: Rooms 26-44', '1089920969605', 'Photograph-Print', '5 prints. There is a handwritten note in this folder which precedes these images that says, "Pepper - PB R.28. 5 cylindrical jars. 1 only illustrated in his ''Pueblo Bonito.''" 5 cylinder vessel images follow this note - so I''m assuming these are the ones from room 28. Some of them have tapered bases, some of them have flared bases. One is labeled "Illustrated in Pepper, 1920, pl. 5".', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '5 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (559, 'Cosmos Mindeleff photos with annotations by Judd', '1089920644069', 'Photograph-Print', 'Copy of Mindeleff photo annotated by Judd. Notes on back read: "Bonito Mindeleff 1887. BAE BAE. no. New Mex. #251. Outer N. side of Pueblo del Arroyo from NW. Pueblo Bonito in left distance. Beams protrude at 2nd story ceiling level. NMJ." There are 2 copies of this photo in this folder. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (558, 'Pueblo Bonito: Rooms 26-44', '1089920521747', 'Photograph-Print', '2 prints (2 copies of the same image). Caption: "R.#32. Entrance showing pots. On p. 130, Pepper describes vessels near S. door, including MV mug. NMJ. Is blocked door, opened by Pepper from R. 28 (p. 129). NGS copy negative #89623-T."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (556, 'Pueblo Bonito: Rooms 26-44', '1089920341711', 'Photograph-Print', '1 print. Caption reads: "R.#28-A. Man on lower floor. (View from R. 44 SW Corner. NMJ)".', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (554, 'Pueblo Bonito: Rooms 26-44', '1089919937910', 'Photograph-Print', '5 prints. Caption 1: "R.28. Pottery N.E. corner. First layer numbered." Caption 2: "Vessels in West part of room 28 Taken from the East. Neg. #112. From Shapiro - 6/13/50." Caption 3: "Vessels in west end numbered. 2nd layer." Caption 4: "Pottery in Room #28. Bird''s eye view of floor. Negative #105. From Shapiro 6/13/50". 6th photo - no caption. Close-up of first layer. These images show ceiling support posts.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '6 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (548, 'Cosmos Mindeleff photos with annotations by Judd', '1089919219017', 'Photograph-Print', 'Copy of Mindeleff photo annotated by Judd. Notes on back read: "BAE Mindeleff 1887 NW quarter of Ruin #8 Chaco Canyon. Upper left hand corner of high central block now fallen; also standing block @ right rear. NMJ." Not sure what "ruin # 8" is, but it appears to be near N. Mesa. May be Kin Kletso.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (545, 'Pueblo Bonito: Rooms 1-25', '1089918664262', 'Photograph-Print', '1 print. Caption: "R.#17. Metates of white hard sandstone. Pepper, 1920, fig. 29, p. 78." Shows 6 giant metates - some of them with multiple troughs and/or opposing troughs (facing one another). Wall detail shows white (?) plaster intact.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (544, 'Cosmos Mindeleff Photos with annotations by Judd', '1089918625998', 'Photograph-Print', 'Copy of Mindeleff photo annotated by Judd. Notes on back read: " BAE Mindeleff - 1887 Hungo Pavie, W. portion of N. wall. Upper left 1/2 of sq. wall in middle now missing; also, arch beyond the upper portion of wall @ right foreground." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (542, 'Cosmos Mindeleff Photos with annotations by Judd', '1089918416458', 'Photograph-Print', 'Copy of Mindeleff photo annotated by Judd. Notes on back read: "BAE - Mindeleff, 1887 Outer NW wall of Pueblo Bonito and Braced-up Cliff from the West. 3rd story wall in foreground @ NW . corner of R. 200. Nearest door opens into unnumbered room between Rs. 100 and 200. ''Dark Room'' NMJ 5/4/55". Also written on back is "Neg. 3179" This is crossed out and "New Mex 162" is written beneath it. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 photo ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (537, 'Cosmos Mindeleff Photos with annotations by Judd', '1089917976308', 'Photograph-Print', 'Copy of Mindeleff photo annotated by Judd. Notes on the back read: "Bonito Mindeleff - 1887 Outer NW wall of P. Bonito: door @ left, into Room 200. Door @ right opens into unnumbered room between 100 and 200, i.e., Hyde''s ''Darkroom''. NMJ 5/4/55." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (534, 'Pueblo Bonito: Rooms 1-25', '1089917638185', 'Photograph-Print', '9 prints of Kiva 16 (not sure what letter this corresponds to in the later nomenclature). These are from varying directions and have variably sized fields of vision. Some of these are figures in Pepper, 1920.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '9 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (536, 'Pueblo Bonito: Rooms 1-25', '1089917846851', 'Photograph-Print', '2 prints of Room 1. Caption 1: "View N. West. Hole in corner. Just such an opening was found at Aztec Ruin with cooking pot rim open to room below. Pepper, 1920, Fig. 7, p. 34." This image also shows plaster and mortar. Caption 2: "R.1 floor (view from E.). Pepper, 1920, fig. 6, p. 33" This image shows secondary beams and daub construction. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '2 photos', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (527, 'Cosmos Mindeleff Photos with annotations by Judd', '1089916405772', 'Photograph-Print', 'Copy of Mindeleff photo annotated by Judd. Notes on the back read: "Bonito BAE Mindeleff - 1887. Neg. 3002 or 3602. Upper corner is NW cor. of R. 187C with portions of 4th story above. Broken E end of N. wall in 2nd and 3rd stories of R. 187. Door in W. wall of R. 187B. Nearer wall, white sill of blocked door, is W. wall of r. 186B with 1st story ceiling poles below. NMJ 5/4/55. W. wall of R. 187C is broken below sill level of door."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (531, 'Cosmos Mindeleff Photos with annotations by Judd', '1089917294668', 'Photograph-Print', 'Copy of Mindeleff photo annotated by Judd. Notes on back read: "Bonito BAE Mindeleff - 1887 Kiva G. Right end of high wall (with 7 shelf-pole holes) is 3rd story N. wall of R. 187. Room 188 N. wall to left with 2 holes broken thru @ 4th story floor level. Foreground, N arc of Kiva G. NMJ 5/5/55." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (526, 'Pueblo Bonito: Debris, mid-sections', '1089916257667', 'Photograph-Print', '3 prints. These images show trenches (presumably dug by the Hyde expedition) but there is very little information about provenience. Caption 1: "W. wall trench". Caption 2: "Cut in plaza E. of Bonito". Caption 3: "Hole Ruin E. of Bonito".', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (522, 'Cosmos Mindeleff Photos with annotations by Judd', '1089915297029', 'Photograph-Print', 'Copy of Mindeleff photo with Judd''s notes on back. Notes read: "Bonito BAE Mindeleff 1887 Pueblo Bonito from foot of cliff N.E. of ruin [copy neg # 83-13415]. Possible retaining wall under snow visible in foreground. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (520, 'Cosmos Mindeleff Photos with annotations by Judd', '1089915025649', 'Photograph-Print', 'Copy of Mindeleff photo with notes by Judd. Notes on back read: "Bonito Mindeleff-1889 BAE (E end of S. wall) SE corner of Bonito High wall @ left is 3rd story N. wall of R. 172; dirt-filled door @ right of it is NW. corner door in R. 173B. At right N. wall of R. 176B. NMJ 5/5/55". Another note that does not appear to have been written by Judd reads: "New Mex. 166." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (518, 'Cosmos Mindeleff Photos with Annotations by Judd', '1089914675206', 'Photograph-Print', 'Copy of Mindeleff photo with following notes by Judd written on back. "Bonito BAE Mindeleff- 1887. North wall of Pueblo Bonito from SW. wall end @ lower L. is @ NE cor. of R. 209; high wall above is 4th story of R''s 14b and 301. NMJ 5/4/55." Another note that does not appear to be Judd''s writing reads: "New Mex 172". ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 photo ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (514, 'Pueblo Bonito: Miscellany', '1089914223519', 'Photograph-Print', '3 prints with captions indicating they were published by Pepper in 1920. Caption 1: "Corner doorway. Eastern Part. Pepper, 1920, fig. 151, p. 345. NE corner." Caption 2: "Closed doorway. Pepper, 1920. fig. 150. p. 345." Caption 3: "Doorway. Pepper, 1920. fig. 153, p. 346."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (510, 'New Mexico: Ruins Chaco Canyon, braced-up Cliff', '1089912927953', 'Illustration-Other', 'Print of what looks to be a drawing produced by W. Jackson of the Jackson staircase. Drawing has the date "May 10 77" written on the bottom. It is kept in a card holder with "Box 31- Judd Colln. of Misc. Photos Folder 1. NM: Ruins, Chaco Canyon, Braced up cliff." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (498, 'Pueblo Bonito: Braced-up Cliff', '1089907256253', 'Photograph-Print', '1 photo. Caption Reads: "Cliff and wall north of Pueblo Bonito." This is an interesting image showing the low wall (?) that connected Chetro Ketl and Pueblo Bonito - BEFORE Threatening Rock fell. See object #497 for an image of what this looked like AFTER Threatening Rock fell. Both photos show the exact same segment of the cliff face. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (497, 'New Mexico: Ruins Chaco Canyon, braced-up Cliff', '1089906643858', 'Photograph-Print', 'Photo of what appears to be Talus house or a wall behind Pueblo Bonito? just after the fall of Braced-up cliff. Two workers stand in front of and on top of piles of rubble. A number on the back reads "#15864-A. For Neil Judd". ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (159, 'Proto-kiva', '1081882068612', 'Plan-Architecural', 'Architectural plan and cross-section of proto-kiva. Dated 1926. We are not certain that this plan is from Chaco Canyon. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (487, 'New Mexico Artifacts, Chaco Canyon', '1089905111079', 'Photograph-Print', 'Close up photo of the end of a ceremonial stick. The handwritten description on the back of the photo reads: " ''Ceremonial stick'' found in debris covering R. 293 after fall of Braced-up cliff. l. 42 7/16 inches and missing tip. Courtesy of NPS. Found by Custodian McKinney."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (486, 'Pueblo del Arroyo: Kivas', '1089905036067', 'Photograph-Print', '2 photos mounted on a card. Caption 1: "SW corner of Kiva C. with R.28 beyond, Pueblo del Arroyo--before excavation. Photo by O.C. Havens, 1924. #28413-A". Caption 2: "Excavating SW quarter of Kiva C., Pueblo del Arroyo. R.28 beyond. #28425-A. Photo by O.C. Havens, 1924."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '2 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (485, 'Pueblo del Arroyo: Kivas', '1089904768764', 'Photograph-Print', '3 photos mounted on a card. Caption 1: "South wall and recess of Kiva C, Pueblo del Arroyo. R.19-20C beyond. #38979-A. Photo by N.M. Judd - 7/24/26." Editorial comment: this image shows fire-blackened (?) plaster layers. Caption 2: "Kiva J., showing wide bench recess and ventilation, Pueblo del Arroyo. #34479-A". Caption 3: "Kiva G, Pueblo del Arroyo, showing fire screen, bench recess and ventilation. #34475-A". Photos by O.C. Havens, 1925', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (484, 'Pueblo Bonito, Rooms', '1089904577111', 'Photograph-Print', 'Three photos mounted to card. Caption 1: "Upper left: Plastered walls and fireplaces in Room 291, Pueblo Bonito. #22663-A." Caption 2: "Lower left: Zuni workman beside a fireplace in Room 291, Pueblo Bonito. #22664-A." Caption 3: "Above: Blocked door with recess, in north wall of Room 291, Pueblo Bonito. #22661-A. Photos by Neil M. Judd, 1923." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (489, 'Hyde Expedition: Lists of Photographs', '1089905525898', 'List-Photographs', 'Type-written list of Pepper''s Pueblo Bonito prints and gives specific description of provenience and architectural features (masonry types, etc).', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '5 pages', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (483, 'Pueblo del Arroyo: Kivas', '1089904547933', 'Photograph-Print', '3 photos mounted on a card. Caption 1: "Southwest corner of Pueblo del Arroyo, before excavation. West wall of Kiva B square above man''s head. #22636-A" Caption 2: "Southwest corner of Pueblo del Arroyo, before excavation. #22634-A" Caption 3: "Pueblo del Arroyo, from the Southwest and across the Chaco, at beginning of excavations. #22637-A" Photos by Neil M. Judd, 1923. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (480, 'Pueblo del Arroyo: Kivas', '1089904250664', 'Photograph-Print', '2 photos mounted on a card. Caption 1: "South bench recess, ventilator shaft and fireplace in Kiva B., Pueblo del Arroyo (View from west). #22642-A". Caption 2: "South bench recess, ventilator shaft and fireplace, Kiva B., Pueblo del Arroyo. #22641-A". Photos by O.C. Havens, 1923.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '2 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (478, 'Pueblo Bonito, Rooms', '1089903855538', 'Photograph-Print', 'Two photos mounted to card. Captions read: "Upper left. Rooms 287 and 288 (in left foreground) from the north. 18658-A." "Lower left. Licensi [a person] beside fireplace in SE corner of R. 287. 18659-A. Photos by Judd, 1922 [next is handwritten] NG Mag. July, 1923, p. 105." ', 1, 'Last photo described was likely published in the July 1923 issue of National Geographic Magazine on p. 105. ', 0, NULL, 0, NULL, 0, NULL, 88, NULL, '2 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (477, 'Pueblo Bonito, Rooms', '1089903583639', 'Photograph-Print', 'Three photos mounted to card. Caption 1: "Above. Ceiling structures and reinforcements of R. 279-A. 18622-A." Caption 2: "Upper left: Metate in N. passage to R. 273, Pueblo Bonito. #15863-A. Photo by Judd 1922." Caption 3: "Lower left. Remains of ceiling of R. 279-A and wall supports at SE corner of Kiva G, from the west. 18670-A. Photos by Judd, 1923. [next is handwritten] NG Mag. July 1923, p. 106."', 1, 'Last photo described was likely published in National Geographic Magazine''s July 1923 issue on p. 106. ', 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (482, 'Pueblo del Arroyo: Kivas', '1089904406906', 'Photograph-Print', '3 photos mounted on a card. Caption 1: "Outer S.W. corner of Pueblo del Arroyo; Kiva B in foreground. View from S.E. #39529-A" Caption 2: "Middle south wall of Pueblo del Arroyo. #39568-A" Caption 3: "Tripled roof poles, N.E. corner of Kiva C, Pueblo del Arroyo. #38980-A" Photos by Neil M. Judd, 1926.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (479, 'Pueblo del Arroyo: Kivas', '1089904061401', 'Photograph-Print', '3 photos mounted on a card. Caption 1: "Excavating McElmo Tower west of Pueblo del Arroyo. #39930-A". Caption 2: "Small Kiva, south of McElmo Tower, west side of Pueblo del Arroyo, Chaco Canyon (Kiva ''B''). #39932-A". Caption 3: "Sub-floor chamber in partly razed kiva on outer W. side of Pueblo del Arroyo; from S. (Kiva ''C''). #39556-A". Photos by N. M. Judd, 1926.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (475, 'Pueblo del Arroyo: General Views', '1089903189590', 'Photograph-Print', '3 photos mounted on a card. Caption 1: "Walls west of Pueblo del Arroyo, 8/29/26. Kiva D in foreground. #39926-A". Caption 2: "Late walls added to west side of Pueblo del Arroyo, Chaco Canyon, 8/29/26. #39944-A". Caption 3: "Accumulated debris, west side of Pueblo del Arroyo. 8/3/26. #38996-A." Photos by Neil M. Judd.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (160, 'Slab-house cluster newer proto-kiva', '1081882208972', 'Plan-Architecural', 'Architectural plan and cross section. We aren''t sure that this cluster is from Chaco Canyon. Drawing dated 1926.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 page', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (474, 'Pueblo Bonito, Rooms', '1089902992122', 'Photograph-Print', 'Three photos mounted on card. Caption 1: "Above: N. end of Room 261 with open door to R. 186 @ right; ceiling beam from R. 267 A above Zuni Indian. Neg. 18660A." Caption 2: "Upper left: Plastered W. wall of R. 261 & its foundation abutted by sub-floor unit fr. NE Complex (under trowel) & (upper left cor.) later SW wall of R. 261. Neg. 50595A. Photos by Neil M. Judd, 1927." Caption 3: "Lower left: Masonry column R. 268 form E. showing W. wall niche and seat for inset post. Neg. 16257A. Photo by Neil M. Judd, 1922."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (472, 'Pueblo Bonito, Rooms', '1089902646713', 'Photograph-Print', 'Two photos mounted to card. Caption 1: "Left: Partly blocked E door from R. 257 into R. 181. #39595-A." Caption 2: "Right doorway to R. 258 through N.W. corner of R. 257-A, Pueblo Bonito. #39526-A. Photos by Neil M. Judd, 1926." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '2 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (473, 'Pueblo del Arroyo: General Views', '1089902609073', 'Photograph-Print', '2 photos mounted on a card. Caption 1: "South wing of Pueblo del Arroyo from the southeast. Chicken yard betw. R. 11B and 19B. Photo by Charles Martin, 1920. #3239-A". Caption 2: "Storeroom in NE corner room at South wing of Pueblo del Arroyo from the northeast. Photo by Charles Martin, 1920."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (470, 'Pueblo del Arroyo: General Views', '1089902497307', 'Photograph-Print', '2 photos mounted on a card. Caption 1: "Pueblo del Arroyo from the NE. Photo by Chas. Martin, 1920. #7651-A". Caption 2: "Pueblo del Arroyo from NW. Photo by Chas. Martin, 1920. #3233-A".', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '2 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (471, 'Pueblo Bonito, Rooms', '1089902473486', 'Photograph-Print', 'Three photos mounted on card. Caption 1: "Above. Impression in sand fill of wattle wall and on left, west door in R. 257-A. View from S 16279-A." Caption 2: "Upper left. Remains of wattled wall in R. 256-A. 15867-A." Caption 3: "Lower left. Wattled wall in R. 256-A. Door to 257 at left. 15870-A. Photos by Judd, 1922." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (468, 'Pueblo del Arroyo: General Views', '1089902329932', 'Photograph-Print', 'One photo mounted on a card. Caption: "N.E. corner of Pueblo del Arroyo, 1927; compare with Mindeleff view of 1887. #50586-A. Photo by Neil M. Judd."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (469, 'Pueblo Bonito, Rooms', '1089902269680', 'Photograph-Print', 'Two photos mounted to card. Caption 1: "Upper left: Doorway in E. wall of R. 251 with passage (R. 250) leading to R. 256 A with ''George Washington'' seated in latter. Note upright log at right of 1st door. #16269-A." Caption 2: "Above: Doorway through E. wall of R. 251 and passageway into R. 256A. #15866-A. Photos by Neil M. Judd, 1922." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '2 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (467, 'Pueblo del Arroyo: General Views', '1089902154415', 'Photograph-Print', '3 photos mounted on a card. Caption 1: "Southwest corner of court, Pueblo del Arroyo, Chaco Canyon NM. #34484-A". Caption 2: "South wall of court, Pueblo del Arroyo. View from N.E. (Rebuilt E. wall of NE cor. room, S. wing. See Martin, 1920 print #3228A.) #34503-A." Caption 3: "Room #9, Pueblo del Arroyo. View from East. #34481-A." Photos by O.C. Havens, 1925.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (466, 'Pueblo Bonito, Rooms', '1089901989894', 'Photograph-Print', 'Three photos mounted to card. Caption 1: "Upper left: W. wall of R. 244 A and B, showing ancient repairs (areas of large stones crudely placed) and 1921 repairs (light stones). #11859-A. Photo by O.C. Havens, 1921." Caption 2: "Lower left: E. wall of R. 244A with 2nd story doorways above, SE cor. door to R. 242. #15869-A. Photo by Neil M. Judd, 1922." Caption 3: "Above: Door in S. wall of R. 243, to R. 242, Pueblo Bonito. Photo by Judd, 1926. #39554-A." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (167, 'Penasco Blanco Reconnaissance sketch by O.B. Walsh 1926', '1081884903246', 'Plan-Architecural', 'Plan view of Penasco Blanco (pencil). "Reconnaissance sketch by O.B. Walsh 1926."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 page', NULL, NULL, NULL, 'Vivian', 'Vivian says 2 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (465, 'Pueblo del Arroyo: General Views', '1089901962668', 'Photograph-Print', '3 photos mounted on a card. Caption 1: "Excavations in progress on South side of Pueblo del Arroyo. (View from east) Ruppert in R.7. #22640-A". Caption 2: "Excavations in progress on south side of Pueblo del Arroyo. #22611-A". Caption 3: "South wall of Pueblo del Arroyo, from the East, before excavation. #22635-A. High wall in S. side of R.19C. #22635-A, by Neil M. Judd, 1923."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, ' 3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (464, 'Pueblo Bonito, Rooms', '1089901820127', 'Photograph-Print', 'Two photos mounted to card: Caption 1: "Upper left: 2nd story wall settling with decay of embedded logs. N end R. 247. 2nd story walls built on logs. #11933-A. Photos by Neil M. Judd, 1921." Caption 2: "Above: Blocked W. door from R. 247 in to R. 251. #39594-A. Photo by Neil M. Judd, 1926." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '2 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (463, 'Pueblo del Arroyo: General Views', '1089901789009', 'Photograph-Print', '3 photos mounted on a card. Caption 1: "Pueblo del Arroyo at beginning of 1925 season. Photo by O.C. Havens. #31994-A". Caption 2: "Pueblo del Arroyo looking south a few days after beginning of 1925 season. Photo by O.C. Havens, 1925. #32001-A." Caption 3: "Unusual doorway in east wall of Room 51, Pueblo del Arroyo. (to R.52B). #32359-A".', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (462, 'Pueblo Bonito, Rooms', '1089901660242', 'Photograph-Print', 'Two photos mounted on card. Caption 1: "Left: Partly blocked door, S. wall of R. 242 Pueblo Bonito. #39553-A." Caption 2: "Right: Doorway though N.W. corner of R. 242-B, Pueblo Bonito. #39566-A. Photos by Neil M. Judd, 1926." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '2 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (596, 'Pueblo Bonito, Miscellany', '1089743087073', 'Photograph-Print', '3 photos mounted on a card. "Various views in Kiva B" Caption 1: "Upright planks and roof poles crossed above pilaster log. #7666-A" Caption 2: "Pilaster log, roof poles and planks. #7677-A" Caption 3: "Showing bench with pilaster log, roof poles and hewn planks above. #7680-A" All photos by O.C. Havens, 1921.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', 'These are really interesting images - good evidence for some kind of dome as Lekson argues?', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (461, 'Pueblo del Arroyo: General Views', '1089901577959', 'Photograph-Print', '3 photos mounted on a card. Caption 1: "Broken second story floor of Room 44, Pueblo del Arroyo. Hatchway in upper L. corner. #32376-A. Photo by O.C. Havens, 1925." Caption 2: "Southwest corner of Pueblo del Arroyo, Chaco Canyon. (Excavated) #22615-A." Caption 3: "Beginning excavations on west side of Pueblo del Arroyo. #22639-A. Photo by O.C. Havens, 1923." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (460, 'Pueblo Bonito, Rooms', '1089901326818', 'Photograph-Print', 'Two photos mounted to card: Caption 1: "Excavating Room 235, view toward west. Photo by Neil M. Judd, 1921. #11950-A." Caption 2: "West end of R. 239 showing outer wall of Kiva D (at left) and that of R. 244 (at right). #11936-A. Photo by O.C. Havens, 1921."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '2 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (458, 'Pueblo del Arroyo: General Views', '1089900988121', 'Photograph-Print', '3 photos mounted on a card. Caption 1: "Beginning excavations at N.E. corner of Kiva C, Pueblo del Arroyo. #28417-A [copy Neg. #94-7838]". Caption 2: "Beginning excavations, E. side of Kiva C., Pueblo del Arroyo. #28422-A [copy Neg.#94-7836] Photos by O.C. Havens, 1924." Caption3: "Disturbed adult burial on floor of Room 13A. Pueblo del Arroyo. Photo by O.C. Havens, 1923. #22623 [copy Neg. #94-7835]".', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (455, 'Pueblo del Arroyo', '1089900852680', 'Photograph-Print', '1 photo mounted on a card. Caption: "S. ventilators and fireplace, S.E. corner of R. 348, Pueblo Bonito (R. 349 beyond) #39947. Photo by Neil M. Judd, 1926."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (456, 'Pueblo Bonito, Rooms', '1089900830166', 'Photograph-Print', 'Two photos mounted to card. Caption 1: "Left: East door of R. 226, seated figure is Eugene Bancho, Zuni Indian. #11937-A. Photo by Neil M. Judd, 1921. [next is handwritten] NG Mag. March, 1922, P. 327." Caption 2: "Right, partly blocked T. door, west wall of R. 226, Pueblo Bonito. 1926. #39563-A. By Neil M. Judd." ', 1, 'First photo described above was likely published in National Geographic Magazine March 1922 on p. 327. ', 0, NULL, 0, NULL, 0, NULL, 88, NULL, '2 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (454, 'Pueblo del Arroyo', '1089900712201', 'Photograph-Print', '1 photo mounted on a card. Caption: "Subfloor structures in R. 336, Pueblo Bonito, viewed from the S. #28498. Photo by O.C. Havens, 1924."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (453, 'Pueblo Bonito, Rooms', '1089900647604', 'Photograph-Print', 'Two photos mounted on card: Caption 1: "Left: Sammie Molie (Zuni) in E. door R. 226, Pueblo Bonito, 1921. #11910-A." Caption 2: "Right: Licensi by large T-shaped door in W. wall of R. 226. Pueblo Bonito, 1921. #16261 Photos by Neil M. Judd."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '2 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (452, 'Pueblo del Arroyo', '1089900592223', 'Photograph-Print', '2 photos mounted on a card. Caption 1: "N. wall of R. 335, Pueblo Bonito, showing 3rd type of masonry. #28499. Photo by O.C. Havens, 1924." Caption 2: "N. wall of R. 335, Pueblo Bonito, showing 3rd type masonry at its best. #37819. Photo by Neil M. Judd, 1927."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '2 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (290, 'Pueblo Miscellany', '1089745264219', 'Photograph-Print', '3 photos mounted on a card. Caption 1: "Excavating Kiva J, Pueblo Bonito. View from SE corner. #16276-A. Caption 2: "Excavating Kiva J, as seen from R. 233. Repaired Kiva E in foreground. #16265-A. Caption 3: "Part of 1922 excavations; looking NW from R. 233 with Kiva E in the foreground. #18647-A. Photos by Judd, 1922. Handwritten note: "Wetherill''s stable in background"', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (450, 'Pueblo del Arroyo', '1089900472113', 'Photograph-Print', '2 photos mounted on a card. Caption 1: "Large T-shaped door in wall between R. 59 and Kiva V. Pueblo Bonito (from E.). Photo by O.C. Havens, 1924. #28483". Caption 2: "T-door in E. wall of R. 334, Pueblo Bonito. #39927-A. Photo by Neil M. Judd, 1926."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '2 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (294, 'Pueblo Bonito, Miscellany', '1089745833403', 'Photograph-Print', '2 photos mounted on a card. Caption 1: "Repairing north wall, Pueblo Bonito; near mason in E. door, R. 189B. View from W. Neg#22610-A" Caption 2: "Repairing 4th story N. walls of Rs. 14b, and 301. Highest wall is 4th type masonry of R. 301D above 2nd. type of R. 301C. Open door at lower right into R. 14b; smoke stains mark SE cor. of R. Wetherill 1897 store; door to R. 301 at L. of vert. stain. Neg. 22685A. Photos by Neil M. Judd, 1923.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '2 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (449, 'Pueblo del Arroyo', '1089900231577', 'Photograph-Print', '3 photos mounted on a card. Caption 1: "Skeleton No. 10 with bowl 1957 and bundle of shafted arrows #2097 (or 2077? can''t tell) and offering of arrowpoints #2079; Room 330, Pueblo Bonito. #28495." Caption 2: "Skeleton No. 23 and mortuary offerings 1954 and 1978, Room 330, Pueblo Bonito. #28490." Caption 3: "Fireplace and bin, NW corner, Room 330, Pueblo Bonito. #28474." Photos by O.C. Havens, 1924', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (296, 'Pueblo Bontio, Miscellany', '1089746467557', 'Photograph-Print', '2 photos mounted on a card. Caption 1: "Jack Lavery, mason, repairing walls of steps from Kiva A to R. 146. #11853-A. Photo by Neil M. Judd, 1921. (Handwritten note: N.G. Magazine 3/1922) Caption 2: "Repairing shattered west wall (3rd story) of Room 180, Pueblo Bonito, 1921. #11860-A. By Neil M. Judd. (Handwritten note: R. 179 in foreground.)', 1, '1 photo published in National Geographic, 3/1922', 0, NULL, 0, NULL, 0, NULL, 88, NULL, '2 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (448, 'Pueblo Bonito, Rooms', '1089900146946', 'Photograph-Print', 'Three photos mounted on card: Caption 1: "Upper left: Foundation wall series, ["opp. 118" handwritten] outer west side of Pueblo Bonito. #39596-A." Caption 2: "Lower left: Subfloor walls, R. 185, Pueblo Bonito, from the N.W. 4th type. #39557-A." Caption 3: "Above: First type walls below floor, west end of R. 87. S. wall foundation at L. #38988-A. Photos by N.M. Judd 1926." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (300, 'Pueblo Bonito, Miscellany', '1089747037700', 'Photograph-Print', '2 photos mounted on a card. Caption 1: "Jack Lavery, mason, repairing walls of steps from Kiva A to R. 146." #11853-A. Photo by Neil M. Judd, 1921. (Handwritten note: "N.G. Mag. 3/1922") Caption 2: "Repairing shattered west wall (3rd story) of Room 180, Pueblo Bonito, 1921." #11860-A. By Neil M. Judd (Handwritten note: "R. 179 in foreground.")', 1, '1 photo published in National Geographic, 3/1922', 0, NULL, 0, NULL, 0, NULL, 88, NULL, '2 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (447, 'Pueblo del Arroyo', '1089900141830', 'Photograph-Print', '1 photo mounted on a card. Caption: "E. end of R. 328, Pueblo Bonito and floor furnishings. #28484. Photo by O.C. Havens, 1924"', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (302, 'Pueblo Bonito, Miscellany', '1089747842596', 'Photograph-Print', '3 photos mounted on a card Caption 1: "Excavating Kiva J, Pueblo Bonito. View from SE corner. #16276-A. Caption 2: "Excavating Kiva J, as seen from R. 233. Repaired Kiva E in foreground. #16265-A Caption 3: "Part of 1922 excavations; looking NW from R. 233 with Kiva E in the foreground. #18647-A. Photos by Judd, 1922." (Handwritten note: "Wetherill''s stable in background.")', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (307, 'Pueblo Bonito, Miscellany', '1089748913453', 'Photograph-Print', '3 photos mounted on a card. Caption 1: "Repairing E. wall (3rd story) of R. 243. Photo by O.C. Havens, 1921 #11920-A" Caption 2: "Outer S.W. corner of Bonito under repair (handwritten note: "Rs 122-124"). #31996-A Photo by O.C. Havens, 1925" Caption 3: "Repairing 3rd story (south) wall of R. 228, Pueblo Bonito. #7669-A Photo by Neil M. Judd, 1921" ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (311, 'Pueblo Bonito, Miscellany', '1089749449586', 'Photograph-Print', '2 photos mounted on a card Caption 1: "Bonito masonry of 3rd type, (enclosed area is 2''sq.) Photo by O.C. Havens, 1925. Caption 2: "Bonito masonry of 4th type. String encloses a 2'' square. #11892-A. Photo by O.C. Havens, 1921." (Handwritten note: "N.G. Mag, March 1922"', 0, '1 photo published in National Geographic, March 1922.', 0, NULL, 0, NULL, 0, NULL, 88, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (315, 'Pueblo Bonito, North Wall', '1089812292666', 'Photograph-Print', '3 photos mounted on a card. Caption 1: "Ceiling poles and hatchway, R. 327, Pueblo Bonito. Photo by O.C. Havens, 1924. #28446-A" Caption 2: "Ceiling of Room 14B, Pueblo Bonito. #28486A" Caption 3: "Ceiling of Room 320, Pueblo Bonito (early type). #28450-A Photos by O.C. Havens, 1924."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (318, 'Pueblo Bonito, North Wall', '1089812694194', 'Photograph-Print', '4 photos mounted on a card Caption 1: "Excavating Kiva E (handwritten note: "Judd 1921") Caption 2: "Steps in south wall of Room 253." Caption 3: Logs over Pilasters in Kiva B. (handwritten note: "Judd 1921") Caption 4: "Navaho (?) picture drawings near road between Gallup and Manuelito. Judd 1921" ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '4 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (320, 'Pueblo Bonito, North Wall', '1089812906087', 'Photograph-Print', '3 photos mounted on a card (1 removed). Caption 1: "North wall of Pueblo Bonito, from the northwest. Photo by Charles Martin, 1920. #3209-A. (Handwritten note: "2nd story blocked door above 2nd hole from lower R. is in R. 297. R. cor.=Hyde Kitchen") Caption 2: "North wall of Pueblo Bonito, from the northeast. Photo by O.C. Havens, 1921. #7647-A" (handwritten note: "W. from R. 187") Caption 3: "The Same. Photo by Charles Martin, 1920. #3226-A"', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (321, 'Pueblo Bonito, Restoration Models', '1089813179403', 'Photograph-Print', '1 photo mounted on a card. Caption: "Pueblo Bonito - northwest corner of East Court and terraced dwellings beyond. Architectural restoration by Prof. Kenneth Conant, Harvard, 1926. Neg.12068-B" ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, ' photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (323, 'Pueblo Bonito, Restoration Models', '1089813307039', 'Photograph-Print', '1 photo mounted on a card. Caption: "Pueblo Bonito - bird''s-eye view from South. Architectural restoration by Prof. Kenneth Conant, Harvard, 1926. Neg. 12071-B"', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (324, 'Pueblo Bonito, Restoration Models', '1089813414633', 'Photograph-Print', '1 photo mounted on a card. Caption: "Pueblo Bonito from North Cliff. Architectural restoration by Prof. Kenneth Conant, Harvard, 1926. Neg.12070-B" ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (326, 'Pueblo Bonito, Restoration Models', '1089813524395', 'Photograph-Print', '1 photo mounted on a card. Caption: "Pueblo Bonito, looking northwest across north end of East Court. Architectural restoration by Prof. Kenneth Conant, Harvard, 1926. Neg.12069-B"', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (328, 'Pueblo Bonito, Repairs', '1089813650763', 'Photograph-Print', '3 photos mounted on a card. Caption 1: "Outer N. wall, Bonito. Partition between 2nd and 3rd (L) unexcav. rooms E. of 297. Tie poles above break. OC Havens, 1921. #11951A." (Handwritten note: "Same on Mindeleff''s 1887 Neg. 3214") Caption 2: "Union of 2nd and 4th type masonry -- outer N. wall of Bonito. Photo by Charles Martin, 1920. #3206A." (handwritten note: "door is in 2nd story N. wall of unopened room E. of R. 297." "Comp. Mindeleff Neg.3209") Caption 3: "George Halla (Zuni) in a Bonito doorway. Photo by Neil M. Judd, 1921. #11909-A." (handwritten note: "door R. 226")', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (331, 'Pueblo Bonito, Repairs', '1089814024646', 'Photograph-Print', '3 photos mounted on a card Caption 1: "Depository (opp. Zuni''s face) against inner wall in 4th type outer wall, Bonito. Vandal-torn hole. #22682A" Caption 2: Vandal-torn hole, outer N. wall, Bontio; partition between 2nd and 3rd (L) unexcav. rooms E. of 297. #23234A." (handwritten note: "compare Mindeleff''s 1887 Neg. 3214") Caption 3: "Union of 2nd (R) and 4th type masonry. outer N. wall of Pueblo Bonito. Door is in unexcav. room next E. of 297. #22675A" (handwritten note: "Door shown closed on Mindeleff''s 1887 Neg 3154") Photos by OC Havens, 1923.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (330, 'Pueblo Bonito, Kivas', '1089814089566', 'Photograph-Print', 'Three photos mounted on card. Caption reads: "Above: Charlie in Kiva J, showing south bench recess and ceremonial entrance with ventilator shaft opening (square hole at middle left) of sub-floor kiva. 16273-A. Upper left: Irregular kiva beneath floor of Kiva J, from the south. 18665-A. Pilaster #4 above Indian. Lower left: Irregular kiva beneath floor of Kiva J, from the west. 18662-A. Photos by Judd, 1922." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (444, 'Pueblo Bonito, Rooms', '1089899628763', 'Photograph-Print', 'Three photos mounted to card. Caption 1: "Zuni workmen seated on SE wall of R. 187B; standing man in NW. door same room. Photo by O.C. Havens, 1921. Neg. 11898A." Caption 2: "Navaho kids [kids meaning goats] at play on walls of Pueblo Bonito. Photo by Neil M. Judd, 1921. #7645-A." Caption 3: "Above: Zuni workman (Eugene) in W. door, Room 187B; broken W. wall of R. 187C above photo by O.C. Havens, 1921. Neg. 11880A Compare Mindeleff #3002."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (337, 'Pueblo Bonito, Northeast Foundation', '1089816291188', 'Photograph-Print', '3 photos mounted on a card. Caption 1: "Partially exposed foundation walls N.E. of Pueblo Bonito. #32356-A" Caption 2: "Foundation walls NE of Pueblo Bonito, partially exposed. OC Havens 1925. #32354-A" Caption 3: "W. end of N.E. foundation series (behind pick) against outer N. wall of R. 297 showing [4th type masonry] (this is crossed out by hand - "NGS repair" is written in) replacing 2nd type. Pueblo Bonito. #23334-A. Photo by Neil M. Judd, 1923.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (335, 'Pueblo Bonito, Northeast Foundation', '1089816049998', 'Photograph-Print', '2 photos mounted on a card. Caption 1: "East section of Pueblo Bonito and outer foundation walls. #28624-A" (handwritten note: "N.G. Mag. Sept. 1925, p.231") Caption 2: "Foundation walls at outer NE section of Pueblo Bonito. #28584-A." Photos by OC Havens, 1924.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '2 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (443, 'Pueblo del Arroyo', '1089899519905', 'Photograph-Print', '3 photos mounted on a card. Caption 1: "Disturbed burials and mortuary offerings, SW quarter, Room 329, Pueblo Bonito. #28479." Caption 2: "Distrubed burials and mortuary offerings SW quarter of Room 329, Pueblo Bonito. #28491." Caption 3: "Disturbed burials and mortuary offerings. Southwest quarter of Room 329, Pueblo Bonito. (2 skulls at upper R may be seen in print #28491 at base of west wall nearest SW corner). #28477". Photos by O.C. Havens, 1924.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (339, 'Pueblo Bonito, Northeast Foundations', '1089816581386', 'Photograph-Print', '3 photos mounted on a card. Caption 1: "N.E. end of double, curved walls in foundation series E. of Pueblo Bonito. View from S. #39571-A" (Handwritten note: "part of trench at R."). Photo by N.M. Judd, 1926. Caption 2: "Subfloor walls N.E. of Pueblo Bonito" (handwritten note: "Indian at SW corner of Hillside Ruin.") #32002-A Caption 3: "Ruin north of Bonito above subterranean structure. #32000-A Photos by O.C. Havens, 1925. (Handwritten note: SW corner of Hillside Ruin)', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (340, 'Pueblo Bonito, Northeast Foundations', '1089816875861', 'Photograph-Print', '3 photos mounted on a card. Caption 1: "Wall extending E. from S.E. cor. of Bonito; part of foundation series. #38992-A. Photo by N.M. Judd, 1926. (Handwritten notes: "Looking W." "25''W. of Sta. 5") Caption 2: East wall of Pueblo Bonito with "foundation walls" in foreground. (duplicating #5994A) #32633-A" Caption 3: "Foundation walls N.E. of Pueblo Bonito showing type of masonry. #31995-A. Photos by O.C. Havens, 1925."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (442, 'Pueblo Bonito, Rooms', '1089899335615', 'Photograph-Print', 'Three photos mounted to card. Caption 1: "Above: Blocked door in outer N. wall of R. 204, Pueblo Bonito #34493-A. Photo by O.C. Havens, 1925." Caption 2: "Upper left: Sunset from Pueblo Bonito #22681-A." Caption 3: "Lower left: West wall of R. 200 B. Pueblo Bonito, at sunset. #22680-A. Photos by O.C. Havens, 1923."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '2 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (342, 'Pueblo Bonito, Northeast Foundations', '1089817132901', 'Photograph-Print', '3 photos mounted on a card. Caption 1: "Foundation walls on outer N. side of Pueblo Bonito, opposite R. 187. #23332-A" Caption 2: "Rock fallen from cliff resting upon debris overlying unused foundations N. of Pueblo Bonito. (outside R. 188-189). #23319-A Photos by Neil M. Judd, 1923." Caption 3: "Showing union of NE foundation wall with outer second type north wall of Pueblo Bonito; base of latter and earlier foundation. Outer N. side of R. 297. Photo by O.C. Havens, 1925. #32624-A" ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (441, 'Pueblo del Arroyo', '1089899308681', 'Photograph-Print', '3 photos mounted on a card. Caption 1: "Disturbed burials and mortuary offerings, Room 329, Pueblo Bonito. #28504 and 28505-dup." Caption 2: "East side of room 329, with NE alcove, Pueblo Bonito. #28496." Caption 3: "Preparing baskets prior to removal, Room 326. Skeletons 8 and 9. Nat. Geo. Mag. Sept 1925, p. 252. #28443-A." Photos by O.C. Havens, 1924.', 0, 'Appears to have been published in National Geographic Magazine, Sept 1925, p. 252.', 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (440, 'Pueblo Bonito, Rooms', '1089899148023', 'Photograph-Print', 'Two photos mounted to card. Caption 1: "West wall of R. 180, Pueblo Bonito, before repair. 2nd and 3rd stories. #11875-A. Photo by O.C. Havens, 1921. Corner door to 242B in shadow at left." Caption 2: "Above: Blocked outer 2nd story door, R 182, Pueblo Bonito, and plastered outside walls. Photo by Havens, 1925. #31882-A." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '2 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (345, 'Pueblo Bontio, Northeast Foundations', '1089817567363', 'Photograph-Print', '2 photos mounted on a card. Caption 1: "Receptacles or unused foundation walls N. of rooms 186-187, Pueblo Bonito. Broken E. end of N. wall, R. 187 B-C. #23328-A" Caption 2: "Foundation walls on outer N.E. side of Pueblo Bonito, opposite Room 183-184. Above Indian, rebuilt beam holes, R. 184A. #23330-A. Photos by Neil M. Judd, 1923." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '2 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (347, 'Pueblo Bonito, Northeast Foundations', '1089817776697', 'Photograph-Print', '3 photos mounted on a card. Caption 1: "Fireplaces with wall series N.E. of Pueblo Bonito. #32374-A" Caption 2: "Fireplaces associated with foundation walls NE of Pueblo Bonito. #32365-A" Caption 3: "East end of 1925 trenches exposing foundation walls N.E. of Pueblo Bonito. #32627-A. Photos by O.C. Havens, 1925."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (439, 'Pueblo del Arroyo', '1089899127776', 'Photograph-Print', '3 photos mounted on a card. Caption 1: "Disturbed burials and mortuary offerings, Room 320, Pueblo Bonito. #28359-A". Caption 2: "Disturbed burials and mortuary offerings of pottery and baskets, Room 320, Pueblo Bonito. 28357." Caption 3: "Disturbed burials and mortuary offerings, Room 320, Pueblo Bonito. #28360-A. Baskets 1347-8. Cylinder vase 1350 above; 1394 below." Photos by O.C. Havens, 1924.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (438, 'Pueblo Bonito, Rooms', '1089898935698', 'Photograph-Print', 'Three photos mounted to card. Caption 1: "West wall (2nd story) of R. 177, before repair. Photo by Neil M. Judd, 1921. #11956-A." Caption 2: "Repaired 2nd story west wall of R. 177, from the east. Photo by O.C. Havens, 1921. #11896-A." Caption 3: "Upper left: S.G. Morley at S.W. corner door, R. 178B of Pueblo Bonito. to R. 225 B. #3235-A. Photo by Martin, 1920." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '2 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (355, 'People, Expedition Parties', '1089820245853', 'Photograph-Print', 'Caption: ""N.M.J. talking with Old Wello and Padilla NGS Pueblo Camp Chaco Canyon 1924 (?) K. Ruppert Neg. 2 interpreters, foreground. Neg. 17"', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (359, 'Pictographs', '1089820919744', 'Photograph-Print', '4 prints of the same image - 2 petroglyphs. Caption reads simply: "Pictographs Chaco 1921, Neg 67" ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '4 copies', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (364, 'Ruins: Aztec', '1089825557863', 'Photograph-Print', '4 architectural detail photos from Aztec. None of them have any specific provenience information. 1 is of a T-shaped door, 2 are of a banded wall, and one is of a pole and mud wall. Two are dated 9-11-25, the other two simply say 1925. Negative numbers 51, 51A, 52, and 53.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '4 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (367, 'Ruins: Chaco Canyon', '1089825951940', 'Photograph-Print', 'Group of 8 general architecture shots of Pueblo del Arroyo. All taken by Ruppert. 7 were taken in 1925 (no neg. is written on the back of each). These all show excavation in progress and have a direction of orientation written on the back. The other photo was taken in 1926 and has a negative number (#60). ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '8 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (370, 'Ruins: Chaco Canyon', '1089826329238', 'Photograph-Print', 'Caption: "del Arroyo. R.55 Ruppert 1925. No Neg." This image shows a row of 5 mealing bins left with manos and metates in place.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (436, 'Pueblo del Arroyo', '1089898653045', 'Photograph-Print', '3 photos mounted on a card. Caption 1: "Ceiling poles resting upon disturbed burials #1-4 Room 326, Pueblo Bonito. #28470. Caption 2: "Ceiling poles resting upon disturbed burials #1-4, Room 326, Pueblo Bonito. #28471" Caption 3: "Burials #5 & 6 with mortuary offerings, Room 326, Pueblo Bonito. 5 (L) and 6 with post #4 between. Post #3 at L. middle. N.G. Mag. 9/1925, p.255. #28436-A." ', 0, 'Appears to have been published in National Geographic Magazine, Sept 1925, p.255.', 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (434, 'Pueblo Bonito, Rooms', '1089898553317', 'Photograph-Print', 'Two photos mounted on card. Caption 1: "Above: Eugene in 2nd story door, N.W. corner R. 173, Pueblo Bonito. #11905-A. Photo by Neil M. Judd, 1921." Caption 2: "Above: Eugene in door, N.W. corner R. 173. Lighter section above indicates 1921 wall repairs. Pueblo Bonito, 1921. #11848-A. By Neil M. Judd."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '2 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (371, 'Ruins: Chaco Canyon', '1089826463437', 'Photograph-Print', '3 prints all showing "Kiva I, del Arroyo Ventilator shaft openings." Taken by Ruppert in 1925. 1 has a negative number (#57), the other two do not. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (431, 'Pueblo del Arroyo', '1089898335084', 'Photograph-Print', '3 photos mounted on a card. Caption 1: "Refilling room 325, Pueblo Bonito. Center front, R. 325 refilled. #28482." Caption 2: "North end of Room 325 with door and steps into Room 323, P.B. Nat. Geo. Mag Sept. 1925, p.238." Caption 3: "Door and steps, north end of Room 325, Pueblo Bonito." Photos by O.C. Havens, 1924', 0, 'Photo #2 appears to have been published in National Geographic Magazine in Sept 1925, p. 238.', 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (432, 'Pueblo Bonito, Rooms', '1089898331933', 'Photograph-Print', 'Two photos mounted to card: Caption 1: "Eugene Bancho (Zuni) in 2nd story N. door. Photo by Judd, 1921. R. 172. #11867-A." Caption 2: "Zuni in N. door (2nd story) of R. 172. Photo by Neil . Judd, 1921. #11863-A." A note between the two photos indicates that these are the same photos, but one negative is reversed. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '2 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (430, 'Pueblo del Arroyo', '1089898101145', 'Photograph-Print', '3 photos mounted on a card. Caption 1: "Disturbed burials, Room320, Pueblo Bonito. #283448-A." Caption 2: "Disturbed burials, Room 320, Pueblo Bonito. #28358-A." Caption 3: "Stone slab floor of room 320 and stone step to east door. #28441-A". Photos by O.C. Havens, 1924. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (429, 'Pueblo Bonito, Rooms', '1089897959278', 'Photograph-Print', 'Two photos mounted on card. Caption 1: "Left: Built-in wall in N.W. corner of R. 140, concealing former S.E. corner of West court, Pueblo Bonito. #32364-A. Photo by Havens, 1925." Caption 2: "Right: Old West Court corner in rebuilt N. wall (N.W. corner) of R. 140. #39585-A. Photo by Judd, 1926."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '2 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (377, 'Ruins: Chaco Canyon', '1089827103609', 'Photograph-Print', '2 images - both with the same caption: "Penasco Blanco - W. Side. Chaco Canyon, N.M. 1925." Negative numbers 58 and 59 respectively.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '2 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (428, 'Pueblo Bonito, Rooms', '1089897470660', 'Photograph-Print', 'Two photos mounted to card: Caption 1: "Above: Abandoned kiva under floor of R. 128 [350 is crossed out and 128 is written in] Pueblo Bonito. # 38995-A. Photo by Neil M. Judd, 1926." Caption 2: "Lower left: Cooking pots used as storage jars, R. 128, Pueblo Bonito. #38982-A. Photo by Judd, 1926. [next is handwritten] L. to R.: 336554; 336553; orig. 2365 @ NGS.;336555." Handwritten note above caption reads "see pl. 51 ''Material Culture''."', 1, 'Lower left photo is likely published on p. 51 of Judd''s Material Culture of Pueblo Bonito. ', 0, NULL, 0, NULL, 0, NULL, 88, NULL, '2 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (427, 'Pueblo Bonito, Rooms', '1089897265482', 'Photograph-Print', 'Two photos mounted on card. Caption 1: "#40060-A. 3rd period wall (at right) abutting 2nd type wall, S.E. corner of R. 117; 3rd type patch crossed by shadow. Pueblo Bonito, 1927. By Neil M. Judd." Caption 2: "Upper right: Prehistoric repairs in E. wall of R. 117, Pueblo Bonito, 1925. #3483-A. Photo by O.C. Havens, 1925."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '2 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (426, 'Pueblo Bonito, Rooms', '1089896953584', 'Photograph-Print', 'Three photos mounted on card. Caption 1: "Upper left: 3rd type masonry overlapping 2nd type wall, outer W. side of Rooms 115-116, Pueblo Bonito. #39576-A." Caption 2: "Lower left: 3rd type masonry overlapping 2nd type, outer W. wall of R. 115, Pueblo Bonito. O.C. Havens, 1926. #39558-A." Caption 3: "Above: Union of 3rd with 2nd type masonry, outer W. wall of R. 115, Pueblo Bonito, 1927. #40061-A. Photo by Neil M. Judd." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (424, 'Pueblo del Arroyo', '1089836129348', 'Photograph-Print', '3 photos mounted on a card. Caption 1: "Disturbed burials in Room 320, Pueblo Bonito. #28356." Caption 2: "Baskets in Room 320, Pueblo Bonito. #28372-A". Caption 3: "Stone slabs in floor of Room 320, Pueblo Bonito, with broken metate used as step to door into Room 326. #28442-A. Photos by O.C. Havens, 1924."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (425, 'Pueblo Bonito, Rooms', '1089836123826', 'Photograph-Print', 'Two photos mounted to card. Caption 1: "N.E. corner of R. 108, from S.W. #18637-A Photo by Judd, 1922. [handwritten note indicates open doors to R. 107 and Room 3C(?)]". Caption 2: "Mosaic of small chips set in adobe on outer west wall of R. 102 (first type of masonry), Pueblo Bonito. NE wall of R. 107 B in middle. 1924. By O.C. Havens #28524-A." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '2 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (388, 'Pueblo del Arroyo', '1089829376987', 'Photograph-Print', '2 photos mounted on a card. Caption 1: "Roof support and small door to 324A in northeast corner of Room 325, Pueblo Bonito. #28432-A" Caption 2: "Ceiling supports and slab lined bins from which other posts had been removed in southeast corner of Room 325, Pueblo Bonito. #28440-A. Photos by O.C. Havens, 1924." Editorial note: these are just like the posts in rooms 323 and 326.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '2 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (390, 'Pueblo del Arroyo', '1089829671711', 'Photograph-Print', '3 photos mounted on a card. Caption 1: "Collapsed ceiling structure NE corner of Room 323, Pueblo Bonito. #28449-A" Caption 2: "North end of Room 323, Pueblo Bonito, showing ceiling supports. #28468" Caption 3: "Remains of ceiling, Northeast corner of Room 323, Pueblo Bonito. #28455-A" Photos by O.C. Havens, 1924.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (423, 'Pueblo Bonito, Rooms', '1089835794423', 'Photograph-Print', 'Three photos mounted to card. Caption 1: "West walls of Rooms 111, 104, 100 from the East; R. 6 in right foreground. 1922 By Neil M. Judd. # 18646-A." Caption 2: "Rooms 55-100 [specific note indicating rooms 110, 111, 104 and 100] from E. Man stands in R. 52. Photo by Havens, 1921. #11916-A." Caption 3: "W. wall of R. 104, Pueblo Bonito. #11927-A Photo by Havens, 1921." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (399, 'Pueblo del Arroyo', '1089832815174', 'Photograph-Print', '1 photo mounted on a card. Caption: "Doorway in E. end of R. 293, Pueblo Bonito, connecting with R. 267. #22672-A. Photo by Neil M. Judd, 1923."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (421, 'Pueblo del Arroyo', '1089835529820', 'Photograph-Print', '3 photos mounted on a card. Caption 1: "S.W. corner of R. 317, Pueblo Bonito. #28429-A Photo by O.C. Havens, 1924. Caption 2: "S.W. corner or R. 319, Pueblo Bonito. #28427-A. Photo by O.C. Havens, 1924." Caption 3: "S.W. Corner of R. 318. #28428-A. Photo by Havens, 1924." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (405, 'Pueblo del Arroyo', '1089833509417', 'Photograph-Print', '3 photos mounted on a card. Caption 1: "Zuni boys beside shattered 2nd story S. wall of R. 298B. #22676. Photo by Judd, 1923." Caption 2: "1st and 2nd type walls, N. sect. of Pueblo Bonito; W. wall of R. 296 in left foreground. R. 298 beyond. #39593A. Caption 3: "1st and 2nd type masonry in N. sect. of Pueblo Bonito; W. wall of R. 296 at lower left. View from E. Open door R. middle in W. end R. 297B. #39525-A. Photos by N.M. Judd, 1926."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (420, 'Pueblo Bonito, Rooms', '1089835442272', 'Photograph-Print', 'Two photos mounted to card. Caption 1: "Upper left: N. central section, Pueblo Bonito. Indian stands at SE corner R. 296 B; R. 86 at right; NE corner R. 14-85, foregr. Open door, 2nd type N. wall unexcavated room E. of R. 297 B. Neg. 18632A Photo by Neil M. Judd 1922." Caption 2: "Lower left: NE corner Rooms 83A-B in foreground; open door, upper left, in 2nd type N. wall, unexcavated room E of 297. Photo by O.C. Havens, 1921. #11851A." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '2 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (419, 'Pueblo del Arroyo', '1089835395612', 'Photograph-Print', '3 photos mounted to a card. Caption 1: "Alcove in S.W. corner of Room 309, Pueblo Bonito. #23320-A". Caption 2: "Room 309, Pueblo Bonito, from the S.W. corner. #23345-A." Caption 3: "Alcove in N.E. corner of Room 309, Pueblo Bonito. #23322-A." NM Judd, 1923.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (418, 'Pueblo Bonito, Rooms', '1089835252797', 'Photograph-Print', 'Two photos mounted to card. Caption 1: "3rd type masonry overlying 1st type in rebuild N. wall of R. 86, Pueblo Bonito. Photo by Neil M. Judd, 1926. #38989A." Caption 2: "Above: 1st and 3rd type masonry in N. wall Room 86; ceiling poles above. Photo by O.C. Havens, 1925. Neg. 34477-A." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '2 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (417, 'Pueblo del Arroyo', '1089835227446', 'Photograph-Print', '3 photos mounted on a card. Caption 1: Small stones in repaired E. wall of R. 308, Pueblo Bonito. #23343-A. Photo by Judd, 1923." Caption 2: "Ceiling beams and stone pillar in Room 308, Pueblo Bonito. View from upper S.W. corner. #23341-A". Caption 3: "South doorway of Room 308, Pueblo Bonito. #23342-A. Photos my N.M. Judd, 1923."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (416, 'Pueblo Bonito, Rooms', '1089834977592', 'Photograph-Print', 'Two photos mounted on card. Caption 1: "Small chips in adobe mortar on outer south walls of R. 28, under R. 57, Pueblo Bonito. 1924. By O.C. Havens #28469." Includes half-dollar for scale. Caption 2: "Earliest and latest types of masonry, R. 55 at N.W. section of Pueblo Bonito. 1922 by Neil M. Judd. #18635-A." Handwritten annotation underneath reads "JPB # 49, in middle, = A.D. 1083." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '2 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (415, 'Pueblo del Arroyo', '1089834977251', 'Photograph-Print', '2 photos mounted on a card. Caption 1: "Posts serving as ceiling supports, Room 307, Pueblo Bonito. #23221-A. Photo by O.C. Havens, 1923." Caption 2: "Bins under floor of Room 307A., Pueblo Bonito. Photo by Neil M. Judd, 1923. #23339-A".', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '2 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (414, 'Pueblo del Arroyo', '1089834812622', 'Photograph-Print', '1 photo mounted on a card. Caption: "Ceiling level of 1st story R. 303 (dressed blocks and chips at left) on level with 2nd story ceiling of R. 11 (in foreground) Pueblo Bonito, 1927. Partly blocked door, upper middle, is in N. wall of R. 301C. #37805-A. Photo by Neil M. Judd, 1927". ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (437, 'Pueblo del Arroyo', '1089898926038', 'Photograph-Print', '3 photos mounted on a card. Caption 1: "Disturbed burials, Room 320, Pueblo Bonito. #28347-A". Caption 2: "Bracelet of turquoise beads- skeleton 12 in Room 326, Pueblo Bonito. #28489. Nat. Geo. Mag, Sept 1925, p. 236." Caption 3: "Basket containing bowl; resting against ceiling support #3. Room 326, P.B. #28465." Photos by O.C. Havens, 1924.', 1, 'Photo 2 appears to have been published in National Geographic Magazine, Sept 1925, p. 236.', 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (413, 'Pueblo Bonito, Rooms', '1089834661205', 'Photograph-Print', 'Two photos mounted to card. Caption 1: "Posts in S. and W. walls., Room 53B, Pueblo Bonito; R. 63 beyond Navaho; S. wall, R. 52 at left with SW Corner of room 55 at upper left. Photo, Neil M. Judd, 1926. Neg. 38978A." Caption 2: "Right: NW corner, R. 55 showing 4th type masonry on log inset in 1st type N. wall at right, continuation of 2nd. type N. wall from R. 28B with same type repairs at ceiling level above. Photo by O.C. Havens, 1924. Neg. 28481A."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '2 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (412, 'Pueblo del Arroyo', '1089834544847', 'Photograph-Print', '3 photos mounted to a card. Caption 1: "2nd type masonry, inner N. wall of Pueblo Bonito. Open door @ left in R.14a (2nd story of 14b). Blocked door above Zuni Indians is in N. wall, Room 301C. Neg. 18650A". Caption 2: "N. section, Pueblo Bonito, fr. W. with Braced-up Cliff towering above. At lower L., east end R.209; Indian stands in R. 302. Neg. 18638A". Caption 3: "3 types of masonry, N. central section, Pueblo Bonito. Navaho stands at NE cor. R. 14-85. Neg. 18639A. Photos by Neil M. Judd, 1922."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (445, 'Pueblo del Arroyo', '1089899745631', 'Photograph-Print', '3 photos mounted on a card. Caption 1: "Disturbed burials and mortuary offerings, SE corner of Room 330, Pueblo Bonito. #28485". Caption 2: "Disturbed burials and mortuary offerings, NW quarter of Room 330, Pueblo Bonito. Nat. Geo. Mat. 9/1925, p. 241. #28502". Caption 3: "Lenses of water washed sand in SE corner of Room 330, Pueblo Bonito. #28510-A." Photos by O.C. Havens, 1924.', 1, 'Nat. Geo. Mat. 9/1925, p. 241.', 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (451, 'Pueblo Bonito, Rooms', '1089900490934', 'Photograph-Print', 'Two photos mounted on card: Captions read: "Left: Eugene by E door of R. 226, Pueblo Bonit, 1921. #11866-A. By Neil M. Judd." "Right: Eugene in door betwen Rs. 225 and 226. Pueblo Bonito, 1921. #11857-A. By Neil M. Judd." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '2 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (411, 'Pueblo Bonito, Rooms', '1089834456458', 'Photograph-Print', 'Three photos mounted to card. Caption 1: "Upper left: N. wall of R. 70, excavated Hyde expedition #18668-A Photo by Judd 1922." Caption 2: "Lower left: Curved walls in Room #64, with Kiva G., showing at upper right. View from south. #22687-A." Caption 3: "Above: South end of Room #64, Pueblo Bonito, with blocked doorway above, and Charlie standing on original floor. #22686-A. Photos by Neil M. Judd, 1923." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (410, 'Pueblo del Arroyo', '1089834326477', 'Photograph-Print', '3 photos mounted on a card. Caption 1: "Plastered 2nd type walls in R. 299B, Pueblo Bonito, from East. Neg. 22679A". Caption 2: "N. door of R. 300B with inset jambs and hewn lintel; half blocked N. door of 299B beyond. Neg. 22670A". Caption 3: "Zuni (Nachopani) thru S. door Room 299B with plastered 2nd type masonry on either side; from R. 300B. Neg 22671A." Photos by Neil M. Judd, 1923. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (408, 'Pueblo del Arroyo', '1089834127491', 'Photograph-Print', '3 photos mounted on a card. Caption 1: "Finger marks on plaster on west wall of Room 298-A, Pueblo Bonito. #23219-A" Caption 2: "Pottery in situ, Room 298-A, Pueblo Bonito. #22669-A" Caption 3: "Many Pueblo Bonito rooms require deep digging before their floors are exposed, These deeper chambers were dark and poorly ventilated; they were utilized for storage purposes rather than as living quarters. NW corner of R. 298. #22677-A. Neil M. Judd, 1923.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (407, 'Pueblo Bonito, Rooms', '1089834042854', 'Photograph-Print', 'Three photos mounted on card. Caption 1: "Above: Subfloor trench at E. side of Kiva Q, Pueblo Bonito, view fr. S. #28368. Photo by O.C. Havens, 1924." Caption 2: "Loco Joe in Room 34; view from south. Photo by Judd, 1921. #11903-A." Caption 3: "East end of wall betw. R. 27 & 34, showing wall fgt. at angle (foreground) & decayed log supporting E wall of R. 34 above Kiva 2-B (in shadow). Photo by Havens, 1921. #11961-A."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (406, 'Pueblo Bonito, Rooms', '1089833757502', 'Photograph-Print', 'Two photos mounted to card. Caption 1: "Left: NGS repairs at ceiling level, Room 301C, Pueblo Bonito. 301B & 301C of 2nd type masonry; 301D of 4th type. Neg. 22659A." Caption 2: "Right: Repairing N. wall Room 189D; repaired 187C at right. Neg. 22648A. Photos by Neil M. Judd, 1923. [below in handwriting] See neg. 11880A for W wall, Rs. 187 B and C before repairs. Compare Mindeleff neg. 3095 for N. wall, Rs. 187 C and D. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '2 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (404, 'Pueblo Bonito, Rooms', '1089833561796', 'Photograph-Print', 'Two photos mounted to card. Caption 1: "#11915-A Blocked doorways in N. wall of R. 169. Pueblo Bonito, 1921. By O.C. Havens." Caption 2: "#39948-A NGS repairs above large door. Blocked doors in N. wall of R. 169. Pueblo Bonito, 1926. By Neil M. Judd."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '2 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (403, 'Pueblo Bonito, Rooms', '1089833387518', 'Photograph-Print', 'Two photos mounted to card. Caption 1: "Lower left: Doors in N. wall of R.168, Bonito. #39946-A." Caption 2: "Above: Blocked doors in north wall of R. 160, Bonito. #39945-A. Photos by N.M. Judd, 1926." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '2 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (401, 'Pueblo del Arroyo', '1089832923811', 'Photograph-Print', '2 photos mounted on a card. Caption 1: "Union of 4th type of masonry with former outer wall of Pueblo Bonito, (3rd type), N. of R. 295. In foreground, W. end of room N.E. of R. 295. #50502-A. Photo by Neil M. Judd, 1927." Caption 2: "R. N. of R. 295, Pueblo Bonito, showing outer 4th type wall at upper right, abutting earlier, plastered 3rd type wall. In foreground, W. end of room N.E. of R. 295. #50592-A. Photo by Neil M. Judd 1927.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '2 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (400, 'Pueblo Bonito, Pottery', '1089832907975', 'Photograph-Print', 'Photo of two constricted neck water jars. There is a description on the back of the photo which reads: "Water jars are among the rarest of the Bonitian antiquities. These two vessels are probably related to the earlier period of occupancy for their ornamentation differs noticeably from that employed by potters of the later period. neg. # 5018-B. Photo by Charles Martin. Courtesy of the National Geographic Society." Includes note requesting reduction to 4 1/8". Folder includes 2 of these photos.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (396, 'Pueblo del Arroyo', '1089832012422', 'Photograph-Print', '3 photos mounted on a card Caption 1: "Burials [5 (near) r.6] with mortuary offerings of pottery and baskets, Room 326, Pueblo Bonito. Post #4 between #28433-A". Caption 2: Burials 8 and 9 with mortuary offerings of baskets and earthenware vessels, Room 326, Pueblo Bonito. Two planting sticks at feet of near skeleton (8) and four hematite cylinders at its head. (post #5) #28435-A". Caption 3: "Burials 8 and 9 with mortuary offerings, Room 326, Pueblo Bonito. #28448-A". Photos by O.C. Havens, 1924.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (392, 'Pueblo del Arroyo', '1089829909076', 'Photograph-Print', '3 photos mounted on a card: Caption 1: "Willow mat (#1415) Room 320, Pueblo Bonito. #28371-A". Caption 2: "Turquoise necklace and pendants, Room 320, Pueblo Bonito. (#1418) #28431-A. (handwritten note: "N.G. Mag. Sept, 1925, P. 239; Misc. Coll. 124"). Caption 3: "Baskets (1409) found in Room 320, Pueblo Bonito." -- (handwritten note: "Misc. Coll. Vol. 124 pl.35B.) ', 0, 'Photo 2 appears to have been published in National Geographic Magazine in Sept 1925.', 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (389, 'Pueblo Bonito, Pottery', '1089829447657', 'Photograph-Print', 'Photo of 4 cylinder vessels. Handwritten description on the back reads: "Cylindrical vessels bearing the hachured ornamentation characteristic of the later period of occupancy at Pueblo Bonito. the vase at the right is 11 1/2" high. Photo by Charles Martin. Courtesy of the National Geographic society. neg # 5016-B. A note on the bottom requesting that the photo be reduced to 4 1/8 inches makes me think it may have been published. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (387, 'Pueblo Bonito, Pottery', '1089829275314', 'Photograph-Print', 'Photo of three cylinder-like vessels, but with a narrower base. there is no scale in the photo, so it is difficult to determine exactly what they are. They appear to have been reconstructed and have no obvious decoration. There is no information except for a number on the back, that is likely the negative number: 141445T.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (385, 'Pueblo Bonito, Pottery', '1089828558719', 'Photograph-Print', 'Two photos mounted to a card, labeled Pl.21A and Pl.21B, respectively. Plate 21A is Neg. 141419-T and is a group of 14 Chaco San Juan sherds. On the back it is labeled, "Bowl and jar fragments of Chaco-San Juan ware". Plate 21 B is a photo of three groups of sherds labeled A, B and C, on the photo. It is neg. 132418A. The photo is labeled "straight-line hachure in styles A, B, C. On the back it says "Sequential changes in designs using straight-line oblique hatching."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '2 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (384, 'Pueblo del Arroyo', '1089828319481', 'Photograph-Print', '2 photos mounted on a card. Caption 1: "Bin and 2nd type sub-floor kiva, R. 322, Pueblo Bonito. Photo by O.C. Havens, 1924. #28426-A". Caption 2: "S.E. corner of R. 323, Pueblo Bonito, showing ceiling supports. Photo by O.C. Havens, 1924. #28501." Really interesting image of posts in rooms.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '2 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (383, 'Pueblo Bonito, Pottery', '1089828284352', 'Photograph-Print', 'Photo of two vessels. One is an olla, the other looks like the cylindrical base of a larger vessel that may have been broken? The numbers written beneath these two vessels are 494 and 1661, respectively.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (373, 'Pueblo Bonito, Pottery', '1089826675175', 'Photograph-Print', 'Photo of 10 shouldered and long-necked pitchers arranged in two rows. The top row of 5 pitchers has the following numbers written above them: 8, 1975, 1669, 200 and 1891. The bottom row of five has the following numbers written beneath them: 1359, 1361, 1882, 901 and 1857. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (365, 'Pueblo Bonito, Pottery', '1089825681150', 'Photograph-Print', 'Photo with two constricted neck seed jars with the following numbers written beneath them: 2094 and 2095. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (346, 'Pueblo Bonito, Kivas', '1089817611105', 'Photograph-Print', 'Three photos mounted to card. Caption 1: "Upper left: Overlapping roof poles of Kiva L. [handwritten above "posts at left between pilasters #3 and 4] Pueblo Bonito; view from west. #22668-A." Caption 2: "Lower left: Roof poles [13th layer] of Kiva L., P.B., with upright bench posts showing at left and the "speaking tube" at lower right. #22689-A." Caption 3: "Above: Lower courses of roof logs, Kiva L., [pilaster #1 next to Zuni, #3 at left] #23229-A by N.M.J. - 1923."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (336, 'Pueblo Bonito, Kivas', '1089816225159', 'Photograph-Print', 'Three photos mounted to card. Caption reads: "Upper left: lower courses of roofing poles, fireplace & ceremonial passage. Kiva L., Pueblo Bonito. #23226-A. (Neg. 23222-A almost dublicates #23226 but is less desirable). Lower left: Reinforced roofing logs on pilaster 2, Kiva L., Pueblo Bonito #23224-A. Above: Bench recess between pilasters 4 and 5, Kiva L., P.B. #23223-A. Photos by O.C. Havens, 1923. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (334, 'Pueblo Bonito, Kivas', '1089815597070', 'Photograph-Print', 'Three photos mounted on card. Caption reads: "Upper left: Ceremonial offerings of shells beads and turquoise, pilaster #1, Kiva L., Pueblo Bonito. #23213-A. Lower left: Ceremonial offerings of shell beads, turquoise and macaw feathers, pilaster #6, Kiva L, Pueblo Bonito. #23235-A. Above: Logs resting on pilaster #6, Kiva L., Pueblo Bonito. #23225-A. Photos by O.C. Havens, 1923.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (322, 'Pueblo Bonito, Kivas', '1089813125728', 'Photograph-Print', 'Three photos mounted to card. Captions read: "Above. Part of excavated section of Pueblo Bonito at close of 1922 season, looking SE from Kiva G, in foreground. 18631-A. N.M.J. 1922. Upper left. Part of 1922 excavations at Pueblo Bonito, looking SE from R. 208. 18627-A. N.M.J.-1922. Lower left: Eastern kiva area (Kiva G in foreground) from N.E. Pueblo Bonito. #22614-A Photo by O.C. Havens, 1923. ', 1, 'Handwritten annotation on caption indicates that the first photo described above (18631-A.) was published in National Geographic Magazine, July 1923, p. 104. ', 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (317, 'Pueblo Bonito, Kivas', '1089812513395', 'Photograph-Print', 'Two photos mounted to card. Captions read: "Upper left. Excavating Kiva F; from the SW. Doorway into R. 251 at upper right. 18644-A. Lower left. Same as above. View from SW. 18643-A. Photos by Judd, 1922. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '2 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (313, 'Pueblo Bonito, Kivas', '1089812000327', 'Photograph-Print', '3 photos mounted to card. Captions read: "Kiva E--after excavations & repair, form the southeast. Photo by O.C. Havens, 1921. Negative #11942-A." "Kiva E--Fireplace and ventilator opening, from the NW. Photo by Neil M. Judd, 1921. Negative #11922-A." "Above: Middle sub-court kiva at S. end of E. court, Pueblo Bonito showing wall recess above bench. #23317-A. Photo by Judd, 1923."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (309, 'Pueblo Bonito, Miscellany', '1089749084236', 'Photograph-Print', '4 photos mounted on a card. General Caption: "Two-foot square sections (within string) of Pueblo Bonito masonry. Caption 1: "Oldest (1st) type masonry. Photo by Havens, 1921. #11893-A. Caption 2: "Second type masonry. Photo by Havens, 1921. #11895-A". Caption 3: "Second type masonry. (handwritten note: "N.G. Mag. Mar") Photo by Havens, 1921. #11891-A. Caption 4: "Banded masonry of 4th type. Photo by Havens, 1921. #11894-A.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '4 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (306, 'Pueblo Bonito, Miscellany', '1089748414243', 'Photograph-Print', '3 photos mounted on a card. Caption 1: "Excavated east portion of Pueblo Bonito at close of 1923 season, showing east court cleared and foundation walls on outer N.E. side of the ruin (At left). #23324-A Caption 2: "Excavated east portion of Pueblo Bonito showing unused foundation walls exposed by trenches on N.E. side of the ruin (lower left).#23323-A Both photos by O.C. Havens, 1923 Caption 3: "Unused foundation wall on outer N. side of Pueblo Bonito (handwritten note: "Indian stands outside R. 297") #23318-A', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (298, 'Pueblo Bonito, Miscellany', '1089746835944', 'Photograph-Print', '3 photos mounted on a card. Caption 1: "Repairing N. wall (3rd story) of R.172. From SW. Photo by Neil Judd,1921. #7667-A" Caption 2: "The same; Jack Lavery with trowel. Photo by Judd, 1921. #7668-A" Caption 3: "Repairing north wall of Room 172C. Photo by Havens, 1921. #11873-A" ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (289, 'Pueblo Bonito, Miscellany', '1089744873903', 'Photograph-Print', '3 photos mounted on a card. Caption 1: "Zuni workmen on walls south of Kiva D (foreground). #11907-A Photo by O.C. Havens, 1921." Caption 2: "Zuni on walls of south Kiva D (foreground) #11887-A Photo by Neil M. Judd, 1921" Caption 3: "Looking up Chaco Canyon from W. side of Kiva D. (in foreground) #18630-A Photo by Neil M. Judd, 1922" No site given - probably Pueblo Bonito.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', 'not a high priority', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (288, 'Pueblo Bonito, Miscellany', '1089744206983', 'Photograph-Print', '3 photos mounted on a card. Caption 1: "Kiva D--Sub-floor entrance to R. 241 (lower L); bench recess and ventilator opening at right center. #11877-A Photo by O.C. Havens, 1921." Caption 2: "Kiva D--Sub-floor chamber and ventilator shaft opening (left). #11904-A Photo by O.C. Havens, 1921 Caption 3: "Kiva D--showing exposed section of earlier kiva wall of 3rd type (foreground). View fr. W. #11878-A Photo by O.C. Havens, 1921"', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (286, 'Pueblo Bonito, General Views', '1089742781422', 'Photograph-Print', 'Three photographs mounted on card. Captions read: "Inner north sect. of Bonito from the southeast. Photo by Charles Martin, 1920. #5993-A." "The same section, seen from the east. Photo by Martin, 1920. #7644-A." "Above: Through an ancient doorway. Photo by Judd, 1921. #11870-A." This last photo is taken from inside a room, looking out at a man standing in the light. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (285, 'Pueblo Bonito, General Views', '1089742269228', 'Photograph-Print', 'Three photos mounted on card. Caption Reads: "Upper Left: Inner N.E. section of Pueblo Bonito from Room 304; looking S.E. #23359-A. Lower left: Inner N.E. section of Pueblo Bonito from Room #1. #23367-A. Above: Inner N. section of Pueblo Bonito with Kiva N. in the foreground. Looking E. #23357-A. Photos by Neil M. Judd, 1923."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (284, 'Pueblo Bonito, General Views', '1089742033415', 'Photograph-Print', 'Three photos mounted on a card. Caption reads: "Pueblo Bonito from the cliff northeast of the ruin. Photo by O.C. Havens, 1921. #11917-A" "The same. Photo by Charles Martin, 1920. #3210-A." "Above: Pueblo Bonito at close of 1922 season, seen from the cliff N.E. of the ruin. #18657-A. Photo by Judd, 1922."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (593, 'Pueblo Bonito, Miscellany', '1089741274836', 'Photograph-Print', '3 photos mounted on a card. Caption 1: "Room 162 (Hyde Expedition) and portion of previously un-excavated sub-floor kiva of San Juan type. #16256-A" Caption 2: "Room 162 (Pueblo Bonito) from the northeast. Excavated by Hyde Expedition. #15861-A" Caption 3: Room 162 (Hyde Exped.) from North, showing fireplace, ceremonial entrance, south bench recess, and, at lower right, corner of sub-floor chamber of R. 162. At left, Zuni boy standing in previously unexcavated sub-floor kiva of San Juan type. #16262-A. Photos by Judd 1922." Written in pencil: "NG Mag. 7/1923, p. 105"', 1, 'Written in pencil: "NG Mag. 7/1923, p. 105"', 0, NULL, 0, NULL, 0, NULL, 88, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (283, 'Pueblo Bonito, General Views', '1089741204005', 'Photograph-Print', 'Three photos mounted on card. Caption reads: "Above: Pueblo Bonito from the N. cliff of Chaco Canyon, 1927. View from N.W. #50601-A. Photo by Judd, 1927. Lower left: Excavations in progress, S.W. section of Pueblo Bonito. #28494 Photo by O.C. Havens, 1924. Pueblo Bonito fr. NW. cliff at close of 1921 season. Photo by O.C. Havens, 1921. #11941-A" This last photo described is also annotated with an ''A'' and a ''B'' representing Hyde''s 1896 trench and "N.G.S. 1921", respectively.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (281, 'Pueblo Bonito, kivas', '1089740539141', 'Photograph-Print', '3 photos mounted on card. Caption reads "Upper left: Exposed upper roof timbers, top of 14th layer, of Kiva L., Pueblo Bonito. #22673-A. Lower left: Excavation of Kiva L., with roofing timbers still in place, Pueblo Bonito. #22674-A. Above: Kiva L., Pueblo Bonito with lower courses of logs, resting on pilasters 3 and 4 #23228-A. NMJ-23." Upper left photo is likely the one published in Plog''s Ancient Peoples of the American Southwest. ', 1, 'one photo likely published in Plog''s Ancient Peoples of the American Southwest. ', 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (277, 'Pueblo Bonito General Views', '1089739393038', 'Photograph-Print', 'One Photo mounted on card. Caption reads: "Pueblo Bonito from the north cliff at close of 1924 season. Photo by O.C. Havens, 1924. Enlarged from Neg. 28625-A. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (603, 'Ruins: Chaco Canyon (Pueblo Pintado; Una Vida; Wejiqi)', '1089733326387', 'Photograph-Print', '8 prints of general architectural shots of Pueblo Pintado. Negative #s 74-81. Judd. Taken in July and September, 1920.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '8 prints', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (272, 'Pueblo Bonito General Views', '1089732739026', 'Photograph-Print', '3 photos mounted to card. Caption reads: "Upper left: Outer N.W. side of Pueblo Bonito, 1927; compare with Mindeleff view of 1887. #50585-A. Lower left: Outer S.W. corner of Pueblo Bonito, 1927; compare with Mindeleff view of 1887. #50587. Above: Outer S.E. corner of Pueblo Bonito, 1927; compare with Mindeleff view of 1887. #50590-A. Photos by Neil M. Judd, 1927. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (263, 'Pueblo Bonito Excavations', '1089729215633', 'Photograph-Print', 'One photograph mounted on card. Caption reads: "Upper left: E. side of wall partially surrounding W. refuse mound and, in foreground, wall connection with wall enclosing E. refuse mound. View from N.E. #28509-A. Photo by O.C. Havens, 1924." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (257, 'Pueblo Bonito Excavations', '1089727425530', 'Photograph-Print', 'Three photos mounted to one card. "Upper left: Exposed face of enclosing wall on north side of East Refuse Mound, Pueblo Bonito, looking east. #28523-A. Lower left: Structure and outer NW corner of wall enclosing east refuse mound, Pueblo Bonito. #28580-A. Above: Section of west wall enclosing East Refuse Mound, Pueblo Bonito, showing upper portion which had settled outward. #28522-A. Photos by O. C.Havens, 1924."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (217, 'Chaco Canyon Miscellany: Scenic Views', '1081966870504', 'Photograph-Print', 'One photo mounted on one card. "Walls of New Alto; mound of Old Pueblo Alto shows at right distance. 1 mi., N. of Pueblo Bonito. Chaco Canyon, 1927. #39973-A. Photo by Neil M. Judd".', 0, NULL, 0, NULL, 0, NULL, 1, 'NGS', 88, NULL, 'One photo on one card', NULL, NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (50, 'Architectural Evolution of Pueblo Bonito', '00049', 'Notes-Lectures', 'Abstract of paper given to National Academy of Sciences, April 26, 1927. Appears to be rather general. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '5 pages', NULL, NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (53, 'Pueblo Bonito and its Architectural Development with Abstract', '00052', 'Notes-Lectures', 'Abstract of paper to be read before the International Congress of Americanist (XXIII Session), September 21, 1926. General Lecture.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '4 pages', NULL, NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (55, 'Miscellaneous Correspondence, National Park Service', '00064', 'Correspondence', 'Letter from Judd (written after his retirement) to Michael Harrison - reminiscing about their time spent in the Southwest. Judd describes how he gave all his books, reports, and data away keeping none of it for himself.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (57, 'Miscellany--Printed Material', '00055', 'Annotated Work', 'Copy of "The Material Culture of Pueblo Bonito" with note on the front reading "Known Errors corrected [by N.M.J.]." Contains very few notes and/or corrections.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (59, 'Miscellany--Printed Material', '00058', 'Annotated Work', 'Judd''s annotated copy of Pepper''s Pueblo Bonito monograph. Contains significant number of notes throughout the text. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Vivian ', 'Vivian says 3 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (49, 'Pueblo Bonito Correspondence--Tozzer, Alfred M.', '00048', 'List-Photographs', 'List of photographs sent to Harvard. List contains negative numbers and short description. Photos are mainly of Pueblo Bonito with several on Pueblo del Arroyo. List was sent to Tozzer in a letter from Judd dated Nov. 3, 1925 (attached in folder).', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, NULL, NULL, 48, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (20, 'Reports, 1900-1924 S.J. Holsinger and others', '00019', 'Other', 'Part 3 of Holsinger''s Report, Sworn affadavit by Wetherill and Hyde Jr. on the unlawful excavations of Chaco ruins N.M. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (23, 'Correspondence, National Geographic Society: Braced up Cliff', '00022', 'Manuscript-Typed', '"A Study of Primitive Indian Engineering Methods Pertaining to Threatening Rock" by John Yak Keur" 1933. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, NULL, NULL, NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (35, 'NGS Pueblo Bonito: General Correspondence with NPS', '00034', 'Correspondence', 'Letter from Judd to John O. LaGorce, dated July 30, 1924. 2nd page (of 2) mentions the discovery of an ancient arroyo with late pottery near the bottom. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '2 pages', NULL, NULL, NULL, 'Vivian', 'Vivian says 2 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (41, 'Pueblo Bonito Correspondence--Sharp, Charles C. ', '00039', 'Correspondence', 'Letter to Superintendent Charles C. Sharp dated October 4, 1959. Contains details on a wall in Room 117 that was repaired. Contains measurements of blocked doors etc.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 page', NULL, NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (48, 'Pueblo Bonito Correspondence--Shepard, Anna D.', '00046', 'Correspondence', 'Letter from Shepard to Judd dated September 19, 1955, which contains information regarding the analyis of red ware cylinder fragments from Pueblo del Arroyo.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 page', NULL, NULL, NULL, 'Vivian', 'Vivian says 2 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (62, 'Drawings Rubbings and Illustrations: Pueblo Bonito Rubbings from Wall Drawings', '00061', 'Illustration-Other', 'Drawing of a mural design from room 348 at Pueblo Bonito, gives more info about its provenience. Design in white on lower east wall. By Frans Blum (written "bloom"). 1:10 scale. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 drawing', NULL, NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (65, 'Drawings Rubbings and Illustrations: Pueblo Bonito Bones', '00064', 'Illustration-Object', 'Drawing of a bone scraper from Pueblo Bonito. Has # 335163. Indicates 2/3 (scale?). ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 drawing', NULL, NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (66, 'Drawings Rubbings and Illustrations: Artwork Misc. Coll. 138 pt.1', '00064', 'Illustration-Object', 'Set of object illustrations. Probably included in Pueblo del Arroyo volume. However, some may be from Pueblo Bonito. May have also been published in Smithsonian Miscellaneous Collection 138 part 1. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '23', NULL, NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (67, 'Sketches of Wall drawings from Pueblo Del Arroyo', '00065', 'Illustration-Other', 'Sketches in plaster on N. Wall of room 41 Pueblo del Arroyo. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 drawing', NULL, NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (68, 'Sketches of wall drawings from Pueblo Del Arroyo', '00065', 'Not Specified', 'Drawing of a sandal, from room 44. Pueblo del Arroyo. Lifesize, by Karl Ruppert.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 drawing', NULL, NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (69, 'Cross section drawing of Chaco Canyon showing human and geologic events', '00065', 'Illustration-Other', 'Drawing: Diagrammatic Cross section of Chaco Canyon showing relation of human and geologic events. Color drawing on graph paper. 2 versions of same drawing, one in color, one not color. Black and white version is loose in the box. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '2 versions', NULL, 69, NULL, 'Vivian', 'Vivian says 2 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (74, 'Drawings, Rubbings and Illustrations', '00072', 'Profile', '4 small scrolls of elevation data and a surface profile of C to C1 through the canyon. "Profile of Canyon, Horizontal scale North of Chaco Wash" O.B. Walsh 1926. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '4 scrolls and 1 profile drawing', NULL, 72, NULL, 'Vivian', 'Vivian says 2 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (183, 'Chaco Canyon Miscellany: Ruins and Artifacts', '1081955750487', 'Photograph-Print', 'Two photos mounted on card of Jackson Stairway. "''Jackson stairway'' about 1 mile N.E. of Pueblo Bonito; described and illustrated by W.H. Jackson in 1877. Incipient steps at upper right. Chaco Canyon, 1927. Photos by Neil M. Judd # 50594A & 50597-A"', 0, NULL, 0, NULL, 0, NULL, 1, 'NGS', 88, NULL, 'two photos on one card', NULL, NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (184, 'NGS Photographs, Pueblo Bonito: Burials and buried objects', '1081955838660', 'Photograph-Print', '3 duplicates of the same photo. The only labeled print reads "Disturbed skeletons and their grave furnishings, northeast corner of Room 320" Taken by O.C. Havens 1924. Neg#28359. The negative number is crossed out and "91B" is written in pencil and circled next to it. The smallest unlabeled duplicate has the word "lower" written in pencil in the photo margin. ', 0, NULL, 0, NULL, 0, 'Neg#28359', 1, NULL, 88, NULL, '1 photo (3 copies)', NULL, NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (185, 'Chaco Canyon Miscellany: Scenic views', '1081956137817', 'Photograph-Print', 'Three photos mounted on card. Caption 1:"Pueblo Bonito from the north cliff. #28590-A" Caption 2: "Pueblo Bonito from the north mesa at the close of 1924 season. #28625-A OCH." Caption 3: "Pueblo Bonito from the N. cliff of Chaco Canyon, 1927. View from N.W. Photo by Judd, 1927. #50600-A."', 0, NULL, 0, NULL, 0, NULL, 0, 'NGS ', 88, NULL, '3 photos mounted on card', NULL, NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (186, 'NGS Photographs, Pueblo Bonito: Burials and buried objects', '1081956213685', 'Photograph-Print', '3 copies of the same photograph. One is labeled "Skeletons 5 (left) and 6), room 326, were accompanied by earthenware vessels, baskets, and other objects." Photographed by O.C. Havens 1924. Negative 28436A. Also labeled in pencil (like the other skeleton photo I''ve seen here) with "94B" (plate # I think). The second duplicate is large (like the one labeled). Third duplicate is small, also unlabeled, and has the word "right" penciled in the margin of the photo.', 0, NULL, 0, NULL, 0, 'Negative 28436A', 1, NULL, 88, NULL, '3 copies of the same photo', NULL, NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (187, 'NGS Photographs, Pueblo Bonito: Burials and buried objects', '1081956442936', 'Photograph-Print', 'Labeled as "The head of Burial 12, an adolescent girl, had been twisted off and left face down, Room 329." Photograph by O.C. Havens 1924. Negative # 28477A is again crossed out. Judd, pl. 96, A is penciled in. ', 0, NULL, 0, NULL, 0, 'Negative # 28477A ', 1, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (188, 'NGS Photographs, Pueblo Bonito: Burials and buried objects', '1081956609486', 'Photograph-Print', 'Photo labeled as "Skeletons 5 (front) and 6, Room 326, had been interred on a second burial level, about 25 inches above the floor." Photograph by O.C. Havens 1924. Negative # 28433A is again crossed out. Pl. 95, B is penciled in. There is a smaller unlabeled duplicate of this photo in the file folder. The word "lower" is written in pencil in the margin of that photograph.', 0, NULL, 0, NULL, 0, 'Negative # 28433A', 1, 'NGS', 88, NULL, '1 image, with a smaller duplicate', NULL, NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (191, 'Chaco Canyon Miscellany: Scenic Views', '1081957028860', 'Photograph-Print', 'Three prints mounted on card: (1) "Penasco Blanco ruin from the north. Photo by Martin, 1920. #3230-A" (2) "Casa Rinconada; Bonito in left distance. Photo by Martin, 1920. #3232-A". (3) "Small ruin on bank; Pueblo del Arroyo at right. Photo by Charles Martin, 1920. #3213-A".', 0, NULL, 0, NULL, 0, NULL, 1, 'NGS', 88, NULL, '3 photos mounted on 1 card', NULL, NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (194, 'Chaco Canyon Miscellany: Scenic Views', '1081957812014', 'Photograph-Print', 'Three mounted photos on one card. "Kimmenioli ruin--Chaco Canyon National Monument. Photo by Charles Martin, 1920. #7652-A". "The same. Photo by Charles Martin, 1920. #3227-A". "Kin-kla-tzin (Black House) ruin--Chaco Can. Nat. Mon. Photo by Charles Martin, 1920. #7655-A". ', 0, NULL, 0, NULL, 0, NULL, 1, 'NGS', 88, NULL, '3 photos on 1 card', NULL, NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (195, 'NGS Photographs, Pueblo Bonito: Burials and buried objects', '1081958070861', 'Photograph-Print', 'Labeled as "A footprint in an adobe pavement 38 inches below the floor of Room 228." Photo by OC Havens 1924. Neg.#28526A. Also labled as 100 or 10A?', 0, NULL, 0, NULL, 0, 'Neg.#28526A.', 1, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (196, 'NGS Photographs, Pueblo Bonito: Burials and buried objects', '1081958529059', 'Photograph-Print', 'Photo label reads: "Parts of three disarticulated skeletons, northwest quarter of room 329." Photograph by OC Havens 1924. Neg#28504A. Negative number is crossed out, "Judd pl.97B" is written in. There is also a smaller duplicate of this photo in the file that is not labeled. The word "lower" is written in pencil in the top margin of the photograph.', 0, NULL, 0, NULL, 0, 'Neg#28504A', 1, NULL, 88, NULL, '1 photo with one duplicate', NULL, NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (198, 'NGS Photographs, Pueblo Bonito: Burials and buried objects', '1081963224592', 'Photograph-Negative', 'Not labeled in any way. I recognize this small image to be another print of neg.#28477A - a photograph of an adolescent girl in room 329. Written in pencil in the upper margin is the word "left."', 0, NULL, 0, NULL, 0, 'Duplicate of neg.28477A', 1, NULL, 88, NULL, '1 image', NULL, NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (199, 'Chaco Canyon Miscellany: Scenic Views', '1081963356144', 'Photograph-Print', 'Three photos mounted on card: "Pecked ''ceremonial'' groove, on trail from Pueblo Alto to Chettro Kettle; distant figure stands on pecked steps. Chaco Canyon, 1 mi. N. of Pueblo Bonito. #39971-A". "Excavated E. end of upper trail between Pueblos Alto and Chettro Kettle, 1 mi. N.E. of Pueblo Bonito. Chaco Canyon. #40065-A". "On trail between Pueblos Alto and Chettro Kettle, 1 mi. N. of Pueblo Bonito. ''Ceremonial'' groove dimly shows in foreground. #50123-A". Judd 1927. ', 0, NULL, 0, NULL, 0, NULL, 1, 'NGS', 88, NULL, '3 photos on 1 card', NULL, NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (202, 'Chaco Canyon Miscellany: Scenic Views', '1081963843417', 'Photograph-Print', '3 photos mounted on 1 card. "Pecked stops on trail from Pueblo Alto to Chettro Kettle; Chaco Canyon, 1 mi. N. of Pueblo Bonito. #39969-A". "Pecked holes in bare rock, with piled stones surrounding, on N. cliff of Chaco Canyon between Pueblo Bonito and Chettro Kettle. #40063-A". "Same as #40064-A, #50596-A" Photos by Neil M. Judd, 1927.', 0, NULL, 0, NULL, 0, NULL, 1, 'NGS', 88, NULL, '3 photos mounted on 1 card.', NULL, NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (203, 'NGS Photographs, Pueblo Bonito: Burials and buried objects', '1081963972554', 'Photograph-Print', 'Photo label reads: "A confusion of human bones, earthenware vessels, stone artifacts, and debris of reconstruction appeared in the southeast corner of room 330." Photograph by OC Havens 1924. Neg.#28485. Again this neg# is crossed out and here "Pl. 99A" is written in. There is a smaller unlabeled duplicate of this photo in the file folder. The word "upper" is written in pencil in the margin of the photograph. ', 0, NULL, 0, NULL, 0, NULL, 1, NULL, 88, NULL, '1 image with a smaller duplicate', NULL, NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (205, 'NGS Photographs, Pueblo Bonito: Burials and buried objects', '1081964249954', 'Photograph-Print', 'Unlabeled photo - close up view of a lower leg with a beaded anklet. This photo is a duplicate of neg.#28489A (Burial 12, room 326). The word "upper" is penciled in the upper margin of the photo. ', 0, NULL, 0, NULL, 0, NULL, 1, NULL, 88, NULL, '1 photo ', 'It seems this object duplicates another object already in the database.', NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (208, 'NGS Photographs, Pueblo Bonito: Burials and buried objects', '1081964831457', 'Photograph-Print', 'Photo labeled as: "Disarticulated skeletons, northwest quarter of room 320." Photography by OC Havens 1924. Neg#28356A. This number is again crossed out and "pl. 91,A" is penciled in. There is an unlabeled duplicate of this image which has the word "upper" penciled in the photo margin. ', 0, NULL, 0, NULL, 0, 'Neg#28356A', 1, NULL, 88, NULL, '2 photographs (one is a duplicate)', 'Show this to Steve - ceramic shell?', NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (209, 'Chaco Canyon Miscellany: Scenic views', '1081965107540', 'Photograph-Print', 'One photograph mounted on one card: "''New Alto''--Pueblo Alto Group--on mesa north of Pueblo Bonito. Photo by Charles Martin, 1920. Negative #3015-B." ', 0, NULL, 0, NULL, 0, NULL, 1, 'NGS', 88, NULL, 'one photo mounted on one card', NULL, NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (210, 'NGS Photographs, Pueblo Bonito: Burials and buried objects', '1081965169191', 'Photograph-Print', 'Photo labeled as "Skeleton No. 10, Room 330, lay upon a bundle of arrows, with a burial offering of arrowheads and a food bowl below his outspread knees." Photograph by O.C. Havens 1924. Neg#28495A. This number is crossed out and "Judd, pl. 98,B" is written in pencil. There is also a smaller duplicate of this photo that is not labeled. The word "lower" is written in pencil in the photo margin. ', 0, NULL, 0, NULL, 0, 'Neg.#28459A', 1, NULL, 88, NULL, '1 image with a smaller duplicate', NULL, NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (215, 'NGS Photographs, Pueblo Bonito: Burials and buried objects', '1081966370671', 'Photograph-Print', 'Photo label reads: "Skeletons 8 (right) and 9, room 326, and grave furnishings." Photograph by OC Havens 1924. Neg.#28448. This number is again crossed out and "Judd pl.94A" is written in in pencil. There is a smaller duplicate of this photo in the file that is not labeled. That photo has the world "left" written in pencil in the upper margin of the photo. ', 0, NULL, 0, NULL, 0, 'Neg.#28448A', 0, NULL, 88, NULL, '1 photo and one smaller duplicate', NULL, NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (216, 'Chaco Canyon Miscellany: Scenic Views', '1081966526754', 'Photograph-Print', 'Two photos mounted on one card: "#40064-A Retaining wall in rincon N. of Pueblo Chettro Kettle, 1 1/2 miles N.E. of Pueblo Bonito. Chaco Canyon, 1927. Photo by Neil M. Judd". "#40067-A Ancient retaining wall, on upper ledge at right, in rincon N. of Pueblo Chettro Kettle, 1 1/2 miles N.E. of Pueblo Bonito. Chaco Canyon, 1927. Photo by Neil M. Judd". ', 0, NULL, 0, NULL, 0, NULL, 1, 'NGS', 88, NULL, '2 photos mounted on 1 card', NULL, NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (219, 'Chaco Canyon Miscellany: Scenic Views', '1081967214707', 'Photograph-Print', '3 photos mounted on one card. "Penasco Blanco ruin, from the southwest. Photo by Chas. Martin, 1920. #3236-A". "Northeast section of Penasco Blanco, from the east. Photo by Charles Martin, 1920. #7653-A". "Penasco Blanco--looking NE from SW section. Photo by Charles Martin, 1920. #3244-A". ', 0, NULL, 0, NULL, 0, NULL, 1, 'NGS', 88, NULL, '3 photos on one card', NULL, NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (220, 'NGS Photographs, Pueblo Bonito: Burials and buried objects', '1081967287774', 'Photograph-Print', 'Photo labeled as: "Skeleton 23 occupied a shallow pit beneath the floor of Room 330." Photograph by OC Havens 1924. Neg#28490A. This number is crossed out and "Judd pl. 93B" is penciled in. There is a smaller unlabeled duplicate of this photograph in the file. This photo has the word "lower" written in pencil in the photo margin. ', 0, NULL, 0, NULL, 0, 'Neg#28490A', 0, NULL, 88, NULL, '1 photo with one smaller duplicate', NULL, NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (221, 'Chaco Canyon Miscellany: Scenic Views', '1081967496732', 'Photograph-Print', '1 photo mounted on one card. "Chettro Kettle as seen from the cliff, northwest of the ruin. Photo by Charles Martin, 1920. Negative #3017-B." ', 0, NULL, 0, NULL, 0, NULL, 1, 'NGS', 88, NULL, '1 photo on one card', NULL, NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (222, 'Chaco Canyon Miscellany: Scenic Views', '1081967650588', 'Photograph-Print', '3 photos mounted on one card. "Central wing of Chettro Kettle, from the SW. Photo by Chas. Martin, 1920. #3234-A." "Outer north wall of Chettro Kettle. Photo by Martin, 1920. #3242-A." "The Same. Photo by Chas. Martin, 1920. #3240-A." ', 0, NULL, 0, NULL, 0, NULL, 1, 'NGS', 88, NULL, '3 photos mounted on one card', NULL, NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (223, 'Chaco Canyon Miscellany: Scenic Views', '1081967938371', 'Photograph-Print', '5 photos mounted on 1 card, three are labeled. The two unlabeled photos are of people. "Pueblo Una Vide, from the east. Photo by Judd, 1920. #7648-A". "Grave of Richard Wetherill Photo by Dr. C.E. Guthe". "Pueblo Una Vida, from the NW. Mesa Fahada in distance. Photo by Neil M. Judd, 1920. #7654-A". ', 0, NULL, 0, NULL, 0, NULL, 1, 'NGS', 88, NULL, '5 photos on one card', NULL, NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (225, 'NGS Photographs, Pueblo Bonito: Burials and buried objects', '1081968275721', 'Photograph-Print', 'Photo label reads: "Skeletons 8 (front) and 9 rested on a layer of constructional waste and blown sand." Photograph by O.C. Havens 1924. Neg#28435. This number is crossed out and "Judd pl. 95A" is penciled in. There is a smaller unlabeled duplicate of this photo in the file folder. The word "upper" is written in pencil in the margin of that photo. ', 0, NULL, 0, NULL, 0, 'Neg#28435', 1, NULL, 88, NULL, '1 photo with a smaller duplicate', NULL, NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (228, 'Chaco Canyon Miscellany: Scenic Views', '1081968933482', 'Photograph-Print', '2 photos mounted on 1 card. "Ancient canal near great ruin in Kiminioli Valley, 12 mi. S.W. of Pueblo Bonito. Slab stones at left from part of old wall; rounded knoll in middle distance, an embankment. #332621-A". "Exposed masonry wall and protecting slabstones of ancient canal, near Kiminioli ruin, 12 mi. SW of Pueblo Bonito. Photos by O. C. Havens, 1925". ', 0, NULL, 0, NULL, 0, NULL, 1, 'NGS', 88, NULL, '2 photos mounted on 1 card', NULL, NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (229, 'Chaco Canyon Miscellany: Scenic Views', '1081969148246', 'Photograph-Print', '3 photos mounted on 1 card. "Chettro Kettle ruin from the northwest cliff. Photo by O.C. Havens, 1921. #7665-A". "Ruin no. 8, from the southeast. Photo by Martin, 1920. #5995-A". "Pueblo Hungo Pavie, from the east. Photo by Judd, 1920. #3225-A". ', 0, NULL, 0, NULL, 0, NULL, 1, 'NGS', 88, NULL, '3 photos on 1 card', 'I''m guessing that Ruin no. 8 here refers to SAR ruin #8 - in which case the object relates to Una Vida.', NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (230, 'NGS Photographs', '1081969284082', 'Photograph-Print', 'Pitchers from Pueblo Bonito. Neg.#5015. 6 pitchers sitting on shelves. ', 0, NULL, 0, NULL, 0, 'Neg.#5015', 1, NULL, 88, NULL, NULL, NULL, NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (231, 'Chaco Canyon Miscellany: Scenic Views', '1081969373848', 'Photograph-Print', '2 photos mounted on 1 card. "Sin-kle-sin ruin from the south. Photo by Martin, 1920. #3214-A". "The same, from the north. Photo by Martin, 1920. #7649-A". ', 0, NULL, 0, NULL, 0, NULL, 1, 'NGS', 88, NULL, '2 photos on 1 card', NULL, NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (233, 'NGS Photographs', '1081969609973', 'Photograph-Print', '"Food bowls from Pueblo Bonito." Neg.#5017B. 5 bowls on display. ', 0, NULL, 0, NULL, 0, 'Neg.#5017B', 1, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (234, 'NGS Photographs', '1081969736982', 'Photograph-Print', '"Water Jars from Pueblo Bonito." Neg #5018B. 2 jars on display.', 0, NULL, 0, NULL, 0, 'Neg#5018B', 1, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (235, 'Chaco Canyon Miscellany: Scenic Views. ', '1081969635129', 'Photograph-Print', '3 photos mounted on 1 card. "Mound of old Pueblo Alto, 1 mi. N. of Pueblo Bonito; view from S. Chaco Canyon #39975-A". "Fallen walls of old Pueblo Alto, 1 mi. N. of Pueblo Bonito; fron S.W. #39974-A". "Old Alto from the southeast. New Alto at extreme left. Ruin is on bluff north of Pueblo Bonito. By O.C. Havens, #7663-A, 1921. Photos by Neil M. Judd, 1927". ', 0, NULL, 0, NULL, 0, NULL, 1, 'NGS', 88, NULL, '3 photos', NULL, NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (237, 'NGS Photographs', '1081969940215', 'Photograph-Print', 'Two photos mounted on cardboard. One is described as a bear effigy (neg#34490A) found near Pueblo Bonito. The other is described as a mountain lion effigy (neg#34508A) found at ruin on South cliff opposite of Pueblo Bonito. Photos by O.C. Havens, 1925. Objects are described as "now in the possession of Gus Griffin, Custodian of Chaco Canyon National Monument." ', 0, NULL, 0, NULL, 0, 'neg#34508A neg#34490A', 1, NULL, 88, NULL, '2 photos', NULL, NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (241, 'Pueblo Bonito Excavations', '1081970918212', 'Photograph-Print', '3 photos mounted to one card. "Pulling dump cars to Pueblo del Arroyo. Photo by O.C. Havens, 1924. #28488". "Mule drawn dump cars carried the excavation debris from Pueblo Bonito to the arroyo bank". "Dumping debris from Pueblo Bonito excavations into the arroyo. #28420-A. Photos by O.C. Havens, 1924". ', 0, NULL, 0, NULL, 0, NULL, 1, 'NGS', 88, NULL, '3 photos mounted to one card', NULL, NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (243, 'NGS Photographs, Pueblo Bonito: Excavations', '1081971575113', 'Photograph-Print', '3 photos mounted together: (Neg#28416-A) "Decayed pine log (JPB 99) at W. side of S. entrance to W. Court, Pueblo Bonito." 1924 (Neg#34489-A)"Discarded mealing stones recovered during explorations of Kiva Q Pueblo Bonito." (Neg#22650-A) "Basket #1025 in situ, N. corner, R. 290, Pueblo Bonito." 1923 All photos by O.C. Havens', 0, NULL, 0, NULL, 0, 'Neg#28416-A, Neg#34489-A, Neg#22650-A', 1, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (244, 'Pueblo Bonito excavations', '1081971909129', 'Photograph-Print', '4 photos mounted on 1 card: "SE. sect. of Bonito at beginning of excavations. Man at lower right center is over Kiva E. Photo by O.C. Havens, 1921. #11955-A". "N-central sect. of Bonito fr. S. of west. Photo by Havens, 1921. #11919-A". " Excavating rooms surrounding Kiva E (from the N.) Photo by O. C. Havens, 1921. #7660-A". "Beginning Excavations E. & S. of Kiva E. View from slightly west of north. Photo by Havens, 1921". ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '4 photos mounted to one card', NULL, NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (245, 'NGS Photographs, Pueblo Bonito: Excavations', '1081971923262', 'Photograph-Print', '4 photos mounted together. (Neg#16259A) "Section of pine log used as a seat (9 3/4"h. x 9 1/2" dia.) from R. 268." By Judd 1922. (Neg#18618A) "Skeleton of red-tailed hawk on floor of R. 264." By Judd 1922. (Neg#7675A) "Decayed cradle found in Room 225A." Photo by Judd, 1921. (Neg#11900A) "Macaw skeleton found in Room 249A." Photo by Havens 1921.', 0, NULL, 0, NULL, 0, 'Neg#16259A, Neg#18618A, Neg#7675A, Neg#11900A', 1, NULL, 88, NULL, '4 photographs', NULL, NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (246, 'Pueblo Bonito Excavations', '1081972243455', 'Photograph-Print', '2 photos mounted to 1 card. "Sub-court walls extending under repaired east wall of West Court. Outer W. side R. 144. Pueblo Bonito. #32373-A". "Sub-court rooms 350 and 351 at south end of West Court, Pueblo Bonito, from West. #31997-A. Photos by O.C. Havens, 1925". ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '2 photos mounted on 1 card', NULL, NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (249, 'Pueblo Bonito Excavations', '1081972746059', 'Photograph-Print', '2 photos mounted on 1 card. "Miniature walls looking south, probably constructed by children, in West Court of Pueblo Bonito. Photo by O.C. Havens, 1925. #32640-A". "Fireplaces near R. 330, on last utilized level in W. court, Pueblo Bonito. #28506-A. Photo by O.C. Havens, 1924." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '2 photos', NULL, NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (250, 'Pueblo Bonito Excavation', '1081972933130', 'Photograph-Print', '2 photos mounted on 1 card. "Trench though West Court of Pueblo Bonito, showing exposed walls. (View from south) #32641-A". "Trench in West Court, Pueblo Bonito. #32009-A". Photos by O.C. Havens, 1925. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '2 photos mounted on 1 card', NULL, NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (251, 'Pueblo Bonito Excavations', '1081973142438', 'Photograph-Print', '3 photos mounted to 1 card. "Partially razed 2nd type walls and former court levels under outer wall of R. 167. E. court of Bonito. #38991-A. Photo by Neil M. Judd, 1926. NGS restoration". "Sub-court walls, S.W. corner E. court, next R. 151. Pueblo Bonito. #23336-A. Photo by Neil Judd 1923". "Small sub-court room E. of R. 35-A. Under R. 147. #38997-A (1926)".', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos mounted to 1 card', NULL, NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (252, 'NGS Photographs, Pueblo Bonito: Excavations', '1081973247388', 'Photograph-Print', '3 photographs mounted together. (Neg#16266-A) "East section of Pueblo Bonito from the cliff showing beginning of excavation of Kivas F and G." (Neg#18654-A) "Excavated SE section of Pueblo Bonito at close of 1922 season; seen from north cliff of Chaco Canyon. Expedition camp seen at upper right." (Neg#18565-A) "Same" (see above). Photos by Judd 1922', 0, NULL, 0, NULL, 0, 'Neg#16266-A, Neg#18654-A, Neg#18565-A', 1, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (253, 'NGS Photographs,Pueblo Bonito: Excavations', '1081973480500', 'Photograph-Print', '2 photographs mounted together. (Neg.#28414-A) "West half of Pueblo Bonito at beginning of 1924 season." (Neg#28582-A) "West Court - Pueblo Bonito at close of season, 1924." Photos by O.C. Havens 1924.', 0, NULL, 0, NULL, 0, 'Neg.#28414-A, Neg#28582-A', 1, NULL, 88, NULL, '2 photos', NULL, NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (254, 'NGS Photographs, Pueblo Bonito: Excavations', '1081973726004', 'Photograph-Print', 'Only one photo of the three mounted on this page is of interest to us. Neg#11876. "Kiva E and surrounding rooms after excavations. view from North." Photo by Neil M. Judd, 1921. ', 0, NULL, 0, NULL, 0, 'Neg#11876', 1, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (255, 'Pueblo Bonito Excavations', '1081973471336', 'Photograph-Print', '3 photos mounted to one card. "East Court North, cross-court, 2nd type wall abutting N-S 2nd type wall overlain by 3rd type masonry; N.E. corner of East Court. #38976-A". "Partly razed 2nd type walls & floor extending south - middle west side of East Court, Bonito, E. of R. 149. #39928-A". "2nd type subcourt walls & E-W doorway, east of R. 149 & north of crosscourt, above 3rd type wall, Pueblo Bonito. #38977-A". Photos by Neil M. Judd, 7/1/26, 8/10/26 & 7/25/26, respectively. ', 0, NULL, 0, NULL, 0, NULL, 1, 'NGS', 88, NULL, '3 photos on 1 card', NULL, NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (75, 'Archaeological Sites Chaco Canyon: Field Notes 1926-27', '00073', 'Notes-Field Notes', 'Field Notes from excavation at a "BM III Village" 9 miles east of Pueblo Bonito. Probably Shabik''eshchee. Includes detailed sketches, site plans, dimensions, and extensive verbal descriptions of excavation findings. From a cursory glimpse - some very interesting information on burials.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, 'Field notebook is full', NULL, 73, NULL, 'Vivian', 'Vivian says 3 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (77, 'Archaeological Sites Chaco Canyon: Field Notes 1927', '00074', 'Notes-Field Notes', 'Only a few pages of this notebook contain field notes. It begins on page one in mid-thought - not sure where the preceding notebook is. There is detailed information on a kiva group, niches, pilasters, and some burial info - but I cannot figure out which site Roberts is talking about.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, 'A few pages in an otherwise blank notebook', NULL, 74, NULL, 'Vivian', 'Vivian says 3 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (81, 'Additional copies of cards (cut)', '00076', 'Tabular Data', 'Additional copies of Roberts'' index cards with tabular pottery data. These copies are on 1/2 sheets of paper. Each 1/2 sheet contains the information of 1 index card. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, NULL, NULL, 76, NULL, 'Vivian', 'Vivian says 2 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (86, 'A Record of Test Pit Photos with a note on the Location of the test pits', '00080', 'Notes-Miscellaneous', 'Notes titled "NGS test Pits @PB, 1921-1923" Lists the location, depth, soil encountered and any negative numbers of test pits 1-7 from 1921-23. Handwritten on yellow legal pad paper. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '2 pages', NULL, 80, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (500, 'New Mexico: Ruins Chaco Canyon, braced-up Cliff', '1089911267297', 'Photograph-Print', 'Photo of Pueblo Bonito after the fall of Braced-up Cliff. PB appears with light snow on the ground. Photo looking SW from N Mesa. Notes on back of photo read: "PB after fall of Braced-up cliff NPS photo [collapsed Jan 22, 1944]."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 130, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (501, 'New Mexico: Ruins Chaco Canyon, braced-up Cliff', '1089911429391', 'Photograph-Print', 'Two photos overlooking Pueblo Bonito after the fall of Braced-up Cliff. Identical handwritten notes on the back of each photo read: "PB after fall of Braced-up Cliff NPS Photo." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 130, NULL, '2 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (502, 'New Mexico: Ruins Chaco Canyon, braced-up Cliff', '1089911577899', 'Photograph-Print', 'Small photo of Pueblo Bonito looking north after the fall of Braced-up Cliff. Note on back of photo reads "[After collapse of Braced-up Cliff] Given to Frank Roberts by NPS custodian @ PB 1941." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 130, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (503, 'New Mexico: Ruins Chaco Canyon, braced-up Cliff', '1089911842558', 'Photograph-Print', 'Series of 6 photos showing Pueblo Bonito after the fall of Braced-up cliff. All 5 indicate in notes on the back that they are NPS photos. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 130, NULL, '5 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (92, 'Archaeological Sites Chaco Canyon: Pottery - painted decoration', '00084', 'Notes-Notecards', 'Note cards have nice pen and ink drawings of design elements on one side and list the object number, vessel form, a brief design description, and sometimes provenience info. Those that have provenience information are from Pueblo Bonito.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, 'Roughly 25', NULL, 84, NULL, 'Vivian', 'Vivian says 2 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (93, 'Archaeological Sites Chaco Canyon: pottery - painted decoration', '00085', 'Notes-Notecards', 'Note cards have nice pen and ink drawings of design elements on one side of the card. On the other side of each card the object # is given as well as the vessel form and a brief description of the paint and design. Very few cards have any provenience information. Those with provenience info are from Pueblo Bonito. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, 'Roughly 25 cards', NULL, 85, NULL, 'Vivian', 'Vivian says 2 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (504, 'New Mexico: Ruins Chaco Canyon, braced-up Cliff', '1089911980123', 'Photograph-Print', 'Small photo of the back of Pueblo Bonito looking East. Large rocks fallen from the cliff are almost at the back wall of the Pueblo. A handwritten note on the back reads: "Given to Frank Roberts by NPS Custodian @ PB 1941." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 130, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (94, 'Archaeological Sites Chaco Canyon: misc. pottery pieces', '00086', 'Notes-Notecards', 'Note cards have a schematic outline drawing of the object on one side of the card. The other side lists the object #, the type, height, width of orifice, and some other dimension/descriptive information. No provenience info.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '4 notecards', NULL, 86, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (95, 'Cartographic Materials: Profiles 1940', '00086', 'Profile', 'Folder containing profile drawings from 1940 season at Bc 53. Includes Rooms 2, 8, 3, 4, 6, 7, 8, 11, 13, Kiva A, Kiva 13, "Old Wall", ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '18 drawings including 1 of masonry', NULL, 86, NULL, 'Vivian', 'Vivian says 2 on 1-3 scale with 3 highest Priority, but could be upgraded to 3.', NULL, NULL, NULL); INSERT INTO object VALUES (511, 'New Mexico: Ruins Chaco Canyon, braced-up Cliff', '1089913386800', 'Photograph-Print', 'Photo of back of Pueblo Bonito looking East after the fall of the first rocks from Braced-up cliff. Several people are visible on the mesa behind the pueblo. Handwritten on the back is "#39560-A" and "R. 58. Judd pl. 5, 2" ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (96, 'Archaeological Sites Chaco Canyon: Pueblo Bonito Sherd Count', '00087', 'Tabular Data', 'One large and one small notebook and 4 loose pieces of paper listing sherd counts from rooms at Pueblo Bonito. Counts are often broken down by type.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '2 notebooks, 4 pieces of paper', NULL, 87, NULL, 'Vivian', 'Vivian says 2 on 1-3 scale with 3 highest Priority, but could be upgraded to 3.', NULL, NULL, NULL); INSERT INTO object VALUES (513, 'New Mexico: Ruins Chaco Canyon, braced-up Cliff', '1089914132422', 'Photograph-Print', 'Photo of Braced-up cliff behind Pueblo Bonito looking west. Pueblo Bonito is visible in lower left. Next to Braced up cliff, a crumbling retaining wall is clearly visible. Note on tracing paper attached to the front of the photo reads "Remake, detail in shadow areas is important." On the back of photo, notes read: "R. 58 Judd pl. 2, 2" and "#3011B". ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (102, 'Bc 53 site Specimen Inventory 1941 Field Cards', '00090', 'Notes-Notecards', 'Object cards from 1941 field season at Bc 53. Forms are different than those used in 1940. These forms are titled "University of New Mexico Anthropology Museum" and appear to be for accessioning things to the museum rather than noting archaeological information. Little provenience info. Cards are in two folders (22 and 23). ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, 'circa 200', NULL, 90, NULL, 'Vivian', 'Vivian says 2 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (115, 'Judd''s citations of SW pottery from literature and collections', '00102', 'Notes-Miscellaneous', 'Notes on cylinder vessels from Chaco - distributions, contexts (from Pepper), current housing institutions, references in SW literature, dimensions, Mesoamerican connections, and some drawings.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '15 pages', NULL, 102, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (116, 'Judd''s citations of SW pottery described in literature and collections', '00103', 'Notes-Miscellaneous', 'Notes on cloisonne work - examples from Chaco, references in SW literature, and Mesoamerican connections. Notes that one example of cloisonne from Chaco was lost. It was a sandstone slab with cloisonne. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '8 pages', NULL, 103, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (118, 'Judd''s citations of SW pottery described in the literature or in collections', '00105', 'Notes-Miscellaneous', 'Two pages of handwritten notes on the back of hotel stationary. Describes how Richard Wetherill''s collection came to be at the Field Museum of Natural History. Includes description of "2 cylinder jars, one with indrawn top, dug from mound near Pueblo Alto. Includes sketches.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '2 pages', NULL, 105, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (123, 'Manuscripts: "The Pottery from Pueblos Bonito and del Arroyo and the...', '00107', 'Manuscript-Typed', 'Manuscript titled "The Pottery from Pueblos Bonito and del Arroyo and the Ceramic Sequence in the Chaco Canyon, New Mexico." Not sure if this was ever published, but the exact title doesn''t appear in Roberts'' publications. There are 2 versions of the manuscript in this box, (folders 15 and 16). Both appear to carry Judd''s comments for Roberts. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, 'circa 300 pages, each copy', NULL, 107, NULL, 'Vivian', 'Gwinn says "This is very long. I''d check with Tom Windes and get his advice."', NULL, NULL, NULL); INSERT INTO object VALUES (148, 'Correspondence: Incoming Letters Sent: Shepard, Anna ', '1081865080189', 'Correspondence', 'Copy of a letter from Anna Shepard to Neil Judd. Letter contains details on sherds that Shepard studied from Pueblo Bonito. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '2 pages', NULL, NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (153, 'Basketmaker III village 9 miles E. of Pueblo Bonito', '1081878872427', 'Map', 'Plan view of area near what we believe to be Shabik''eshchee, showing main arroyo with a grid system presumably for excavation. Includes some vague schematic of wall features. Drawing is fairly unclear and poorly labeled. This object was flagged with an "out card" in Roberts Box 1, folder entitled "Archaeological Sites Chaco Canyon: Cartographic Materials 1924-27."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 page', NULL, NULL, NULL, 'Vivian', 'Vivian says, "?? I''d check with Tom."', NULL, NULL, NULL); INSERT INTO object VALUES (155, 'None', '1081879260359', 'Profile', 'Profile of Sections 1 and 2 from Pueblo Alto. These are very rough generalized profiles showing crude stratigraphy. 1 page, double sided. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 page, two sided', NULL, NULL, NULL, 'Vivian', 'Vivian says 2 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (156, 'None', '1081879396114', 'Profile', 'Crude profile labeled "156 Bonito". Includes layers (A-O) with general notes on each layer. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 page', NULL, NULL, NULL, 'Vivian', 'Vivian says 2 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (650, 'New Mexico: Ruins Chaco Canyon aerial photographs by Lindbergh', '1090336466912', 'Notes-Miscellaneous', 'One page of handwritten notes in a folder with Lindbergh aerial photos of Pueblo Bonito. The note, presumably written by Judd reads: "AVK. letter of July 15, 1937. With Lindbergh''s permission. 1929 photos he made in Chaco and gave to CL [initials unreadable] were presented to Lab of Anthrop. Kidder sent negatives for us to copy and said ''You can use any of these that you wish.'' 63 negs. mailed to Chap. July 31/37 Credit both Lindbergh and Lab. of Anthrop." Small note underneath reads: "small print to Smily 12/16/48." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 page', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (635, 'New Mexico: Ruins Chaco Canyon Small house on arroyo bank', '1090334717708', 'Photograph-Print', 'Photo with notes on back. Notes read: "Erosion by water from the Gap. Pueblo del Arroyo at left center: H.S. Colton [sp? can''t quite read] @ R. Chaco Cayon, 1929. NMJ, 8/29/29." Other note at bottom reads: "pl. VIII B [this is crossed out and underneath is written:] 8,2." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (316, 'Pueblo Bonito, North Wall', '1089812543925', 'Photograph-Print', '3 photos mounted on a card. Caption 1: "Dan Cly (Navaho) telling his son about the macaw skeleton he found in Room 249-A. Photo by Neil M. Judd, 1921. #11931-A Caption 2: "Northeast section of Pueblo Bonito, from the west. Photo by Neil M. Judd, 1921. #7642-A" Caption 3: Navaho on walls of Pueblo Bonito. Photo by Neil M. Judd, 1921. #11928-A."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (242, 'Pueblo Bonito excavations', '1081971492625', 'Photograph-Print', '3 print photos mounted on 1 card. Two of the photos show excavation work in progress and may not be too useful, but one is a shot of Pueblo Bonito at the close of the 1923 season. "Loading cars with debris from the excavations, east court of Pueblo Bonito. Photo by O.C. Havens, 1923. #22655-A". "Northern portion of Pueblo Bonito, at close of 1923 season, from west refuse pile with Kiva B. in left foreground. #23331-A. Photo by Neil M. Judd, 1923". 3rd photo is horse drawing debris. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos mounted on one card', NULL, NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (248, 'Pueblo Bonito Excavations', '1081972532323', 'Photograph-Print', 'Two photos mounted on one card. "3rd type wall foundations abutting & overlying partly razed sub-court E-W walls E of R.149, East Court, Pueblo Bon. Neg. 38984A". "3rd type E-W walls overlying partly razed pair of 2nd type N-S sub-Ct walls outside R. 146. E. side West Court. Neg. 39931-A. Photos by Neil M. Judd, 1926". ', 0, NULL, 0, NULL, 0, NULL, 1, 'NGS', 88, NULL, '2 photos on 1 card', NULL, NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (182, 'NGS Photographs, Pueblo Bonito: Burials and buried objects', '1081955694112', 'Photograph-Negative', 'Pueblo Bonito - skeletons Rm 326. Taken 1924 by O.C. Havens. Neg. #28436A', 0, NULL, 0, NULL, 0, 'Neg. #28436A', 1, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (193, 'NGS Photographs, Pueblo Bonito: Burials and buried objects', '1081957471168', 'Photograph-Print', 'Labeled as "metate used as step to east door, and nearby artifacts, Room 320." Photo by OC Havens. Neg#28372. Also labeled as 92B. Written in lighter pencil: "cyl & bifurca. baskets, SE quarter of Room 320" and "Cyl. baskets p. 167."', 0, NULL, 0, NULL, 0, 'Neg#28372', 1, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (224, 'NGS Photographs, Pueblo Bonito: Burials and buried objects', '1081968076120', 'Photograph-Print', 'Photo label reads: "Skeleton 12, right, and partial skeleton 11 and 13. Room 326." (Photograph by OC Havens 1924. Neg#28454A. This number is crossed out and "Judd pl. 92A" is written in. There is a smaller, unlabeled duplicate of this photo in the file folder. That photo has the word "upper" written in the margin. ', 0, NULL, 0, NULL, 0, 'Neg#28454A', 1, NULL, 88, NULL, '1 photo with a smaller duplicate', NULL, NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (595, 'Pueblo Bonito, Miscellany', '1089742711703', 'Photograph-Print', '3 photos mounted on a card. Caption 1: N.E. section of Pueblo Bonito, Kiva F at lower left. #18642-A. Photo by Judd, 1922" Handwritten note reads "high walls - right middle - 189, 188,187." Caption 2: Excavations in progress in N.E. section of Pueblo Bonito. #22665-A Photo by O.C. Havens, 1923" Caption 3: "Inner N. section of Pueblo Bonito, from Room 233 -- looking N.W. #23369. Photo by Neil M. Judd, 1923."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (154, 'None', '1081879049665', 'Profile', 'Profile of Sections #1 and #3 (no #2) from Penasco Blanco. These are very rough, generalized profiles showing crude stratigraphy.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 page, double sided', NULL, NULL, NULL, 'Vivian', 'Vivian says 2 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (10, 'Measurements of rooms at Pueblo del Arroyo', '0009', 'Tabular Data', 'Handwritten tabular data on the measurements of rooms at Pueblo del Arroyo. Fields include: Room, Distance to NE corner, Diameter of Beam, Height above floor, remarks, also small drawings. From rooms 8, 9, 10 and 11. 1st and 2nd story. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (352, 'People, Expedition Parties', '1089819396244', 'Photograph-Print', '5 separate photos with the same caption: "Grosvenor Coville Party. Old "road" N of Pueblo Bonito, Chaco Canyon, N.M. 1925 By Judd. 2 of these images have "Chettro Kettle" written at the end of the description. 3 are close-ups, 2 are more general shots.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '4 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (584, 'Ruins: Chaco Canyon (Chettro Kettle; Hungo Pavie; Kimenioli)', '1089728415901', 'Photograph-Print', '"Chaco Canyon, N. Mex. Chettro Kettle N.W. central part. fr. W." Neil M. Judd 9-14-20 [Neg. 36]', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (269, 'Pueblo Bonito General Views', '1089732080492', 'Photograph-Print', 'Three photos mounted on card. Caption reads: "Above: Near figure stands in R. 14a (view from West.) Pueblo Bonito #32629-A. Photo by O.C. Havens, 1925." Handwritten annotation reads "NGS repairs. foregr." "Lower Left: North-central portion of Pueblo Bonito, from the west. #32616-A. Photos by O.C. Havens, 1925." No third caption given on card.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (319, 'Pueblo Bonito, Kivas', '1089812832937', 'Photograph-Print', 'Three photos mounted to card. Captions read: "Above. Northeast section of Pueblo Bonito with whitened east wall of R. 281 in foreground. 18651-A. Upper left. Passing surface stones form Kiva F at beginning of excavations view from SE. 16267-A. Lower Left. Part of 1922 excavations at Pueblo Bonito, looking NW from R233. Indians are standing at NE corner of Kiva G. 18628-A. Photos by Judd, 1922.', 1, 'The last 2 photos described above (16267-A and 18628-A) have handwritten annotations on the caption indicating that they were published on pages 102 and 103, respectively, of National Geograhic Magazine''s July 1923 issue. ', 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (73, 'Drawings, Rubbings and Illustrations: East Trench ', '00071', 'Profile', 'Profile drawing of East Trench room 171 to post-Bonito arroyo. Large drawing, quite long and fragile. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 map', 'imaging', 71, NULL, 'Vivian', 'Vivian says 3 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (112, 'Bc 53 Site: Sherd Percentages: 1941 Rooms', '0099', 'Tabular Data', 'Sherd counts and percents by type for levels in rooms excavated in 1941. Each sheet is a form with typed information. 1 form per level. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, 'circa 100', NULL, 99, NULL, NULL, NULL, 1, '8/04/2004', NULL); INSERT INTO object VALUES (78, '1925-1927 Chaco Canyon, N. Mexico Sherd Percentages--cards', '00074', 'Tabular Data', 'Index cards with Roberts'' tabulated pottery data by room with data for sub-floors. The cards define 21 pottery types and list raw numbers and percents of sherds for each room. All from Pueblo Bonito.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, 'circa 150 cards', NULL, 74, NULL, 'Vivian', 'Vivian says 2 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (150, 'Correspondence: Letters Sent', '1081867101121', 'Correspondence', 'Handwritten letter from Roberts to Judd dated May 19, 1926. Letter appears to be about Chaco and includes the following passage: "Don''t know whether I mentioned it or not but in the east dump there are only two or three fragments of the old transitional stuff. This helps to show the east mound later than the west and also the passing out of that type of pottery..." The words "E. md. Trench" are written in the top margin of this letter in pencil. This letter must, I think, be referring to the east and west Bonito mounds. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 page', NULL, NULL, NULL, 'Vivian', 'Vivian says 3 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (88, 'Archaeological Sites Chaco Canyon: Specimen Inventory pottery bowls', '00081', 'Notes-Notecards', 'Note cards with ceramic bowls listed individually on each card with a schematic outline drawing on the back of each card. Cards give the object number (a 4 digit #), the width, depth, design and rim description. There is no provenience information or site name/number on these cards. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, 'many cards - roughly 150?', NULL, 81, NULL, 'Vivian', 'Vivian says 2 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (89, 'Archaeological Sites Chaco Canyon: Pottery jars and jugs', '00082', 'Notes-Notecards', 'Note cards with ceramic jars listed individually on each card with a schematic outline drawing on the back of each card. Cards give the object number (a 3 digit #), type, width of orifice, and various other dimensions. There is no consistent provenience information or site name/number on these cards. A few say "Pithouse".', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, 'roughly 50', NULL, 82, NULL, 'Vivian', 'Vivian says 2 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (90, 'Archaeological Sites Chaco Canyon: Specimen Inventory Pottery - Pitchers', '00083', 'Notes-Notecards', 'Note cards with ceramic pitchers listed individually on each card with a schematic outline drawing on the back of each card. (Some cards have a design element drawing on the back instead.) Cards give the object number (a 4 digit #), height, design, rim, and bottom description. Those cards with design drawings only have the object # and a very brief description of the vessel type. There is no provenience information or site name/number on these cards. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, 'roughly 75 cards', NULL, 83, NULL, 'Vivian', 'Vivian says 2 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (99, 'Archaeological Sites Chaco Canyon: pottery notes', '00088', 'Tabular Data', 'Full folder title is "Penasco Blanco and Pueblo del Arroyo sherd count and frequency calculations." Folder includes tabular data from those sites about types and design element frequencies - often listed by room. There is more organized information for Pueblo del Arroyo. This folder includes ceramic frequency line graphs. None of the graphs seem to be labled so it is impossible to tell if they represent Penasco Blanco, Pueblo del Arroyo or both. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '44 pages', NULL, 88, NULL, 'Vivian', 'Vivian says 2 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (121, 'Pottery Notes for the Summer 1925', '00106', 'Notes-Analysis', 'Describes and defines a ceramic chronology based on Kidder''s work. Uses ceramics from Pueblo Bonito and Pueblo Alto. Describes ceramic trends for each phase. There are two folders in this box labeled the same ("Pottery Notes for the Summer 1925", folders 17 and 18) with the same contents, this typed manuscript. The copy in folder 18 has a cover with handwritten in pencil on the front "1925 Pottery Notes - F. H. H. R. Jr." On the inner back cover are ink handwritten notes for additions. Carrie and I believe that this indicates that Roberts was the author of this manuscript.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, NULL, NULL, 106, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (146, 'Illustration SI Publication BAE Bulletin 121', '1081864975754', 'Not Specified', 'Cross section illustration of a pier pilaster kiva including cribbed roof. No site name given. See publication, fig. 7 (Fig. 7 is written on the back in pencil).', 1, 'BAE Bulletin 121', 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 page', NULL, NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (855, 'Photo-Prints, Sites, Chaco Canyon, N.M., Other sites in the area', '1090438547116', 'Photograph-Print', '1 small print, labeled on the back in ink "-Mesa Verde Ruin, 9 1/2 miles East of Bonito, Summer of 1926.", in pencil "Neg. Available", and in purple stamp, "10". ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', 'What site is this? We still don''t know after a second look...ask Joan...?', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (988, '"Small Sites of the Chaco" Manuscript', '1091646417035', 'Plan-Architecural', '3 architectural plans and 1 profile. One plan of Ruin 13, one plan of kiva in Ruin 13, and one plan of Ruin 3, and a cross section profile of kiva in ruin 13. Illustrations accompany "Small Sites" manuscript?', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '3 plans 1 profile', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (987, '"Small Sites of the Chaco" Manuscript', '1091646338305', 'Tabular Data', 'Color coded chart of ceramic type abundance for Ruins 1-16. Site unknown. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (164, 'None', '1081882660813', 'Tabular Data', '6 ceramic frequency charts. They are: Corrugated ware/banded neck ware, polished Black interior/Indian red/transitional red Solid/Chaco San Juan Hachure C/B/A Degenerate Ware/Transitional Ware Undecorated culinary vessels/painted wares There is/are no site/sites indicated on these frequency charts.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '6 pages', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (172, 'Pueblo Bonito Restorations by Dr. Kenneth Conant', '1081949267797', 'Not Specified', 'Two Pueblo Bonito reconstructions by Dr. Conant with negatives.', 0, NULL, 0, NULL, 1, 'NGS neg. 12069B', 0, NULL, 88, NULL, '2 photos, 2 negatives', NULL, NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (174, 'None', '1081950109797', 'Photograph-Print', 'Photo of kiva excavation. Pier pilasters. Unknown provenience. Workmen excavating. No site name given on back of photo.', 0, NULL, 0, NULL, 0, 'Neg. number 16258-A', 1, 'National Geographic Society', 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (175, 'None', '1081950407380', 'Photograph-Print', 'Photo of a subterranean slab house? - not labeled, no provenience. Is labeled as a duplicate. Square pit house with post features, hearth and ante-chamber with workman for scale.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (985, 'Drawings, Rubbings, and Illustrations: West Trench', '1091627812260', 'Profile', 'Long, fragile drawing of profile of the West Trench in Pueblo Bonito. We know the pottery test sections line up somewhere along this profile, but it''s not clear from the map exactly where these are. We''ve seen other profiles that if matched up with this long profile might be able to give us the exact locations/boundaries of the pottery test sections.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 long drawing rolled up', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (176, 'Photographs and Art Prints', '1081950545724', 'Not Specified', 'Giant oversized photo of Kenneth Conant reconstruction drawing of Pueblo Bonito (1926). ', 0, NULL, 0, NULL, 0, 'NGS Neg # 12070-B', 0, NULL, 88, NULL, '1 huge photo', NULL, NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', NULL, NULL, NULL); INSERT INTO object VALUES (274, 'Pueblo Bonito General Views', '1089733430118', 'Photograph-Print', '3 photos mounted on card. Caption reads: "Upper left: Wind blown sand (behind Indian) and accumulated debris - east side of P.B. #23231-A. Lower left: Removing accumulated debris outside northeast wall of Pueblo Bonito. #22657-A. Above: Prostrate wall in debris on east side of Pueblo Bonito. #23232-A. Photos by Neil M. Judd, 1923." The last photo described above is of a large berm with what appears to be a collapsed wall or loose masonry being removed. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', 'obtain last photo described above. East of Pueblo Bonito is a fairly large berm, roughly 8 feet high in 1923.', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (375, 'Ruins: Chaco Canyon', '1089826760738', 'Photograph-Print', '1 print and one piece of paper indicating that there is a negative for another image - both of subfloor kiva wall - R. 244. Caption 1: "Sub-floor kiva wall - east side of R. 244. Judd, 1922. Pueblo Bonito, NM. Neg. 55" Caption 2: "No print. Neg. 55a. Sub-floor kiva wall, E. side R. 244, Pueblo Bonito, Chaco Canyon, N.M. 1922. By Judd."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, NULL, 'See note# 11. ', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (386, 'Pueblo del Arroyo', '1089828772507', 'Photograph-Print', '3 photos mounted on a card. Caption 1: "Burial No. 14- SE corner of Room 326, Pueblo Bonito. #28492" Caption 2: "Disturbed burials (#13 at L. and 12 at R.), south end of room 326, Pueblo Bonito. #28454-A." Caption 3: South end of Room 326, showing burial and base of ceiling supports #28503." (Handwritten note: "Skel. 14 with parts of 13 overlying. L. tibia and fibula of skel. 13 overlying." This image shows the same post configuration found in room 323.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', 'There are no dates given - but the negative numbers look like NGS negative numbers.', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (333, 'Pueblo Bonito, Repairs', '1089814353208', 'Photograph-Print', '2 photos mounted on a card. Caption 1: "Vandal-torn hole outer N. wall, Bonito, opp. 2nd unexcavated room E. of 297 (1st N. of R. 86) and depository above E. ventilator. #23233A. (handwritten note: "same hole shows @ R. end Mindeleff''s 1887 neg. 3214). Caption 2: "4th type outer masonry covering 3rd. type earlier wall, opp. 2nd unexcav. room E. of 297. #23216A. (handwritten note: "at L center, Mindeleff''s 1887 Neg. 161; US #3154")', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '2 photos', 'No date, but these negative numbers look like NGS numbers.', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (758, 'Pueblo Bonito: Rooms 151-190; 303; unidentified rooms', '1090417698908', 'Photograph-Print', '9 photos of rooms ranging from 159 to 165. Caption 1: "R #159 from S.", Caption 2: "R #159 from N", Caption 3: "R #159 at L. view fr. S.", Caption 4: "R #160. NE corner. Same view, lacking poles, as in Pepper, 1920, fig. 144, p. 336", Caption 5: "R #161" This is a kiva. This image shows the remnants of a cribbed roof. Caption 6: "R #162", Caption 7: "R #162. Ventilator. Pepper, 1920, fig. 145, p. 337" This is a kiva image. Caption 8: "Rs #163-164 fr. SW; R. 163 at R" Caption 9: "Rs #164-165 From SW; R. 164 at R."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '9 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (104, 'Bc 53 site: Burial Records 1941', '00092', 'Field Forms', 'Forms for burials from Bc 53 excavated in 1941. I have classified these as field forms, but they are typed neatly and do not appear to have been filled out in the field, but rather post fieldwork. The forms are the same as those from 1940, but are not accompanied by any sketches of the burials. Forms have basic provenience info. and information about accompanying goods. 12 burials are accounted for, but two have the same number (10). ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, '13 forms', NULL, 92, NULL, 'Vivian', 'Vivian says 3 on 1-3 scale with 3 highest Priority.', 1, '7/22/2004', NULL); INSERT INTO object VALUES (114, 'Bc 53 Site: Sherd Percentages: 1941 Outside of Structures', '00101', 'Tabular Data', 'Sherd counts and percents by type for levels outside of structures excavated at Bc 53 in 1941. Each sheet is a form with information typed, 1 form per level. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, '16 pages', NULL, 101, NULL, 'Vivian', 'Vivian says 2 on 1-3 scale with 3 highest Priority.', 1, '7/22/2004', NULL); INSERT INTO object VALUES (30, 'NGS Pueblo Bonito: General Corespondence with NGS', '00029', 'Correspondence', 'Letter from Judd to J. O. LaGorce dated July 31, 1924 detailing the discovery of burials within Pueblo Bonito. Some mention of grave robbing and details of artifacts are given here. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, NULL, NULL, NULL, NULL, 'Vivian', 'Vivian says 3 on 1-3 scale with 3 highest Priority.', 1, '8/4/2004', NULL); INSERT INTO object VALUES (32, 'NGS Pueblo Bonito: Gen. Correspondence with NGS', '00031', 'Correspondence', 'Letter from Judd to Gilbert H. Grosvenor dated July 16, 1924. Details work at Pueblo Bonito including skeletons found and goods associated with them. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, NULL, NULL, NULL, NULL, 'Vivian', 'Vivian says 3 on 1-3 scale with 3 highest Priority.', 1, '8/04/2004', NULL); INSERT INTO object VALUES (34, 'NGS Pueblo Bonito: General Correspondence with NGS', '00033', 'Correspondence', 'Letter to Dr. F.V. Coville, Department of Agriculture, dated August 25, 1924. Mentions a channel located near Pueblo Bonito refuse mound with late pottery. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, NULL, NULL, NULL, NULL, 'Vivian', 'Vivian says 3 on 1-3 scale with 3 highest Priority.', 1, '8/04/2004', NULL); INSERT INTO object VALUES (36, 'National Geographic Society, Pueblo Bonito: General Correspondence with NGS', '00035', 'Correspondence', 'Letter to Dr. F.V. Coville from Judd dated August 20, 1925. Letter mentions on page 2 (of 2) the discovery of water channels near Pueblo Bonito and the discovery of the East foundation wall. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, NULL, NULL, NULL, NULL, 'Vivian', 'Vivian says 3 on 1-3 scale with 3 highest Priority.', 1, '8/04/2004', NULL); INSERT INTO object VALUES (40, 'Pueblo Bonito Correspondence, Carl S. Scofield', '00039', 'Correspondence', 'Letter from Judd to Mr. C.S. Scofield dated August 3, 1925. Letter includes discussion of excavation trenches and an interpretation of flood water control.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 page', NULL, NULL, NULL, 'Vivian', 'Vivian says 3 on 1-3 scale with 3 highest Priority.', 1, '8/04/2004', NULL); INSERT INTO object VALUES (87, 'Archaeological Sites Chaco Canyon: Site Measurements 1921-26', '00080', 'Notes-Analysis', 'Stratigraphic information from 1921-1927. Often includes sherd counts and types. From Pueblo Alto, Penasco Blanco and others.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '18 pages', NULL, 80, NULL, 'Vivian', 'Vivian says 3 on 1-3 scale with 3 highest Priority.', 1, '8/04/2004', NULL); INSERT INTO object VALUES (122, 'Sequence of pottery in Bc-53', '00107', 'Notes-Analysis', 'Comprised mostly of tabular data regarding sherd type percentages in each strata. Also includes two paragraphs of summary. Student paper written by Theodora Buggeln for Paul Reiter.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, NULL, NULL, 107, NULL, 'Vivian', 'Vivian says 3 on 1-3 scale with 3 highest Priority.', 1, '8/04/2004', NULL); INSERT INTO object VALUES (967, 'Pueblo Bonito Correspondence: Nusbaum, Jesse', '1091554704704', 'Correspondence', '5 pages total. The first three pages are a handwritten letter in green ink from Jesse Nusbaum to Neil Judd, Sept. 21, 1950. Nusbaum writes that he has attached a copy of Gordon Vivian''s Aug. narrative report on his Mobile Unit''s work in Chaco. The report from Gordon Vivian is typewritten, 2 pages, Aug. 28, 1950. Vivian writes a brief description of work on the tri-wall structure at the west side of Pueblo del Arroyo and a little bit of work at Bc 59. Vivian gives some observations about construction of the tri-wall and cleanup at Bc 59.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '5 pages; 3 handwritten, 2 typed.', NULL, NULL, NULL, NULL, NULL, 1, '8/04/2004', NULL); INSERT INTO object VALUES (968, 'Bc 53, Field Notes - 1940 (incl. site measurements), Roberts, F. H. H. Jr.', '1091560729129', 'Notes-Notecards', 'Roughly 50 notecards. Most are double-sided. They include a daily log of activities, profiles, plan drawings, and elevations.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, 'roughly 50 notecards', NULL, NULL, NULL, NULL, NULL, 1, '8/04/2004', NULL); INSERT INTO object VALUES (970, 'Bc 53, Field Notes - 1940 Compilation', '1091561522411', 'Manuscript-Typed', 'Title: "Notes. Excavation of Bc 53, Summer Session 1940." Roughly 65 pages. Day by day account of activities. Includes tabular data and pottery counts, maps, measurements, artifact descriptions, wall measurements. Room by room.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, 'about 65 pages', NULL, NULL, NULL, NULL, NULL, 1, '8/04/2004', NULL); INSERT INTO object VALUES (973, 'Bc 53, Field Notes - 1940 Field Notes - Baby, Raymond', '1091562487247', 'Notes-Field Notes', 'Typewritten field notes, 4 pages. Includes daily log of activities including room dimensions and excavation procedures. Wall drawings, mention of a disturbed burial. Room 2.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, '4 pages', NULL, NULL, NULL, NULL, NULL, 1, '8/04/2004', NULL); INSERT INTO object VALUES (312, 'Pueblo Bonito, Kivas', '1089811150877', 'Photograph-Print', 'Four photos mounted to card. Captions read: "Kiva B--fireplace, sub-floor chamber & end of ceremonial entrance to room (at lower left). Photo by O.C. Havens, 1921. Negative 7681-A." "Kiva B--Fireplace & sub-floor chamber. Photo by O.C. Havens, 1921. #7661-A." "Kiva B--Ventilator or ceremonial entrance with banquette recess showing in lower righthand corner. Photo by O.C. Havens, 1921. Negative 7676-A." "Kiva B--Fireplace, ceremonial entrance, bench recess (at right center) & pilaster logs. Photo by O.C. Havens 1921. 7674-A." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '4 photos', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (343, 'Pueblo Bonito, Kivas', '1089817164967', 'Photograph-Print', 'Three photos mounted on card. Caption reads: "Upper left: Kiva R, Pueblo Bonito showing 1st type bench and surface levels (at bottom) with bench reconstruced in 2nd and 3rd type masonry [handwritten annotation below this caption reads "N. bench niche above.] 1927. #50588-A. Lower left: Kiva R, Pueblo Bonito, showing 1st type bench (at bottom) and 2 subsequent types of reconstruction [pilaster 3 above] #50584-A. Above: Kiva R, Pueblo Bonito, showing 2nd type walls rebuilt with 3rd type masonry. Above at left, R. 57. #50591. [pilaster #3, N bench niche] NMJ-1927 ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (369, 'Pueblo Bonito, Pottery', '1089826069104', 'Photograph-Print', 'Two photos mounted to one card, which has notes written on back and front. Front of card indicates that the photos are plates 20 A and 20 B, with negative numbers 141418T and 141417T, respectively. The back of the card reads "upper, pl. 20 A, sherds of transitional ware from tests I and II West Court, PB Neg. 141418-T. The photo is of a group of 13 sherds. However, this description was later crossed out. The lower photo description on the back of the card reads, "Pl. 20 B lower [lower is crossed out] Sherds of Solid type design tests I and II West Court PB Neg. 141417-T [Everything past the word "design" is crossed out]. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '2 photos', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (14, 'Frans Blom''s notes and sketches relating to Pueblo del Arroyo Features', '00013', 'Notes-Field Notes', '"National Geographic Society Pueblo Bonito Expedition 1924." Includes many color field drawings and sketches of petroglyphs and artifacts. Note: These field notes relate to Pueblo Bonito and not Pueblo del Arroyo as the folder title implies. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, NULL, NULL, NULL, NULL, 'Vivian', 'Vivian says 2 on 1-3 scale with 3 highest Priority.', 0, NULL, NULL); INSERT INTO object VALUES (481, 'Pueblo Bonito, Rooms', '1089904070215', 'Photograph-Print', 'Three photos mounted to card. Caption 1: "Above: R. 290 E end, Pueblo Bonito. At left, pocket in N. wall and, beneath, fireplace in which infant burial was found. #22654-A. Photo by O.C. Havens, 1923." Caption 2: "Upper left: North wall of Kiva L. beneath floor of R. 290 whose south wall had settled into Kiva L. View from east. #22688-A." Caption 3: "Lower left. E and South wall of Room 291, Pueblo Bonito, which had settled into Kiva L. #22653-A. Photo by Neil M. Judd, 1923. [next is handwritten in ink] Slab #335898 shows in middle foreground." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', 'Check to make sure that the third caption of this card is correct photo.', NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (332, 'Pueblo Bonito, Kivas', '1089814447466', 'Photograph-Print', 'Three photos mounted on card. Captions read: "Upper left: Upper (14th) layer of ceiling poles in Kiva L., Pueblo Bonito, showing short poles connecting wall with roof timbers. #22684-A. Photo by Neil M. Judd, 1923. Lower left: Supposed "speaking tube" on roof of Kiva L., Pueblo Bonito. #22678-A. Photo by O.C. Havens, 1923. Above: Partially exposed timbers in Kiva L., Pueblo Bonito from the east. Upper right paired beams under S. wall of Rooms 290 and 291. Upright posts at pilaster 4. #22683-A. Photo by Neil M. Judd, 1923.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', 'Check to make sure that third caption on this card is the correct photo. ', NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (113, 'Bc 53 site: Sherd Percentages: 1941 Kivas', '00100', 'Tabular Data', 'Sherd counts and percents by type for levels in kivas excavated in 1941. Each sheet is a form with information typed, 1 form per level. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, 'circa 30 pages', NULL, 100, NULL, 'Vivian', 'Vivian says 2 on 1-3 scale with 3 highest Priority.', 1, '7/22/2004', NULL); INSERT INTO object VALUES (506, 'New Mexico: Ruins Chaco Canyon, braced-up Cliff', '1089912289811', 'Photograph-Print', 'Small post-card photo of what appears to be the retaining wall behind Pueblo Bonito looking East. Caption at bottom reads: "Our first great engineering feat - 30,000 tons of sandstone supported by masonry retaining wall - 1063 A.D." Handwritten note at top in pen reads "Shows Keur''s trench @ base of terrace." Post card was sent to Judd from Chaco Canyon by what looks like the name "Lynn C. Hammond". Note on postcard reads: "7/3/41 Back again 1941 Place hasn''t changed much except more dudes. Took a bunch of pictures and will send you a set as soon as I get them developed. Rock messed up about 30 rooms. Lynn C. Hammond" Sent to "Mr. Neil M. Judd of U.S. National Museum Washington, D.C." on July 5 1941 from Chaco Canyon, N.M. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (617, 'Cosmos Mindeleff photos with annotations by Judd', '1090332481522', 'Photograph-Print', 'Copy of Mindeleff photo annotated by Judd. Notes on back of photo read: "BAE. No. New Mexico #223. Pueblo del Arroyo NE. cor., S. wing, fr. SE. Mindeleff, 1887. BAE. Window in 3rd (?) story W. wall of room N. of R. 17 (?) NMJ. pl. 15C." Handwritten notes crossed out in pencil on back read: "compare walls @ E. end of Martin, 1920, Neg. 3239A. 3115." The "3115" is crossed out with "Old No." written in beneath in pencil.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 photo.', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (657, 'New Mexico: Ruins Chaco Canyon aerial photographs by Lindbergh', '1090337318495', 'Photograph-Print', 'Lindbergh Aerial photograph of Wijiji. Notes on the back of photo read: "Ruins - Chaco Canyon District. Weje-gi." Also, handwritten "16" with a checkmark appears in the center of photo. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (79, 'Sherd Percentages Copies', '00075', 'Tabular Data', 'Paper copies of Roberts'' sherd percentages. Provides the data of 2 index cards on one sheet of paper. All Pueblo Bonito (copies of index cards - see object 78). ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, 'circa 100 pages', NULL, 75, NULL, 'Vivian', 'Vivian says 2 on 1-3 scale with 3 highest Priority.', 1, '7/22/2004', NULL); INSERT INTO object VALUES (12, 'Judd''s 1920 Notebook and Diary', '00011', 'Notes-Notebook', 'Includes general descriptions--handwritten--of Pueblo Bonito, Pueblo del Arroyo, Kin Klazshin, Chettro Kettl, Ruins 8 and 9, Sin-kle-sin, Weje-qi, Hungo Pavi, Kin Mineoli, and Penasco Blanco. Descriptions are one page each. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, NULL, 'Need to connected this object to Ruins #8 and #9 once we figure out which those are...', NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', 0, NULL, NULL); INSERT INTO object VALUES (955, 'Chaco Canyon Illustrations (Pottery Test Sections)', '1091545465856', 'Profile', '3 copies of profile entitled "Portions of West Court and West Trenches Showing Pottery Sections". Shows sections 1-4 in relation to architecture. Cardboard original. Close-up version of pottery test sections 1 and 2. Individual profiles (2 pieces of cardboard) showing sections 1 and 2 and each shows the north, west, and south face of pottery test section.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '4 profiles with 2 duplicates.', 'Object 108 may be a duplicate of this entry.', NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (22, 'Pueblo Bonito Correspondence National Geographic Society Annual Reports', '00021', 'List-Specimen', 'Specimen Inventory contained within "Extracts from the Director''s report of the 1922 Pueblo Bonito Expedition to the Research Committee of the National Geographic Society." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '11 pages', NULL, NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', 0, NULL, NULL); INSERT INTO object VALUES (606, 'Ruins: Chaco Canyon (Miscellany; New Alto; Old Alto)', '1089731727116', 'Photograph-Print', 'A folder of general views of various ruins. The ruins include: Pueblo del Arroyo, New Alto, Old Alto, Ruin #9, "Small Ruin on bank s. of Pueblo del Arroyo," Kin-kle zin, Rabbit Ruin, Pueblo Pintado, and "Cliff Houses in Chaco Canyon near Weje-qi" Negatives 53,56-69. All taken by Judd? July and September, 1920. Also includes 1 masonry close-up of Kinbineoli (unlabeled), and 2 unlabled images of New and old alto?? 8/3/04 C Heitman: All I could figure out from going back to this folder is that Ruin #9 is up against a cliff - with a sandstone nob above it. It does not look like Wijiji.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '13 prints, 4 pieces of paper describing negatives', 'I think Ruin no. 9 here refers to SAR site # 9 - which is Wijiji. We need to ask Joan or someone else about this.', NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (457, 'Pueblo Bonito, Rooms', '1089901097492', 'Photograph-Print', 'Three photos mounted to card: Caption 1: "Lower left: T-shaped door in E. wall of R. 228B, Pueblo Bonito. #3243-A. Photo by Martin, 1920." Caption 2: "Upper left: East wall of Room 227, Pueblo Bonito. #7658-A. Photo by O.C. Havens, 1921." Caption 3: "Above: Licensi [Licensi is a person] through large T-shaped door in E. wall of R. 227-I. #16260-A. Photo by Neil M. Judd, 1922." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', 'C. Heitman editorial comment: Phil showed me this card of photos - and I just wanted to note that on one of them it appears that the north wall is plastered a different color than the east wall.', NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (803, 'F.H.H. Roberts Jr. Lantern Slides 4851', '1090425618112', 'Photograph-Slide', 'Lantern slide of a profile map labeled "Portions of west court and west trenches showing Pottery sections. Scale 8 feet to 1 inch." I believe that we have seen this illustration before in the Roberts material. It occurs here in a box of lantern slides (currently the 3rd box of 10 in this storage unit) with drawings of Chaco and other pottery designs. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 lantern slide', 'C. Heitman editorial note: We have seen this illustration before in Roberts oversized folder 2 of 13. ', NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (108, 'Judd''s and Shepard''s notes on the analysis of the pottery test sections', '00095', 'Profile', '1925. Profiles of pottery section 1 (West Court, Pueblo Bonito?) and pottery section 2. These profiles relate to the tabular data and the notes also recorded as objects from this file. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '2 pages', 'Verify site. 8/4/04 C. Heitman: The only way to really confirm that this is from the Bonito pottery test sections is to look at all of the test section material together. This will have to wait.', 95, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', 0, NULL, NULL); INSERT INTO object VALUES (147, 'Illustrations SI Publications SI-AR, 1935', '1081865152916', 'Tabular Data', 'Over-sized published drawings. 3 Charts on SW pottery. Contained in map case.', 1, 'SI-AR, 1935 (not sure what this means exactly - except that it''s a Smithsonian publication).', 0, NULL, 0, NULL, 0, NULL, NULL, NULL, NULL, 'Did not pull these because they are published elsewhere. We may want to go back to these? #/4/04 C. Heitman: I''m sure we''ve looked at these in the course of our research at the archives. ', NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', 0, NULL, NULL); INSERT INTO object VALUES (157, 'None', '1081879593356', 'Profile', 'Judd 1924 Section S. of #4 (pottery test section #4?). Very crude. We''ve seen this illustrated on the same card as sections 3 and 4 in object # 1081876054176. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 page', 'Bonito? 8/4/04 C. Heitman: Again, we can''t confirm that all the objects in the db relating to test sections are infact from Bonito unless we looked at them all together. This wil have to wait.', NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', 0, NULL, NULL); INSERT INTO object VALUES (166, 'Drawings other than Pueblo Bonito and Pueblo del Arroyo', '1081884610300', 'Map', 'Topographic map of area surrounding Kinbiniyol showing ancient ditch and dam site. Also shows locations of other small ruins. Original is labeled as "Plane table sketch by O.B. Walsh, 1925." There are 3 total versions of this map including the original. This object is housed in the Judd oversized folder.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 pages (3 versions of the same map)', 'What other small sites? Are they labled? 8/4/04 C. Heitman: They are not labled.', NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', 0, NULL, NULL); INSERT INTO object VALUES (599, 'Ruins: Chaco Canyon (Chettro Kettle; Hungo Pavie; Kimenioli)', '1089728517958', 'Photograph-Negative', 'No Print. Neg. 37. "Hungo Pavie, fr.SE;E. Chaco Canyon, NM." 9-17-20 There is no actual object here in the folder, only a piece of paper indicating that this negative exists somewhere.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, NULL, 'Where is this negative located? 8/4/04 C. Heitman: Checked on this. Still don''t know.', NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (637, 'Cosmos Mindeleff photos with annotations by Judd', '1090334948117', 'Photograph-Print', 'Copy of Mindeleff photo annotated by Judd. Handwritten notes on back of photo read: "Mindeleff 1887. BAE. Northwest corner room #180 B & C showing upper second story and third story walls. R. 179 B & C @ left. Open door in middle is in W. wall. R. 180C. DR. - NMJ 5/5/55. 3314." Although there is no indication in the notes as to which ruin this photo is of, it occurred in the context of several photos of Pueblo del Arroyo, so we have reason to believe that this photo is of Pueblo del Arroyo but we are not 100% sure.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 photo.', 'Find out which ruin this is? Probably Pueblo del Arroyo, but check... 8/4/04 C. Heitman: we looked at this image again. No way for me to confirm it''s Pueblo del Arroyo off hand. ', NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (641, 'Cosmos Mindeleff photos with annotations by Judd', '1090335507376', 'Photograph-Print', 'Copy of Mindeleff photo annotated by Judd. Handwritten notes on back of photo read: "Mindeleff 1887. BAE - Bonito. Standing wall @ right in N. wall of unnumbered room W. of R. 334. Wall @ left, @ E. junction of Rs. 123 & 124. Pueblo del Arroyo in L. distance. 3307." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 photo.', 'Find out which ruin/site is in the foreground of this photograph? 8/3/04 C. Heitman: it''s Bonito.', NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (896, 'BAE - Fewkes, Jesse Walter Photographs, New Mexico - Chaco Canyon', '1090505117540', 'Photograph-Print', '1 photo. Caption reads: "Aztec Ruins near Pueblo Bonito" I''m pretty sure this is not a photo of Aztec Ruin...not sure what the "near Pueblo Bonito" refers to. Maybe this is Chetro Ketl??', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 photo', 'What site is this?? 8/4/04 C. Heitman: Re-looked at this, don''t know what ruin this is. ', NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (27, 'NGS Pueblo Bonito: Gen. Correspondence with NGS', '00026', 'Correspondence', 'Letter from Judd to John D. LaGorce dated June 19, 1924--first in a series of letters to LaGorce that detail finds in Pueblo Bonito, particularly of human remains. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, NULL, NULL, NULL, NULL, 'Vivian', 'Vivian says 3 on 1-3 scale with 3 highest Priority.', 0, NULL, NULL); INSERT INTO object VALUES (28, 'NGS Pueblo Bonito: General Correspondence with NGS', '00027', 'Correspondence', 'Letter from Judd to John LaGorce, National Geographic Society dated July 6, 1924. Another letter detailing information from burials and associated artifacts uncovered in Pueblo Bonito.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, NULL, NULL, NULL, NULL, 'Vivian', 'Vivian says 3 on 1-3 scale with 3 highest Priority.', 1, '8/04/2004', NULL); INSERT INTO object VALUES (33, 'Pueblo Bonito Correspondence--P', '00032', 'Correspondence', 'Letter from S.L. Palmer to Judd, June 8, 1921. Palmer explored Canyon with Wetherill in 1895 and took photos and has many negatives, sketches of floor plans of all the ruins in Chaco and offers them to the National Geographic Society who forwarded it to Judd. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Vivian', 'Vivian says 3 on 1-3 scale with 3 highest Priority.', 0, NULL, NULL); INSERT INTO object VALUES (84, 'Record of Test Pit Photos with a note on the location of the test pits', '00078', 'List-Photographs', 'List of only two negatives on 1 small sheet of paper titled "NGS. West md. Trench."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 page', NULL, 78, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', 0, NULL, NULL); INSERT INTO object VALUES (85, 'Record of Test Pit Photos with a note on the location of test pits.', '00079', 'List-Photographs', 'List of National Geographic Society negative numbers depicting test pits 1-7, handwritten on yellow legal pad paper. See object 83 for rough description of test pit locations. This photo list also gives some specific provenience information. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 page', NULL, 79, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', 0, NULL, NULL); INSERT INTO object VALUES (190, 'NGS Photographs, Pueblo Bonito: Burials and buried objects', '1081957013222', 'Photograph-Print', 'Labeled as "Overturned burials in southwest quarter of Room 329." Photograph by O.C. Havens 1924. National Geographic Society negative # 28491A. This number is again crossed out and is instead labeled as 97A. There is a smaller, cropped, unlabeled duplicate of this photo in the file folder. The word "upper" is written in pencil in the margin of that photograph. ', 0, NULL, 0, NULL, 0, 'NGS negative # 28491A. ', 1, NULL, 88, NULL, '1 image, with a smaller duplicate', NULL, NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', 0, NULL, NULL); INSERT INTO object VALUES (402, 'Pueblo del Arroyo', '1089833319351', 'Photograph-Print', '2 photos mounted on a card. Caption 1: "Zuni Indian in 2nd type N. door of unexcavated room N. of 296B (E. of 297B). Photo by Neil M. Judd, 1921. Neg.11938A Caption 2: "Same door from opposite side at union of 2nd and 3rd type masonry. Photo by Neil M. Judd, 1926. Neg.39583A. 3rd type at upper R; 4th type, upper L; NGS repairs below sill level. Compare Neg. 3206B."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '2 photos', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (491, 'New Mexico: Ruins Chaco Canyon, braced-up Cliff', '1089905765157', 'Photograph-Print', 'Photo of man standing with shovel in partially excavated room with what appears to be debris from Braced-up cliff behind him. On back of photo, handwritten notes indicate that the room is Room 58. neg. # 23333-A. Not sure if this photo was taken by Judd or if it was part of the National Geographic Society project, but the photo number appears to be a NGS negative number. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (638, 'New Mexico: Ruins Chaco Canyon Small house on arroyo bank', '1090334969865', 'Photograph-Print', 'Photograph of small ruin near Pueblo del Arroyo. Notes on back read: "Small arroyo-side ruin south of Pueblo del Arroyo (seen @ right). Chas Martin, 1920. 2 front walls fell during night of Aug. 12, 1920. Ruin cited by W.H. Jackson, 1877. (1878, p. 443)." Note in upper corner reads: pl. VIA [VI A is crossed out] 6, 1 KB: ms. p. 62 and 69. [62 is crossed out and "40" is written above it]. In the center of the photo is written "3213A c [copyright] NGS." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (670, 'Pueblo Bonito: Rooms 76-100 and Dark room east of 100', '1090344259062', 'Photograph-Print', '4 photos of room 78. Caption 1: "R #78 Eastern end looking East." Image shows close-up of olla in floor. Caption 2: "Showing Fireplace looking South." This image also shows masonry ceiling support post settings (?). Caption 3: "R #78 Olla and mortar in N.E. Corner. Pepper, 1920, fig. 108, p. 261" This image is a broader shot showing the association of two slab-lined fire pits (?), the olla in the NE corner, and the post sockets (?). Caption 4: "R #78 West wall. If W. wall, print is reversed." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '4 photos', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (664, 'New Mexico: Chaco Canyon (Pueblo Bonito) - restoration models', '1090338344938', 'Correspondence', '1 page of correspondence from Neil M. Judd to Dr. Melville B. Grosvenor, President of the National Geographic Society in Washington, D.C. June 3, 1961. Judd suggests that "the four restorations of Pueblo Bonito, made by Prof. Kenneth Conant of the Harvard Architectural School in 1926 and based upon the Society''s excavation data" be transferred to the Smithsonian Institution. Judd says that "The four drawings are recorded on Negatives 12068B-12071B. Three are hanging in my workshop at the National Museum but the fourth (Neg. 12070B) is missing and I have an uncertain recollection it was borrowed by the Society in preparation for the Langdon Kihn painting reproduced in [underlined] Indians of the Americas, page 111, and never returned." He says if it is found, it should be donated with the others. A full copy of this letter is found in Note #17. The 2nd page appears to be handwritten notes containing the same information as the letter, probably a draft.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '2 pages.', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (976, 'Bc 53, Field Notes - 1940 Hill, Ernest Jr. ', '1091562955643', 'Notes-Notebook', 'Mostly relevant to Kiva A. Daily log of activities, lots of verbal description, lots of nice drawings.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, 'roughly 20 pages', NULL, NULL, NULL, NULL, NULL, 1, '8/04/2004', NULL); INSERT INTO object VALUES (13, '1920 Reconaissance of Chaco Canyon', '00012', 'Journal', 'Judd''s typewritten journal from July 20, 1920 to October 1, 1920. Includes an almost daily log of activities. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, 'about 15 pages', NULL, NULL, NULL, 'Vivian', 'Vivian says 2 on 1-3 scale with 3 highest Priority.', 0, NULL, NULL); INSERT INTO object VALUES (19, 'Reports 1900-1924 (S.J. Holsinger and others)', '00018', 'Manuscript-Typed', 'Part 1 of report by S.J. Holsinger on the ruins of Chaco Canyon. (The full report is composed of 3 parts: part 2 is photos, not in this storage unit. Part 3 is an affadavit in matter of alleged unlawful excavation of Chaco ruins N.M. Statement Wetherill and Hyde.) ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '85 pages', NULL, NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', 0, NULL, NULL); INSERT INTO object VALUES (21, 'Pueblo Bonito Correspondence--Allen, Glover', '00020', 'Annotated Work', '"Canid Remains from Pueblo Bonito and Pueblo del Arroyo by Glover M. Allen. Originally drafted in 1927. This copy contains annotations probably added by Judd. Includes some provenience information and measurements. ', 1, 'Smithsonian Misc,. Coll., vol. 124, pp. 385-389.', 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '7 pages', NULL, NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', 0, NULL, NULL); INSERT INTO object VALUES (25, 'NGS Pueblo Bonito: Ruppert Report on Pueblo del Arroyo', '00024', 'Manuscript-Typed', '"Pueblo del Arroyo Mss" Manuscript on Pueblo del Arroyo by Ruppert. Description of Pueblo del Arroyo, room by room, includes information on stratigraphy. Lots of information.', 0, 'May have been published in Judd''s Pueblo del Arroyo monograph', 0, NULL, 0, NULL, 0, NULL, 88, NULL, 'roughly 30 pages', NULL, NULL, NULL, 'Vivian', 'Vivian says 3 on 1-3 scale with 3 highest Priority.', 1, '8/04/2004', NULL); INSERT INTO object VALUES (26, 'NGS Reconnaissance of Chaco Canyon 1920: Report ', '00025', 'Manuscript-Typed', '"Report on an Archaeologic Reconnaissance, Chaco Canyon, NM" by Neil M. Judd Director, US National Museum 1920. Judd''s initial study of the Canyon including ruin by ruin descriptions and recommendations. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, 'roughly 40 pages', NULL, NULL, NULL, 'Vivian', 'Vivian says 2 on 1-3 scale with 3 highest Priority.', 0, NULL, NULL); INSERT INTO object VALUES (24, 'NGS Pueblo Bonito: Correspondence RE transfer chaco canyon specimens to USNM', '00023', 'List-Specimen', 'Objects from National Geographic Society excavations 1921-1930 being transferred to US National Museum. Includes accession numbers, catalogue numbers and general proveniences. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '10 index cards and 3 legal pad pages. ', NULL, NULL, NULL, 'Vivian', 'Vivian says 2 on 1-3 scale with 3 highest Priority.', 1, '8/04/2004', NULL); INSERT INTO object VALUES (38, 'Pueblo Bonito Correspondence: Nelson, N.C. to W--Ruppert, Karl', '00037', 'Notes-Field Notes', 'Letter from Karl Ruppert to Judd dated September 25, 1921. Attached is a type-written set of notes that Ruppert took on Kiva D. Contains details on pilasters with measurements and other detailed information on the kiva. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '4 pages', NULL, NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', 0, NULL, NULL); INSERT INTO object VALUES (119, 'Manuscripts "Bc 53 Wall Sequence" by Mary Jane Worthen', '00104', 'Manuscript-Typed', 'Short report by Mary Jean Worthen dated September 15, 1941 on the wall sequence of Bc 53. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, '4 pages including title ', NULL, 104, NULL, 'Vivian', 'Vivian says 3 on 1-3 scale with 3 highest Priority.', 1, '8/04/2004', NULL); INSERT INTO object VALUES (39, 'Pueblo Bonito Correspondence: Nelson, N.C. - W. ', '00038', 'Manuscript-Typed', 'Letter from Carl Scofield to Judd dated 24 August 1925--attached is a report including the results of the analysis of water samples from Chaco Canyon. Includes reference to work done by Breazeale as well as 4 data tables. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '2 pages', NULL, NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', 0, NULL, NULL); INSERT INTO object VALUES (966, 'Pueblo Bonito Correspondence: Nusbaum, Jesse', '1091554039012', 'Correspondence', 'Typewritten letter from Jesse L. Nusbaum to Neil Judd dated May 10, 1932. Long paragraph on second page details observations on bead necklaces found by Hewett in "five niches of the lower walls of the Chetro Ketl great kiva". He notes that overall the five necklaces probably added up to a bead count of over 12,500 beads, and that one especially notable necklace was in alternate sections of all white or all dark beads (shell and a "dark mineral"). Also details about the circular stone discs found under one of the "columns that supported the roof of this great kiva".', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '3 typewritten pages', NULL, NULL, NULL, NULL, NULL, 1, '8/04/2004', NULL); INSERT INTO object VALUES (770, 'Chaco Canyon, NM Pueblo Bonito--Other NGS Photos related to N. Judd Publications', '1090419110869', 'Photograph-Print', 'Two copies of a photo of three bowls from R. 266 - cist # 3. The photos are accompanied by three pieces of notes offering provenience information and measurements of the bowls. The first page of notes in Judd''s writing contains a sketch of the three bowls with museum numbers below each bowl (336181, 336182 and 336220, respectively). The notes read: "R. 266 - cist #3 Bowls Checked (neg. # 130117-A) Hold for Frank." The second and third pages of notes comprise a table that lists the provenience, height, diameter (in cm''s and inches) of each bowl, it''s field no. and national museum no. Each copy of the photo has the negative # 130117-A on the back. ', 1, 'May have been published in Ch. 5 Material Culture of Pueblo Bonito. ', 0, NULL, 0, NULL, 0, NULL, 88, NULL, '2 photos and 3 pages, notes.', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (31, 'Pueblo Bonito Correspondence: Jesse Nusbaum Folder', '00029', 'Correspondence', 'Letter from Jesse Nusbaum to Judd handwritten dated June 19, 1953. Details grave goods looted from Chaco era sites, where they ended up or who might have them. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '4 pages', NULL, NULL, NULL, 'Vivian', 'Vivian says 3 on 1-3 scale with 3 highest Priority.', 1, '8/04/2004', NULL); INSERT INTO object VALUES (47, 'Pueblo Bonito Correspondence--Shepard, Anna D.', '00046', 'Correspondence', 'Letter from Anna Shepard to Judd dated April 20, 1943. Attached is an annotated (by Shepard) section of Judd''s writing on pottery analysis from Pueblo Bonito. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '6 pages', NULL, NULL, NULL, 'Vivian', 'Vivian says 2 on 1-3 scale with 3 highest Priority.', 0, NULL, NULL); INSERT INTO object VALUES (52, 'The Evolution of Pueblo Bonito', '00049', 'Other', 'Abstract of paper presented to American Association for the Advancement of Science and the American Anthropological Society, December 30, 1926. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '3 pages', NULL, NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', 0, NULL, NULL); INSERT INTO object VALUES (54, 'Miscellaneous Correspondence, O''Bryan, Deric', '00052', 'Correspondence', 'Letter from Judd to Deric O''Bryan (a nephew? close family friend). In this letter he urges Chaco scholars to explore "the mouth of the Chaco -- Mesa Verde-Chaco Culture" Where, "Our whole problem might be solved."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', 0, NULL, NULL); INSERT INTO object VALUES (63, 'Drawings, Rubbings and Illustrations: Pueblo Bonito Rubbings from Wall Drawings', '00061', 'Not Specified', 'Rubbing of hand from room 251 A, West Wall, 2 of them from the same wall. Rubbing appears in Blue. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '2 rubbings', NULL, NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', 0, NULL, NULL); INSERT INTO object VALUES (64, 'Drawings, Rubbings and Illustrations Drawings from Below Pueblo Bonito', '00062', 'Illustration-Other', 'Pencil drawings of 5 petroglyphs. Entitled "Drawings Below Bonito." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 page', NULL, NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', 0, NULL, NULL); INSERT INTO object VALUES (83, 'Note on the Location of the Test Pits', '00077', 'Notes-Miscellaneous', 'One index card listing the location of test pits 1-7 and a few notes about the depth and soils of each pit. These test pits are in and around Bonito, Wetherill stable, camp, up canyon road, Hillside Ruin, the other two give location relative to a room number- presumably Bonito. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 card', NULL, 77, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', 0, NULL, NULL); INSERT INTO object VALUES (91, 'Field Notes 1940 Bc 53', '00083', 'Notes-Field Notes', 'This object entry is obsolete. All field notes from Bc 53 excavations 1940. This includes the complete contents of Box 8. 14 individual sets of field notes by the excavators of that season as well as some unidentified and miscellaneous notes. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, 'Entire box of material', 'We should go back and look at this. 8/3/04 C. Heitman: We looked through this again and entered in the field notebooks as individual objects. We should delete this object.', 83, NULL, 'Vivian', 'Vivian says 3 on 1-3 scale with 3 highest Priority.', 0, NULL, NULL); INSERT INTO object VALUES (11, 'Notes: Miscellaneous Chaco Canyon Ruins', '0009', 'List-Specimen', 'Typewritten specimen inventories from 2 sites. Each has 4 columns: specimen number, place found (ruin name), specific location (e.g. room), and object description. The first list is 3 pages entitled: "List of Specimens from Smallhouse site in Chaco Canyon, 9 miles East of Pueblo Bonito." The second list is 2 pages entitled: "List of specimens from Small House, 10 miles east of Bonito." The first list is probably from Shabik''eshchee??', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '5 pages', 'Need to confirm, through research and steering committee, which sites these are. According to J. Mathien''s forthcoming synthesis, there are two ruins 9 miles east of Pueblo Bonito. One is called "Pit structure 9 miles east of Pueblo Bonito, in gully in opposite bank form Arroyo House or Half House beneath Turkey House" - this site was worked on by Roberts in 1926. The other is listed as "Shabikeshchee Village: a pithouse 9 miles east of Pueblo Bonito." This site was worked on by Roberts in 1926-27. The other site in this entry is described by Mathien as "Small Hosue 10 mi. east of Pueblo Bonito and 1 mi. east of Turkey House." This site was worked on by Roberts in 1926-27. (See Mathien in press, Table 1.3) ', NULL, NULL, 'Vivian', 'Vivian says 3 on 1-3 scale with 3 highest Priority.', 0, NULL, NULL); INSERT INTO object VALUES (98, 'Specimen Inventory: Partial List for 1940', '00088', 'List-Specimen', 'Document Titled: "Partial List of 1940 Specimens as Gleaned from Student Notebooks." Document splits up speciments into categories: Pottery, Stone, Chipped Stone, Bone, and Woven Material.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, '3 pages', NULL, 88, NULL, 'Vivian', 'Vivian says 3 on 1-3 scale with 3 highest Priority.', 0, NULL, NULL); INSERT INTO object VALUES (100, 'Specimen Inventory: 1940 Field Cards', '00089', 'Notes-Notecards', 'Object cards from 1940 season at Bc 53. Cards list specimen type, provenience and stratigraphy, room, dimensions of object, material, color, excavator, date and sketches. Cards are in two folders (20 and 21). ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, 'circa 200 cards', NULL, 89, NULL, 'Vivian', 'Vivian says 3 on 1-3 scale with 3 highest Priority.', 0, NULL, NULL); INSERT INTO object VALUES (101, 'Judd''s notes based on Roberts pottery study', '00089', 'Tabular Data', 'The full title of this folder is "Judd''s notes based on Robert''s pottery study." The ceramic percentage summary tables here come from both Judd and Roberts. However, all of the data seems to come from Roberts'' analysis and the analysis he and Amsden did together. I''m pretty sure all of these data are from Pueblo Bonito.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '30 (mostly legal size)pages', NULL, 89, NULL, 'Vivian', 'Vivian says 2 on 1-3 scale with 3 highest Priority.', 0, NULL, NULL); INSERT INTO object VALUES (103, 'Bc 53 site: Burial Records 1940', '00091', 'Field Forms', 'Forms and drawings for burials from Bc 53 excavated during the 1940 season. Each burial is represented by a form (front and back) and a drawing, with the exception of two, which just have drawings. 8 burials in total are accounted for. Forms record bones present, orientation, accompanying materials and locations etc. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, '14 pages (forms and drawings) ', NULL, 91, NULL, 'Vivian', 'Vivian says 3 on 1-3 scale with 3 highest Priority.', 1, '7/22/2004', NULL); INSERT INTO object VALUES (72, 'Drawings, Rubbings, and Illustrations', '00070', 'Map', '5 maps--4 on paper and one on acetate. All are topographic maps of the canyon showing topography, prehistoric channels, post-Bonitan buried channels, site locations and possible testing locations (numbered points on maps). Numbered points on maps may refer to pottery test sections. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '5 maps', 'possible imaging. Check for out card in this box. See note 22.', 70, NULL, 'Vivian', 'Vivian says 3 on 1-3 scale with 3 highest Priority.', 0, NULL, NULL); INSERT INTO object VALUES (107, 'Sherd Percentages 1940: Compilation of data for all levels in rooms and kivas', '00094', 'Tabular Data', 'This object entry is now obsolete. 9 large pieces of brown paper in the over-sized material map case. Each piece lists pottery types by level for a particular room. Rooms include: Kiva B, Room 3, Room 1, Room 2, Room 4, Room 6, Room 7, Room 10, Kiva A. 8/3/04 There is a card in box 9 that says these 9 profiles exist in the oversized map case. E. Cubbon and C. Heitman have entered them in individually and linked them to the oversized folder as their storage unit. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '9 charts', 'These have all now been entered individually - making this object entry obsolete. I think we should erase this entry - it only makes things confusing. ', 94, NULL, 'Vivian', 'Vivian says 2 on 1-3 scale with 3 highest Priority.', 0, NULL, NULL); INSERT INTO object VALUES (109, 'Bc 53 Site: Sherd Percentages 1940 Rooms', '00096', 'Tabular Data', 'Papers listing pottery types and percentages for each layer of each room excavated in 1940. Includes depth of layer, date and excavator. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, 'circa 100 pages', NULL, 96, NULL, 'Vivian', 'Vivian says 2 on 1-3 scale with 3 highest Priority.', 1, '7/22/2004', NULL); INSERT INTO object VALUES (111, 'Bc 53 Site: Sherd Percentages: 1940 Outside of Structures', '00098', 'Tabular Data', 'Pottery counts and percentages for operations outside of structures at Bc 53 1940. Forms provide trench letters and some information on the depth of levels. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, '18 pages', NULL, 98, NULL, 'Vivian', 'Vivian says 2 on 1-3 scale with 3 highest Priority.', 1, '7/22/2004', NULL); INSERT INTO object VALUES (120, 'Manuscripts: "Burial Customs of Bc-53" by Virginia Beth Hitchcock', '00106', 'Manuscript-Typed', 'Paper written by Virginia Beth Hitchcock on the burials within Bc 53. Contains tabular data of burials from Bc 53 and Tseh So as well as a hand-drawn map of Bc 53 detailing the locations of burials within rooms. Paper also contains drawings of pots from burials. 22 pages including data and maps ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, '22 pages', NULL, 106, NULL, 'Vivian', 'Vivian says 3 on 1-3 scale with 3 highest Priority.', 1, '7/22/2004', NULL); INSERT INTO object VALUES (124, 'A small cranial series from Chaco Canyon, NM', '00108', 'Manuscript-Typed', 'Student paper on cranial study of crania from Chaco Canyon - written for Roberts. 17 crania are included in the study - all from Bc 53. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, '4 pages plus 3 or 4 foldout tables', 'No year given - not sure if I should connect it to UNM/SAR.', 108, NULL, 'Vivian', 'Vivian says 3 on 1-3 scale with 3 highest Priority.', 0, NULL, NULL); INSERT INTO object VALUES (152, 'Ilustrations: Stratigraphy of Pottery Test Sections', '1081876054176', 'Profile', '8 illustrations in over-sized folder--4 smaller copies in folder in box. Two of these are duplicates of close up profile of test locations. One profile of Pueblo Bonito ruin showing trench location. Close up of exact trench locations (with 2 duplicates) One close up of only sections 1 and 2. One profile of section 1. One of section 2. One card with a profile of sections 3 and 4 and two other unlabeled profiles. ', 0, 'Appears that these drawings may have been published by Roberts. The four smaller copies have figure numbers on the back, indicating that they were included in a publication. ', 0, NULL, 0, NULL, 0, NULL, 88, NULL, '8 cards in over-size, 4 copies in folder ', 'pictures of profiles can be linked to tabular data in object 00093', NULL, NULL, 'Vivian', 'Vivian says 3 on 1-3 scale with 3 highest Priority.', 0, NULL, NULL); INSERT INTO object VALUES (158, 'A small pueblo nine miles east of Pueblo Bonito', '1081881719291', 'Plan-Architecural', 'Architectural plan view. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 page', 'We think it might be Shabik''eshchee? See Mathien (in press) Table 1.3 - could be either Shabik''eshchee Village or "Pit structure 9 miles east of pueblo Bonito, in gully in opposite bank from Arroyo House or Half House beneath Turkey House."', NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (162, 'Ruin 3', '1081882490590', 'Plan-Architecural', 'Architectural plan. We are not sure that this site is in Chaco Canyon.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 page', 'According to Mathien (in press) Table 1.3, Ruin 3 is "6 mi, east of Crownpoint near Kin Ya''a." There is no ''LA'' number given for this site. ', NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (161, 'Ruin Thirteen', '1081882350234', 'Plan-Architecural', 'Architectural plan. Ruin 13, according to Mathien (in press) Table 1.3, is LA 65441.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 page', 'I think ruin #13 here refers to SAR site number 13 - in which case this object is associated with Penasco Blanco (see NMCRiS).', NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (163, 'Mesa Verde House', '1081882540531', 'Plan-Architecural', 'Architectural plan- site labled as located 9 and one half miles east of Pueblo Bonito. Dated to 1926.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 page', 'Need to ask Joan Mathien about this ruin. It''s not listed as "Mesa Verde House" in her list of sites excavated/examined by the National Geographic Society but its date associates it with that project. ', NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (165, 'Plans for Ruins other than Pueblo Bonito and Pueblo del Arroyo', '1081884226710', 'Plan-Architecural', 'Architectural plans that seem to form a set. Includes plan of Sin-Kle-sin, Pueblo Viejo, Kimmeniole, Black House, Pueblo Pintado, Weje-gi, Una Vida, Hungo Pavie, Chettro Kettle, Ruin No. 8, and Ruin No. 9, Pueblo Alto including New and Old Alto, and Penasca Blanca. These objects are housed in the oversized folder.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, NULL, 'These have not been entered into the DB individually. They don''t offer a ton of information. We need to figure out which sites "No. 8" and No. 9" are. ', NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', 0, NULL, NULL); INSERT INTO object VALUES (168, 'Artwork for Pueblo del Arroyo, Chaco Canyon', '1081885059322', 'Illustration-Other', 'This folder contains a lot of illustrations for the Pueblo del Arroyo publication. We decided to enter these illustrations in as one single object entry considering that these are published elsewhere. 26 objects.', 1, 'Judd. Pueblo del Arroyo. Smithsonian Miscellaneous Collection. 1959. (See Mathien Bibliography)', 0, NULL, 0, NULL, 0, NULL, 88, NULL, '26 objects', NULL, NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', 0, NULL, NULL); INSERT INTO object VALUES (169, 'Drawings Pueblo del Arroyo', '1081885592104', 'Tabular Data', 'Giant table of ceramic frequencies for rooms 1 - 65 and Kivas A-J. Includes 21 pottery types. Stored in space for oversized items. This object resides in the Judd oversized folder. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, NULL, ' ', NULL, NULL, 'Vivian', 'Vivian says 2 on 1-3 scale with 3 highest Priority.', 1, '7/22/2004', NULL); INSERT INTO object VALUES (170, 'Drawings Pueblo del Arroyo', '1081886738048', 'Not Specified', 'This object entry is obsolete. A large group of architectural drawings of Pueblo del Arroyo. Includes 22 illustrations. One complete plan view, close up illustrations of Kivas/kiva remodeling, profile, as well as 1st 2nd 3rd and 4th story plan views.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, 'more than 22 pages', 'This group of drawings etc. has been entered into the db individually - making this entry obsolete. ', NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', 0, NULL, NULL); INSERT INTO object VALUES (171, 'Amended Map of Pueblo Del Arroyo', '1081948992529', 'Map', 'Copy of an architectural plan view/map of Pueblo del Arroyo made by SJH on May 10th, 1901. Includes modern roads and employees quarters. Contained in oversized material folder.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, NULL, NULL, NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', 0, NULL, NULL); INSERT INTO object VALUES (173, 'None', '1081949884455', 'Photograph-Print', '2 copies of overhead view of Pueblo Bonito looking south before the collapse of Threatening Rock. There are workmen in the plaza and tents in the background by Chaco Wash.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo (2 copies)', NULL, NULL, NULL, 'Vivian', 'Vivian says 2 on 1-3 scale with 3 highest Priority.', 0, NULL, NULL); INSERT INTO object VALUES (180, 'Chaco Canyon Miscellany: Pine Trees', '1081955042268', 'Photograph-Print', 'Three photos on mounted card showing trees in and near Chaco. "South branch of Chaco Canyon ''Wirito''s Rincon'' S.E. of Pueblo Bonito. Dead pines where found on the slopes at left center #39564-A". "Young rock pine (died 1926) on cliff S.E. of Pueblo Bonito. One of last survivors. Pueblo Alto on right skyline #39577-A". "Partly decayed pine logs on slope at head of S. fork to Chaco Canyon, S.E. of Pueblo Bonito. #39586-A". Photos by N.M. Judd, 1926.', 0, NULL, 0, NULL, 0, NULL, 1, 'NGS', 88, NULL, '3 photos mounted on one card', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (181, 'NGS Photographs, Pueblo Bonito: Burials and buried objects', '1081955437692', 'Photograph-Negative', 'These are the only notes (written outside on the envelope): "Pueblo Bonito - skeletons Rm. 320, 1924. Negative #28359-A." Shows at least 4 skulls and other bones jumbled together. Shows several ceramic vessels (mugs, a bowl), including what looks like a cylinder vessel.', 0, NULL, 0, NULL, 0, 'Negative #28359-A', 1, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, 'Vivian', 'Vivian says 2 on 1-3 scale with 3 highest Priority.', 0, NULL, NULL); INSERT INTO object VALUES (192, 'NGS Photographs, Pueblo Bonito: Burials and buried objects', '1081957287815', 'Photograph-Print', 'Labled as "Detached skulls lay among earthenware vessels and baskets in the northeast corner of Room 320." Photo by O.C. Havens 1924. Neg.#28360A. Also labeled as 96B. There are two notes written in lighter pencil that say "baskets, p. 167" and "cyl.vases, p. 212" ', 0, NULL, 0, NULL, 0, 'Neg.#28360A', 1, NULL, 88, NULL, '1 photo', 'Not sure what publication these page numbers are referencing. ', NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', 0, NULL, NULL); INSERT INTO object VALUES (200, 'NGS Photographs, Pueblo Bonito: Burials and buried objects', '1081963586726', 'Photograph-Print', 'This photo is not labeled. I recognize it to be a duplicate of neg.# 28502A from the NW corner of room 330. Written in pencil in the upper margin is the word "lower." ', 0, NULL, 0, NULL, 0, NULL, 1, NULL, 88, NULL, '1 photo', 'This image duplicates object #201.', NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', 0, NULL, NULL); INSERT INTO object VALUES (201, 'NGS Photographs. Pueblo Bonito: Burials and buried objects', '1081963737671', 'Photograph-Print', 'Photo label reads: "The wild disarray in the northwest corner of room 330 could have been caused only by prehistoric grave robbers." Photograph by OC Havens 1924. Neg.#28502A. Again, this number is crossed out and "pl. 99,B" is penciled in. ', 0, NULL, 0, NULL, 0, 'Neg.#28502A.', 1, NULL, 88, NULL, '1 photo', 'This image duplicates object #200.', NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', 0, NULL, NULL); INSERT INTO object VALUES (204, 'Chaco Canyon Miscellany: Scenic Views', '1081964214385', 'Photograph-Print', 'Two photos mounted on a card. "Remains of ''pit house'' 13 1/2 ft. below surface, 9 mi. E. of Pueblo Bonito #38987-A". "''Pit-house'' (on right) 13 1/2 ft. below surface, and Pueblo ruin, 9 mi. E. of Bonito #38993-A" These two images are of a fairly narrow arroyo. Based on Mathein (in press) Table 1.3, it seems these images are probably from a ruin described as follows: "Pit structure 9 miles east of Pueblo Bonito, in gully in opposite bank from Arroyo House or Half House beneath Turkey House." There is no LA number given.', 0, NULL, 0, NULL, 0, NULL, 1, 'NGS', 88, NULL, '2 photos mounted on 1 card', NULL, NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', 0, NULL, NULL); INSERT INTO object VALUES (211, 'Chaco Canyon Miscellany: Scenic Views', '1081965325336', 'Photograph-Print', 'Three prints mounted on one card. "Remains of watch tower on cliff above Pueblo Bonito. #11957-A Photo by O. C. Havens, 1921". "Mesa Fahada, Chaco Canyon, New Mexico. #3229-A. Photo by Neil M. Judd, 1920". "Small pueblo in Smith pasture, 10 mi. S.E. of Pueblo Bonito. Before excavation, 1927. #37820 Photo by F.H.H. Roberts, Jr."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos on one card', NULL, NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', 0, NULL, NULL); INSERT INTO object VALUES (212, 'Chaco Canyon Miscellany: Scenic Views', '1081965700508', 'Photograph-Print', '3 photos mounted on 1 card. "Remains of Pit house no. 2, 12 ft. below valley floor, 1 mile east of Bonito, exposed by caving of arroyo bank. 15860-A". "Pit house, 1 mile east of Pueblo Bonito, as exposed by caving of arroyo bank. Decayed timbers are shown. 15868-A". "Pit house, exposed by caving of arroyo bank, 1 mile east of Pueblo Bonito. Upper man stands on floor of dwelling 12 ft. 2 inches below valley floor; bench surrouding rooms at his elbow. 15862-A. Photos by Judd, 1922. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos mounted on one card. ', 'What site is this? Inquire about "pit house no. 2."', NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', 0, NULL, NULL); INSERT INTO object VALUES (213, 'NGS Photographs, Pueblo Bonito: Burials and buried objects', '1081966102524', 'Photograph-Print', 'Photo is not labeled. It is a small (5x7) depiction of at least 3 individuals - it is a jumble of limb bones and skulls. There is a bifurcated ceramic basket (not sure what these objects are called exactly) associated with the bodies. The word "lower" is penciled in the photo margin. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, NULL, 'C. Heitman: I can only assume it comes from Pueblo Bonito because it is in this file folder...', NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', 0, NULL, NULL); INSERT INTO object VALUES (214, 'Chaco Canyon Miscellany: Scenic views', '1081966014211', 'Photograph-Print', 'One photo mounted on one card. "Cliff-house in ''Gallo'' Rincon, northside canyon, 6 mi. east of Bonito. #38981-A. Between Una Vida and Wejegi. Photo by N. M. Judd, 8/5/26." ', 0, NULL, 0, NULL, 0, NULL, 1, 'NGS', 88, NULL, '1 photo mounted on one card', 'Which site is this? ', NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', 0, NULL, NULL); INSERT INTO object VALUES (189, 'Chaco Canyon Miscellany: Scenic views. ', '1081956499408', 'Photograph-Print', '2 photos mounted on card. "West wall and N. cliff, with pecked beam rests, of Talus House back of Pueblo Bonito. 1927 #39965-A." "6-toed foot prints pecked in cliff wall of Talus House back of Pueblo Bonito. Beam rests pecked above figure. 1927 #39964-A. Photos by Neil M. Judd, 1927". These photos show the 6-toed foot petroglyph on the back wall of the room (the cliff rock face). ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '2 photos mounted on card', 'Talus unit? 8/3/04 C. Heitman: I checked this. We only have the description given above -so it must be Talus House behind Pueblo Bonito. ', NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', 0, NULL, NULL); INSERT INTO object VALUES (218, 'NGS Photographs, Pueblo Bonito: Burials and buried objects', '1081967050966', 'Photograph-Print', 'Photo label reads: "The skeleton of an infant buried in the fireplace of room 290." Photograph by Neil M. Judd 1923. Neg# 22660A. This number is crossed out and 100B is penciled in. There is a smaller unlabeled duplicate of this photograph in the file. The word "lower" is written in pencil in the upper margin of that photograph. ', 0, NULL, 0, NULL, 0, NULL, 1, 'Neg#22660', 88, NULL, '1 photo with one smaller duplicate', NULL, NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', 0, NULL, NULL); INSERT INTO object VALUES (226, 'NGS Photographs, Pueblo Bonito: Burials and buried objects', '1081968497009', 'Photograph-Print', 'Photo label reads: "Skeleton 14, Room 326, lay on a mat of rushes between the clay base of a roof support and the southwall." Photograph by O.C. Havens 1924. Neg.# 28492A. This number is crossed out and "Judd Pl.93,A" is written in pencil. There is a smaller unlabeled duplicate of this photo in the file. The word "upper" is written in pencil in the margin of that photo. ', 0, NULL, 0, NULL, 0, 'Neg.#28492A', 1, NULL, 88, NULL, '1 photo with one smaller duplicate', NULL, NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', 0, NULL, NULL); INSERT INTO object VALUES (227, 'Chaco Canyon Miscellany: Scenic Views', '1081968694138', 'Photograph-Print', '2 photos mounted on one card. "Cliff dweller cashe, E. side Mockingbird Canyon, north fork of Chaco Canyon, N. Mex. #28473". "North wall of Pueblo Wejeji, Chaco Canyon, N.M., showing portholes. #28472. Photos by O. C. Havens, 1924". ', 0, NULL, 0, NULL, 0, NULL, 1, 'NGS', 88, NULL, '2 photos on one card', '8/23/04 C. Heitman: "portholes"? Wonder if this is a typo? Can''t tell without looking at the caption again. ', NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', 0, NULL, NULL); INSERT INTO object VALUES (239, 'NGS Photographs, Pueblo Bonito: Braced up cliff', '1081970585908', 'Photograph-Print', '"Braced-up cliff back of Pueblo Bonito, a feature which gives the ruin its Navaho name" Photo by Charles Martin, 1920. Neg# 3011-B', 0, NULL, 0, NULL, 0, 'Neg#3011-B', 1, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', 0, NULL, NULL); INSERT INTO object VALUES (240, 'NGS Photographs, Pueblo Bonito: Braced up cliff', '1081970689268', 'Photograph-Print', 'One of 2 photos mounted on a page. The photo of interest is described as follows: "Early court level N. of R. 184 of Pueblo Bonito, showing mass of adobe supporting lower terrace under ''braced up cliff''." Neg# 23333-A. Photo by O.C. Havens 1923. ', 0, NULL, 0, NULL, 0, 'Neg#23333-A', 1, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', 0, NULL, NULL); INSERT INTO object VALUES (238, 'NGS Photographs, Pueblo Bonito: Braced up cliff', '1081970222276', 'Photograph-Print', '3 photos mounted on a single page: Middle north section of PB from the west (Neg# 39569A) Rooms N. of East Court, PB from above R.148 (Neg# 39570A) High N. wall of Rs.14a and 301 from the SW (Neg# 39559A) Photographed by Neil Judd 1926.', 0, NULL, 0, NULL, 0, 'Neg#39569A, Neg#39570A, Neg#39559A', 1, NULL, 88, NULL, '3 photographs', NULL, NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', 0, NULL, NULL); INSERT INTO object VALUES (247, 'NGS Photographs, Pueblo Bonito: Excavations', '1081972289424', 'Photograph-Print', 'Two photos, mounted together. (Neg#22651A) "Removing accumulated debris from outer east side of Pueblo Bonito, R. 185." Photo by OC Havens 1923. (Neg#11943A) "SE Section of Pueblo Bonito from the north cliff showing excavated area. NG Mag. March 1922, p. 325" Photo by OC Havens, 1921. ', 0, NULL, 0, NULL, 0, 'Neg#11943A, Neg#22651A', 1, NULL, 88, NULL, '2 photos', 'C. Heitman editorial note: comparing these photos - it looks like there was a substantial berm that ran along the back wall of PB before it all got cleared away...', NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', 0, NULL, NULL); INSERT INTO object VALUES (582, 'Ruins: Chaco Canyon (Chettro Kettle; Hungo Pavie; Kimenioli)', '1089727802627', 'Photograph-Print', '"Chaco Canyon, N. Mex. Chettro Kettle S.E. corner of EL Hewett excav." Neil M. Judd 9-14-20, 2 negs. [Neg 34]', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', 'C. Heitman: I wonder if Judd was spying on Hewett.', NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (256, 'Pueblo Bonito Excavations', '1089726492122', 'Photograph-Print', 'This entry is obsolete. I''ve gone back through this entire folder of photos and all the relevant photo cards are in the database. -C. Heitman 8/3/04 ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', 'Will look at this box on our next visit to see if this object entry represents a missing card of photos. 8/3/04 Checked - this object can be deleted', NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (589, 'Pueblo Bonito, Miscellany', '1089740263253', 'Photograph-Print', '2 photos (a third removed) mounted on a card. Caption 1: "Kiva X. Pueblo Bonito showing pilaster and south recess. #28579-A" Caption 2: "Pilaster and decayed roofing poles, in Kiva X, Pueblo Bonito, showing stratified sand at sides of pilaster. #28576-A" Photos by O.C. Havens, 1924. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '2 photos', 'C. Heitman editorial note: these photos are interesting because they show 2 beam sockets within the masonry pilasters!', NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (597, 'Pueblo Bonito, Miscellany', '1089743679999', 'Photograph-Print', '3 photos mounted on a card. Caption 1: "Fireplace, ventilator opening & sub-floor chamber. View from the northeast. #11954-A Photo by O.C. Havens, 1921." Caption 2: "Excavating Kiva C -- view from the northeast. #11930-A Photo by O.C. Havens, 1921." Caption 3: "Kiva C -- Plastered pilaster (#8 written in pen), showing stone disk (in front of spoon) cover for ceremonial deposits, in log. #11897-A Photo by O.C. Havens, 1921."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (287, 'Pueblo Bonito, General Views', '1089743068267', 'Photograph-Print', 'Three photos on one card. Captions read: "Pueblo Bonito and north cliff from the reservoir. Photo by O.C. Havens, 1921. #11882-A." "Pueblo Bonito from the SE.; Wetherill dam at right. Photo by O.C. Havens 1921. #11901-A." "Above: Southeast corner of Bonito, fr. the S.W. Photo by Martin, 1920. #5992-A." Reservoir appears to be ephemeral in nature. the last photo''s caption contains handritten note indicating that the photo was actually taken by Wisherd in 1922. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (292, 'Pueblo Bonito, Miscellany', '1089745634844', 'Photograph-Print', '1 mounted photograph Caption: "Excavated eastern portion of Pueblo Bonito at close of 3rd season''s explorations. Negative # 4304-B. Photo by E.L. Wisherd, 1923." This photo shows a row of rooms that underlie Pueblo Bonito -- or a foundation complex -- that extend north off the eastern side of PB.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (297, 'Pueblo Bonito, Kivas', '1089746498359', 'Photograph-Print', 'Three photos mounted on card. Captions read: "Kiva A. & surrounding rooms, from the N. Cliff. Photo by O.C. Havens, 1921. #11924-A." This caption has handwritten annotation reading "N.G Mag. 3/1922". Next photo: "Steps from Kiva A. to Room 148. (excav. by Pepper) Photo by O.C. Havens, 1921. #11912-A." "Benches in Kiva A. & steps to Room 148. Photo by O.C. Havens 1921. #7679-A."', 1, 'I conclude, based upon the annotation to the first photo described above that it was published in the March 1921 issue of National Geographic Magazine. ', 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (310, 'Pueblo Bonito, Kivas', '1089749165640', 'Photograph-Print', 'Three photos mounted on card. Caption reads: "Various views in Kiva B. Above- roof poles above bench & pilaster. #7657-A. Upper left- Hitting the water bag. #7678-A [this photo shows a worker drinking from a water bag]. Lower left- Roof poles & upright planks. 7671-A. All photos by O.C. Havens, 1921." These are all good photos of the lowest roof poles, pilasters and upright planks in Kiva B. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (344, 'Pueblo Bonito, Northeast Foundations', '1089817362377', 'Photograph-Print', '3 photos mounted on a card. Caption 1: "Former corner under SW wall of R. 186, abutted by foundation of latter and subfloor foundations, Pueblo Bonito, 1927. #50583-A" Caption 2: "Same as upper. 50598-A" Caption 3: "Earlier corner under SW wall of R. 186 with plaster rounding off to pavement; abutted by later wall at right and still later foundation of present, SW wall. Pueblo Bonito, 1927. #50589-A. Photos by Neil M. Judd."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (349, 'Chaco Canyon floods', '1089818873151', 'Photograph-Print', 'Caption: "Enlargment of photo by O.C. Havens. Chaco in flood, 1921" ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', 'This photo shows waves!', NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (357, 'People, Expedition Parties', '1089820377692', 'Photograph-Print', 'Caption: "Pueblo Bonito Camp, 1921. By Dr. C.E. Guthe" ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 photo', 'Hard to read the handwritting - I''ve probably mispelled the Dr''s name. ', NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (372, 'Ruins: Chaco Canyon', '1089826638896', 'Photograph-Print', 'Caption: "Pueblo del Arroyo, Chaco Canyon, N.M. SE corner of R. 20 - hatchway. O.C. Havens 1924. Neg. 56" ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (446, 'Pueblo del Arroyo', '1089899925288', 'Photograph-Print', '3 photos mounted on a page. Caption 1: "Early S. wall of jacal construction (Adobe between upright stakes) in Room 327, Pueblo Bonito. SW cor; door to R. 325. #28452-A". Caption 2: "Blocked east door and shelf, Room 327, Pueblo Bonito. #28451-A". Caption 3: "Northeast corner of Room 328, Pueblo Bonito, with fireplace and subfloor passage to east. #28478-A". Photos by O.C. Havens, 1924. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 photos', 'C. Heitman editorial comment: These images show ceiling support posts - and ventilator shaft.', NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (459, NULL, '1089901572096', 'Not Specified', 'No information in this entry. This object entry is obsolete.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (488, 'New Mexico: Artifacts, Chaco Canyon', '1089905376975', 'Photograph-Print', 'Same ceremonial stick photographed in object 487. This time showing the entire object. Handwritten description on back reads " ''ceremonial stick'' fr. n.(?) wall R. 293. Courtesy, NPS. l. 42 and 7/16 and missing tip."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (505, 'New Mexico: Ruins Chaco Canyon, braced-up Cliff', '1089912114982', 'Photograph-Print', 'Small photo of what appears to be a close-up of the retaining wall behind Pueblo Bonito. Masonry wall is right against cliff face. One upright post is visible in the foreground. Notes on the back read "NGS #5 or #6 post [not sure if it''s actually "post" or something else] P. 58 Judd pl. 3, 1." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (29, 'Pueblo Bonito Correspondence: Nusbaum, Jesse ', '00028', 'Correspondence', 'This object entry is obsolete.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, NULL, 'Either no information was included with this entry or the information was somehow dropped from the record. P. Trella 7/07/04 08/03/04 E. Cubbon went through this entire folder trying to figure out what might have been left out - so we could figure out if this object entry should have contained a description. She found 2 new objects in the process of reviewing this folder...go figure. These 2 were entered in as new objects. Techincally, I think we can safely delete this entry without remorse. - C. Heitman ', NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (547, 'Cosmos Mindeleff Photos with annotations by Judd', '1089918781964', 'Photograph-Print', 'Copy of Mindeleff photo annotated by Judd. Notes on back read: "Mindeleff 1887, BAE, Pueblo Bonito. Blocked ventilator at R. margin is in Room 297B; open vent. next on L. and blocked vent. in middle (light limited) are in un-numbered 2nd story room E of 297. Masonry seen thru 2nd break from lower L. is original outer N. wall of unnumbered room N. of 86. Partly blocked vent. @ L. margin is in N. wall of narrow room, 2nd tier N. of R. 87B. NMJ 5/4/55. Neg. 155 is a better Print." Other note reads "New Mex 161". ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (570, 'Pueblo Bonito: Rooms 26-44', '1089921595514', 'Photograph-Print', '1 print. Caption: "R. #8. With Navaho Jar in #45. (View from W. - NMJ)."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (575, 'Pueblo Bonito: Rooms 26-44', '1089921856298', 'Photograph-Print', '1 print. Caption: "Room 39B. Bonito. Pottery in situ. View fr. 51 (?) - NMJ. Pepper, 1920, fig. 87, p. 201. (Wall stones above upper R. corner of screen show immediately above ceiling pole holes at NE corner of R. 36 in Hyde print #186. Wall under lower L. corner of screen must be 1st type wall between Rs.36-37 - NMJ)". Editorial note: This image shows many shattered cylinder vessels.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (629, 'Pueblo Bonito: Rooms 54-75', '1090334212319', 'Photograph-Print', '1 photo. Caption: "R #s 61 & 58" (61 is crossed out here and Judd has written in "(wrong. NMJ.)" Caption further reads: "Rooms shown on Hyde plan as 63 & 58 - 2nd story - view fr. N. - (NMJ)." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (632, 'New Mexico: Ruins Chaco Canyon Small house on arroyo bank', '1090334511119', 'Photograph-Print', 'Photo of Arroyo in Chaco. Handwritten notes on the back read: "Chaco Canyon, N. Mex, shows arroyo cutting; Pueblo Bonito under cliff at right. (Photo by Neil M. Judd. 9/2/29)." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (640, 'Pueblo Bonito: Rooms 54-75', '1090335503148', 'Photograph-Print', '2 photos of room 69. Caption 1: "Floor of R #69." Caption 2: "R #69." This image shows a close-up of a shallow sandstone (?) circular basin. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '2 photos', 'This sandstone basin is perhaps the seat for an upright post? Perhaps an altar? It appears in both of these photos. ', NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (655, 'New Mexico: Ruins Chaco Canyon aerial photographs by Lindbergh', '1090337036379', 'Photograph-Print', '4 aerial photos of Pueblo Pintado. Notes on the back read: "Chaco Canyon district. Pintado." There is also a handwritten "18" ,"2", "3" and "20" respectively on the back of each photo, each with a checkmark underneath. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '4 photos', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (698, 'Photo-Negs., Artifacts, Site-Chaco Canyon, N.M., Bc 53 ', '1090348896156', 'Photograph-Negative', 'This folder is empty except for a small handwritten note that reads: "Negs removed to be copied onto safety film. SG 5/4/88." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, NULL, 'Locate negatives, if possible Susan McElrath (NAA archivist) does not know where these negatives are, only that they were removed and evidently never returned.', NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (714, 'Pueblo Bonito: Rooms 101-125', '1090352032463', 'Photograph-Print', '3 photos. Caption 1: "R #104. Post in SE corner. 3rd floor?". Caption 2: "R #105. N. West corner". Caption 3: "R. #105. Must be #76. West end. View N. West." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '3 photos', 'C. Heitman: I agree with the caption - this definitely looks exactly like a lower number room I''ve seen previously. ', NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (743, 'Artifacts Site--Chaco Canyon, N. Mex. N.W. Judd''s Chapt. V.', '1090354675449', 'Photograph-Print', 'Collection of 45 prints, mainly photos of pottery. Judging by the folder title and the captions appearing on the back, these all appear to have been published in Ch. 5 of the Material Culture of Pueblo Bonito; therefore they are not catalogued individually here. ', 1, 'Plates from Ch. 5 of the material culture of Pueblo Bonito. ', 0, NULL, 0, NULL, 0, NULL, 88, NULL, '45 photos', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (753, 'Chaco Canyon, NM Pueblo Bonito--Other NGS Photos related to N. Judd Publications', '1090416442602', 'Photograph-Print', '1 photo print with three sheets of notes attached. The photo is of an olla in situ, in Room 78 of Pueblo Bonito. The handwritten notes follow. "Pottery #24. Use Pepper print #258 (R. 78) in study of ollas and storage jars. Large B/W transit. jar buried in floor; 1st and 2nd type masonry above. Pepper p. 263. fig. 108 (shows jar in situ - too small)." The next note has a sketch of the picture with the following notes: "Hold for architecture? [caption beneath sketch] B- Cracked olla half buried in floor of R. 78 (Pepper Pring #258; courtesy of BTB Hyde) dimly seen in far L. corner of R. 78 in Pepper 1920, Fig. 108 p 261." The third page of notes reads "P. II olla in floor of R. 78. Pepper Print #258; courtesy of BTB Hyde. For use in Pottery Chapt. Pl. 7B." ', 1, 'Likely published in Pepper''s Pueblo Bonito Monograph Fig. 108 p 261. May also have been Plate 7B in Ch. 5 of Material Culture of Pueblo Bonito. ', 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo and 3 pages notes. ', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (785, 'Chaco Canyon, N. Mex. Bc 53 site (pottery, plant material, stone and bone tools)', '1090421555519', 'Photograph-Print', '16 prints of objects. No information is provided on any of the photos. On the back of each photo is a note reading "neg. available" and a stamp reading "Camera Shop New Mexico, Sep 17, 1942, Albuquerque, New Mexico." The photos show a range of objects including pottery (bowls, pitchers etc.), pot sherds, stone and bone tools. With the exception of three pottery photos (which have no numbers attached to them) all the objects depicted in the other photos appear to be labeled with a Bc 53 object number (e.g. Bc 53 30/19). It is likely that all photos are of objects from Bc 53. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, '16 prints', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (792, 'Artifacts Type Pottery Specimens Reported by Others', '1090423228191', 'Photograph-Print', 'Two prints that appear to be from the same negative (one is reversed) of a dual cylinder vessel. The vessels are connected at the base. Both are a bit broken and it appears that some attempt has been made to reconstruct it. Identical notes on the back of each read: "In Phillip''s Acad. Mus. Andover, Mass. Coll. by WK Moorehead." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '2 prints', 'Check with Phillips Academy in Andover Mass. to see what the history of this unique vessel is. 8/24/04 C. Heitman: I contacted the Phillips Academy. They do in fact have this dual cylinder vessel. David Thomas of the AMNH has looked at it. The Chaco Canyon visitor''s center museum also has a reconstruction of such a vessel. ', NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (811, 'FHH Roberts Jr. Lantern Slides 4851', '1090430495684', 'Photograph-Slide', 'One 3 1/4" x 4" lantern slide of pottery that may be from Chaco. There is no information provided on the slide or the box that the slides are in (note on front of box says. Photo looks like it was taken in the field of 6 bowls, two smaller storage vessels, one effigy vessel (?) and 6 ladles. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 lantern slide', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (831, 'MS 4851 Photo Negs Box 18 folder 1b Chaco Canyon, NM 1690 House', '1090433652127', 'Photograph-Negative', 'Group of 6 negatives from 1690 House, Chaco Canyon. General site shots; because they are negatives I cannot tell where in the canyon these shots were taken. Not excavation photos, but there is standing architecture. These negatives were originally kept in box 18. Please see note 18. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '6 nitrate negatives', 'See if 1690 house was given a different name. ', NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (843, 'MS. 4851 F.H.H. Roberts, Jr. UNIDENTIFIED, 1932', '1090435611850', 'Photograph-Negative', 'Nice, large format (8" by 10") negatives of objects, could be from Chaco. None have associated negative numbers or information of any sort. 3 negatives are of bowls. 3 are of stone objects. Numbers on some objects are visible (e.g. 349B-32.). 7 Negatives are of pitchers and an effigy vessel. 6 negatives are of various storage jars. 2 Negatives are of shell bead necklaces. Most of the other envelopes in this box contain negatives pulled from other boxes (boxes 18 and 21), but this envelope has no information linking it to another box. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '18 negatives', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (853, 'Arizona: Unidentified Artifacts', '1090438386201', 'Photograph-Print', '1 photo. Caption: "R #28 Pottery N.E. Corner First layer. Pepper, 1920, fig. 44, p. 116." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 131, NULL, '1 photo', 'I should note here that this object was located in a box that, according to the finding aid and the folder heading had nothing to do with Chaco. It makes us wonder what other pieces of Chaco are contained in otherwise marked boxes here at the archive.', NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (863, 'Photo-Prints, Sites, Chaco Canyon, N.M., Other sites in the area', '1090439346130', 'Photograph-Print', '1 small print, labeled on back in ink as "''Mesa Verde'' Ruin, 9 miles east of Bonito. Season 1926. - Roy Andrew." in pencil, "Neg. Available", and stamped in purple ink "10". ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', 'What site is this?? C. Heitman: We still don''t know after a second look...ask Joan? I wonder if Mesa Verde ruin is the pit structure in gully described by Mathien (in press) in Table 1.3?', NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (942, 'N. M. Judd Collection Pueblo Bonito (2)', '1090519611386', 'Profile', '1 transparency entitled "Diagram of Bank of Chaco River at locality No 16". It is 330 feet - showing a tributary of the arroyo with the location of late Bonito pot sherds. It also shows a hearth, a fire box, and charcoal.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 profile', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (964, 'Chaco Canyon, N. Mex. Bc 53 Cartographic Materials', '1091547642330', 'Tabular Data', 'Large piece of brown paper listing ceramic type counts and percentages by stratigraphic level for Room 1 at Bc 53. Includes level depths below surface and thicknesses. Gives excavation level counts as well as natural strata. By A. G. Winfield. Stratagraphic levels are drawn to scale.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, '1 oversized page', NULL, NULL, NULL, NULL, NULL, 1, '8/04/2004', NULL); INSERT INTO object VALUES (963, 'Chaco Canyon, N. Mex. Bc 53 Cartographic Materials', '1091547473270', 'Tabular Data', 'Large piece of brown paper listing ceramic type counts and percentages by stratigraphic level for Room 2 at Bc 53. Includes level depths below surface and thicknesses. By Raymond S. Baby. Stratagraphic levels are drawn to scale.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, '1 oversized page', NULL, NULL, NULL, NULL, NULL, 1, '8/04/2004', NULL); INSERT INTO object VALUES (962, 'Chaco Canyon, N. Mex. Bc 53 Cartographic Materials', '1091547328076', 'Tabular Data', 'Large piece of brown paper listing ceramic type counts and percentages by stratigraphic level for Room 4 at Bc 53. Includes level depths below surface and thicknesses. Only information for level 1. Note that reads "No report. Sherds misplaced or lost by the worker, Miss F. Sunderland." Stratagraphic levels are drawn to scale. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, '1 oversized page', NULL, NULL, NULL, NULL, NULL, 1, '8/04/2004', NULL); INSERT INTO object VALUES (961, 'Chaco Canyon, N. Mex. Bc 53 Cartographic Materials', '1091547218367', 'Tabular Data', 'Large piece of brown paper listing ceramic type counts and percentages by stratigraphic level for Room 6 at Bc 53. Includes level depths below surface and thicknesses. By B. Greenwood and D. Morgan. Stratagraphic levels are drawn to scale. Includes reference to two burials in level 5.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, '1 oversized page', NULL, NULL, NULL, NULL, NULL, 1, '8/04/2004', NULL); INSERT INTO object VALUES (960, 'Chaco Canyon, N. Mex. Bc 53 Cartographic Materials', '1091547095023', 'Tabular Data', 'Large piece of brown paper listing ceramic type counts and percentages by stratigraphic level for Room 7 at Bc 53. Includes level depths below surface and thicknesses. By Ted Stern. Stratagraphic levels are drawn to scale.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, '1 oversized page', NULL, NULL, NULL, NULL, NULL, 1, '8/04/2004', NULL); INSERT INTO object VALUES (959, 'Chaco Canyon, N. Mex. Bc 53 Cartographic Materials', '1091547015353', 'Tabular Data', 'Large piece of brown paper listing ceramic type counts and percentages by stratigraphic level for Room 10 at Bc 53. Includes level depths below surface and thicknesses. By Jack C. Anderson. Stratagraphic levels are drawn to scale.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, '1 oversized page', NULL, NULL, NULL, NULL, NULL, 1, '8/04/2004', NULL); INSERT INTO object VALUES (956, 'Chaco Canyon, N. Mex. Bc 53 Cartographic Materials', '1091546577196', 'Tabular Data', 'Large piece of brown paper listing ceramic type counts and percentages by stratigraphic level for Kiva A at Bc 53. Includes level depths below surface and thicknesses. By John Deacon and Ernest H. Hill. Stratagraphic levels are drawn to scale.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, '1 oversized page', NULL, NULL, NULL, NULL, NULL, 1, '8/04/2004', NULL); INSERT INTO object VALUES (957, 'Chaco Canyon, N. Mex. Bc 53 Cartographic Materials', '1091546795992', 'Tabular Data', 'Large piece of brown paper listing ceramic type counts and percentages by stratigraphic level for Kiva B at Bc 53. Includes level depths below surface and thicknesses. By Jane Leonard. Stratagraphic levels are drawn to scale.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, '1 oversized page', NULL, NULL, NULL, NULL, NULL, 1, '8/04/2004', NULL); INSERT INTO object VALUES (958, 'Chaco Canyon, N. Mex. Bc 53 Cartographic Materials', '1091546894821', 'Tabular Data', 'Large piece of brown paper listing ceramic type counts and percentages by stratigraphic level for Room 3 at Bc 53. Includes level depths below surface and thicknesses. By D. Kyte. Stratagraphic levels are drawn to scale.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, '1 oversized page', NULL, NULL, NULL, NULL, NULL, 1, '8/04/2004', NULL); INSERT INTO object VALUES (965, 'Chaco Canyon Illustrations (Pottery Test Sections)', '1091548659554', 'Plan-Architecural', 'Pencil architectural plan view of a small site on Smith''s Ranch near Chaco Canyon. A note is attached with 2 entries; one from Jonathan Reyman and one from Wendy Bustard. Reyman: "''Smith''s Ruin'' is probably part of prehistoric site in the vicinity on Mt. Floyd, Arizona. Note ''Smith''s Well'' on several other maps in this folder. 3/1971." Bustard: "No: small site on Smith''s Ranch near Chaco Canyon - part of NGS Bonito project, 1927. See Roberts box 1, folder 2. 10/12/94."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 oversized page with notes attached', 'What is Smith''s Ruin? Find out about this site. See Bustard dissertation.', NULL, NULL, NULL, NULL, 1, '8/04/2004', NULL); INSERT INTO object VALUES (986, '"Small Sites of the Chaco" Manuscript', '1091646251323', 'Manuscript-Typed', 'Typed manuscript. Dated as "1925 or later" by the National Anthropological Archives. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '28 pages', NULL, NULL, NULL, NULL, NULL, 1, '8/04/2004', NULL); INSERT INTO object VALUES (105, 'Judd''s and Shepard''s notes on the analysis of the pottery test sections', '00093', 'Tabular Data', '1925? Tabular data from 4 test sections - all conducted at Pueblo Bonito? Pottery types are broken down by strata. We couldn''t find tabular data associated with section three. We can be reasonably sure these objects are all from the pottery test sections - East and west Judd trenches. Will have to confirm at a later date. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '8 pages', 'Connected to profiles and notes on these sections. Need to look at #s 72, 105 and 106 together to figure out if these are all from the same test sections. 8/4/04 C. Heitman: Done. See object #72', 93, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', 1, '7/22/2004', NULL); INSERT INTO object VALUES (106, 'Judd''s and Shepard''s notes on the analysis of the pottery test sections', '00094', 'Notes-Analysis', '1925. These notes are associated with the tabular data on four pottery test sections from the same folder. Anna Shepard''s notes describe some of their findings from tests II and IV. The information relates to pottery types, vessel forms, temper, paint, etc - broken down by strata. See profiles from same folder. We can be reasonably sure that this data refers to the Bonito pottery test sections (Judd''s east and west trenches). Verification of this will have to wait until a later date.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '35', NULL, 94, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', 0, NULL, NULL); INSERT INTO object VALUES (989, 'Judd''s and Shepard''s notes on the analysis of the pottery test sections', '1093370791230', 'Notes-Analysis', 'Anna Shepard''s typewritten notes on Bonito sherd paste microscopic analysis from Roberts Pottery Tests IV and II. Also includes one handwritten page of storage location information for Pueblo Bonito sherds/type series.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '3 pages', NULL, NULL, NULL, NULL, NULL, 1, '07/22/04', NULL); INSERT INTO object VALUES (990, 'List of Thin Sections of Pottery in the Collection of Anna O. Shepard', '1093442053229', 'List-Specimen', 'A list of thin section specimen numbers from Pueblo Bonito. These specimens were created by Shepard and are housed at the University of Colorado Museum. Correspondence relating to the analysis and interpretation of these thin sections (petrographic analysis) are also in our inventory. This correspondence is housed both in the Shepard Archival collection at Boulder and at the National Anthropological Archives in both the Judd and Roberts collections. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '7 pages', NULL, NULL, NULL, NULL, NULL, 1, '8/16/2004', NULL); INSERT INTO object VALUES (991, 'D8.N8', '1093442641367', 'Notes-Analysis', 'Notes of analysis and some tabular data relating to the "St. Johns Poly" and "Indented" ceramics from Peublo Bonito. This object contians a detailed description of surface treatment, texture, inclusions, and paste. This analysis also gives a "total distance travelled" for both wares. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '4 pages', NULL, NULL, NULL, NULL, NULL, 1, '8/16/04', NULL); INSERT INTO object VALUES (997, 'Red Rock and Pueblo Bonito', '1093464135373', 'Notes-Analysis', 'A piece of paper with drawing of a sherd with ridges attached to the vessel. This page contains notes on the depth and width of the ridges as well as the shape of the trough. The notes, like the drawing, are done in Shepard''s hand. The heading on the paper reads: "Bonito sherd from Nelson 7/10/43 R. 25 H/4001." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, NULL, 'This drawing is of a really interesting sherd which S. Plog and I (C. Heitman) saw at the American Museum of Natural History back in Juanuary 2004. It is unlike any Southwestern ceramic either he or I have ever seen. ', NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (998, 'Red Rock and Pueblo Bonito ', '1093465864167', 'Tabular Data', 'This object contains tabular data on sherd temper by ware from Shepard''s Pueblo Bonito ceramic analysis. Accompaning the 3 pages of tabular data are 2 pages of handwritten notes of analysis regarding these tabulations. I (C. Heitman) have entered them as one object because the are all dated to the same period (7/21-7/28/1937) and seem to form one intellectual unit regarding her process of analysis. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '5 pages', NULL, NULL, NULL, NULL, NULL, 1, '8/16/04', NULL); INSERT INTO object VALUES (1000, 'Red Rock and Pueblo Bonito ', '1093526055207', 'Notes-Analysis', 'An 8 point list entitled "Judd''s Summary of Paint and Temper of Bonito Pottery." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '2 pages', NULL, NULL, NULL, NULL, NULL, 1, '8/16/2004', NULL); INSERT INTO object VALUES (999, 'Red Rock and Pueblo Bonito ', '1093467390459', 'Notes-Analysis', 'Three pages of notes entitled: "Pueblo Bonito thin sections. preliminary notes. 11/21/3? (year cut off)" These notes divide ceramics by type - giving specific observations on temper. Observations are linked to individual thin section ID numbers. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '3 pages', 'Original thin sections are housed at the University of Colorado Museum. ', NULL, NULL, NULL, NULL, 1, '8/16/04', NULL); INSERT INTO object VALUES (1001, 'Red Rock and Pueblo Bonito ', '1093526927545', 'Notes-Analysis', 'Typewritten notes of analysis entitled: "Notes on pastes of Bonito sherds, based on microscopic examination 7/21-28/1937." These notes are from Roberts pottery test sections IV and II.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '2 pages', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (1003, 'Red Rock and Pueblo Bonito ', '1093529599900', 'Notes-Analysis', 'Typewritten notes of analysis entitled: "Temper and Pigment of Pottery from Red Rock region." Each vessel is listed by number and it''s temper and pigment are described. Those vessels selected for thin sectioning are flagged with an asterisk and the thin section number is written in the margin.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '3 pages', 'The Red Rock region is another name for the Chuskas.', NULL, NULL, NULL, NULL, 1, '8/16/2004', NULL); INSERT INTO object VALUES (1002, 'Red Rock and Pueblo Bonito ', '1093529297528', 'Notes-Analysis', 'Tabular data and analytical ceramic descriptions from various sites in and around Chaco. Page 1 entitled: "Sherds from site near Two Gray hill collected from surface Oct. 1937" Page 2 entitled: "Mitten Rock site lot #2" Page 3 entitled: "Mitten Rock surface sherds collected Oct. 1937" Page 4 entitled: "Red Rock Redware Cave VIII John Doe''s Canyon" Page 5 entitled: "Site North of Red Rock" ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '5 pages', 'The Red Rock region is another name for the Chuskas.', NULL, NULL, NULL, NULL, 1, '8/16/04', NULL); INSERT INTO object VALUES (1004, 'Red Rock and Pueblo Bonito', '1093530818620', 'Photograph-Slide', 'Handwritten notes of analysis on ceramic pastes and tempers from the Red Rocks region (Chuskas). Information includes thin section numbers and source vessel numbers. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '29 pages', NULL, NULL, NULL, NULL, NULL, 1, '20040816', NULL); INSERT INTO object VALUES (1005, 'Red Rock and Pueblo Bonito', '1093534617131', 'Notes-Analysis', 'Typewritten notes of analysis entitled: "Suggested Foot Note for p. 92 Bonito Pottery Chapter, Submitted 1/3/42." Presumably this is the revised foot note submitted by Shepard to Judd. See Judd/Shepard correspondence for more information on this exchange. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '4 pages', NULL, NULL, NULL, NULL, NULL, 1, '20040816', NULL); INSERT INTO object VALUES (1006, 'Correspondence: Neil M. Judd', '1093612541689', 'Correspondence', 'Correspondence from Anna Shepard to Neil M. Judd dated November 23, 1935. Letter discusses the utility of and process for thin sectioning type sherds from Pueblo Bonito. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 page', NULL, NULL, NULL, NULL, NULL, 1, '20040816', NULL); INSERT INTO object VALUES (1007, 'Correspondence: Neil M. Judd', '1093613041020', 'Correspondence', 'Correspondence from Anna Shepard to Neil M. Judd dated January 23, 1936. In the letter Shepard mentions it would be interesting to compare the petrographic analysis of Chaco sherds with those from La Plata. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 page', NULL, NULL, NULL, NULL, NULL, 1, '20040816', NULL); INSERT INTO object VALUES (42, 'Pueblo Bonito Correspondence Shepard, Anna D. ', '00039', 'Correspondence', 'Letter from Neil Judd to Anna Shepard dated January 25, 1936. Contains information regarding pottery samples from Pueblo Bonito being sent to Shepard at the laboratory of anthropology for petrographic analysis. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 page', 'This letter exists in both the Judd collection at the National Anthropological Archives and in the Anna O. Shepard collection at the University of Colorado Museum, Boulder. ', NULL, NULL, 'Vivian', 'Vivian says 2 on 1-3 scale with 3 highest Priority.', 1, '20040816', NULL); INSERT INTO object VALUES (1008, 'Correspondence: Neil M. Judd', '1093617588395', 'Correspondence', 'Letter from Anna Shepard to Neil Judd dated January 30, 1936. This letter contains preliminary interpretation of the tempers observed from her Bonito thin section analyses. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 page', NULL, NULL, NULL, NULL, NULL, 1, '20040816', NULL); INSERT INTO object VALUES (1009, 'Correspondence: Neil M. Judd', '1093617940654', 'Correspondence', 'Letter from Neil Judd to Anna Shepard dated February 17, 1936. Contains an discussion of the presence of igneous rock temper in the Pueblo Bonito sherds as well as catalog numbers for clay samples.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 page', NULL, NULL, NULL, NULL, NULL, 1, '20040816', NULL); INSERT INTO object VALUES (43, 'Pueblo Bonito Correspondence--Shepard, Anna D.', '00039', 'Correspondence', 'Letter from Anna Shepard to Judd dated November 21, 1936. Letter includes rather detailed results of ceramic thin section analyses (requested by Judd) from a sample of Pueblo Bonito pottery. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '2 pages', 'This object exists in two collections. It is housed in the Judd collection at the National Anthropological Archives and in the Anna Osler Shepard Collection at the University of Colorado Museum, Boulder. ', NULL, NULL, 'Vivian', 'Vivian says 2 on 1-3 scale with 3 highest Priority.', 1, '20040816', NULL); INSERT INTO object VALUES (151, 'Correspondence: Lettters Sent', '1081867367019', 'Correspondence', 'Letter from Roberts to Anna Shepard dated December 3, 1936. Letter contains a description of the Characteristics of Pueblo Bonito pottery and phases. Appears to be a reply to Shepard''s letter asking about nomenclature. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '2 pages', 'This object is held in two separate collections. It is housed in the Roberts colleciton at the National Anthropological Archives as well as in the Anna Osler Shepard collection at the University of Colorado Museum, Boulder. ', NULL, NULL, 'Vivian', 'Vivian says 2 on 1-3 scale with 3 highest Priority.', 1, '20040816', NULL); INSERT INTO object VALUES (149, 'Correspondence: Incoming: Anna Shepard', '1081866058892', 'Correspondence', 'Letter from Anna Shepard to Frank Roberts dated November 21, 1936. The letter contains some details on Shepard''s sherd study from Pueblo Bonito, but mainly appears to contain questions for Roberts regarding nomenclature. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 page', 'This object exists in two places. It is housed in the Roberts collection at the National Anthropological Archives. It is also held at the University of Colorado Museum, Boulder in the Anna Osler Shepard Collection.', NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', 1, '20040816', NULL); INSERT INTO object VALUES (1010, 'Correspondence: Neil M. Judd', '1093620428824', 'Correspondence', 'Letter from Anna Shepard to Frank Roberts dated December 14, 1936. The letter contains a brief comment about the technological problems presentd by the Chaco material - and expresses his respect for Shepard''s criticism of "the taxonomic trend." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 page', NULL, NULL, NULL, NULL, NULL, 1, '20040816', NULL); INSERT INTO object VALUES (44, 'Pueblo Bonito Correspondence--Shepard, Anna D.', '00043', 'Correspondence', 'Letter from Judd to Anna Shepard dated December 18, 1936. This is a response to her letter of November 21. Letter contains some interpretation of Shepard''s findings relating to andesite in Chaco sherds and trade connections. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, NULL, 'This object exists in two places. It is housed in the Judd collection at the National Anthropological Archives and is also held in the Anna Osler Shepard collection at the University of Colorado Museum, Boulder. ', NULL, NULL, 'Vivian', 'Vivian says 2 on 1-3 scale with 3 highest Priority.', 1, '20040816', NULL); INSERT INTO object VALUES (1011, 'Correspondence: Neil M. Judd', '1093639270458', 'Correspondence', 'Letter from Anna Shepard to Neil Judd dated December 23, 1936. Letter discusses Shepard''s difference of opinion about the andesite temper as well as Shepard''s hesitations about the prelimary results.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 page', NULL, NULL, NULL, NULL, NULL, 1, '20040816', NULL); INSERT INTO object VALUES (1013, 'Correspondence: Neil M. Judd ', '1093869404011', 'Correspondence', 'Letter from Neil Judd to Anna Shepard dated June 28, 1937. This letter discusses sandine temper and Judd''s predictions for the presence of this temper in sherds from the west refuse mound and the west court trench of Pueblo Bonito. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 page', NULL, NULL, NULL, NULL, NULL, 1, '20040816', NULL); INSERT INTO object VALUES (45, 'Pueblo Bonito Correspondence--Shepard, Anna D.', '00043', 'Correspondence', 'Letter from Judd to Anna Shepard dated February 2, 1939. Contains information on the stratigraphic relationship of pottery from "an old rubbish pile" underlying the west court. This letter also discusses the location and architectural association of pottery test sections II, III, and IV at Pueblo Bonito. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 page', 'Is this Bonito? E. Cubbon 8/4/04: This letter references Test #1, #2, and #4. These may be pottery test sections: may be the four test sections that we have seen other reference to at Bonito, and for test #4 it specifically states that it was taken outside of Bonito at the northern slope of the west mound. C. Heitman 8/30/04: This letter is housed in two collections - the Judd collection at the National Anthropological Archives and in the Shepard collection at University of Colorado Museum, Boulder.', NULL, NULL, 'Vivian', 'Vivian says 2 on 1-3 scale with 3 highest Priority.', 1, '20040816', NULL); INSERT INTO object VALUES (1016, 'Correspondence: Neil M. Judd', '1093871643895', 'Correspondence', 'Letter from Neil Judd to Anna Shepard dated May 11, 1939. This letter contains many specific questions regarding the details of Shepard''s thin section analyses. The letter was written as Judd was in the process of preparing the pottery chapter for his 1959 publication "Material Culture of Pueblo Bonito."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '2 pages', NULL, NULL, NULL, NULL, NULL, 1, '20040816', NULL); INSERT INTO object VALUES (46, 'Pueblo Bonito Correspondence--Shepard, Anna D.', '00045', 'Correspondence', 'Letter from Shepard to Judd dated May 24, 1939. This letter is a response to a letter from Judd (May 11, 1939) in which he asked her many clarification questions relating to her thin section analyses of Pueblo Bonito sherds. Shepard''s discussion contains lots of detailed information regarding her analyses and interpretations. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '2 pages', 'This letter is housed in two collections. It is in the Judd Collection at the National Anthropological Archives and in the Shepard collection at the University of Colorado Museum, Boulder.', NULL, NULL, 'Vivian', 'Vivian says 2 on 1-3 scale with 3 highest Priority.', 1, '20040816', NULL); INSERT INTO object VALUES (1017, 'Correspondence: Neil M. Judd', '1093876067685', 'Correspondence', 'Letter from Neil Judd to Anna Shepard dated October 20, 1939. Letter addresses their ongoing discussion of Sheperd''s contribution to the "Material Culture of Pueblo Bonito" pottery chapter. Judd describes how he and Roberts divided the ceramic analyses between them. Judd expresses his continued doubt regarding Shepard''s interpretation of the basalt temper. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '2 pages', NULL, NULL, NULL, NULL, NULL, 1, '20040816', NULL); INSERT INTO object VALUES (1018, 'Correspondence: Neil M. Judd', '1093876550856', 'Correspondence', 'Letter from Anna Shepard to Neil Judd dated December 5, 1939. This letter continues their discussion of the data, interepretation, and presentation of Shepard''s Pueblo Bonito ceramic analyses in preparation for the publication of Judd''s 1959 publication "Material Culture of Pueblo Bonito."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, '20040816', NULL); INSERT INTO object VALUES (1019, 'Correspondence: Neil M. Judd', '1093876947504', 'Correspondence', 'Letter from Anna Shepard to Neil Judd dated August 4, 1941. This letter expresses Shepard''s disappointment and regret that she had not continued further with her analyses of Pueblo Bonito/Chaco Canyon ceramics. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 page', NULL, NULL, NULL, NULL, NULL, 1, '20040816', NULL); INSERT INTO object VALUES (1020, 'Correspondence: Neil M. Judd', '1093878042653', 'Correspondence', 'Letter from Neil Judd to Anna Shepard dated August 20, 1941. This letter is part of a continued dialogue regarding the the presence of basalt temper identified in the Pueblo Bonito ceramics. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '2 pages', NULL, NULL, NULL, NULL, NULL, 1, '20040816', NULL); INSERT INTO object VALUES (1021, 'Correspondence: Neil M. Judd', '1093878780826', 'Correspondence', 'Letter from Anna Shepard to Neil Judd dated November 17, 1941. This letter is part of a continued dialogue regarding the the presence of basalt temper identified in the Pueblo Bonito ceramics. Shepard recommends the procedures and methods necessary for continued study of the ceramics.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 page', NULL, NULL, NULL, NULL, NULL, 1, '20040816', NULL); INSERT INTO object VALUES (1022, 'Correspondence: Neil M. Judd', '1093879236986', 'Correspondence', 'Letter from Neil Judd to Anna Shepard dated December 16, 1941. This letter originally accompanied a portion of Judd''s Pueblo Bonito pottery chapter for Shepard''s review. In this portion of the chapter Judd had tried to integrate Shepard''s sherd analyses and criticisms. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 page', NULL, NULL, NULL, NULL, NULL, 1, '20040816', NULL); INSERT INTO object VALUES (1023, 'Correspondence: Neil M. Judd', '1093885245694', 'Correspondence', 'Letter from Anna Shepard to Neil Judd dated January 3, 1942. This letter continues the discussion of Shepard''s Pueblo Bonito sherd analyses in preparation for the publication of Judd''s "Material Culture of Pueblo Bonito." In this letter, Shepard outlines specific points of contention/disagreement between herself and Judd. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '2 pages', NULL, NULL, NULL, NULL, NULL, 1, '20040816', NULL); INSERT INTO object VALUES (1024, 'Correspondence: Neil M. Judd', '1093890403377', 'Correspondence', 'Letter from Anna Shepard to Neil Judd dated April 20, 1942. This letter is part of the ongoing dialogue between Shepard and Judd over Shepard''s analyses of Pueblo Bonito sherds. Some specific numerical data is given here. Shepard also discusses specifics regarding particular cuts from pottery test sections and possible sources for sandine basalt at the foot of Washington Pass. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '2 pages', NULL, NULL, NULL, NULL, NULL, 1, '20040816', NULL); INSERT INTO object VALUES (1027, 'Correspondence: Neil M. Judd', '1093957913461', 'Correspondence', 'Letter from Neil Judd to Anna Shepard dated June 12, 1945. This letter originally accompanied by chips from the fragment of an effigy jar (Cat. No. 336088) that Judd wanted Shepard to thin section. From the letter it seems the animal represented made him doubt the jar was of local Chaco origin. The letter does not mention where this jar was recovered from. Given the context of the letter, I assume it was from Pueblo Bonito. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 page', NULL, NULL, NULL, NULL, NULL, 1, '20040816', NULL); INSERT INTO object VALUES (1028, 'Correspondence: Neil M. Judd', '1093959023430', 'Correspondence', 'Letter from Anna Shepard to Neil Judd dated June 18, 1945. Letter responds to Judds correspondence of June 12th (object #1027) regarding a strange effigy jar. Shepard gives Judd her results in the letter and discusses a previously analyzed plumbate toad effigy (No. 290848). ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 page', NULL, NULL, NULL, NULL, NULL, 1, '20040816', NULL); INSERT INTO object VALUES (1029, 'Correspondence: Neil M. Judd', '1093960491848', 'Correspondence', 'Letter from Neil Judd to Anna Shepard dated June 23, 1945. Letter is brief and touches on Shepard''s results from her thin sectioning of an effigy vessel from Pueblo Bonito and a plumbate ware frog effigy. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 page', NULL, NULL, NULL, NULL, NULL, 1, '20040816', NULL); INSERT INTO object VALUES (1025, 'Correspondence: Neil M. Judd', '1093890829009', 'Correspondence', 'Letter from Neil Judd to Anna Shepard dated May 27, 1942. This letter is part of the ongoing dialogue between Shepard and Judd over Shepard''s analyses of Pueblo Bonito sherds - in preparation for the publication of "Material Culture of Pueblo Bonito." ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 page', NULL, NULL, NULL, NULL, NULL, 1, '20040816', NULL); INSERT INTO object VALUES (1026, 'Correspondence: Neil M. Judd', '1093956617437', 'Correspondence', 'Letter from Jeil Judd to Anna Shepard dated April 30, 1943. This letter responds to Anna Shepard''s letter of April 20th (object #47). In this letter, Judd reviews some editorial changes for the preparation of his pottery chapter in "Material Culture of Pueblo Bonito" with reagard to the sandine basalt or andesite tempered ceramics. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 page', NULL, NULL, NULL, NULL, NULL, 1, '20040816', NULL); INSERT INTO object VALUES (1012, 'Correspondence: Neil M. Judd', '1093639728629', 'Correspondence', 'Letter from Anna Shepard to Neil M. Judd ated June 26, 1937. Letter discusses sandine basalt temper in relation to Bonito and La Plata ceramic thin section analyses.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 page', 'Letter is difficult to read due to the bleeding of type from another letter in the file folder.', NULL, NULL, NULL, NULL, 1, '20040816', NULL); INSERT INTO object VALUES (1014, 'Correspondence: Neil M. Judd', '1093869838966', 'Correspondence', 'Letter from Neil Judd to Anna Shepard dated August 20, 1937. In this letter, Judd expresses his disbelief over the frequency of sandine basalt temper in Shepard''s study of Pueblo Bonito sherds. Judd also encourages to publish her findings and advises her about how to refer to the pottery test sections. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 page', NULL, NULL, NULL, NULL, NULL, 1, '20040816', NULL); INSERT INTO object VALUES (1015, 'Correspondence: Neil M. Judd', '1093870298658', 'Correspondence', 'Letter from Anna Shepard to Neil Judd dated January 31, 1939 (sent via air mail). In this letter Shepard asks Judd for clarification on Chaco time periods. Originally this letter accompanied an encolsed draft portion of her La Plata in which Shepard discussed the sandine basalt temper in both the La Plata and Pueblo Bonito ceramics. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 page', NULL, NULL, NULL, NULL, NULL, 1, '20040816', NULL); INSERT INTO object VALUES (1030, 'Correspondence: Neil M. Judd', '1093961049976', 'Correspondence', 'Letter from Anna Shepard to Neil Judd dated January 7, 1954. This letter acknowledgs the receipt of "Material Culture of Pueblo Bonito" in which she briefly responds to his skepticism over igneous temper marking intrusive pottert in Chaco Canyon. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '2 page', NULL, NULL, NULL, NULL, NULL, 1, '20040816', NULL); INSERT INTO object VALUES (1031, 'Correspondence: Neil M. Judd', '1093969119404', 'Correspondence', 'Letter from Neil Judd to Anna Shepard dated December 29, 1954. This is the note that accompanied a copy of "Material Culture of Pueblo Bonito."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 page', NULL, NULL, NULL, NULL, NULL, 1, '20070816', NULL); INSERT INTO object VALUES (1032, 'Correspondence: Neil M. Judd', '1093969421209', 'Correspondence', 'Letter from Neil Judd to Anna Shepard dated September 26, 1955. This letter acknowledges the receipt of Shepard''s thin section analysis of some redware sherds. Judd mentions, "In shape our four differ from all other cylindrical vases of which I am aware." It''s unclear what Judd is referring to as "our four."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 page', NULL, NULL, NULL, NULL, NULL, 1, '20040816', NULL); INSERT INTO object VALUES (883, 'Photo Prints Sites Chaco Canyon, N.M. Bc 53 Site 1940 Season 3a', '1090441211917', 'Photograph-Print', '25, very small format (1.5 by 2.5 inches) photos showing excavations in Bc 53 and general shots of surrounding area. Not a lot of detail can be seen on these photos because they''re so small, but there are several excavation photos from within a kiva that may be of interest. 9/14/04 S. Plog and C. Heitman reviewed these photos again. There is nothing in the photos that links them to Chaco Canyon. There is more vegetation than you would expect. Also, there are relatively few photos of actual excavation. They are also a in a strange format (1.5x2.5 inches) - which may indicate they are from a different period or project. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, '25 prints', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (854, 'Photo Prints Sites Chaco Canyon, N.M. Bc 53 Site 1940 Season 3a', '1090438543359', 'Photograph-Print', '53 prints of 1940 excavations in Bc 53. There are three different sets of prints in this folder. These have no information printed on the back, but appear to be general excavation photos. Several photos of in situ burials. Some of the prints in this set have duplicates. (the number 53 includes the copies). 9/14/04 S. Plog and C. Heitman: We have identified 25-30 unique images in this set of photos. The rest are duplicates or variable exposures of the same shot. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, '51 prints', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (923, 'Photo-Prints, Sites, Chaco Canyon, N.M., Bc 53 site, 1942 Season', '1090508072946', 'Photograph-Print', '8 small prints, general shots of what we believe is Bc 53 during excavations (because these photos were in the folder marked Bc 53). All 8 are labeled on the back with a stamped "A 8", are stamped "Camera Shop of New Mexico, Sep 16 1942, Albuquerque, New Mexico", and labeled in handwritten pencil, "Neg. Available." 9/14/04 S. Plog and C. Heitman reviewed these photos again. A number of these are just general architecture shots taken from a distance. I (C. Heitman) would estimate that there are roughly 3 or 4 that are useful. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, '8 photos', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (739, 'Photo-Prints, Sites, Chaco Canyon, New Mexico, Pueblo Bonito-Excavations', '1090354542850', 'Photograph-Print', '1 small print, labeled on the back only with a small, faded, purple, stamped "18". Appears to be standing architecture of Pueblo Bonito taken from within the plaza looking toward the north. Includes threatening rock before it fell.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (741, 'Photo-Prints, Sites, Chaco Canyon, New Mexico, Pueblo Bonito-Excavations', '1090354713053', 'Photograph-Print', '1 small print, labeled on the back only with a small, purple, stamped, faded "12". photo shows the masonry ovens located between Pueblo Bonito and Chetro Ketl (as seen in the Windes Pueblo Alto report). We believe that this is Pueblo Bonito because it occurs in context with several other photos of Pueblo Bonito and because it is in the folder labeled "Pueblo Bonito-Excavations".', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (752, 'Photo-Prints, Sites, Chaco Canyon, New Mexico, Pueblo Bonito-Excavations ', '1090416776012', 'Photograph-Print', '1 small print, labeled on the back in handwritten ink, "Pueblo Bonito". Also stamped on the back with a small "18". This photo shows a man in a room in the ruin doing masonry stabilization/reconstruction.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (1033, 'Photo-Prints, Sites, Chaco Canyon, New Mexico, Pueblo Bonito-Excavations ', '1095173516233', 'Photograph-Print', '1 print of 5 kids standing in front of a giant pile of large pot sherds. This photo gives a sense of what was being tossed aside during excavation. Presumably this pile of discarded pottery came from Pueblo Bonito since it is in this folder. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (755, 'Photo-Prints, Sites, Chaco Canyon, New Mexico, Pueblo Bonito-Excavations ', '1090417243563', 'Photograph-Print', '1 print, unlabeled. Shows a portion of a masonry kiva wall with a doorway and two sediment pedestals in front of the wall with stones on top/in them. We believe this is Pueblo Bonito because it occurs in context with many other photos from Pueblo Bonito and in the Pueblo Bonito folder. 9/14/04 C. Heitman: I''ve reviewed the photos in this folder. This image, as well as three others, is on a differnt kind of photo paper. It''s printed on a light cardboard - with no gloss surface. One of the 4 prints on this kind of paper is clearly from somewhere else (S. Plog thinks it''s from Mesa Verde) - this makes me think these 4 images are not of Pueblo Bonito but rather were taken elsewhere. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (757, 'Photo-Prints, Sites, Chaco Canyon, New Mexico, Pueblo Bonito-Excavations ', '1090417580543', 'Photograph-Print', '1 print, unlabeled. Shows excavations in progress (a man with a shovel is visible). Shows where two walls meet, with a doorway or window visible. We believe this is Pueblo Bonito because it occurs in context with other photos from Pueblo Bonito and in the folder labeled "Pueblo Bonito-Excavations". 9/14/04 C. Heitman: I''ve reviewed the photos in this folder. This image, as well as three others, is on a differnt kind of photo paper. It''s printed on a light cardboard - with no gloss surface. One of the 4 prints on this kind of paper is clearly from somewhere else (S. Plog thinks it''s from Mesa Verde) - this makes me think these 4 images are not of Pueblo Bonito but rather were taken elsewhere. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (1034, 'Photo-Prints, Sites, Chaco Canyon, New Mexico, Pueblo Bonito-Excavations', '1095174306522', 'Photograph-Print', 'This is an image of Frank Roberts (I think - C. Heitman) sitting on top of the outer wall of a kiva. The image shows two concentric kiva walls and some excavated exterior rooms. This image is housed in a folder of Pueblo Bonito excavation photos. However, (C. Heitman) I''ve reviewed the photos in this folder and this image, as well as three others, is on a differnt kind of photo paper. (See objects 755, 757, and 759). It''s printed on a light cardboard - with no gloss surface. One of the 4 prints on this kind of paper is clearly from somewhere else (S. Plog thinks it''s from Mesa Verde) - this makes me think these 4 images are not of Pueblo Bonito but rather were taken elsewhere. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (783, 'Photo-Prints, Sites, Chaco Canyon, N.M., Pueblo Bonito-Skulls', '1090421208826', 'Photograph-Print', '16 prints of skulls, labeled only on the back with a small purple stamped "2". All prints with scale bar. 2 skulls side by side in each photo. First 8 photos show two skulls from the front, side, bottom, and back (2 prints for each angle). Second set of 8 photos shows 2 skulls side by side from the same angles (front, side, bottom, and back), 2 prints for each angle.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '16 prints', '9/14/04 C. Heitman: We''ve reviewed these photos again. We need to ask Ann Palkovich if these images are useful to her or other skeletal analysts. She or Nancy Akins may already have copies of these. ', NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (839, 'Photo-Prints, Sites, Chaco Canyon, N.M., 1690 House', '1090435089598', 'Photograph-Print', '1 small print, labeled on the back in pen as "1690 House, Chaco Canon", in pencil with "Neg. Available", and stamped with a faded purple stamp which appears to read "A 7". There is a pencil "X" mark beneath the "Neg. Available" note on the back of the photo. The photographer is facing the wall of four low, rounded, pinnacles with lots of small stones on top of them. Presumably this distinctive rock formation is associated with 1690 house. If someone recognized this formation it would help us locate this site on the landscape.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', 'Find out if 1690 House has another name.', NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (841, 'Photo-Prints, Sites, Chaco Canyon, N.M., 1690 House', '1090435545446', 'Photograph-Print', '2 small prints, labeled on the back in ink as "1690 House, Chaco Canon", in pencil with "Neg. Available", and stamped in purple ink what appears to read "A 7". Both photos show a masonry wall (damn) built between two large rock faces. Carved foot holds are visible. The second photo has a man in front of the wall. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '2 photos', 'Find out if 1690 House has another name.', NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (840, 'Photo-Prints, Sites, Chaco Canyon, N.M., 1690 House', '1090435318460', 'Photograph-Print', '1 small print, labeled on the back in ink with "1690 House, Chaco Canon", in pencil with "Neg. Available", and then stamped in purple ink with what appears to read "A 7". Photo shows a masonry wall (damn?) filling the gap between two large rocks up to the top of the rocks.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', 'Find out if 1690 House has another name.', NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (97, 'Cartographic Materials: Plans 1940', '00087', 'Not Specified', 'Plans of Bc 53 Wall sequence. The plans are in the map case for over-sized cartographic material. One of the plans by Reiter is a tracing of another drawing made by Walt Taylor in 1940. Plan includes room numbers and elevations. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '3 plans', NULL, 87, NULL, 'Vivian', 'Vivian says 2 on 1-3 scale with 3 highest Priority, but could be upgraded to 3.', 0, NULL, NULL); INSERT INTO object VALUES (969, 'Bc 53, Field Notes - 1940 (incl. site measurements), Roberts, F. H. H. Jr.', '1091561157853', 'Notes-Notebook', 'Field notebook. Only the first 20 pages have any information in them. Contains grid peg heights, plan view with trench locations, and a few rather general excavation descriptions by room. It looks like he''s put the name of the student next to the room they worked in.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, '1 notebook - about 20 pages of information', NULL, NULL, NULL, NULL, NULL, 1, '20040915', NULL); INSERT INTO object VALUES (971, 'Bc 53, Field Notes - 1940 - Anderson, Jack', '1091561719238', 'Notes-Notebook', 'Blue field notebook. Room 3. Roughly 15 pages documenting day by day activities. Includes some sketches, and some tabular data. Descriptions of interesting finds, strata. We''re pretty sure that some of the brown paper tabular data comes from these.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, 'roughly 15 pages in a notebook.', NULL, NULL, NULL, NULL, NULL, 1, '20040915', NULL); INSERT INTO object VALUES (972, 'Bc 53, Field Notes - 1940 - Atkins, Ruth', '1091561964644', 'Notes-Field Notes', 'Loose small sheets of field notes. Just general observations about excavation procedures and finds. Includes some drawings and measurements, and object provenience information. Room 11.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, '20040915', NULL); INSERT INTO object VALUES (974, 'Bc 53, Field Notes - 1940 Deacon, John', '1091562646443', 'Notes-Notebook', 'Kiva A mostly. Includes lots of drawings, dimensions, floor features, observations, and sherd counts. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, 'about 10 pages', NULL, NULL, NULL, NULL, NULL, 1, '20040915', NULL); INSERT INTO object VALUES (975, 'Bc 53, Field Notes - 1940 Greenwood, Walter', '1091562773627', 'Notes-Notebook', 'Field notebook. Some room dimensions, excavation procedures, artifact observations, pertains to Room 6. Mentions them installing a water drainage ditch. Roughly 20 pages. On the cover is written "Bureau of American Ethnology, Washington DC."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, 'roughly 20 pages', NULL, NULL, NULL, NULL, NULL, 1, '20040915', NULL); INSERT INTO object VALUES (977, 'Bc 53, Field Notes - 1940 Kyte, Dorothy', '1091563052636', 'Notes-Notebook', 'Field notebook. Roughly 20 pages. Daily log of activities. Worked in Room 3. Some small drawings (not great), and room dimensions.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, 'roughly 20 pages', NULL, NULL, NULL, NULL, NULL, 1, '20040915', NULL); INSERT INTO object VALUES (978, 'Bc 53, Field Notes - 1940 Leonard, Jane', '1091563192238', 'Notes-Lectures', 'Field notebook. Kiva B. Daily log of activities, some object drawings, room dimensions, floor feature descriptions. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, 'Roughly 10 pages', NULL, NULL, NULL, NULL, NULL, 1, '20040915', NULL); INSERT INTO object VALUES (979, 'Bc 53, Field Notes - 1940 Morgan, Dorothy', '1091563322717', 'Notes-Notebook', 'Room 6. Field notebook. Daily log of activities, room dimensions, descriptions of artifacts, some artifact provenience information, some discussion of burials, ceramic data by strata. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, 'roughly 20 pages', NULL, NULL, NULL, NULL, NULL, 1, '20040915', NULL); INSERT INTO object VALUES (980, 'Bc 53, Field Notes - 1940 Stern, Ted', '1091563457258', 'Notes-Notebook', 'Field notebook. Room 7. Daily log of activities, lots of wall dimensions, room dimensions, rough profile drawings, mention of human burials. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, 'roughly 30 pages', NULL, NULL, NULL, NULL, NULL, 1, '20040915', NULL); INSERT INTO object VALUES (981, 'Bc 53, Field Notes - 1940 Sunderland, E.', '1091563617782', 'Notes-Field Notes', '12 pages, loose. Room 4. Daily log of activities, some crude artifact drawings, sherd counts. Mentions a stone pipe. Mentions red and yellow paint in the room.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, '12 pages.', NULL, NULL, NULL, NULL, NULL, 1, '20040915', NULL); INSERT INTO object VALUES (982, 'Bc 53, Field Notes - 1940 Winfield, Armand', '1091563749610', 'Notes-Field Notes', 'Room 1. Separated by day. Very little verbal description, lots of drawings. Sherd counts, wall dimensions, includes a nice acetate (?) color profile. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, 'Roughly 40 pages', NULL, NULL, NULL, NULL, NULL, 1, '20040915', NULL); INSERT INTO object VALUES (983, 'Bc 53, Field Notes - 1940 Wise, O', '1091563917819', 'Notes-Field Notes', 'Room 8. Daily log of activities, room drawings, object and room dimensions, provenience information, drawings. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, 'about 15 pages', NULL, NULL, NULL, NULL, NULL, 1, '20040915', NULL); INSERT INTO object VALUES (984, 'Bc 53, Field Notes - 1940 Unidentified', '1091564055380', 'Notes-Field Notes', 'Very small pages, some spiral bound. Contains information on rooms 10 and 11 mostly. Mentions a number of burials below floors of rooms.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, '1 small spiral notebook plus a few loose pages', NULL, NULL, NULL, NULL, NULL, 1, '20040915', NULL); INSERT INTO object VALUES (690, 'Photo-Negs., Sites, Chaco Canyon, N.M., Other Localities', '1090347487698', 'Photograph-Negative', 'This folder is empty except for a small handwritten note that reads: "Nitrate negs taken to be copied onto Safety film. SG 5/2/88." We asked Susan (the archivist) if she knew where these negatives were, and she said that she doesn''t and that they were taken to be copied and never returned. See note 18. A subsequent email message from Rob Leopold (NAA) to Steve Plog indicates that 25 negatives supposedly from Shabik''eshchee Village were removed from this box (though it doesn''t specify which folder), as well as 6 from Bc 53 although the latter are said to be from the 1942 season. There were 6 negatives from 1690 House and 43 negatives from "other localities" also in this box. Since the first three folders in this box are labeled Shabik''eshchee, 1690 House, and "other locatities," the implication is that the 43 "other localities" photos were probably in this folder.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, NULL, 'Locate negatives.', NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (683, 'Photo-Negs. Chaco Canyon, N.M. Shabik''eshchee Village', '1090346921530', 'Photograph-Collection', 'Roberts negatives from 1940 season of excavation in Chaco. Although the NAA folder says "Shabik''eschee," the 1940 date on the cover of the album indicates they are almost certainly from Bc 53. And, folder 2a in this box is entitled "Bc 53 Site-Album,1940" and inside is a card indicating the album was last removed for some reason in 1976, suggesting to me (SEP) and Vyrtis Thomas (NAA) that the album may have been returned to the wrong folder. This is a bound collection of 34 negatives in a Kodak Negative Album. There are 100 total image sleeves in the album; about 6 more show evidence of having been used. The front of the album is inscribed "Frank H.H. Roberts Jr., 1940 Chaco Canyon, New Mexico." The album contains 34 negatives. Some are burial photos, at least one of which I (SEP - 9/15/2004)remember seeing yesterday in a similar (if not the same photo) print from Bc 53. Some of the shots have tape measures or scales that I don''t remember seeing in the print images I''ve reviewed so far. Some are general excavation shots as the excavations were occurring as they show several people working at the site and cars in the background. In negative #11 (and a few others), you can see in the background the UNM tent camp on the north side of the wash, near a great house that looks to be Kin Kletso. A note inserted into the album reads: "Several Nitrate negs. taken to be copied onto safety film SG 5/2/88." An email message from Rob Leopold (NAA) to Steve Plog indicates that 25 negatives supposedly from Shabik''eshchee Village were removed from this box (though it doesn''t specify which folder), as well as 6 from Bc 53 although the latter are said to be from the 1942 season. There were 6 negatives from 1690 House and 43 negatives from "other localities" also in this box. Since the first three folders in this box are labeled Shabik''eshchee, 1690 House, and "other locatities," the implication is that the 25 "Shabik''eshchee" photos were probably in this album.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, '34 negatives', 'should probably digitize all; some (4-8) are images that I saw copies of similar versions in one of the Box 23 folders, so some money could be saved by doing some comparisons. Also, some negatives are multiples of the same perspective, though it would be hard to determine from the negative alone which of them is a better image - sep 9/15/2004 ask Joan about location of UNM tent camp', NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (1035, NULL, '1095267345872', 'Other', 'The only item in this folder is a "Out" card that indicates it contained "Chaco Canyon-1940 photo album" that was removed by JG on 2/24/76. This album likely was misplaced when it was returned and was incorrectly placed in Box 18, folder 1a which is entitled "Shabik''eshchee Village" (CDI object no. 683) which now contains a negative album with the handwritten title "Frank H. H. Roberts Jr., 1940, Chaco Canyon, N.M." An email message from Rob Leopold (NAA) to Steve Plog indicates that 25 negatives supposedly from Shabik''eshchee Village were removed from this box (though it doesn''t specify which folder), as well as 6 from Bc 53 although the latter are said to be from the 1942 season. There were 6 negatives from 1690 House and 43 negatives from "other localities" also in this box. Since the first three folders in this box are labeled Shabik''eshchee, 1690 House, and "other locatities." Since there is no mention of Bc 53 in conjunction with the 1940 season and there is a separate folder in this box entitled (Bc 53 Site, 1942 season), it may be that there are no silver nitrate negatives from the album that are stored elsewhere.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (37, 'Correspondence, Roberts, Frank H.H. ', '00036', 'Correspondence', 'Letter from Judd to Roberts dated May 17, 1926. Includes remark about Wetherill collections at the Field Museum that say "marked Pueblo Bonito" are actually from small house sites. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '2 pages', NULL, NULL, NULL, 'Vivian', 'Vivian says 2 on 1-3 scale with 3 highest Priority.', 1, '20040915', NULL); INSERT INTO object VALUES (7, 'Notes on Burials at Pueblo Bonito', '00006', 'Tabular Data', 'Typewritten data with fields, room, number, sex, museum number and annotations. Includes rooms 320A, 326, 330, 329, 287, 290, 309, 306. The initials "T.D.S" are on the top of the page. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '2 pages', NULL, NULL, NULL, 'Vivian', 'Vivian says 2 on 1-3 scale with 3 highest Priority.', 1, '20040915', NULL); INSERT INTO object VALUES (8, 'Notes on Burials at Pueblo Bonito', '00007', 'Notes-Miscellaneous', 'Handwritten notes by Judd on burials extracted from Reilly, Pepper and Morehead. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '20 pages', NULL, NULL, NULL, 'Vivian', 'Vivian says 2 on 1-3 scale with 3 highest Priority.', 1, '20040915', NULL); INSERT INTO object VALUES (9, 'Notes on Burials at Pueblo Bonito', '00008', 'Manuscript-Typed', '"Brief Report on Skeletal from Pueblo Bonito and Nearby Ruins, New Mexico, Collected by Neil M. Judd, by Ales Hrdlicka." 4 pages with some brief tabular data--two mini tables. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '4 pages', NULL, NULL, NULL, 'Vivian', 'Vivian says 2 on 1-3 scale with 3 highest Priority.', 1, '20040915', NULL); INSERT INTO object VALUES (691, 'Photo-Negs. Sites Chaco Canyon, N.M. 1690 House', '1090347626768', 'Photograph-Negative', 'This folder contains only a note reading: "Nitrate negs taken to be copied onto safety film SG 5/2/88." An email message from Rob Leopold (NAA) to Steve Plog indicates that 6 negatives from 1690 House were removed from a folder (folder # not specified) in this box. In addition, the 1983 NAA Finding Aid lists 6 images in a folder with this title. The implication is that the six 1690 House negatives were probably in this folder. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, NULL, 'Locate negatives; find out if 1690 House has another name. Susan McElrath (NAA archivist) has no knowledge of where these negatives ended up, only that they were taken to be copied and never returned. See note 18', NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (692, 'Photo-Negs. Sites, Chaco Canyon, N.M., Bc 53 site, 1942 season.', '1090348011771', 'Photograph-Negative', 'This folder contains 2 negatives, both showing a segment of masonry. It also contains a handwritten note that reads: "Nitrate negs taken to be copied onto Safety film. SG 5/2/88." See additional information in "actions needed" field.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, '2 negatives.', 'digitize both negatives present Susan McElrath (NAA archivist) has no knowledge of where these might be, only that it appears that they were taken and never returned. See note 18. A aubsequent email message from Rob Leopold (NAA) to Steve Plog indicates that 6 negatives from Bc 53 from the 1942 season were nitrate and now stored in Ohio. They were probably from this folder, a conclusion that is also consistent with the 6 images listed in the 1983 NAA Finding Aid for Bc 53, 1941 season. The "1941" must be a typo since there is no folder at all in this box with material from a 1941 field season and the finding aid does not mention the folder with materials from the 1942 season.', NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (708, 'Photo-Negs. Artifacts Type-Pottery-Misc. ', '1090351382915', 'Photograph-Negative', 'One negative of what looks to be a pitcher, possibly reconstructed. The pitcher does not appear to be from the Southwest in my judgment (SEP). There is nothing else in this folder except a note reading "2 nitrate negs taken to be copied onto safety film. SG 5/4/88. Please see Note 18. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '1 negative. ', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (788, 'Photo prints Artifacts Type - Pottery Bowls', '1090422608824', 'Photograph-Print', 'This folder has roughly 50 prints of bowls. No notes are written on the prints. Some of the prints have bowls cut out of them as though they were taken and pasted into another document. (C. Heitman) I have compared these images to the Roberts BAE Bulletin 126 on the Whitewater District Eastern Arizona. These photographs are illustrations from that publication and therefore are not from Chaco. What remains mysterious is the artifact numbers on these pots are of a similar format to those seen elsewhere "30/###". These object numbers range from 298-337. We need to figure out what the prefix "30" means in these and other object designations.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, 'circa 50 prints', 'These object numbers range from 298-337. We need to figure out what the prefix "30" means in these and other object designations.', NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (15, 'Note Cards--Pueblo Bonito--Notes on Excavation', '00014', 'Notes-Notecards', 'Handwritten note cards from excavations at Pueblo Bonito, arranged by room. These cards include detailed information including room dimensions, excavation history, and National Geographic Society negative numbers. 3/4 of box relates to Pueblo Bonito. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, 'box of note cards', 'These are Judd? 8/3/04 C. Heitman: They have to be...at the very least many of them have notes in his hand - they may all be in his handwritting. See Note #21.', NULL, NULL, 'Vivian', 'Vivian says 2 on 1-3 scale with 3 highest Priority.', 1, '20040915', NULL); INSERT INTO object VALUES (16, 'Note Cards--Pueblo Bonito--Notes on Excavations', '00015', 'Notes-Notecards', '1/4 box of note cards on courts within Pueblo Bonito, extramural areas in and around Pueblo Bonito. "Talus House". ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1/4 of a box of note cards', NULL, NULL, NULL, 'Vivian', 'Vivian says 2 on 1-3 scale with 3 highest Priority.', 1, '20040915', NULL); INSERT INTO object VALUES (17, 'Pueblo Bonito Specimen Field Notes', '00016', 'Notes-Notecards', 'Object cards from Pueblo Bonito including museum number specimen description and some provenience information with dates and object numbers. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, NULL, NULL, NULL, NULL, 'Vivian', 'Vivian says 2 on 1-3 scale with 3 highest Priority.', 1, '20040915', NULL); INSERT INTO object VALUES (784, 'Photo-Prints, Sites, Chaco Canyon, N.M., Shabik''eshchee Village-General', '1090421825791', 'Photograph-Print', '1 small print, labeled on the back only with a small purple stamped "1". Shows a portion of a masonry wall with the bottom part of a door in it, with another masonry wall visible through the door. Probably at Shabik-eshchee because this photo occurred in the "Shabik''eshchee Village" folder. SEP 9/14/2004 - This is not Shabik''eshchee given it''s showing part of a masonry roomblock. Perhaps it''s a small pueblo (Turkey House or Mesa Verde House) that Roberts excavated that is near Shabik''? These are the same rooms shown in object no. 786 ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', 'digitize', NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (786, 'Photo-Prints, Sites, Chaco Canyon, N.M., Shabik''eshchee Village-General', '1090422248010', 'Photograph-Print', '1 small print, labeled on the back in handwritten pencil "Shabik''eshchee" and with a small stamped purple "1". Shows masonry rooms, one of the walls with a door in it (door leads to another room). SEP 9/14/2004 - This is not Shabik''eshchee given it''s showing part of a masonry roomblock. Perhaps it''s the small pueblo (Turkey House or Mesa Verde House) that Roberts excavated that is near Shabik''? Box 23 ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', 'digitize', NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (787, 'Photo-Prints, Sites, Chaco Canyon, N.M., Shabik''eshchee Village-General', '1090422428365', 'Photograph-Print', '1 small print, labeled on the back with a handwritten note in pencil that reads "[Copy Neg. #99-40668]" and with a small purple stamped "1". Shows a couple of rooms with a man in a hat in the foreground and a car in the background, with a mesa or plateau cliff in the distance. SEP 9/14/2004 - This print is the same size as object nos.7 84 and 786 and it''s thus likely that it was taken at the same site. Although one of the other photos is labeled "Shabik''eshchee", these were not taken at that site as they show masonry rooms. Perhaps it''s a small pueblo (Turkey House or Mesa Verde House) that Roberts excavated that is near Shabik''? The car visible in the background looks to be from from the same time period as the NGS/Smithsonian expedition and so also would be consistent with the 1926-1927 excavations. Box 23 ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', 'digitize', NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (797, 'Photo-Prints, Sites, Chaco Canyon, N.M., Shabik''eshchee Village-General ', '1090424143792', 'Photograph-Print', '1 small print, labeled on the back in ink with "Burial #3, House ''B''", in pencil with "Neg. Available", and a small purple stamp that reads "39". The photo shows an excavated skeleton described on p. 17 of the Shabik''eshchee report. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (799, 'Photo-Prints, Sites, Chaco Canyon, N.M., Shabik''eshchee Village-General ', '1090424625881', 'Photograph-Print', '1 small print, labeled on the back in ink with "Burial #1", in pencil with "Neg. Available", and a small purple stamped "26". Shows an excavated skeleton. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (800, 'Photo-Prints, Sites, Chaco Canyon, N.M., Shabik''eshchee Village-General ', '1090424849980', 'Photograph-Print', '1 print, labeled on the back in ink as "Cist 18", in pencil with "Neg. Available", and with purple ink stamp "39". Shows an apparently excavated slab-lined cist. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (801, 'Photo-Prints, Sites, Chaco Canyon, N.M., Shabik''eshchee Village-General ', '1090425120538', 'Photograph-Print', '1 small print showing the interior of an excavated kiva, with a few beams scattered on the floor. Labeled on the back in ink with "kiva", in pencil with "Neg. Available", and a purple stamped "39". ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (804, 'Photo-Prints, Sites, Chaco Canyon, N.M., Shabik''eshchee Village-General ', '1090425698714', 'Photograph-Print', '1 small print, labeled on the back in ink "-Slab-house, near proto-kiva, 9 miles E. Bonito, Season of 1926" and in pencil "Neg. Available". Shows one side of an excavated slab-lined house. SEP 9/14/2004 -- Proto-kiva house was excavated in 1926 and is on a mesa 215 NW of the Shabik''eshchee great kiva (see pp. 61-62 of Roberts'' report). Roberts found no cultural evidence between the two areas, but believed that the proto-kiva and other remains were occupied at about the same time as Shabik''eshchee', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', 'digitize', NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (805, 'Photo-Prints, Sites, Chaco Canyon, N.M., Shabik''eshchee Village-General ', '1090429425831', 'Photograph-Print', '1 print, labeled in ink on the back as "Proto-kiva, 9 miles east of Bonito. Season 1926." Photo taken from the inside of this "proto-kiva" during excavation. sep 9/14/04 -- Proto-kiva house was excavated in 1926 and is on a mesa 215 NW of the Shabik''eshchee great kiva (see pp. 61-62 of Roberts'' report). Roberts found no cultural evidence between the two areas, but believed that the proto-kiva and other remains were occupied at about the same time as Shabik''eshchee. Writing is in cursive, with black ink, similar to the photos of Turkey House in Box 23, folder 2f. Box 23 ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', 'digitize', NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (806, 'Photo-Prints, Sites, Chaco Canyon, N.M., Shabik''eshchee Village-General ', '1090429663099', 'Photograph-Print', '1 print, labeled on the back in ink as "Kiva" and stamped with the purple stamp "24". Shows this kiva during or after excavation, with beams on the floor and slabs lining the sides. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (823, 'Photo-Prints, Sites, Chaco Canyon, N.M., Shabik''eshchee Village-General', '1090432755610', 'Photograph-Print', '1 small print, labeled on the back in ink as "Doorway House ''D''", in pencil with "Neg. Available", and stamped in purple ink with "26". Shown during or after excavation. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (810, 'Photo-Prints, Sites, Chaco Canyon, N.M., Shabik''eshchee Village-General ', '1090430366838', 'Photograph-Print', 'sep 9/14/2004 -- 1 small print, labeled (in cursive) on the back in ink as "-Proto-kiva, 1926", in pencil (cursive) as "Neg. Available", and stamped in purple ink is "10". Shows proto-kiva during excavation, with a row of upright stone slabs in place in front of a ventilator shaft and behind a hearth. The row of slabs divides the entire room in a fashion somewhat similar to wing walls in pithouses. Proto-kiva house was excavated in 1926 and is on a mesa 215 NW of the Shabik''eshchee great kiva (see pp. 61-62 of Roberts'' report). Roberts found no cultural evidence between the two areas, but believed that the proto-kiva and other remains were occupied at about the same time as Shabik''eshchee. The cursive handwriting is similar to that on photos from Turkey House in Box 23, folder 23f and the label is placed in a similar manner.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (809, 'Photo-Prints, Sites, Chaco Canyon, N.M., Shabik''eshchee Village-General ', '1090430163296', 'Photograph-Print', 'sep 9/14/2004 -- 1 small print, labeled (cursive, black ink) on the back as "-Proto-Kiva, 9 miles E. of Bonito, Season of 1926" and in pencil (cursive) with "Neg. Available" and (printed) "[Shabik''eshchee Village]". Shows the same structure as in object no. 810, with the row of upright stone slabs in front of a ventilator shaft and 2 metates propped up inside the row of slabs. The upper body of an excavator is visible and it appears that he is standing in the excavated ventilator shaft. Proto-kiva house was excavated in 1926 and is on a mesa 215 NW of the Shabik''eshchee great kiva (see pp. 61-62 of Roberts'' report). Roberts found no cultural evidence between the two areas, but believed that the proto-kiva and other remains were occupied at about the same time as Shabik''eshchee. The handwriting on the caption is the same as on photos from Turkey House is Box 23, folder 2f and the description (9 miles E. of Bonito) also matches those captions. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', 'digitize', NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (812, 'Photo-Prints, Sites, Chaco Canyon, N.M., Shabik''eshchee Village-General ', '1090430632925', 'Photograph-Print', '1 small print, labeled (printed) on the back in ink as "Proto-Kiva House", in pencil with "Neg. Available", and stamped in purple ink with the number "39". Proto-kiva house was excavated in 1926 and is on a mesa 215 NW of the Shabik''eshchee great kiva (see pp. 61-62 of Roberts'' report). Roberts found no cultural evidence between the two areas, but believed that the proto-kiva and other remains were occupied at about the same time as Shabik''eshchee. This photo is labeled in a different fashion (cursive) in a manner similar to photos from Turkey House in Box 23, folder 2f', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', 'digitize. Ask Chip or Tom about this area and it''s connection to Shabik''', NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (813, 'Photo-Prints, Sites, Chaco Canyon, N.M., Shabik''eshchee Village-General ', '1090430826184', 'Photograph-Print', '1 small print, labeled on the back in ink as "House ''A''", in pencil with "Neg. Available", and in purple ink stamped with "39". During or after excavations. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (814, 'Photo-Prints, Sites, Chaco Canyon, N.M., Shabik''eshchee Village-General ', '1090431016109', 'Photograph-Print', '1 small print, labeled on the back in ink as "House ''L''", in pencil with "Neg. Available", and stamped in purple ink with "24". ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (817, 'Photo-Prints, Sites, Chaco Canyon, N.M., Shabik''eshchee Village-General ', '1090431807791', 'Photograph-Print', 'sep 9/14/2004 -- 1 small print, labeled on the back in ink as "Proto-Kiva House", in pencil with "Neg. Available", and stamped in purple ink with "39". Proto-kiva House is on the mesa 215 feet NW of the Shabik''eshchee great kiva and was excavated by Roberts in 1926. See the Shabik''eshchee report. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (818, 'Photo-Prints, Sites, Chaco Canyon, N.M., Shabik''eshchee Village-General', '1090432034702', 'Photograph-Print', 'sep 9/14/2004 -- 1 small print, labeled on the back in ink as "Proto-Kiva House", in pencil with "Neg. Available", and stamped in purple ink with "39". Taken from a different angle than Object 817. Proto-kiva House is on the mesa 215 feet NW of the Shabik''eshchee great kiva and was excavated by Roberts in 1926. See the Shabik''eshchee report. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (820, 'Photo-Prints, Sites, Chaco Canyon, N.M., Shabik''eshchee Village-General', '1090432171519', 'Photograph-Print', '1 small print, labeled on the back in ink as "Kiva", in pencil with "Neg. Available", and stamped in purple ink with "39". Beams on floor. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (821, 'Photo-Prints, Sites, Chaco Canyon, N.M., Shabik''eshchee Village-General', '1090432416752', 'Photograph-Print', '1 small print, labeled on the back in ink as "Excavating firepit near Burial #1", in pencil with "Neg. Available", and stamped with a purple "26". Probably from Shabik''eshchee.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (822, 'Photo-Prints, Sites, Chaco Canyon, N.M., Shabik''eshchee Village-General', '1090432580198', 'Photograph-Print', '1 small print, labeled on the back in ink with "House ''A''", in pencil with "Neg. Available", and stamped in purple with "26". Shown during excavation. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (826, 'Photo-Prints, Sites, Chaco Canyon, N.M., Shabik''eshchee Village-General', '1090433172192', 'Photograph-Print', '1 small print, labeled on the back in ink as "Ventilator House ''C''". Originally it was labeled "Ventilator House ''D''" but the "D" was crossed out and the C was written instead, in the same ink. The back of this photo is also labeled in pencil with "Neg. Available", and stamped in purple ink with "26". ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (837, 'Photo-Prints, Sites, Chaco Canyon, N.M., 1690 House', '1090434785875', 'Photograph-Print', '1 small print, labeled on the back in ink "1690 House, Chaco Canon", in pencil with "Neg. Available", and stamped in purple ink, "18". Photo shows the back of someone walking in the ruin, with a small bit of masonry wall to his left and some sort of a cairn to his right, with piles of masonry blocks all around. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', 'Find out if there is another name for 1690 House.', NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (893, 'Photo-Prints, Sites, Chaco Canyon, N.M., Bc 53 site, 1941 Season', '1090504887849', 'Photograph-Print', '3 photographs, each labeled on the back in typewriting: "Bc 53, Chaco Canyon, 1941 Smoothed stone specimens." and stamped on the back with "32" and "Camera Shop of New Mexico, Aug 25 1941, Albuquerque, New Mexico." Shows manos and metates (and other smoothed stone artifacts?) displayed on the ground. SEP 9/14/2004 - The photos are of the same group of objects, but from different perspectives. One photo has a good view of a stadia rod at the bottom from which a rough scale might be constructed. Putting the three photos together, you can see that they''ve arranged the objects to spell out NM on the top row and CC(Chaco Canyon) and FS (Field School) on the bottom. In between the stones are arrnaged in the shape of a projectile point that points to the site. Some of the ground stone groups are visible in object no. 902. Box 23 ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, '3 photos', 'sep 9/14/2004 -- digitize all three photos', NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (888, 'Photo-Prints, Sites, Chaco Canyon, N.M., Bc 53 site, 1941 Season', '1090503541267', 'Photograph-Print', '14 prints, labeled on the back in typewriting: "Bc 53, Chaco Canyon, 1941, Artifacts, no (1-14) of 14." Stamped with "33" or "35" and "Camera Shop of New Mexico, Aug 25, 1941, Albuquerque, New Mexico." Photos show a number of artifact types displayed: ceramic bowls, mugs, big pots, and jars; worked stone axes and other pieces, bone awls and other bone pieces, pieces of wood, corn, projectile points, and what looks like pieces of basketry or sandals. SEP 9/14/2004 - 6 of the photos of bone, basketry, and wood have readable labels with what appear to be catalog numbers. It thus might be able to tie some of the objects to particular rooms Box 23 ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, '14 photos', 'SEP 9/14/2004 - A few of these photos are poor, but the rest are worthy of digitizing. The six that have readable labels with the objects may be particularly valuable (see object description).', NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (884, 'Photo-Prints, Sites, Chaco Canyon, N.M., Bc 53 Site, 1941 Season', '1090441300770', 'Photograph-Print', '6 prints of an overhead view of Bc 53, as labeled on the back: "Bc 53, Chaco Canyon, 1941. Final photograph at end of excavations." Stamped on the back in ink, "34" and "Camera Shop of New Mexico: Aug 25, 1941, Albuquerque, New Mexico."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, '6 photos', 'SEP 9/14/04: There are two different and complementary perspectives in this group and we want copies of at least two images.', NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (890, 'Photo-Prints, Sites, Chaco Canyon, N.M., Bc-53 site, 1941 Season', '1090504587863', 'Photograph-Print', '4 photos, labeled on the back in typewriting "Bc53, Chaco Canyon, 1941." All stamped (in black) on the back with either "34" or "36" and all stamped (in purple) on the back with "Camera Shop of New Mexico, Aug 25, 1941, Albuquerque, New Mexico." One photo additionally labeled on the back in typewriting "View looks slightly south of east." One photo additionally labeled on the back in typewriting "(pretty, hey?)" The photos are all from a somewhat different perspective and thus are complementary. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, '4 photos', 'sep - 9/14/2004 - digitize', NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (895, 'Photo-Prints, Sites, Chaco Canyon, N.M., Bc 53 site, 1941 Season', '1090505062871', 'Photograph-Print', '1 photo, labeled on the back in typewriting "Bc 53, Chaco Canyon, 1941, View to the northeast, along trench lying southeast of kiva D. Shows test block area, and curved wall which protruded into it. Rooms 13 and 14 show at the upper left." Stamped on the back with "35" and "Camera Shop of New Mexico, Aug 25 1941, Albuquerque, New Mexico."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, '1 photo', 'sep 9/14/2004 - digitize', NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (897, 'Photo-Prints, Sites, Chaco Canyon, N.M., Bc 53 site, 1941 Season', '1090505229972', 'Photograph-Print', '1 print, labeled on the back in typewriting "Bc 53, Chaco Canyon, 1941 View looks due north, over refuse test block. Room 14 shows at the top; the curved wall at the bottom protruded into the test material removed." Stamped on the back with what looks like "A 32" and "Camera Shop of New Mexico, Aug 25, 1941, Albuquerque, New Mexico".', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, '1 photo', 'sep 9/14/2004 - digitize', NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (898, 'Photo-Prints, Sites, Chaco Canyon, N.M., Bc 53 site, 1941 Season', '1090505415059', 'Photograph-Print', '1 print, labeled on the back in typewriting "Bc 53, Chaco Canyon, 1941 View to the Northwest from a point due south of kiva A. This view shows, to the left of kiva A, the two unnumbered rooms which lie southeast of room 1." Stamped on the back with what looks like "A 32" and "Camera Shop of New Mexico, Aug 25, 1941, Albuquerque, New Mexico."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, '1 photo', 'sep 9/14/2004 - digitize', NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (899, 'Photo-Prints, Sites, Chaco Canyon, N.M., Bc 53 site, 1941 Season', '1090505572023', 'Photograph-Print', '1 print, labeled on the back in typewriting "Bc 53, Chaco Canyon, 1941 View looks southwest over the test block area and over the curved wall at the bottom of it. Room 14 (its southwest corner) appears at lower right." Stamped on the back with what looks like "A 32" and "Camera Shop of New Mexico, Aug 25, 1941, Albuquerque, New Mexico."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, '1 photo', 'sep 9/14/2004 - digitize', NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (900, 'Photo-Prints, Sites, Chaco Canyon, N.M., Bc 53 site, 1941 Season', '1090505741633', 'Photograph-Print', '1 print, labeled on the back in typewriting "Bc 53, Chaco Canyon, 1941 View looking south over kiva C in the foreground. Lower right hand corner dark blotch is corner of room 15." Stamped on the back with what looks like "A 32" and "Camera Shop of New Mexico Aug 25, 1941, Albuquerque, New Mexico."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, '1 photo', 'sep 9/14/2004 - digitize', NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (901, 'Photo-Prints, Sites, Chaco Canyon, N.M., Bc 53 site, 1941 Season', '1090505892649', 'Photograph-Print', '1 print, labeled on the back in typewriting "Bc 53, Chaco Canyon, 1941 View looking north over kiva D in the center foreground." Stamped on the back with what looks like "A 32" and "Camera Shop of New Mexico, Aug 25, 1941, Albuquerque, New Mexico".', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, '1 photo', 'sep 9/14/2004 - digitize', NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (902, 'Photo-Prints, Sites, Chaco Canyon, N.M., Bc 53 site, 1941 Season', '1090506016526', 'Photograph-Print', '1 print, labeled on the back in typewriting: "Bc 53, Chaco Canyon, 1941 This view looks northeast from the southern tip of the kiva D enclosure, or a little beyond. It shows the site of the test block, prior to its beginning." Stamped on the back with what looks like "A 32" and "Camera Shop of New Mexico, Aug 25, 1941, Albuquerque, New Mexico".', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, '1 photo', 'sep 9/14/2004 - digitize', NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (904, 'Photo-Prints, Sites, Chaco Canyon, N.M., Bc 53 site, 1941 Season', '1090506185393', 'Photograph-Print', '1 print, labeled on the back in typewriting "Bc 53, Chaco Canyon, 1941 View looking southwest over Room 15 in the foreground." Stamped on the back with what looks like "A 32" and "Camera Shop of New Mexico, Aug 25, 1941, Albuquerque, New Mexico".', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, '1 photo', 'sep 9/14/2004 - digitize', NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (905, 'Photo-Prints, Sites, Chaco Canyon, N.M., Bc 53 site, 1941 Season', '1090506327788', 'Photograph-Print', '1 print, labeled on the back in typewriting "Bc 53, Chaco Canyon, 1941 This photographic gem, by Blumenthal of course, was supposed to have showed (top center) the southern corner of room 10, and the opening which penetrates the southeast wall of this room." Stamped on the back with what looks like "A 35" and "Camera Shop of New Mexico, Aug 25, 1941, Albuquerque, New Mexico."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, '1 photo', 'sep 9/14/2004 - poor photo, but some of the detail might be brought out with some Photoshop manipulation - would go ahead and digitize, though not highest priority', NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (907, 'Photo-Prints, Sites, Chaco Canyon, N.M., Bc 53 site, 1941 Season', '1090506503204', 'Photograph-Print', '1 print, labeled on the back in typewriting, "Bc 53, Chaco Canyon, 1941 Burial 7, room 7." Stamped on the back with what looks like "A 36" and "Camera Shop of New Mexico, Aug 25, 1941, Albuquerque, New Mexico." Shows a skeleton with a ceramic vessel.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, '1 photo', 'sep 9/14/04 - digitize', NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (909, 'Photo-Prints, Sites, Chaco Canyon, N.M., Bc 53 site, 1941 Season', '1090506654704', 'Photograph-Print', '1 print, labeled on the back in typewriting "Bc 53, Chaco Canyon, 1941 Same old burial 1, room 7." Stamped on the back with what looks like "A 36" and "Camera Shop of New Mexico, Aug 25, 1941, Albuquerque, New Mexico."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, '1 photo', 'sep 9/14/2004 - digitize', NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (911, 'Photo-Prints, Sites, Chaco Canyon, N.M., Bc 53 site, 1941 Season', '1090506784518', 'Photograph-Print', '1 print, labeled on the back in typewriting "Bc 53, Chaco Canyon, 1941 Burial 1, room 7." Stamped with what looks like "A 36" and "Camera Shop of New Mexico, Aug 25 1941, Albuquerque, New Mexico." Shows a skeleton with a bowl and a mug.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, '1 photo', 'sep 9/14/04 - digitize', NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (912, 'Photo-Prints, Sites, Chaco Canyon, N.M., Bc 53 site, 1941 Season', '1090506927918', 'Photograph-Print', '1 print, labeled on the back in typewriting "Bc 53, Chaco Canyon, 1941 Burial 1, room 7. You will remember the three lobed bonr jar." Stamped on the back with what looks like "A 36" and "Camera Shop of New Mexico, Aug 25 1941, Albuquerque, New Mexico."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, '1 photo', 'sep 9/14/04 - digitize', NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (914, 'N.M. Judd Collection Pueblo Bonito', '1090506861439', 'Plan-Archaeological', '1 plan entitled "Pueblo Bonito 1924" scale is 1"-20'' This plan shows the refuse mounds in front of Pueblo Bonito and their relation to the front wall. It also shows the location of 2 trenches through the mounds with annotation. This map also contains a small profile drawing of a trench between room 175 and the stairway on the north side of the eastern refuse mound. This profile is described as "Section A-B stairway in eastern refuse mound to room #175, scale 1 to 10." The plan view acutally shows 2 staircases on the north side of the eastern refuse mound. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 plan with an additional profile drawing', 'sep 9/14/2004 - digitize', NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (915, 'Photo-Prints, Sites, Chaco Canyon, N.M., Bc 53 site, 1941 Season', '1090507275438', 'Photograph-Print', '1 print, labeled on the back in typewriting "Bc 53, Chaco Canyon, 1941 View of the scattered burials in room 10, as seen from the northeast end. (See burial reports 2,3,4.)" Stamped on the back with what looks like "A 36" and "Camera Shop of New Mexico, Aug 25 1941, Albuquerque, New Mexico."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, '1 photo', 'sep 9/14/04 - digitize', NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (917, 'Photo-Prints, Sites, Chaco Canyon, N.M., Bc 53 site, 1941 Season', '1090507414182', 'Photograph-Print', '1 print, labeled on the back in typewriting "Bc 53, Chaco Canyon, 1941 This little ditty shows the opening through the southeast wall of room 10, which penetrates said southeast wall in the eastern corner of the room." Stamped on the back with what looks like "A 35" and "Camera Shop of New Mexico, Aug 25 1941, Albuquerque, New Mexico."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, '1 photo', 'sep 9/14/04 - digitize', NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (919, 'Photo-Prints, Sites, Chaco Canyon, N.M., Bc 53 site, 1941 Season', '1090507571299', 'Photograph-Print', '1 print, labeled on the back in typewriting "Bc 53, 1941, Chaco Canyon View looking north from a point south of kiva D. Kiva D shows on the left center." Stamped on the back with what looks like "A 35" and "Camera Shop of New Mexico, Aug 25, 1941, Albuquerque, New Mexico."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, '1 photo', 'sep 9/14/04 - digitize', NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (920, 'Photo-Prints, Sites, Chaco Canyon, N.M., Bc 53 site, 1941 Season', '1090507746487', 'Photograph-Print', '1 print, labeled on the back in typewriting "Bc 53, Chaco Canyon, 1941 View from a point just northeast of room 7, looking to the southwest, along the trench northeast of rooms 16, 17, 18." Stamped on the back with what looks like "A 32" and "Camera Shop of New Mexico, Aug 25 1941, Albuquerque, New Mexico."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, '1 photo', 'sep 9/14/04 - digitize', NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (1036, 'Photo-Print, Sites, Chaco Canyon, N.M., Shabik''eshchee Village-General (2c)', '1095428085509', 'Photograph-Print', 'sep 9/14/2004 - This photo is a different size (ca. 4x4 in) from all others in this folder and on the back has the purple stamp of the Camera Shop of New Mexico and the date of Oct. 2, 1940. Left of the purple stamp is the number 208 stamped in black ink. The photo shows a group of five standing to the left of the back of a stake truck. Sagebrush appears in the foreground and sagebrush and a cliff face are visible in the background. The arms of two people are visible standing in the truck. No cultural features are visible.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, NULL, 'digitize only if we might be interested in identifying the people. The individual second from right may be Roberts.', NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (1037, 'Photo-Prints, Sites, Chaco Canyon, N.M., Bc 53 Site, 1941 Seasons', '1095428503279', 'Photograph-Print', 'sep 9/14/2004 - Two (aerial?) photos taken well above Bc 53 showing the entire site at the end of excavations. Photos are from different viewpoints and thus complementary. In one Chaco Wash is visible in the background, thus providing a nice perspective on location. One photos has the caption: "Final photograph (just another) of the operatons." The second photo simply has the site number and the year of excavation. These are part of the group that are stamped (in purple) on the back "Camera Shop of New Mexico." Both have the number 34 stamped (in black) in one of the corners on the back. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, '2 photos', 'sep 9/14/2004 - digitize both', NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (1038, 'Photo-Prints, Sites, Chaco Canyon, N.M., Bc 53 Site, 1941 Seasons', '1095428670886', 'Photograph-Print', 'sep 9/14/2004 - One photo, caption reads: "Bc 53, Chaco Canyon, 1941, Portrait of nothing, by Blumenthal." Part of the group of photos with the Camera Shop of New Mexico stamp on the back, dated Aug 25, 1941, with the number "35" stamped in the lower-right corner. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, '1 photo', 'Should not be digitized', NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (852, 'Photo-Prints, Sites, Chaco Canyon, N.M., Other sites in the area', '1090438304205', 'Photograph-Print', '1 small print, labeled on the back in ink "-Proto-kiva, 9 miles E. of Bonito. Season 1926." in pencil, "Neg. Available", and stamped in purple ink, "10". Shows side of proto-kiva. sep 9/17/04 - Proto-kiva house was excavated in 1926 and is on a mesa 215 NW of the Shabik''eshchee great kiva (see pp. 61-62 of Roberts'' report). Roberts found no cultural evidence between the two areas, but believed that the proto-kiva and other remains were occupied at about the same time as Shabik''eshchee.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', 'According to Mathien (in press) Table 1.3, there are two sites listed as 9 miles east of Pueblo Bonito. One is Shabik''eshchee Village and the other is described as "Pit structure 9 miles east of Pueblo Bonito, in gully in opposite bank from Arroyo House or Half House beneath Turkey House."', NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (913, 'Photo-Prints, Sites, Chaco Canyon, N.M., Bc 53 site, 1941 Season', '1090507092026', 'Photograph-Print', '1 print, labeled on the back in typewriting "Bc 53, Chaco Canyon, 1941 Burial 12, recorded by Buggeln. Contrary to her records this burial was in the southwest corner of Room 8, with head to the southeast. The wall at the top of the picture is that between rooms 7 and 8. That at the right is the northeast wall of room 8." Stamped on the back is what looks like "A 36" and "Camera Shop of New Mexico, Aug 25 1941, Albuquerque, New Mexico."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 1, NULL, '1 photo', 'sep 9/14/04 - digitize', NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (789, 'Photo-Prints, Sites, Chaco Canyon, N.M., Shabik''eshchee Village-General', '1090422671849', 'Photograph-Print', '1 print, labeled on the back with handwritten notes that read "House F" in ink and "[Copy Neg. #96-10784]" in pencil. Shows a slab-lined pithouse structure, excavated. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (802, 'Photo-Prints, Sites, Chaco Canyon, N.M., Shabik''eshchee Village-General ', '1090425414128', 'Photograph-Print', '1 small print, labeled on the back in ink as "House ''L''", in pencil with "Neg. Available", and stamped in purple ink, "24". Shows House L (partially excavated?) with some sort of a stone slab in front of a doorway or other opening. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (807, 'Photo-Prints, Sites, Chaco Canyon, N.M., Shabik''eshchee Village-General ', '1090429882873', 'Photograph-Print', '1 small print, not labeled except for a small purple stamp on the back, "1". Shows excavation of some structure (shovel in foreground) with rounded masonry wall with a doorway, window, or niche of some sort, with a stone slab propped to the right side. Probably from Shabik''eshchee because this photo was found among many others from that site and within the folder labeled "Shabik''eshchee Village-General", but my (SEP) guess is that it''s not Shabik''eshchee (at least not the main portion of Shabik''eshchee) given the nature of the structure and masonry, plus the fact that there are photos from Turkey House or Mesa Verde House and from the area 215 NW of the Shabik''eshchee great kiva in this folder, too. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (80, 'Archaeological Sites Chaco Canyon: Cartographic Materials Profiles', '00076', 'Profile', 'This object entry is obsolete - see note below.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '5 profiles', 'SEP 9/17/2004 - CHECK NEXT VISIT There is a note in the folder from Box 1 indicating that there are 5 profiles from Chaco Canyon located in map case 4851, one of which was done by Judd in 1924. We have looked at these in the Judd oversized material. This "out" card could, possibly, be referring to the profiles contained in Judd Box 15 (Cartographic material). There''s no way to know. Regardless, we have looked at all of these materials and entered in pertinent objects into the inventory database. ', 76, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', 0, NULL, NULL); INSERT INTO object VALUES (125, 'Summary of Periods indicated in pottery from channel sections', '00109', 'Manuscript-Typed', 'Self explanatory. Typewritten. Doesn''t seem terribly interesting relative to the many other ceramic summaries we''ve looked at thus far. Given a second look, I don''t think that these ceramic summaries are from Bonito (they mention a site "one and one half miles east of Wejegi", a site "on the south bank of the Arroyo"), but without more information we can''t tell exactly which sites these are from.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, 'Roughly 20 half-size pages', 'CHECK NEXT VISIT Is this is Bonito? See CDI description above: I don''t think these are from Pueblo Bonito, but I don''t think we can tell exactly which sites they are from.', 109, NULL, 'Vivian', 'Vivian says 3 on 1-3 scale with 3 highest Priority.', 0, NULL, NULL); INSERT INTO object VALUES (236, 'Chaco Canyon Miscellany: Scenic Views', '1081970030497', 'Photograph-Print', 'Unmounted Photo, in plastic. Back of photo reads "Pit-house floor 13 1/2 ft. below surface. About 9 mi. E. of PB. NMJ 1926. 38987-A". ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 88, NULL, '1 photo', 'CHECK NEXT TRIP Shabik''eshchee? This record can be deleted. This photo (which is all bent) is a duplicate of one contained in object 189. 8/23/04 C.Heitman: If this object does in fact duplicate object #189, then this can''t be Shabik''eshchee. It would have to be Talus House behind Pueblo Bonito. Figuring this out will require taking another look on our next trip to the NAA.', NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', 0, NULL, NULL); INSERT INTO object VALUES (808, 'FHH Roberts Jr. Lantern Slides 4851', '1090430188049', 'Photograph-Slide', '5 lantern slides of a plan drawing that may be Bc 53. These slides are located in what we''re calling box 28, in the 7th box of lantern slides. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '5 lantern slides', 'CHECK NEXT VISIT find out if these are BC 53 or not. 8/4/04 C. Heitman: Still don''t know if this is Bc 53 - we''ve run out of time during this visit to the archives.', NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (207, 'Chaco Canyon Miscellany: Scenic Views', '1081964540144', 'Photograph-Print', '3 photos mounted on one card. "South half of prototype kiva in pre-Pueblo ruin group on S. cliff of Chaco Canyon, 9 mi. E. of Pueblo Bonito. #39588-A". "Pre-Pueblo dwellings on S. wall of Chaco Canyon, 9 mi. E. of Pueblo Bonito. #39578-A". "Pit-house or prototype of kiva in pre-Pueblo house group, S. wall of Chaco Canyon, 9 mi. E. of Pueblo Bonito. #39597-A". Photos by N. M. Judd, 1926. ', 0, NULL, 0, NULL, 0, NULL, 1, 'NGS', 88, NULL, '3 photos on one card', 'sep 9/17/2004 - Proto-kiva House is on the mesa 215 feet NW of the Shabik''eshchee great kiva and was excavated by Roberts in 1926. See the Shabik''eshchee report. 8/3/04 - C. Heitman.Unlike object 189, these images are of a ruin on the open landscape - but these are also described as "ruin 9 miles east of bonito." ', NULL, NULL, 'Vivian', 'Vivian says 1 on 1-3 scale with 3 highest Priority.', 0, NULL, NULL); INSERT INTO object VALUES (996, 'Aztec Ruin, Notes, Misc.', '1093460502614', 'Manuscript-Handwriiten', 'This is a group of materials, both handwritten and typed. It appears to be a report on the kivas of Aztec. It includes several maps of Aztec and the surrounding area. Part of the report is reapeated in AZRU 212. Some of the handwritten notes are illegible and have things crossed out etc.', 0, NULL, 1, 'This object was scanned from Microfiche loaned by the University of Colorado Museum in November 2002. See linked accession for more information.', 0, NULL, 0, NULL, 139, NULL, 'circa 75 pages', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (995, 'Aztec Ruin, Notes, Misc.', '1093455474195', 'Manuscript-Typed', 'Very short report on the excavation of a room in Aztec. The report is titled "Report on Archaeological Investigations for the season of 1925 in the Aztec Ruin National Monument, New Mexico, Under Permit of March 10, 1925, Issued to the American Museum of Natural History." These excavations were confined to Room 189. The report is just over one page long and contains a specimen list of finds from the excavation that is over 2 pages in length. ', 0, NULL, 1, 'Scanned in 11/2002 along with other materials from storage units AZRU 211 and 212. See linked accession information for details.', 0, NULL, 0, NULL, 139, NULL, '5 pages', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (994, 'Aztec Ruin, Notes, Misc.', '1093453978002', 'Correspondence', 'Two letters, the first is from Clark Wissler to Earl Morris on February 20, 1931. The second is Morris''s response to Wissler. The letters concern specimens sent from Aztec to AMNH. It appears that Wissler is soliciting Morris for more of the materials from Aztec and questioning whether or not the specimen list of materials remaining at Aztec--compiled by AMNH--is accurate or not. The specimen list to which they refer is entered as object 993. ', 0, NULL, 1, 'Material scanned in 11/2002. See linked accession for more information. ', 0, NULL, 0, NULL, 139, NULL, '2 letters, 4 pages total', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (992, 'Aztec Ruin, Notes, Misc', '1093450452783', 'Manuscript-Typed', 'Aztec Reconnaissance Report. This report is 41 pages in length and includes photos of in situ burials with goods, lists of personnel and wages, photos of architecture and masonry and a map of the ruins and surrounding area. ', 0, NULL, 1, 'This report was scanned along with the other materials from storage units AZRU 211 and 212 in 11/2002. See the linked accessions for more information. ', 0, NULL, 0, NULL, 139, NULL, '41 pages', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (889, 'BAE - Fewkes, Jesse Walter Photographs, New Mexico - Aztec Ruin', '1090504267944', 'Photograph-Print', 'This folder contains four photos of Aztec Ruin: 3 general shots and one inside a (reconstructed?) kiva. Caption 1: "Az. from North". Caption 2: "Aztec 1". Caption 3: "Aztec, New Mexico. Ex. made by Mr. Morris". Caption 4: "Az. 5". This is the image of a kiva interior with a cribbed roof. This is not the Great Kiva reconstruction at Aztec.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 139, NULL, '4 photos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO object VALUES (993, 'Aztec Ruin, Notes, Misc.', '1093452882036', 'List-Specimen', '37 page specimen list. Heading at the top reads: "Aztec Main Collection. Specimens in the following list were not forwarded to the Museum and are presumably in storage at the Aztec Ruins." A handwritten note at the end of the list reads "Our copy of the field catalogue ends here. This is obviously not the end." ', 0, NULL, 1, 'Scanned in 11/2002 with other microfiche sent from the University of Colorado Museum. See attached accession info.', 0, NULL, 0, NULL, 139, NULL, '37 pages', NULL, NULL, NULL, NULL, NULL, 0, NULL, 'Hand written note at the top of the first page reads that a check-mark indicates the specimen was held for exhibition at the Aztec Ruin. '); INSERT INTO object VALUES (1039, 'H 1487-H 1488', '1097174336117', 'Photograph-Print', '2 photos mounted on cardboard. Top caption reads "New Mexico (Pueblo Bonito)" Caption 1: "Ceiling in south room of Pueblo Bonito" Caption 2: "Aboriginal ceiling in Stone house made over by Richard Wetherill" "Photos from School of American Research, Dr. Kidder 1924"', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '2 photos', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (1040, 'H1495, H1496, H1497', '1097174567467', 'Photograph-Print', '3 photos of Azec Ruins mounted on a card. Caption 1: "Pueblo ruin at Aztec" (H1495) Caption 2: "Another view of Pueblo at Aztec (H1496) Caption 3: "Old Pueblo at Aztec" (H1497) Note: These images are in bad shape. The glue is bleeding thorugh into the image. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (1041, 'H1498, H1499', '1097175185615', 'Photograph-Print', '2 photos of Aztec Ruin mounted on a card. Caption 1: "prehistoric ruins - Aztec" (1498) Caption 2: "pueblo ruin at Aztec" (1499) Note: These prints are in bad shape. The glue is bleeding through the image. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '2 photos', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (1042, 'H1466-H1471', '1097175715066', 'Photograph-Print', '6 photos from Chaco Canyon mounted on a card. Caption 1: "Wetherill Messa looking SW 23529" Could also be 2359? (H1466) Caption 2: "Wetherill Mesa from Adjoining Mesa looking NE 2360" (H1467) Caption 3: "Men work on mound one. 2364" (H1468) Caption 4: "N. Mexico Pueblo Bonito Navaho sand painting of sun and moon - 2372" (H1469) Caption 5: "Camp from top of Mesa Wetherill. 2363" (H1470) Caption 6: "Grave 4. Mound 2. 23636" Could also be 2366? (H1471)', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '6 photos', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (1043, '"The Chaco Canyon Project: The Tozzer-Farabee Expedition, 1901"', '1097177190835', 'Manuscript-Typed', 'Student paper written by Anthony Andrews, December 1, 1970. Paper was written or Dr. Steven Williams as an independent project while the student was studying at Harvard Universiy. This paper includes appendices with site drawings of the sites worked on during the time Farabee and Tozzer were in Chaco. It also includes the transcription and photocopies of original fieldnotes, images of objects from this expedition in the collection at Harvard, material distribution analyses, artifact inventories for each site, and prints from their glass negatives. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, 'roughly 150 pages', NULL, NULL, NULL, NULL, NULL, 1, '20041007', 'This report is a tremendous resource.'); INSERT INTO object VALUES (1044, 'Exchange Intentory and correspondence 1939-1940; Cross-reference form', '1097180775983', 'Correspondence', 'A series of correspondence between the Peabody Museum and Frank Hibben at the University of New Mexico regarding a swap of Chaco Material for material from Switzerland. Included in this series of correspondence is a packing list of the 14 individual pots (from Chaco) sent to the Peabody. Most of these are from Bc 50 and 51. There is also one pot from A 10/101, and one pot from A 10/104. There is a letter in this file written to Frank Hibben asking him what sites those numbers corresponded to. Unfortunately there is no corresponding reply from Hibben regarding that question in this file. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, 'roughly 20 pages', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (1045, 'Aztec Ruin Notes, etc.', '1097243910487', 'Map', 'National Park Service map of Aztec Ruin from 1932. Shows the whole park as the boudaries stood at this time. ', 0, NULL, 1, 'scanned from microfiche in five parts.', 0, NULL, 0, NULL, NULL, NULL, 'five pages', NULL, NULL, NULL, NULL, NULL, 0, NULL, 'Object comes in 5 pieces, one page is the whole map, and the four following pages are four sections of the map blown up to a larger size.'); INSERT INTO object VALUES (1046, 'Aztec Ruin Notes, et.', '1097244667287', 'Map', '1934 Map of Aztec Ruin showing mainly the West Ruin. At least 2 copies are in the notebook, each one a different size.', 0, NULL, 1, 'Scanned in 10 pages at varying sizes.', 0, NULL, 0, NULL, NULL, NULL, '10 pages', NULL, NULL, NULL, NULL, NULL, 0, NULL, 'This map was done as part of the 1934 Public Works Program. Jessie L Nusbaum is listed as the "Consulting Archaeologist"'); INSERT INTO object VALUES (1047, 'H1355-H1360', '1097257615150', 'Photograph-Print', '6 prints mounted on a card. Card is titled "Chaco Canon." Caption 1: "View short way from our camp" (H1355) Caption 2: "A wall with very heavy timbers up against the cliff so as to prevent it falling on pueblo" (H1356) This is a picture of threatening rock Captin 3: "Puebl Bonito from top of mesa looking southwest 1200 rooms in all, in some places 5 stories high" (H1357) This image must be from the early 1900s before the surrounding rubble was removed from the east side of Puebl Bonito. Caption 4: "Pueblo Bonito showing excavation. Stables and Wetherill''s house in background" (H1358) Caption 5: "Looking toward mesa on north side" (H1359) This could be a photo of Pueblo Bonito. It''s difficult to tell. Photo 6 - no caption. (H1360) Bottom of page: "Gift of Dr. A. M. Tozzer 1921"', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '6 photos', NULL, NULL, NULL, NULL, NULL, 0, NULL, 'Note - all of these image are printed in a blue scale. I''m not sure if that''s how the prints weathered through time or if that''s how they originally looked.'); INSERT INTO object VALUES (1048, 'H1361-1362', '1097258435736', 'Photograph-Print', 'Two prints of "Chetro Kettle" mounted on a card- image numbers H1361 and H1362. Base of card caption : "Gift of A.M. Tozzer - 1916"', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '2 photos', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (1049, 'H1365-H1367', '1097258646091', 'Photograph-Print', '4 photos mounted on a card. Only three of these are from Chaco Canyon. Caption 1: "Ladder from a very old unused room at Taos" (H1365) Caption 2: " A section of wall of Pueblo Alto" (H1366) Caption 3: "The older ruin of Pueblo Alto" (H1366.1) Caption 4: "Pueblo Alto" (H1367) "Gift of A. M. Tozzer 1916"', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '4 photos', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (1050, 'H1370.1-1374', '1097259660262', 'Photograph-Print', '6 photos mounted on a card - card entitled "Chaco Canon." Only 2 photos have captions - and really only one is of possible research use: Photo number H1373.1 Caption reads: "Small cliff house built under the overhanging cliff- very rare in this vicinity." "Dr. A.M. Tozzer 1921" ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (1051, 'H1381-1383', '1097260834756', 'Photograph-Print', '3 photos mounted on a card. Caption 1: "Chaco County showing old walls of Pueblo Bonito - modern dwelling and corral in foreground." (H1381) Caption 2: "Ruins of circular buildingin Chaco Canon" (H1382) Not sure what structure this is - it is a giant hole in the ground. Caption 3: "Stone steps back of Pueblo Chettro Kettle - Chaco Canon." (H1383)', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (1052, 'H1384-H1388', '1097261099122', 'Photograph-Print', '5 photos mounted on a cardd. Only three of these are possibly relevant for research purposes. Photo number H1384 Photo number H1385 Photo number H1386. This image has an attribution written in the lower right hand corner: "Pueblo Bonito Lummis 1901" All three of these images are of Pueblo Bonito - and they appear to be from quite early - none of the rubble outside the exterior walls has been removed yet. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (1053, 'H1389-H1392', '1097262159835', 'Photograph-Print', '4 photos mounted on a card. All images are of Pueblo Bonito - and appear to be fairly early - prior to rubble removal from outside the exterior walls. There are no captions. The card is labled "Gift of A. M. Tozzer - 1916."', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '4 photos', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (1054, 'H1396-1398', '1097262324282', 'Photograph-Print', '3 photos mounted on a card. All prints are in a blue scale with handwritten captions attributing them to "Lumis 1901." One photo shows a general showt from the east. One depicts wall rubble and a close-up view of a tall standing wall,, the third shows a road or footpath?', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (1055, 'H1399-H1404', '1097262833377', 'Photograph-Print', '6 photos mounted on a card labeled "Pueblo Bonito" and "Gift of A. M. Tozzer - 1916" These photos do not have captions. As many as 5 seem to be from Pueblo Bonito. One is of the smal two room (?) masonry pueblo at the base of the cliff. This appears to be the same photo as object number 1050.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '6 photos', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (1056, 'H1393-H1395', '1097263071271', 'Photograph-Print', '3 photos mounted on a card. All images are printed in a blue scale and have a handwritten capion stating "Pueblo Bonito" and "Lummis." Two images are also dated 1901. None of the images have captions. One shows tehe back wall of Pueblo Bonito in 1901. Another shows a tall segment of standing wall with doorways. The third shows a more McElmo style masonry wall abutting an earlier (?) masonry style. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (1057, 'H1539-H1541', '1097266795225', 'Photograph-Print', 'Three photos mounted on a card. The card is entitled "Pueblos." Caption 1: "Section of ruins of Penasco Blanco." (H1539) Caption 2: "A view down the canon from top of mesa showing line of arroyo (H1540) Various aspects of the third photo are labled around the perimeter of the photo (H1541). The following captions ring the photo going clockwise: "cut to Thoreau" "the arroyo" "stables" "store" "The Wetherills House" "About 1/4 of the ruins of Pueblo Bonito" "The arroyo" "A ruin of this Mesa which cannot be seen" The card bears the caption "Gift of A. M. Tozzer - 1916" at the bottom.', 0, NULL, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, '3 photos', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL); INSERT INTO object VALUES (1058, 'Field Notebook from the E. H. Morris Collection', '1097685422446', 'Field Forms', 'Copies of hand-written field notes taken by E. H. Morris during his excavations at Aztec Ruin. From the rooms and kivas excavated it appears the notes are from the year 1917 at least, also possibly 1922 since notes on the Annex rooms are present. ', 0, NULL, 0, NULL, 0, NULL, 0, NULL, 139, NULL, '60 pages', 'Needs to be scanned.', NULL, NULL, NULL, NULL, 0, NULL, 'Notes are not copeous.'); -- -- Data for TOC entry 84 (OID 561296) -- Name: collection_survey_log; Type: TABLE DATA; Schema: public; Owner: rwb3y -- INSERT INTO collection_survey_log VALUES (1, '0001', 'Carrie Heitman', 'Judd papers primarily. All boxes listed with this visit were searched in their entirety with the exception of Box 5, which was stopped after the folder "Scofield, Carl S." Correspondence.', NULL, NULL, 13, 20040302, 20040303, NULL); INSERT INTO collection_survey_log VALUES (2, '0002', 'Phil Trella', 'Judd papers primarily. All boxes listed with this visit were searched in their entirety with the exception of Box 5, which was stopped after the folder "Scofield, Carl S." Correspondence. ', 'Carrie and I worked together to go through as much of the Judd material as possible, trying to obtain basic information on and target objects that we would like to come back and focus on later. ', NULL, 13, 20040302, 20040303, NULL); INSERT INTO collection_survey_log VALUES (5, '00004', 'Phil Trella', 'Judd and Roberts Materials.', 'Finished with Judd Materials, completed looking through Roberts boxes 1, 2, 8, 9, 11. Carrie started looking through Box 12. Next time, should finish box 12, and go through boxes 13, 15 and 16', 'NAA office', 13, 20040316, 20040317, 4); INSERT INTO collection_survey_log VALUES (4, '3', 'Carrie Heitman', 'Judd Papers Boxes 5, 11-15. Roberts Papers Boxes 1 and 12. As with the previous visit, all boxes were reviewed in their entirety except for Roberts Box 12. I need to begin with the "Stone Age" folder next time. ', NULL, NULL, 13, 20040316, 20040317, 3); INSERT INTO collection_survey_log VALUES (7, '1081865744986', 'Phil Trella', 'Roberts collection, Box 13. Roberts collection, Box 16. Roberts 1 of 13 MS 4851 (oversized cartographic) Judd Box 22 (photos) Judd Box 25 (photos).', 'Finishing Roberts collection. then looked at Judd and Roberts oversized cartographic material. Finally, worked with photos from Judd collection, box 22 and 25. Next time start with Box 25 Pueblo Bonito excavations. Left a card in box to mark place. ', NULL, 13, 20040413, 20040414, NULL); INSERT INTO collection_survey_log VALUES (6, '1081864523032', 'Carrie Heitman', 'Roberts collection, Boxes 12, 15 and 16. Roberts Oversized material from the map case. Went back to Judd box 15 - oversized cartographic material. Started with Judd photographs.', 'Finished box 12, went through box 15. Phil and I went through box 16 together. Roberts oversized material was not fully included in the finding aid. Finished Box 24 of Judd photos. Need to pick up with box 26? next time...', NULL, 13, 20040414, 20040415, NULL); INSERT INTO collection_survey_log VALUES (8, '1089725683637', 'Phil Trella', 'Judd photos Starting by continuing work in Box 25. Completed all of box 26. Completed all of box 28. More than half-way finished with Box 33. start next time with folder labeled "Cosmos Mindeleff photos with annotations by Judd"', 'Working with Judd Photos. Starting by continuing work in Box 25. Completed all of box 26. Completed all of box 28. start with photo labeled NMex 143', NULL, 13, 20040713, 20040715, NULL); INSERT INTO collection_survey_log VALUES (9, '1089725762398', 'Carrie Heitman', 'Judd photographs- Boxes 19, 20, 27, 29 and 36', 'Went through Judd photograph boxes 19, 27, 20, 29 and 36. Did not finish box 36. Need to pick up with the PB Rooms 54-75 folder next time.', NULL, 13, 20040713, 20040715, NULL); INSERT INTO collection_survey_log VALUES (11, '1090331005385', 'Phil Trella', 'Judd and Roberts Collections. Judd Box 33. Roberts boxes 18, 21, 26. Judd Box 7. Roberts box 29 (number assigned by us, Box 31 (assigned by us). Judd Box 34. Roberts box 23. ', 'Started with Judd Box 33. Emily and I finished Judd box 33, Roberts boxes 18 and 21. Then I completed Judd box 7. Wednesday, finished box 26, box 31, and Judd Box 34. worked on Roberts box 23 with Emily. Thursday worked on oversize materials ', NULL, 13, 20040720, 20040722, NULL); INSERT INTO collection_survey_log VALUES (12, '1090331109675', 'Phil Trella', 'Judd and Roberts Collections', 'Worked with Phil, finished Judd Box 33:did folder of Mindeleff photos annotated by Judd & Bonito restoration models.Finished Roberts box 21 & box 23 (all).Flagged Phil''s list of objects for photocopying, entered Judd oversized objects.', NULL, 13, 7202004, 7222004, NULL); INSERT INTO collection_survey_log VALUES (15, '1091544335636', 'Emily Cubbon', 'Judd and Roberts Collections', 'Worked with Carrie to tie up loose ends. Started checking objects with actions needed. Looked at Judd oversized and Roberts oversized material.', NULL, 13, 8032004, NULL, NULL); INSERT INTO collection_survey_log VALUES (14, '1091544342966', 'Carrie Heitman', 'Roberts oversized material (folders 1-3, and 13) and reviewed various boxes from Judd, Roberts, and Monroe Amsden to confirm missing pieces of information about objects we''d entered previously.', 'Reviewing Roberts oversized material and double checking about 75 objects from various other boxes. We finished our fact-checking and review of material a day early.', 'We have completed this initial phase of our project inventory at the NAA. It''s unclear when our next visit will be and what our acquisition procedures/priorities will be as of yet.', 13, 20040803, 20040804, NULL); INSERT INTO collection_survey_log VALUES (16, '1091544833938', 'Emily Cubbon', 'Judd and Roberts Collections. Roberts oversized material, folders 1-3, 13. Judd oversized. Judd boxes 5, 6, 8, 15, 19, 20, 22, 24, 25, 26, 33, 36. Roberts boxes 1, 2, 8, 9, 11, 12, 13, 15, 23, 28, 29.', 'Worked with Carrie, checking objects with notes/questions written in Actions Needed: double-checking things that needed to be clarified or looked at again. Finishing up.', NULL, 13, 20040803, NULL, NULL); INSERT INTO collection_survey_log VALUES (17, '1093441535042', 'Carrie Heitman', 'Anna Shepard material acquired from the University of Colorado Museum on a recent visit there (Aug.16th).', 'Simply entering in objects I photocopied while there. This is being done back in Charlottesville. ', NULL, 23, 20040825, 20040825, NULL); INSERT INTO collection_survey_log VALUES (19, '1095273265473', 'Carrie Heitman', 'Roberts and Judd collections. Roberts boxes 8, 26,23,18, 21. Judd boxes 5,6,29,8,9,10. ', 'Trying to review Roberts photo collections in an effort to make a decision about wether to digitize the entire collection or just selections relevant to CDI. ', NULL, 13, NULL, NULL, NULL); INSERT INTO collection_survey_log VALUES (18, '1095273109464', 'Steve Plog', 'Boxes 18, 23, and 28 from the Frank Roberts collections which are all images. ', NULL, NULL, 13, NULL, NULL, NULL); INSERT INTO collection_survey_log VALUES (13, '1090331601311', 'Carrie Heitman', 'Both Judd and Roberts material - mostly photos. Finished Judd box 36. Went through box "27" of the Roberts "Unarranged Photographs" (4 boxes). See note #20.', 'During this visit, we tried to finish looking at all the Judd and Roberts material. This included finishing with the photo boxes for both collections, and tying up loose ends from previous visits.', 'Need to look at Roberts oversized material.', 13, 20040720, 20040722, NULL); INSERT INTO collection_survey_log VALUES (20, '1097173598976', 'Carrie Heitman', 'Chaco material at the Peabody Museum.', 'Went through the "H-Board" boxes of photos, went through pertinent accession files - which helped put some of the collection in context, and looked at some objects in the collections.', 'Pat ------. Need to resume with the final H-Board box (see storage units from this visit).', 14, 20041007, 20041008, NULL); -- -- Data for TOC entry 85 (OID 561302) -- Name: cdi_accession; Type: TABLE DATA; Schema: public; Owner: rwb3y -- INSERT INTO cdi_accession VALUES (39, '1080603760678', '000020', NULL, 'Summary of Tree-Ring Data from the Chaco and Aztec Wood Project. Includes file names (dBase5), number of samples, provenience and associated FS numbers.', NULL, 'Steve Plog', 'Emily Cubbon', 'unsure of source, ask Steve.', NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO cdi_accession VALUES (41, '1080605773364', '000022', NULL, 'The Outlier Survey: a Regional View of Settlement in the San Juan Basin. by Robert P. Powers, William B. Gillespie, Stephen H. Lekson. National Park Service 1983. ', NULL, 'Steve Plog', 'Emily Cubbon', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO cdi_accession VALUES (42, '1080606101149', '000023', NULL, 'An Archeological Reconnaissance of a Late Bonito Phase Occupation near Aztec Ruins National Monument, New Mexico. John R. Stein, Peter J. McKenna. National Park Service 1988.', NULL, 'Steve Plog', 'Emily Cubbon', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO cdi_accession VALUES (43, '1080606264713', '000024', NULL, 'Small Site Architecture of Chaco Canyon New Mexico. Peter J. McKenna and Marcia L. Truell. National Park Service, 1986.', NULL, 'Steve Plog', 'Emily Cubbon', NULL, NULL, NULL, 198612, NULL, NULL, NULL); INSERT INTO cdi_accession VALUES (44, '1080606354578', '000025', NULL, 'The Environment of the Chaco Anasazi. William B. Gillespie.', NULL, 'Steve Plog', 'Emily Cubbon', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO cdi_accession VALUES (45, '1080606448127', '000026', NULL, 'Outliers and Roads in the Chaco System. Robert P. Powers.', NULL, 'Steve Plog', 'Emily Cubbon', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO cdi_accession VALUES (46, '1080606498894', '000027', NULL, 'Astronomy and Ceremony in the Prehistoric Southwest. Edited John B. Carlson and W. James Judge. Chapters 4 and 5. Papers of the Maxwell Museum of Anthropology, Number 2.', NULL, 'Steve Plog', 'Emily Cubbon', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO cdi_accession VALUES (47, '1080606616470', '000028', NULL, 'Leadership, Power, and Productive Potential: A Political Model of the Chaco System. Dissertation by Lynne Sebastian. University of New Mexico. May 1988.', NULL, 'Steve Plog', 'Emily Cubbon', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO cdi_accession VALUES (48, '1080606727017', '000029', NULL, 'Paleopsychology Today: Ideational Systems and Human Adaptation in Prehistory. John M. Fritz. ', NULL, 'Steve Plog', 'Emily Cubbon', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO cdi_accession VALUES (50, '1080665490003', '000030', NULL, 'Papers of Neil M. Judd: Pueblo Bonito Correspondence, National Geographic Society. PB: Ruppert Report on Pueblo del Arroyo. Manuscript.', 'National Anthropological Archives', 'Phil Trella', 'Emily Cubbon', NULL, 25, 1, 20040316, NULL, NULL, NULL); INSERT INTO cdi_accession VALUES (51, '1080665857947', '000031', NULL, 'Papers of Neil M. Judd, Pueblo Bonito Correspondence. National Geographic Society. Report on an Archeologic Reconnaissance of Chaco Canyon, New Mexico, by Neil M. Judd, Director. 1920.', 'National Anthropological Archives', 'Phil Trella', 'Emily Cubbon', NULL, 26, 1, 20040316, NULL, NULL, NULL); INSERT INTO cdi_accession VALUES (55, '1089308713770', '000035', '\\\\HOME2\\faculty chacocanyon Accessions', 'This batch consists of 5 excel spreadsheets which are simply translations I made of the XX.1 (Bc50.1, Bc51.1, Aztec.1, etc) versions of the re:discovery queries contained in accession # 000034.', 'Wendy Bustard', 'Carrie Heitman', 'Carrie Heitman', 'These excel spreadsheets may not be comprehensive lists from the Chaco Archive. We need to go back and cross check the two lists in accession 000034 for each site. ', NULL, NULL, 7052004, 'Electronic File-Batch', NULL, NULL); INSERT INTO cdi_accession VALUES (56, '1089317700257', '000036', NULL, 'This is a roughly 75 page collection of documents which describe the codes used by the chaco project. ', 'Wendy Bustard', 'Carrie Heitman', 'Carrie Heitman', 'Wendy wasn''t sure that this was the comprehensive list of codes - but it''s all we''ve got to go on for now. ', NULL, NULL, 7022004, 'Photocopy', NULL, NULL); INSERT INTO cdi_accession VALUES (57, '1089318580912', '000037', NULL, '"Excavation Report Chaco Canyon BC-50 Season 1939" Setzler Directing. By Donovan Senter', 'Wendy Bustard', 'Carrie Heitman', 'Carrie Heitman', NULL, NULL, NULL, 7022004, 'Photocopy', NULL, NULL); INSERT INTO cdi_accession VALUES (58, '1089398258685', '000038', NULL, 'Notes taken during 07/02/04 visit to the Chaco Archives. 3 pages - brief descriptions of 21 data objects representing various data types held at the archive. ', 'Carrie Heitman', 'N/A', 'Carrie Heitman', NULL, NULL, NULL, 7022004, 'CDI Notes', NULL, NULL); INSERT INTO cdi_accession VALUES (60, '1089822303774', '000040', NULL, 'Letter from National Geographic Society to Stephen Plog dated 8/30/1993 saying they do not own copyright of O.C. Havens photos', 'Steve Plog', 'Steve Plog', 'Steve Plog', NULL, NULL, NULL, NULL, 'Photocopy', NULL, NULL); INSERT INTO cdi_accession VALUES (63, '1089996078247', '000043', NULL, 'Copy of paper "Space, Evolution, and Function in the Houses of Chaco Canyon," by Wendy Bustard, presented at the 1997 Space Syntax Symposium in London', 'internet', 'Steve Plog', 'Steve Plog', 'pdf file is available on the internet at: http://www.spacesyntax.net/symposia/SSS1/SpSx%201st%20Symposium%2097%20-2003%20pdf/1st%20Symposium%20Vol%20II%20pdf/3%20-%20Archaeology/23%20Bustard%20300.pdf', NULL, NULL, NULL, 'Photocopy', NULL, NULL); INSERT INTO cdi_accession VALUES (64, '1089996197955', '000044', NULL, 'Copy of paper "Comparative Analysis of Chacoan Great Houses," by Laurel M. Cooper presented at the 1997 Space Syntax Symposium in London', 'internet', 'Steve Plog', 'Steve Plog', 'pdf copy of paper is available at: http://www.spacesyntax.net/symposia/SSS1/SpSx%201st%20Symposium%2097%20-2003%20pdf/1st%20Symposium%20Vol%20II%20pdf/3%20-%20Archaeology/22%20Cooper%20300.pdf', NULL, NULL, NULL, 'Photocopy', NULL, NULL); INSERT INTO cdi_accession VALUES (65, '1090252424629', '000045', NULL, 'List of NAA negative #s for photos from the Mindeleff photo collection that were digitized for John Stein. You can enter these numbers into a SIRIS general keyword search to find the descriptions.', NULL, NULL, 'Phil Trella', 'We need to do a SIRIS search for each of these negatives to find out how many of these are Chaco Canyon specific.', NULL, NULL, NULL, 'Photocopy', NULL, NULL); INSERT INTO cdi_accession VALUES (53, '1088536759237', '000033', '\\\\HOME2\\faculty chacocanyon Accessions', 'CD with tree ring dates for Chaco Great House sites, includes Talus Unit. 16 Microsoft Access database files. 2 of the files, rinconada.mdb and Rincondada.mdb have no data. The Kin Kletso file also has incomplete fields.', 'Wendy Bustard', 'Phil Trella', 'Phil Trella', 'These files could easily be condensed into one Access database file. All the files with data have been converted to Excel spreadsheets with names matching the original file name. These files are stored in the same accession folder.', NULL, NULL, 5062004, 'Electronic File-Access', 0, NULL); INSERT INTO cdi_accession VALUES (66, '1090252588671', '000046', '\\\\HOME2\\faculty\\chacocanyon\\00046\\InventoryObjectsJuly17 AND \\SCJuly17 Object Inventory Letter', 'This file contains 2 excel speadsheets (one for the Roberts collection, one for the Judd collection). This data was cut and pasted from the HTML page Robbie created into Excel so the Steering Committee would have an easier hard-copy document to review.', 'CDI Object Inventory database', 'Carrie Heitman', 'Carrie Heitman', NULL, NULL, 2, 20040717, 'Electronic File-Excel', 0, NULL); INSERT INTO cdi_accession VALUES (54, '1089307838916', '000034', '\\\\HOME2\\faculty chacocanyon Accessions', 'See note #11 ', 'Wendy Bustard', 'Carrie Heitman', 'Carrie Heitman', NULL, NULL, NULL, 7022004, 'Electronic File-Batch', 0, NULL); INSERT INTO cdi_accession VALUES (70, '1091724331817', '000049', NULL, 'Photocopy of xeroxing order placed at the National Anthropological Archives on 7/22/14 by Phil Trella', 'NAA', 'Carrie Heitman', 'Carrie Heitman', 'This duplicates Phil''s personal list. Just thought we should accession it to have on file.', NULL, 2, NULL, 'Photocopy', 0, NULL); INSERT INTO cdi_accession VALUES (71, '1092169548139', '000050', '\\\\HOME2\\faculty\\chacocanyon\\Accessions\\000050\\Photo List - Judd and Robert''s collections.xls', 'NAA Judd and Roberts collections.', 'NAA', NULL, 'Emily Cubbon', 'need to link Judd collection to this accession as well.', NULL, 2, 20040810, 'Electronic File-Excel', 0, NULL); INSERT INTO cdi_accession VALUES (72, '1092169835280', '000051', '\\\\HOME2\\faculty\\chacocanyon\\Accessions\\000051\\profileplantab.xls ', 'Profile and Plan Drawing List - NAA Judd and Roberts Collections', 'NAA', NULL, 'Emily Cubbon', 'need to be able to link Judd collection to this accession as well.', NULL, 2, 20040810, 'Electronic File-Excel', 0, NULL); INSERT INTO cdi_accession VALUES (62, '1089994222489', '000042', '\\\\HOME2\\faculty\\chacocanyon\\00042\\TrFrmBib.xls', 'Bibliography of data sources for tree ring dates entered into excel by Emily Cubbon, summer 2004', 'Emily Cubbon ', 'Phil Trella', 'Phil Trella', NULL, NULL, NULL, 7162004, 'Electronic File-Excel', 0, NULL); INSERT INTO cdi_accession VALUES (61, '1089993822445', '000041', '\\\\HOME2\\faculty\\chacocanyon\\000041\\treeform.xls', 'Updated version of tree ring files entered by Emily Cubbon, summer 2004', 'Jeff Dean, entered by Emily Cubbon', 'Phil Trella', 'Phil Trella', 'Latest version of tree ring files entered by Emily', NULL, NULL, 7152004, 'Electronic File-Excel', 0, NULL); INSERT INTO cdi_accession VALUES (33, '1080602697944', '000014', NULL, 'Finding Aid to the National Anthropological Archives: Register to the Papers of Frank Harold Hanna Roberts, Jr.', 'National Anthropological Archives', 'Phil Trella', 'Phil Trella', NULL, NULL, 2, 2003, 'Finding Aid', 0, NULL); INSERT INTO cdi_accession VALUES (52, '1088517187054', '000032', NULL, 'Printouts of Chaco tree-ring dates that are not included in the First Choice databases which we have received from Jeff Dean', 'Jeff Dean', 'Steve Plog', 'Steve Plog', 'Should also check the New Mexico tree-ring quadrangle report for area "B" to see if there are additional dates we should enter into database.', NULL, NULL, NULL, 'Correspondence', 0, NULL); INSERT INTO cdi_accession VALUES (74, '1093358139061', '000053', NULL, 'Photocopy of Object 967, correspondence between Judd and Jesse Nussbaum.', 'NAA', 'Phil Trella', 'Phil Trella', NULL, 967, 1, 20040817, 'Photocopy', 0, NULL); INSERT INTO cdi_accession VALUES (73, '1093357326248', '000052', NULL, 'Object 941 Data tables. 2 large sheets of graph paper. These sheets list pottery type counts and cumulative percents by type - by room, Pueblo Bonito. There are 21 types of pottery listed. Also includes kivas. ', 'National Anthropological Archives', 'Phil Trella', 'Phil Trella', NULL, 941, 1, 20040817, 'Photocopy', 0, NULL); INSERT INTO cdi_accession VALUES (76, '1093359184661', '000055', NULL, 'Papers listing pottery types and percentages for each layer of each room excavated in 1940. Includes depth of layer, date and excavator.', 'National Anthropological Archives', 'Phil Trella', 'Phil Trella', NULL, 109, 1, 20040817, 'Photocopy', 0, NULL); INSERT INTO cdi_accession VALUES (77, '1093359435039', '000056', NULL, 'Monroe Amsden "Small Sites of the Chaco" Manuscript.', 'National Anthropological Archives', 'Phil Trella', 'Phil Trella', NULL, 986, NULL, 20040817, 'Photocopy', 0, NULL); INSERT INTO cdi_accession VALUES (78, '1093359669814', '000057', NULL, 'Photocopy of Object 122: Comprised mostly of tabular data regarding sherd type percentages in each strata. Also includes two paragraphs of summary. Student paper written by Theodora Buggeln for Paul Reiter. ', 'National Anthropological Archives', 'Phil Trella', 'Phil Trella', NULL, 122, 2, 20040817, 'Photocopy', 0, NULL); INSERT INTO cdi_accession VALUES (79, '1093359815406', '000058', NULL, 'Typed Manuscript: Photocopy of Object 119. Short report by Mary Jean Worthen dated September 15, 1941 on the wall sequence of Bc 53.', 'National Anthropological Archives', 'Phil Trella', 'Phil Trella', NULL, 119, 2, 20040817, 'Photocopy', 0, NULL); INSERT INTO cdi_accession VALUES (80, '1093360009766', '000059', NULL, 'Photocopy of Object 112: Tablular Data, Sherd counts and percents by type for levels in rooms excavated in 1941. Each sheet is a form with typed information. 1 form per level. ', NULL, NULL, 'Phil Trella', NULL, 112, 2, NULL, 'Photocopy', 0, NULL); INSERT INTO cdi_accession VALUES (81, '1093360167891', '000060', NULL, 'Photocopy of object 968--Roberts'' 1940 note cards. Roughly 50 notecards. Most are double-sided. They include a daily log of activities, profiles, plan drawings, and elevations. ', 'National Anthropological Archives', 'Phil Trella', 'Phil Trella', NULL, 968, 2, 20040817, 'Photocopy', 0, NULL); INSERT INTO cdi_accession VALUES (82, '1093360321908', '000061', NULL, 'Photocopy of Object 976--Mostly relevant to Kiva A. Daily log of activities, lots of verbal description, lots of nice drawings. ', 'National Anthropological Archives', 'Phil Trella', 'Phil Trella', NULL, 976, 2, 20040817, 'Photocopy', 0, NULL); INSERT INTO cdi_accession VALUES (85, '1093361358650', '000064', NULL, 'Photocopy of Object 87 Miscellaneous typed and handwritten notes. Stratigraphic information from 1921-1927. Often includes sherd counts and types. From Pueblo Alto, Penasco Blanco and others. ', 'National Anthropological Archives', 'Phil Trella', 'Phil Trella', NULL, 87, 2, 20040817, 'Photocopy', 0, NULL); INSERT INTO cdi_accession VALUES (86, '1093361476429', '000065', NULL, 'Photocopy of object 24. Specimen list of Objects from National Geographic Society excavations 1921-1930 being transferred to US National Museum. Includes accession numbers, catalogue numbers and general proveniences. ', 'National Anthropological Archives', 'Phil Trella', 'Phil Trella', NULL, 24, 1, 20040817, 'Photocopy', 0, NULL); INSERT INTO cdi_accession VALUES (83, '1093360769174', '000062', NULL, 'Photocopy of object 970--type manuscript, "Notes. Excavation of Bc 53, Summer Session 1940." Roughly 65 pages. Day by day account of activities. ', 'National Anthropological Archives', 'Phil Trella', 'Phil Trella', 'Includes tabular data and pottery counts, maps, measurements, artifact descriptions, wall measurements. Room by room. ', 970, 2, 20040817, 'Photocopy', 0, NULL); INSERT INTO cdi_accession VALUES (75, '1093358625321', '000054', NULL, 'Photocopy of Object 103 from the NAA. Forms and drawings for burials from Bc 53 excavated during the 1940 and 1941 seasons. ', 'National Anthropological Archives', 'Phil Trella', 'Phil Trella', NULL, 103, 1, 20040817, 'Photocopy', 0, NULL); INSERT INTO cdi_accession VALUES (87, '1093361678470', '000066', NULL, 'Photocopy of Object 28. Letter from Judd to John LaGorce, National Geographic Society dated July 6, 1924. Another letter detailing information from burials and associated artifacts uncovered in Pueblo Bonito. ', 'National Anthropological Archives', 'Phil Trella', 'Phil Trella', NULL, 28, 1, 20050817, 'Photocopy', 0, NULL); INSERT INTO cdi_accession VALUES (88, '1093361790497', '000067', NULL, 'Photocopy of Object 30. Letter from Judd to J. O. LaGorce dated July 31, 1924 detailing the discovery of burials within Pueblo Bonito. Some mention of grave robbing and details of artifacts are given here. ', 'National Anthropological Archives', 'Phil Trella', 'Phil Trella', NULL, 30, 1, 20040817, 'Photocopy', 0, NULL); INSERT INTO cdi_accession VALUES (90, '1093366661822', '000068', NULL, 'Photocopy of Object 32. Letter from Judd to Gilbert H. Grosvenor dated July 16, 1924. Details work at Pueblo Bonito including skeletons found and goods associated with them. ', 'National Anthropological Archives', 'Phil Trella', 'Phil Trella', NULL, 32, 1, 20040817, 'Photocopy', 0, NULL); INSERT INTO cdi_accession VALUES (69, '1091045438178', '000048', NULL, 'Comments emailed from Gwinn Vivian on CDI object nos. 1-255 in the inventory database. Also contains initial comments from Joan Mathien.', 'Gwinn Vivian, and Joan Mathien', 'Carrie Heitman and Steve Plog', 'Phil Trella', 'Joan''s comments on the object list came to Steve on 7/29 2004', NULL, NULL, 20040727, 'Correspondence', 0, NULL); INSERT INTO cdi_accession VALUES (91, '1093366886957', '000069', NULL, 'Photocopy of object 36. Letter to Dr. F.V. Coville from Judd dated August 20, 1925. Letter mentions on page 2 (of 2) the discovery of water channels near Pueblo Bonito and the discovery of the East foundation wall. ', 'National Anthropological Archives', 'Phil Trella', 'Phil Trella', NULL, 36, 1, 20040817, 'Photocopy', 0, NULL); INSERT INTO cdi_accession VALUES (92, '1093367017850', '000070', NULL, 'Photocopy of Object 34. Letter to Dr. F.V. Coville, Department of Agriculture, dated August 25, 1924. Mentions a channel located near Pueblo Bonito refuse mound with late pottery. ', 'National Anthropological Archives', 'Phil Trella', 'Phil Trella', NULL, 34, 1, 20040817, 'Photocopy', 0, NULL); INSERT INTO cdi_accession VALUES (93, '1093367109220', '000071', NULL, 'Photocopy of Object 25. "Pueblo del Arroyo Mss" Manuscript on Pueblo del Arroyo by Ruppert. Description of Pueblo del Arroyo, room by room, includes information on stratigraphy. Lots of information. ', 'National Anthropological Archives', 'Phil Trella', 'Phil Trella', NULL, 25, 1, 20040817, 'Photocopy', 0, NULL); INSERT INTO cdi_accession VALUES (94, '1093367398885', '000072', NULL, 'Photocopy of object 113. Sherd counts and percents by type for levels in kivas excavated in 1941. Each sheet is a form with information typed, 1 form per level. ', 'National Anthropological Archives', 'Phil Trella', 'Phil Trella', NULL, 113, 2, 20040817, 'Photocopy', 0, NULL); INSERT INTO cdi_accession VALUES (95, '1093367686573', '000073', NULL, 'Photocopy of object 114. Sherd counts and percents by type for levels outside of structures excavated at Bc 53 in 1941. Each sheet is a form with information typed, 1 form per level. ', 'National Anthropological Archives', 'Phil Trella', 'Phil Trella', NULL, 114, 2, 20040817, 'Photocopy', 0, NULL); INSERT INTO cdi_accession VALUES (96, '1093367812455', '000074', NULL, 'Photocopy of Object 120. Paper written by Virginia Beth Hitchcock on the burials within Bc 53. Contains tabular data of burials from Bc 53 and Tseh So as well as a hand-drawn map of Bc 53 detailing the locations of burials within rooms. ', 'National Anthropological Archives', 'Phil Trella', 'Phil Trella', NULL, 120, 2, 20040817, 'Photocopy', 0, NULL); INSERT INTO cdi_accession VALUES (99, '1093372077897', '000076', NULL, 'Photocopy of Object 79. Paper copies of Roberts'' sherd percentages. Provides the data of 2 index cards on one sheet of paper. All Pueblo Bonito (copies of index cards - see object 78). ', 'National Anthropological Archives', 'Phil Trella', 'Phil Trella', NULL, 79, 2, 20040817, 'Photocopy', 0, NULL); INSERT INTO cdi_accession VALUES (100, '1093372298370', '000077', NULL, 'Photocopy of Object 31. Letter from Jesse Nusbaum to Judd handwritten dated June 19, 1953. Details grave goods looted from Chaco era sites, where they ended up or who might have them. ', 'National Anthropological Archives', 'Phil Trella', 'Phil Trella', NULL, 31, 1, 20040817, 'Photocopy', 0, NULL); INSERT INTO cdi_accession VALUES (97, '1093371316216', '000075', NULL, 'Photocopy of Object 108. 1925. Profiles of pottery section 1 (West Court, Pueblo Bonito?) and pottery section 2. These profiles relate to the tabular data and the notes also recorded as objects from this file. ', 'National Anthropological Archives', 'Phil Trella', 'Phil Trella', NULL, 108, 2, 20040817, 'Photocopy', 0, NULL); INSERT INTO cdi_accession VALUES (103, '1093372696530', '000080', NULL, 'Photocopy of Object 106. 1925. Anna Shepard''s notes describe some of their findings from tests II and IV. The information relates to pottery types, vessel forms, temper, paint, etc - broken down by strata.', 'National Anthropological Archives', 'Phil Trella', 'Phil Trella', NULL, 106, 2, 20040817, 'Photocopy', 0, NULL); INSERT INTO cdi_accession VALUES (104, '1093372891638', '000081', NULL, 'Photocopy of object 960. Large piece of brown paper listing ceramic type counts and percentages by stratigraphic level for Room 7 at Bc 53. Includes level depths below surface and thicknesses. By Ted Stern. Stratagraphic levels are drawn to scale.', 'National Anthropological Archives', 'Phil Trella', 'Phil Trella', NULL, 960, 2, 20040817, 'Photocopy', 0, NULL); INSERT INTO cdi_accession VALUES (105, '1093373025310', '000082', NULL, 'Photocopy of object 962. Large piece of brown paper listing ceramic type counts and percentages by stratigraphic level for Room 4 at Bc 53. Includes level depths below surface and thicknesses. Only information for level 1. ', 'National Anthropological Archives', 'Phil Trella', 'Phil Trella', NULL, 962, 2, 20040817, 'Photocopy', 0, NULL); INSERT INTO cdi_accession VALUES (106, '1093373143224', '000083', NULL, 'Photocopy of Object 961. Large piece of brown paper listing ceramic type counts and percentages by stratigraphic level for Room 6 at Bc 53. Includes level depths below surface and thicknesses. By B. Greenwood and D. Morgan. ', 'National Anthropological Archives', 'Phil Trella', 'Phil Trella', NULL, 961, 2, 20040817, 'Photocopy', 0, NULL); INSERT INTO cdi_accession VALUES (107, '1093373260644', '000084', NULL, 'Photocopy of object 963. Large piece of brown paper listing ceramic type counts and percentages by stratigraphic level for Room 2 at Bc 53. Includes level depths below surface and thicknesses. By Raymond S. Baby. Stratagraphic levels are drawn to scale. ', 'National Anthropological Archives', 'Phil Trella', 'Phil Trella', NULL, 963, 2, 20040817, 'Photocopy', 0, NULL); INSERT INTO cdi_accession VALUES (108, '1093373369528', '000085', NULL, 'Photocopy of object 964. Large piece of brown paper listing ceramic type counts and percentages by stratigraphic level for Room 1 at Bc 53. Includes level depths below surface and thicknesses. ', 'National Anthropological Archives', 'Phil Trella', 'Phil Trella', NULL, 964, 2, 20040817, 'Photocopy', 0, NULL); INSERT INTO cdi_accession VALUES (109, '1093373578963', '000086', NULL, 'Photocopy of object 956. Large piece of brown paper listing ceramic type counts and percentages by stratigraphic level for Kiva A at Bc 53. Includes level depths below surface and thicknesses. By John Deacon and Ernest H. Hill. ', 'National Anthropological Archives', 'Phil Trella', 'Phil Trella', NULL, 956, 2, 20040817, 'Photocopy', 0, NULL); INSERT INTO cdi_accession VALUES (110, '1093373683715', '000087', NULL, 'Photocopy of object 957. Large piece of brown paper listing ceramic type counts and percentages by stratigraphic level for Kiva B at Bc 53. Includes level depths below surface and thicknesses. By Jane Leonard. ', 'National Anthropological Archives', 'Phil Trella', 'Phil Trella', NULL, 957, 2, 20040817, 'Photocopy', 0, NULL); INSERT INTO cdi_accession VALUES (111, '1093373786513', '000088', NULL, 'Photocopy of Object 958. Large piece of brown paper listing ceramic type counts and percentages by stratigraphic level for Room 3 at Bc 53. Includes level depths below surface and thicknesses. By D. Kyte. Stratagraphic levels are drawn to scale. ', 'National Anthropological Archives', 'Phil Trella', 'Phil Trella', NULL, 958, 2, 20040817, 'Photocopy', 0, NULL); INSERT INTO cdi_accession VALUES (115, '1093378264632', '000092', NULL, 'Abridged version of the E.H. Morris Collection finding aid. ', 'Sheila Goff', 'Carrie Heitman', 'Carrie Heitman', NULL, NULL, 10, 20040816, 'Finding Aid', 0, NULL); INSERT INTO cdi_accession VALUES (116, '1093442412002', '000093', NULL, '7 photocopied pages from a bound list of thin sections of pottery created by Anna Shepard.', 'Sheila Goff', 'Carrie Heitman', 'Carrie Heitman', NULL, 990, 9, 20040816, 'Photocopy', 0, NULL); INSERT INTO cdi_accession VALUES (120, '1093466337919', '000097', NULL, 'This object contains tabular data on sherd temper by ware from Shepard''s Pueblo Bonito ceramic analysis. Accompaning the 3 pages of tabular data are 2 pages of handwritten notes of analysis regarding these tabulations. ', 'Sheila Goff', 'Carrie Heitman', 'Carrie Heitman', NULL, 998, 9, 20040816, 'Photocopy', 0, NULL); INSERT INTO cdi_accession VALUES (126, '1093529861944', '000103', NULL, 'Typewritten notes of analysis entitled: "Temper and Pigment of Pottery from Red Rock region." Each vessel is listed by number and it''s temper and pigment are described. For more information, see object entry.', 'Sheila Goff', 'Carrie Heitman', 'Carrie Heitman', NULL, 1003, 9, 20040816, 'Photocopy', 0, NULL); INSERT INTO cdi_accession VALUES (125, '1093529506709', '000102', NULL, 'Tabular data and analytical ceramic descriptions from various sites in and around Chaco. See object entry for more detailed description.', 'Sheila Goff', 'Carrie Heitman', 'Carrie Heitman', NULL, 1002, 9, 20040816, 'Photocopy', 0, NULL); INSERT INTO cdi_accession VALUES (124, '1093527212610', '000101', NULL, 'Typewritten notes of analysis entitled: "Notes on pastes of Bonito sherds, based on microscopic examination 7/21-28/1937." These notes are from Roberts pottery test sections IV and II. ', 'Sheila Goff', 'Carrie Heitman', 'Carrie Heitman', NULL, 1001, 9, 20040816, 'Photocopy', 0, NULL); INSERT INTO cdi_accession VALUES (123, '1093526354227', '000100', NULL, 'An 8 point list entitled "Judd''s Summary of Paint and Temper of Bonito Pottery." ', 'Sheila Goff', 'Carrie Heitman', 'Carrie Heitman', NULL, 1000, 9, 20040816, 'Photocopy', 0, NULL); INSERT INTO cdi_accession VALUES (122, '1093467755051', '000099', NULL, 'Three pages of notes entitled: "Pueblo Bonito thin sections. preliminary notes. 11/21/3? (year cut off)" These notes divide ceramics by type - giving specific observations on temper. Observations are linked to individual thin section ID numbers. ', 'Sheila Goff', 'Carrie Heitman', 'Carrie Heitman', NULL, 999, 9, 20040816, 'Photocopy', 0, NULL); INSERT INTO cdi_accession VALUES (121, '1093466517277', '000098', NULL, 'A drawing of a sherd from Bonito with pronounced ridges. Includes Shepard''s analysis notes on construction, size of ridges, depth, and shape of trough.', 'Sheila Goff', 'Carrie Heitman', 'Carrie Heitman', NULL, 997, 9, 20040816, 'Photocopy', 0, NULL); INSERT INTO cdi_accession VALUES (113, '1093375151386', '000095', NULL, 'George Hubbard Pepper Papers Collection Guide from the Tulane University Latin American Library.', 'David Dressing', 'Carrie Heitman', 'Carrie Heitman', 'This collection guide is a more complete description of the Pepper materials at Tulane than is available through their online finding aid.', NULL, 6, 20040818, 'Finding Aid', 0, NULL); INSERT INTO cdi_accession VALUES (117, '1093442989703', '000094', NULL, '4 pages of ceramic analysis for two imported wares found at Pueblo Bonito. See "object" entry for more complete description.', 'Sheila Goff', 'Carrie heitman', 'Carrie Heitman', NULL, 991, 9, 20040816, 'Photocopy', 0, NULL); INSERT INTO cdi_accession VALUES (114, '1093375376798', '000091', NULL, 'Finding Aid for the Anna Osler Shepard Archival Collection at the University of Colorado Museum. This is not the complete version - just the beginning portion with general drawer contents and list of correspondents.', 'Sheila Goff', 'Carrie Heitman', 'Carrie Heitman', NULL, NULL, 9, 20040816, 'Finding Aid', 0, NULL); INSERT INTO cdi_accession VALUES (127, '1093535050088', '000104', NULL, 'Typewritten notes of analysis entitled: "Suggested Foot Note for p. 92 Bonito Pottery Chapter, Submitted 1/3/42." Presumably this is the revised foot note submitted by Shepard to Judd. For more information, see object entry.', 'Shiela Goff', 'Carrie Heitman', 'Carrie Heitman', NULL, 1003, 9, 20040816, 'Photocopy', 0, NULL); INSERT INTO cdi_accession VALUES (128, '1093536092764', '000105', NULL, 'Typewritten notes of analysis entitled: "Suggested Foot Note for p. 92 Bonito Pottery Chapter, Submitted 1/3/42." Presumably this is the revised foot note submitted by Shepard to Judd. See Judd/Shepard correspondence for more information on this exchange. ', 'Sheila Goff', 'Carrie Heitman', 'Carrie Heitman', NULL, 1005, 9, 20040816, 'Photocopy', 0, NULL); INSERT INTO cdi_accession VALUES (132, '1093617841841', '000109', NULL, 'Letter from Anna Shepard to Neil Judd dated January 30, 1936. This letter contains preliminary interpretation of the tempers observed from her thin section analyses. ', 'Sheila Goff', 'Carrie Heitman', 'Carrie Heitman', NULL, 1008, 9, 20040816, 'Correspondence', 0, NULL); INSERT INTO cdi_accession VALUES (131, '1093614342062', '000108', NULL, 'Letter from Neil Judd to Anna Shepard dated January 25, 1936. Contains information regarding pottery samples from Pueblo Bonito being sent to Shepard at the Laboratory of Anthropology for petrographic analysis. ', 'Sheila Goff', 'Carrie Heitman', 'Carrie Heitman', NULL, 42, 9, 20040816, 'Correspondence', 0, NULL); INSERT INTO cdi_accession VALUES (130, '1093613652432', '000107', NULL, 'Correspondence from Anna Shepard to Neil M. Judd dated January 23, 1936. In the letter Shepard mentions it would be interesting to compare the petrographic analysis of Chaco sherds with those from La Plata. ', 'Sheila Goff', 'Carrie Heitman', 'Carrie Heitman', 'Chaco thin sections are held at the CU Museum, Boulder, CO.', 1007, 9, 20040816, 'Correspondence', 0, NULL); INSERT INTO cdi_accession VALUES (129, '1093612823779', '000106', NULL, 'Correspondence from Anna Shepard to Neil M. Judd dated November 23, 1935. Letter discusses the utility of and process for thin sectioning type sherds from Pueblo Bonito. ', 'Sheila Goff ', 'Carrie Heitman', 'Carrie Heitman', 'Thin sections are held at the University of Colorado, Boulder.', 1006, 9, 20040816, 'Correspondence', 0, NULL); INSERT INTO cdi_accession VALUES (133, '1093619228201', '000110', NULL, 'Letter from Neil Judd to Anna Shepard dated February 17, 1936. Contains an discussion of the presence of igneous rock temper in the Pueblo Bonito sherds as well as catalog numbers for clay samples. ', 'Sheila Goff', 'Carrie Heitman', 'Carrie Heitman', NULL, 1009, 9, 20040816, 'Correspondence', 0, NULL); INSERT INTO cdi_accession VALUES (134, '1093619752204', '000111', NULL, 'Letter from Anna Shepard to Judd dated November 21, 1936. Letter includes rather detailed results of ceramic thin section analyses (requested by Judd) from a sample of Pueblo Bonito pottery. ', 'Sheila Goff', 'Carrie Heitman', 'Carrie Heitman', 'Thin sections are housed at the University of Colorado Museum, Boulder.', 43, 9, 20040816, 'Correspondence', 0, NULL); INSERT INTO cdi_accession VALUES (135, '1093619974354', '000112', NULL, 'Letter from Anna Shepard to Frank Roberts dated November 21, 1936. The letter contains some details on Shepard''s sherd study from Pueblo Bonito, but mainly appears to contain questions for Roberts regarding nomenclature. ', 'Sheila Goff', 'Carrie Heitman', 'Carrie Heitman', NULL, 149, 9, 20040816, 'Correspondence', 0, NULL); INSERT INTO cdi_accession VALUES (136, '1093620262646', '000113', NULL, 'Letter from Roberts to Anna Shepard dated December 3, 1936. Letter contains a description of the characteristics of Pueblo Bonito pottery and phases. Appears to be a reply to Shepard''s letter asking about nomenclature. ', 'Sheila Goff', 'Carrie Heitman', 'Steve Plog', NULL, 151, 9, 20040816, 'Correspondence', 0, NULL); INSERT INTO cdi_accession VALUES (137, '1093620663937', '000114', NULL, 'Letter from Anna Shepard to Frank Roberts dated December 14, 1936. The letter contains a brief comment about the technological problems presentd by the Chaco material.', 'Sheila Goff', 'Carrie Heitman', 'Carrie Heitman', NULL, 1010, 9, 20040816, 'Correspondence', 0, NULL); INSERT INTO cdi_accession VALUES (138, '1093621042143', '000115', NULL, 'Letter from Judd to Anna Shepard dated December 18, 1936. This is a response to her letter of November 21. Letter contains some interpretation of Shepard''s findings relating to andesite in Chaco sherds and trade connections. ', 'Sheila Goff', 'Carrie Heitman', 'Carrie Heitman', NULL, 44, 9, 20040816, 'Correspondence', 0, NULL); INSERT INTO cdi_accession VALUES (139, '1093639621359', '000116', NULL, 'Letter from Anna Shepard to Neil Judd dated December 23, 1936. Letter discusses Shepard''s difference of opinion about the andesite temper as well as Shepard''s hesitations about the prelimary results. ', 'Sheila Goff', 'Carrie Heitman', 'Carrie Heitman', NULL, 1011, 9, 20040816, 'Correspondence', 0, NULL); INSERT INTO cdi_accession VALUES (140, '1093640848083', '000117', NULL, 'Letter from Anna Shepard to Neil M. Judd ated June 26, 1937. Letter discusses sandine basalt temper in relation to Bonito and La Plata ceramic thin section analyses. ', 'Sheila Goff', 'Carrie Heitman', 'Carrie Heitman', NULL, 1012, 9, 20040816, 'Correspondence', 0, NULL); INSERT INTO cdi_accession VALUES (141, '1093869653723', '000118', NULL, 'Letter from Neil Judd to Anna Shepard dated June 28, 1937. This letter discusses sandine temper and Judd''s predictions for the presence of this temper in sherds from the west refuse mound and the west court trench of Pueblo Bonito. ', 'Sheila Goff', 'Carrie Heitman', 'Carrie Heitman', NULL, 1013, 9, 20040816, 'Correspondence', 0, NULL); INSERT INTO cdi_accession VALUES (142, '1093870197986', '000119', NULL, 'Letter from Neil Judd to Anna Shepard dated August 20, 1937. In this letter, Judd expresses his disbelief over the frequency of sandine basalt temper in Shepard''s study of Pueblo Bonito sherds. See object entry for more detail.', 'Sheila Goff', 'Carrie Heitman', 'Carrie Heitman', NULL, 1014, 9, 20040816, 'Correspondence', 0, NULL); INSERT INTO cdi_accession VALUES (143, '1093870576499', '000120', NULL, 'Letter from Anna Shepard to Neil Judd dated January 31, 1939 (sent via air mail). In this letter Shepard asks Judd for clarification on Chaco time periods for her La Plata report (in which she discusses the Pueblo Bonito sandine temper ceramic results). ', 'Sheila Goff', 'Carrie Heitman', 'Carrie Heitman', NULL, 1015, 9, 20040816, 'Correspondence', 0, NULL); INSERT INTO cdi_accession VALUES (144, '1093871142223', '000121', NULL, 'Letter from Judd to Anna Shepard dated February 2, 1939. This letter also discusses the location and architectural association of pottery test sections II, III, and IV at Pueblo Bonito. See object entry for more information.', 'Sheila Goff', 'Carrie Heitman', 'Carrie Heitman', 'This object is contained in two separate collections. It is housed in the Judd collection at the National Anthropological Archives and in the Anna Shepard collection at the University of Colorado Museum, Boulder.', 45, 9, 20040816, 'Correspondence', 0, NULL); INSERT INTO cdi_accession VALUES (145, '1093871868715', '000122', NULL, 'Letter from Neil Judd to Anna Shepard dated May 11, 1939. This letter contains many specific questions regarding the details of Shepard''s thin section analyses. ', 'Sheila Goff', 'Carrie Heitman', 'Carrie Heitman', NULL, 1016, 9, 20040816, 'Correspondence', 0, NULL); INSERT INTO cdi_accession VALUES (147, '1093872755161', '000123', NULL, 'Letter from Shepard to Judd dated May 24, 1939. This letter is a response to a letter from Judd (May 11, 1939) in which he asked her many clarification questions relating to her thin section analyses of Pueblo Bonito sherds. ', NULL, NULL, 'Phil Trella', 'This object is held in two separate collections. It is in the Judd collection at the National Anthropological Archive and in the Shepard collection at the University of Colorado Museum, Boulder.', 46, 9, NULL, 'Correspondence', 0, NULL); INSERT INTO cdi_accession VALUES (148, '1093876426038', '000124', NULL, 'Letter from Neil Judd to Anna Shepard dated October 20, 1939. Letter addresses their ongoing discussion of Sheperd''s contribution to the "Material Culture of Pueblo Bonito" pottery chapter. See object entry for more information.', 'Sheila Goff', 'Carrie Heitman', 'Carrie Heitman', NULL, 1017, 9, 20040816, 'Correspondence', 0, NULL); INSERT INTO cdi_accession VALUES (149, '1093876744114', '000125', NULL, 'Letter from Anna Shepard to Neil Judd dated December 5, 1939. This letter briefly discusses the presentation of Shepard''s Pueblo Bonito ceramic analyses in preparation for Judd''s 1959 publication "Material Culture of Pueblo Bonito." ', 'Sheila Goff', 'Carrie Heitman', 'Carrie Heitman', NULL, 1018, 9, 20040816, 'Correspondence', 0, NULL); INSERT INTO cdi_accession VALUES (150, '1093877089749', '000126', NULL, 'Letter from Anna Shepard to Neil Judd dated August 4, 1941. This letter expresses Shepard''s disappointment and regret that she had not continued further with her analyses of Pueblo Bonito/Chaco Canyon ceramics. ', 'Sheila Goff', 'Carrie Heitman', 'Carrie Heitman', NULL, 1019, 9, 20040816, 'Correspondence', 0, NULL); INSERT INTO cdi_accession VALUES (151, '1093878658894', '000127', NULL, 'Letter from Neil Judd to Anna Shepard dated August 20, 1941. This letter is part of a continued dialogue regarding the the presence of basalt temper identified in the Pueblo Bonito ceramics. ', 'Sheila Goff', 'Carrie Heitman', 'Carrie Heitman', NULL, 1020, 9, 20040816, 'Correspondence', 0, NULL); INSERT INTO cdi_accession VALUES (152, '1093879016382', '000128', NULL, 'Letter from Anna Shepard to Neil Judd dated November 17, 1941. In this letter Shepard recommends the procedures and methods necessary for continued study of the Pueblo Bonito ceramics.', 'Sheila Goff', 'Carrie Heitman', 'Carrie Heitman', NULL, 1021, 9, 20040816, 'Correspondence', 0, NULL); INSERT INTO cdi_accession VALUES (153, '1093879591793', '000129', NULL, 'Letter from Neil Judd to Anna Shepard dated December 16, 1941. This letter originally accompanied a portion of Judd''s Pueblo Bonito pottery chapter for Shepard''s review. See object entry for further information.', 'Sheila Goff', 'Carrie Heitman', 'Carrie Heitman', NULL, 1022, 9, 20040816, 'Correspondence', 0, NULL); INSERT INTO cdi_accession VALUES (154, '1093889913385', '000130', NULL, 'Letter from Anna Shepard to Neil Judd dated January 3, 1942. In this letter Shepard outlines specific points of disagreement between herself and Judd regarding the interpretation of basalt temper in the Pueblo Bonito sherd analyses. ', 'Sheila Goff', 'Carrie Heitman', 'Carrie Heitman', NULL, 1023, 9, 20040816, 'Correspondence', 0, NULL); INSERT INTO cdi_accession VALUES (155, '1093890695388', '000131', NULL, 'Letter from Anna Shepard to Neil Judd dated April 20, 1942. This letter is part of the ongoing dialogue between Shepard and Judd over Shepard''s analyses of Pueblo Bonito sherds. See object entry for more specific information.', 'Sheila Goff', 'Carrie Heitman', 'Carrie Heitman', NULL, 1024, 9, 20040816, 'Correspondence', 0, NULL); INSERT INTO cdi_accession VALUES (156, '1093956517774', '000132', NULL, 'Letter from Neil Judd to Anna Shepard dated May 27, 1942. This letter is part of the ongoing dialogue between Shepard and Judd over Shepard''s analyses of Pueblo Bonito sherds.', 'Sheila Goff', 'Carrie Heitman', 'Carrie Heitman', NULL, 1025, 9, 20040816, 'Correspondence', 0, NULL); INSERT INTO cdi_accession VALUES (157, '1093956854013', '000133', NULL, 'Letter from Jeil Judd to Anna Shepard dated April 30, 1943. This letter responds to Anna Shepard''s letter of April 20th (object #47). In this letter, Judd reviews some editorial changes for "Material Culture of Pueblo Bonito." ', 'Sheila Goff', 'Carrie Heitman', 'Carrie Heitman', NULL, 1026, 9, 20040816, 'Correspondence', 0, NULL); INSERT INTO cdi_accession VALUES (158, '1093958260649', '000134', NULL, 'Letter from Neil Judd to Anna Shepard dated June 12, 1945. This letter originally accompanied by chips from the fragment of an effigy jar (Cat. No. 336088) that Judd wanted Shepard to thin section. See object entry for more information.', 'Sheila Goff', 'Carrie Heitman', 'Carrie Heitman', NULL, 1027, 9, 20040816, 'Correspondence', 0, NULL); INSERT INTO cdi_accession VALUES (159, '1093960043428', '000135', NULL, 'Letter from Anna Shepard to Neil Judd dated June 18, 1945. Letter responds to Judd (June 12th - object #1027) regarding a strange effigy jar. Shepard gives Judd her thin sectionresults in the letter. See object entry for more information.', 'Sheila Goff', 'Carrie Heitman', 'Carrie Heitman', NULL, 1028, 9, 20040816, 'Correspondence', 0, NULL); INSERT INTO cdi_accession VALUES (160, '1093960654920', '000136', NULL, 'Letter from Neil Judd to Anna Shepard dated June 23, 1945. Letter is brief and touches on Shepard''s results from her thin sectioning of an effigy vessel from Pueblo Bonito and a plumbate ware frog effigy. ', 'Sheila Goff', 'Carrie Heitman', 'Carrie Heitman', NULL, 1029, 9, 20040816, 'Correspondence', 0, NULL); INSERT INTO cdi_accession VALUES (161, '1093961218989', '000137', NULL, 'Letter from Anna Shepard to Neil Judd dated January 7, 1954. This letter acknowledgs the receipt of "Material Culture of Pueblo Bonito" in which she briefly responds to his skepticism over igneous temper marking intrusive pottert in Chaco Canyon. ', 'Sheila Goff', 'Carrie Heitman', 'Carrie Heitman', NULL, 1030, 9, 20040816, 'Correspondence', 0, NULL); INSERT INTO cdi_accession VALUES (162, '1093969289658', '000138', NULL, 'Letter from Neil Judd to Anna Shepard dated December 29, 1954. This is the note that accompanied a copy of "Material Culture of Pueblo Bonito." ', 'Sheila Goff', 'Carrie Heitman', 'Carrie Heitman', NULL, 1031, 9, 20040816, 'Correspondence', 0, NULL); INSERT INTO cdi_accession VALUES (163, '1093969821968', '000139', NULL, 'Letter from Neil Judd to Anna Shepard dated September 26, 1955. This letter acknowledges the receipt of Shepard''s thin section analysis of some redware sherds. See object entry for further information.', 'Sheila Goff', 'Carrie Heitman', 'Carrie Heitman', NULL, 1032, 9, 20040816, 'Correspondence', 0, NULL); INSERT INTO cdi_accession VALUES (164, '1094046573875', '000140', NULL, 'A document entitled "Archives and Documents Relating to Pueblo Bonito at AMNH" created 12/78 by B. Conklin', 'Joan Mathien', 'Steve Plog', 'Carrie Heitman', NULL, NULL, NULL, NULL, 'Photocopy', 0, NULL); INSERT INTO cdi_accession VALUES (32, '1080602558264', '000013', NULL, 'Finding aid to the National Anthropological Archives: Register to the Papers of Neil Merton Judd', 'National Anthropological Archives', 'Phil Trella', 'Phil Trella', NULL, NULL, 1, 2003, 'Finding Aid', 0, NULL); INSERT INTO cdi_accession VALUES (37, '1080603373755', '000018', NULL, 'Jonathon Reyman. "The History of Archaeology and the Archaeological History of Chaco Canyon, New Mexico." In Tracing Archaeology''s Past: the Historiography of Archaeology. Edited by Andrew L. Christenson. pp. 41-53.', NULL, NULL, 'Emily Cubbon', NULL, NULL, NULL, NULL, 'Photocopy', 0, NULL); INSERT INTO cdi_accession VALUES (67, '1090595435425', '000047', '\\\\HOME2\\faculty\\chacocanyon\\000047\\bibliogr.doc', 'Mathien''s bibliography', 'Frances Joan Mathien', 'Steve Plog', 'Phil Trella', 'Also as an electronic file on Emily''s computer, in the folder labeled "Emily''s CDI Stuff": file = bibliogr.doc', NULL, NULL, NULL, 'Not Specified', 0, NULL); INSERT INTO cdi_accession VALUES (102, '1093372583544', '000079', NULL, 'Photocopy of Object 105. 1925? Tabular data from 4 test sections - all conducted at Pueblo Bonito? Pottery types are broken down by strata. ', 'National Anthropological Archives', 'Phil Trella', 'Phil Trella', NULL, 105, 2, 20040817, 'Photocopy', 0, NULL); INSERT INTO cdi_accession VALUES (84, '1093361005083', '000063', NULL, 'Photocopy of object 973. Typewritten field notes, 4 pages. Includes daily log of activities including room dimensions and excavation procedures. Wall drawings, mention of a disturbed burial. Room 2. ', 'National Anthropological Archives', 'Phil Trella', 'Phil Trella', NULL, 973, 2, 20040817, 'Photocopy', 0, NULL); INSERT INTO cdi_accession VALUES (101, '1093372408213', '000078', NULL, 'Photocopy of object 989. Anna Shepard''s typewritten notes on Bonito sherd paste microscopic analysis from Roberts Pottery Tests IV and II. Also includes one handwritten page of storage location information for Pueblo Bonito sherds/type series', NULL, NULL, 'Phil Trella', NULL, 989, 2, NULL, 'Photocopy', 0, NULL); INSERT INTO cdi_accession VALUES (59, '1089820308165', '000039', NULL, 'Brief, general description of fieldwork at Aztec in 1984 supervised largely by Jim Trott. It was written well after the date of the fieldwork and thus lacks detail and contains little or no data.', 'Joan Mathien', 'Steve Plog', 'Steve Plog', NULL, NULL, NULL, NULL, 'Photocopy', 0, NULL); INSERT INTO cdi_accession VALUES (112, '1093373904409', '000089', NULL, 'Photocopy of object 959. Large piece of brown paper listing ceramic type counts and percentages by stratigraphic level for Room 10 at Bc 53. Includes level depths below surface and thicknesses. By Jack C. Anderson. ', 'National Anthropological Archives', 'Phil Trella', 'Phil Trella', NULL, 959, 2, 20040817, 'Photocopy', 0, NULL); INSERT INTO cdi_accession VALUES (13, '00012', '000012', NULL, 'A Reassessment of Chaco Cylinder Jars. By H. Wolcott Toll', 'Clues to the Past: Papers in Honor of WIlliam M. Sundt', NULL, 'Phil Trella', 'Published article', NULL, NULL, NULL, 'Photocopy', 0, NULL); INSERT INTO cdi_accession VALUES (2, '00001', '000001', NULL, 'Spreadsheet of major collections from Chaco including location, site, materials, and date collected.', 'Joan Mathien', 'Steve Plog', 'Phil Trella', NULL, NULL, NULL, 200306, 'Photocopy', 0, NULL); INSERT INTO cdi_accession VALUES (3, '00002', '000002', NULL, '"Pueblo Bonito: The Published vs. the Unpublished Record" By Jonathan E. Reyman', 'Jonathan Reyman', 'Steve Plog', 'Phil Trella', NULL, NULL, NULL, 200306, 'Photocopy', 0, NULL); INSERT INTO cdi_accession VALUES (4, '00003', '000003', NULL, 'List of collection/archival material from or about Chaco at the Smithsonian - incomplete listing (mostly from SIRIS)', 'Jake Homiak', 'Carrie Heitman', 'Phil Trella', 'Received during our Feb. 17, 2003 initial meeting with Jake Homiak, Rob Leopold, Bill Merrel and Dan Morris', NULL, NULL, 20040217, 'Photocopy', 0, NULL); INSERT INTO cdi_accession VALUES (5, '00004', '000004', NULL, 'Spreadsheet of Chaco Project SAS File Directories', 'Wendy Bustard', 'Steve Plog', 'Phil Trella', 'FA = full analysis', NULL, NULL, 200306, 'Photocopy', 0, NULL); INSERT INTO cdi_accession VALUES (49, '1080606981833', '000005', NULL, '"Chaco Canyon and Vijayanagara: Proposing Spatial Meaning in two Societies." By John M. Fritz', NULL, 'Steve Plog', 'Emily Cubbon', NULL, NULL, NULL, NULL, 'Photocopy', 0, NULL); INSERT INTO cdi_accession VALUES (7, '00006', '000006', NULL, 'Library and Archival Search for Notes on the Archaeology Conducted by Edgar L. Hewett at Chaco Canyon, 1920-1934. Compiled by Betty Kingman, October 1993. ', 'SAR', 'Steve Plog', 'Phil Trella', NULL, NULL, NULL, NULL, 'Photocopy', 0, NULL); INSERT INTO cdi_accession VALUES (8, '00007', '000007', 'CD', 'Chaco Project data (Excel) ', 'Wendy Bustard', 'Worthy Martin', 'Phil Trella', 'Wendy sent Worthy the CD of Chaco Project data as well as LuAnn Wandsnider''s 1987 report on the contents and structures of the data sets in the "other files: directory: "report.txt" (verbatim from Bustard''s letter).', NULL, NULL, 20030801, 'Electronic File-Excel', 0, NULL); INSERT INTO cdi_accession VALUES (10, '00009', '000009', NULL, 'Description of material type codes from the Chaco Project.', 'Wendy Bustard', 'Worthy Martin', 'Phil Trella', 'This is simply a list of material type codes (ceramic, lithic, mineral, vegetal, animal, and misc) from the Chaco Project', NULL, NULL, 20030801, 'Photocopy', 0, NULL); INSERT INTO cdi_accession VALUES (9, '00008', '000008', NULL, 'LuAnn Wandsnider''s 1987 report on the contents and structure of the data sets in the Other Files directory: "report.txt" of the Chaco Project data.', 'Wendy Bustard', 'Worthy Martin', 'Phil Trella', NULL, 4, NULL, 20040801, 'Photocopy', 0, NULL); INSERT INTO cdi_accession VALUES (11, '00010', '000010', NULL, 'Notes on coversion of SAS data files (from Chaco Project) to MS Excel', 'Wendy Bustard', 'Worthy Martin', 'Phil Trella', 'This 2 page document should accompany the CD of project data (accession #000007) - it describes the processes by which that data was converted into its current Excel form. ', NULL, NULL, -20030801, 'Photocopy', 0, NULL); INSERT INTO cdi_accession VALUES (12, '00011', '000011', NULL, '"The Mexican Connection: Cylinder Jars from the Valley of Oaxaca"', 'Dorothy K. Washburn', NULL, 'Phil Trella', NULL, NULL, NULL, NULL, 'Photocopy', 0, NULL); INSERT INTO cdi_accession VALUES (34, '1080602779591', '000015', NULL, 'Guide to the National Anthropological Archives Smithsonian Institution, 1996', 'National Anthropological Archives', 'Carrie Heitman', 'Emily Cubbon', NULL, NULL, NULL, 2003, 'Finding Aid', 0, NULL); INSERT INTO cdi_accession VALUES (35, '1080602854332', '000016', NULL, 'Letter from Susan Haskell at the Peabody Museum of Archaeology and Ethnology: includes list of Chaco Canyon collections (2 pages) and spreadsheet of artifacts from Chaco Canyon (10 pages). ', 'Peabody Museum', 'Carrie Heitman', 'Emily Cubbon', NULL, NULL, NULL, 20040223, 'Photocopy', 0, NULL); INSERT INTO cdi_accession VALUES (36, '1080603086400', '000017', NULL, 'A Guide to the Kiowa Collections at the Smithsonian Institution. Smithsonian Contributions to Anthropology. Number 40, 1997.', 'Bill Merrill', 'Steve Plog', 'Emily Cubbon', NULL, NULL, NULL, 20040217, 'Not Specified', 0, NULL); INSERT INTO cdi_accession VALUES (38, '1080603557550', '000019', NULL, 'Spreadsheet of tree ring sample information. Includes provenience and sample condition, and species identification.', NULL, 'Steve Plog', 'Emily Cubbon', 'unsure of source and site. ask Steve.', NULL, NULL, NULL, 'Photocopy', 0, NULL); INSERT INTO cdi_accession VALUES (166, '1095959571917', '000142', NULL, 'Miscellaneous correspondence between Neil M. Judd and Anna Shepard. ', 'Sheila Goff', 'Carrie Heitman', 'Carrie Heitman', 'These letters were part of the Judd correspondence file photocopied at the University of Colorado Museum. These letters have little if anything to do with Chaco and are therefore not entered into the database as individual objects. ', NULL, 9, 20040816, 'Photocopy', 0, NULL); INSERT INTO cdi_accession VALUES (165, '1094058653649', '000141 (letter and CDs) ', '000141', 'Two CDs sent from Cathy Cameron. CD 1 includes: Chaco Architecture volume (includes figures) and the Chaco Capstone conference volume (text only, figures not yet prepared). (see below for CD 2 description). ', 'Cathy Cameron', 'Steve Plog', 'Carrie Heitman', 'CD 2 includes: Cathy''s article recently submitted to Kiva, Cathy''s Salmon conference paper, and two folders of SW images which were scanned from slides for teaching purposes. (These CDS are accompanied by a letter.) ', NULL, NULL, 20040412, 'Electronic File-Batch', 0, NULL); INSERT INTO cdi_accession VALUES (40, '1080603943630', '000021', NULL, 'Handwritten notes from 10-20-03 visit to the AMNH by Steve Plog and Carrie Heitman. Includes description of museum holdings related to the Pepper collections, etc. ', 'Steve Plog and Carrie Heitman', NULL, 'Emily Cubbon', 'Keeping these notes on file for future reference regarding extent of collections at AMNH.', NULL, NULL, 20031020, 'CDI Notes', 0, NULL); INSERT INTO cdi_accession VALUES (168, '1096661463491', '000143', NULL, 'Document received at CDI steering committee meetings 2003. Cover document is "Chaco Culture Collections Database Development". Attached is a summary of Tree-Ring data from the Chaco and Aztec Wood Projects and a list of Aztec Dates.', 'Wendy Bustard', 'Phil Trella', 'Phil Trella', 'The first one-page document simply outlines the work left to be done as part of Hannah Fretwell''s work on the grant from the NPA through Chip Wills. Included in the summary are the names of files we''ve received and FS numbers for particular sites.', NULL, NULL, NULL, 'Photocopy', 0, NULL); INSERT INTO cdi_accession VALUES (169, '1096662301214', '000144', NULL, '9 page inventory of files generated as part of the Additional Lands Survey 1983. Received at CDI steering committee meetings 2003.', 'Wendy Bustard', 'Phil Trella', 'Phil Trella', NULL, NULL, NULL, NULL, 'Not Specified', 0, NULL); INSERT INTO cdi_accession VALUES (170, '1096663033637', '000145', NULL, '9 page inventory of electronic files compiled by Wendy Bustard of chaco project data. Table lists file name, size, type adn description. Many files are in SAS, excel and ASCII format. Many pertain to ceramic analysis', 'Wendy Bustard', 'Phil Trella', 'Phil Trella', 'Document was compiled by Wendy Bustard on June 6, 2003', NULL, NULL, NULL, 'Not Specified', 0, NULL); INSERT INTO cdi_accession VALUES (118, '1093445252052', '000090', 'Although these are electronic files, they are not housed on the faculty web server because they are too large. In addition to being burned on CD, they are also currently housed on the external hard drive attached to Abby''s Computer.', '5 CD''s containing .tif files of the Earl Morris Microfiche that were digitized in 11/2002. Sheets AZRU 211(4 sheets of microfiche) and AZRU 212 (1 sheet of microfiche) were digitized.', 'Deb Confer', 'Steve Plog', 'Phil Trella', 'The microfiche was originally loaned to us in the fall of 2002 by the University of Colorado Museum. The sheets have all been printed as well and are in the blue binder labeled "Earl Morris Microfiche Printouts"', 996, 10, 200211, 'Electronic File-Batch', 0, NULL); INSERT INTO cdi_accession VALUES (119, '1093464076026', '000096', NULL, 'Printouts of all Microfiche loaned to Steve Plog from The University of Colorado Museum. These printouts were made by Nicole Wade and Phil Trella in November of 2002. Printouts are in order as they appeared on microfiche. ', 'University of Colorado Museum', 'Steve Plog', 'Phil Trella', 'See also Accession 000090 for .tif files of these pages. Many of the .tif files are much more readable than the black and white printouts from the microfiche reader.', 1046, 10, 200211, 'Photocopy', 0, NULL); -- -- Data for TOC entry 86 (OID 561308) -- Name: person; Type: TABLE DATA; Schema: public; Owner: rwb3y -- INSERT INTO person VALUES (190, 'Salazar, '); INSERT INTO person VALUES (169, 'White, Adrian'); INSERT INTO person VALUES (119, 'Gutierrez, Alberto'); INSERT INTO person VALUES (125, 'Hayes, Alden C.'); INSERT INTO person VALUES (68, 'Dennison, Alvin'); INSERT INTO person VALUES (49, 'Clay, Amanda'); INSERT INTO person VALUES (124, 'Hasuse, Amos'); INSERT INTO person VALUES (101, 'Drager, Andrew'); INSERT INTO person VALUES (73, 'Aragon, Ann M.'); INSERT INTO person VALUES (140, 'McKibben, Ann'); INSERT INTO person VALUES (177, 'Witter, Ann'); INSERT INTO person VALUES (58, 'Curran, Antoinette'); INSERT INTO person VALUES (215, 'Ireland, Arthur K.'); INSERT INTO person VALUES (120, 'Hagarty, Barbara M.'); INSERT INTO person VALUES (146, 'Mills, Barbara'); INSERT INTO person VALUES (106, 'Etcitty, Ben'); INSERT INTO person VALUES (153, 'Norberto, Ben'); INSERT INTO person VALUES (163, 'Wainwright, Bernard'); INSERT INTO person VALUES (8, 'Dutton, Bertha'); INSERT INTO person VALUES (145, 'Miles-Neely, Beth'); INSERT INTO person VALUES (59, 'Curtis, Bonnie'); INSERT INTO person VALUES (184, 'Ratti, Brett'); INSERT INTO person VALUES (99, 'Burns, Bruce'); INSERT INTO person VALUES (147, 'Moore, Bruce E.'); INSERT INTO person VALUES (179, 'Yazzi, Bruce'); INSERT INTO person VALUES (141, 'McLeod, C. Milo'); INSERT INTO person VALUES (217, 'Joiner, Carol'); INSERT INTO person VALUES (161, 'Vigil, Carol'); INSERT INTO person VALUES (185, 'Reeves, Caroline'); INSERT INTO person VALUES (39, 'Cameron, Catherine M.'); INSERT INTO person VALUES (189, 'Ross, Catherine'); INSERT INTO person VALUES (228, 'Lanell, Charles'); INSERT INTO person VALUES (150, 'Morrison, Charles Randall'); INSERT INTO person VALUES (84, 'Beyale, Chee'); INSERT INTO person VALUES (143, 'Mitchell, Chee'); INSERT INTO person VALUES (65, 'Davis, Cindy'); INSERT INTO person VALUES (166, 'Werito, Clifford'); INSERT INTO person VALUES (172, 'Windes, Connor L.'); INSERT INTO person VALUES (195, 'Snow, Cordelia'); INSERT INTO person VALUES (93, 'Breternitz, Cory D.'); INSERT INTO person VALUES (60, 'Curtis, Curt'); INSERT INTO person VALUES (66, 'Davis, D.'); INSERT INTO person VALUES (229, 'Levine, Daisy'); INSERT INTO person VALUES (165, 'Wasson, Dan'); INSERT INTO person VALUES (178, 'Witter, Dan'); INSERT INTO person VALUES (236, 'Lopez, Daniel'); INSERT INTO person VALUES (79, 'Barde, David'); INSERT INTO person VALUES (98, 'Brugge, David M.'); INSERT INTO person VALUES (23, 'Love, David Waxham'); INSERT INTO person VALUES (182, 'Peterson, Delmar'); INSERT INTO person VALUES (122, 'Harrison, Dennis'); INSERT INTO person VALUES (199, 'Stanford, Dennis'); INSERT INTO person VALUES (118, 'Guenzi, Dolores'); INSERT INTO person VALUES (134, 'Majewski-Burns, Donna'); INSERT INTO person VALUES (41, 'Cassidy, Dorothy'); INSERT INTO person VALUES (104, 'Etavard, Dorothy'); INSERT INTO person VALUES (9, 'Keur, Dorothy'); INSERT INTO person VALUES (102, 'Drager, Dwight L.'); INSERT INTO person VALUES (152, 'Neller, Earl H.'); INSERT INTO person VALUES (114, 'Garcia, Eddy'); INSERT INTO person VALUES (14, 'Hewett, Edgar L.'); INSERT INTO person VALUES (40, 'Camilli, Eileen'); INSERT INTO person VALUES (170, 'Wills, Elizabeth O. (Lisa)'); INSERT INTO person VALUES (69, 'Abbink, Emily'); INSERT INTO person VALUES (88, 'Blea, Enrique'); INSERT INTO person VALUES (214, 'Ingbar, Eric'); INSERT INTO person VALUES (25, 'Mathien, Frances Joan'); INSERT INTO person VALUES (221, 'Kinney, Frances'); INSERT INTO person VALUES (54, 'Creelman, Frank'); INSERT INTO person VALUES (38, 'Burt, Fred'); INSERT INTO person VALUES (97, 'Brown, Galen'); INSERT INTO person VALUES (232, 'Lister, Gary G.'); INSERT INTO person VALUES (81, 'Begay, Gene'); INSERT INTO person VALUES (85, 'Beyale, George'); INSERT INTO person VALUES (2, 'Pepper, George'); INSERT INTO person VALUES (225, 'Knight, Georgia'); INSERT INTO person VALUES (123, 'Harrison, Gerald'); INSERT INTO person VALUES (107, 'Etcitty, Gilbert'); INSERT INTO person VALUES (50, 'Clay, Glendalee'); INSERT INTO person VALUES (162, 'Vigil, Gloria'); INSERT INTO person VALUES (15, 'Allen, Glover'); INSERT INTO person VALUES (61, 'Curtis, Greg'); INSERT INTO person VALUES (222, 'Klappert, H. E.'); INSERT INTO person VALUES (33, 'Toll, H. Wolcott'); INSERT INTO person VALUES (11, 'Colton, Harold'); INSERT INTO person VALUES (230, 'Lewin, Harrilyn'); INSERT INTO person VALUES (108, 'Etcitty, Herman'); INSERT INTO person VALUES (7, 'Julian, Hurst'); INSERT INTO person VALUES (24, 'Schultz, J. D.'); INSERT INTO person VALUES (83, 'Bertram, Jack'); INSERT INTO person VALUES (31, 'Cully, Jack F.'); INSERT INTO person VALUES (209, 'Trujillo, Jake'); INSERT INTO person VALUES (86, 'Beyale, James'); INSERT INTO person VALUES (90, 'Bradford, James'); INSERT INTO person VALUES (44, 'Charles, James'); INSERT INTO person VALUES (103, 'Ebert, James I.'); INSERT INTO person VALUES (219, 'Kee, James'); INSERT INTO person VALUES (129, 'Holley, Jay'); INSERT INTO person VALUES (48, 'Clark, Jennie'); INSERT INTO person VALUES (234, 'Livingston, Jerry L.'); INSERT INTO person VALUES (237, 'Lopez, Jimmy'); INSERT INTO person VALUES (156, 'Pablo, Jimmy'); INSERT INTO person VALUES (67, 'Dederich, Jo Devon'); INSERT INTO person VALUES (76, 'Atencio, John'); INSERT INTO person VALUES (80, 'Beardsley, John'); INSERT INTO person VALUES (96, 'Broster, John'); INSERT INTO person VALUES (27, 'Schelberg, John D.'); INSERT INTO person VALUES (192, 'Shaffer, John'); INSERT INTO person VALUES (198, 'Speth, John'); INSERT INTO person VALUES (200, 'Stein, John'); INSERT INTO person VALUES (207, 'Thrift, John'); INSERT INTO person VALUES (168, 'Wero, John'); INSERT INTO person VALUES (137, 'Martinez, Johnny'); INSERT INTO person VALUES (21, 'Ross, Joseph R.'); INSERT INTO person VALUES (205, 'Tainter, Joseph'); INSERT INTO person VALUES (144, 'Miles, Judith L.'); INSERT INTO person VALUES (201, 'Sterns, Judith'); INSERT INTO person VALUES (72, 'Anastasio, Julian'); INSERT INTO person VALUES (56, 'Crowder, June'); INSERT INTO person VALUES (231, 'Linville, June'); INSERT INTO person VALUES (238, 'Lopez, Junior'); INSERT INTO person VALUES (62, 'Curtis, Kathy'); INSERT INTO person VALUES (53, 'Cooper, Kelly'); INSERT INTO person VALUES (138, 'Masterson, Kelly'); INSERT INTO person VALUES (78, 'Augustine, Ken'); INSERT INTO person VALUES (89, 'Boyer, Kent'); INSERT INTO person VALUES (92, 'Bratcher, L. Angelle'); INSERT INTO person VALUES (181, 'Peaker, L.'); INSERT INTO person VALUES (154, 'Nordby, Larry V.'); INSERT INTO person VALUES (187, 'Rimbert, Lauren T.'); INSERT INTO person VALUES (30, 'Smith, Lawrence Noel.'); INSERT INTO person VALUES (211, 'Hott, Leah'); INSERT INTO person VALUES (110, 'Flynn, Leo'); INSERT INTO person VALUES (131, 'Lopez, Lewis'); INSERT INTO person VALUES (55, 'Creelman, Linda'); INSERT INTO person VALUES (130, 'Hooten, Linda Jean'); INSERT INTO person VALUES (180, 'Young, Lisa C.'); INSERT INTO person VALUES (206, 'Tatum, Lise S.'); INSERT INTO person VALUES (32, 'Jacobson, LouAnn'); INSERT INTO person VALUES (157, 'Padilla, Louis'); INSERT INTO person VALUES (164, 'Wandsnider, LuAnn'); INSERT INTO person VALUES (74, 'Arany, Lynn'); INSERT INTO person VALUES (37, 'Sebastian, Lynne'); INSERT INTO person VALUES (111, 'Forman, Mac'); INSERT INTO person VALUES (100, 'Donaldson, Marcia'); INSERT INTO person VALUES (208, 'Truell, Marcia L.'); INSERT INTO person VALUES (151, 'Mosher, Margaret'); INSERT INTO person VALUES (22, 'Obenauf, Margaret Senter'); INSERT INTO person VALUES (95, 'Brooks, Marita H.'); INSERT INTO person VALUES (116, 'Graham, Martha'); INSERT INTO person VALUES (94, 'Britt, Martin'); INSERT INTO person VALUES (20, 'Struever, Mary B.'); INSERT INTO person VALUES (47, 'Claffery, Mary'); INSERT INTO person VALUES (52, 'Comber, Mary Jo'); INSERT INTO person VALUES (173, 'Windes, Mary Jo'); INSERT INTO person VALUES (202, 'Stiner, Mary'); INSERT INTO person VALUES (213, 'Hulett, Matt'); INSERT INTO person VALUES (176, 'Windham, Michael'); INSERT INTO person VALUES (148, 'Moquin, Mike'); INSERT INTO person VALUES (203, 'Struever, Mollie'); INSERT INTO person VALUES (70, 'Akins, Nancy J.'); INSERT INTO person VALUES (158, 'Pattison, Natalie'); INSERT INTO person VALUES (159, 'Trujillo, Nelson'); INSERT INTO person VALUES (112, 'Freund, Pan'); INSERT INTO person VALUES (105, 'Etavard, Paul'); INSERT INTO person VALUES (160, 'Tso, Paul'); INSERT INTO person VALUES (193, 'Shorty, Pav'); INSERT INTO person VALUES (29, 'McKenna, Peter J.'); INSERT INTO person VALUES (136, 'Marjon, Peter'); INSERT INTO person VALUES (186, 'Rice, Phil'); INSERT INTO person VALUES (10, 'Warburg, Prof.'); INSERT INTO person VALUES (191, 'Schalk, Randall F.'); INSERT INTO person VALUES (224, 'Kloth, Raymond'); INSERT INTO person VALUES (142, 'Meleski, Richard'); INSERT INTO person VALUES (235, 'Loose, Richard W.'); INSERT INTO person VALUES (3, 'Wetherill, Richard'); INSERT INTO person VALUES (63, 'Curtis, Robert'); INSERT INTO person VALUES (117, 'Greenlee, Robert'); INSERT INTO person VALUES (233, 'Lister, Robert H.'); INSERT INTO person VALUES (183, 'Powers, Robert P.'); INSERT INTO person VALUES (196, 'Sounart, Robert'); INSERT INTO person VALUES (212, 'Huckins, Roger'); INSERT INTO person VALUES (167, 'Werito, Roger'); INSERT INTO person VALUES (17, 'Nichols, Ronald Franklin'); INSERT INTO person VALUES (26, 'Fanale, Rosalie A.'); INSERT INTO person VALUES (75, 'Archuleta, Rosarita Ortega'); INSERT INTO person VALUES (71, 'Ames, Rosemary'); INSERT INTO person VALUES (45, 'Chavez, Sarah Lee'); INSERT INTO person VALUES (87, 'Blanchard, Scott P.'); INSERT INTO person VALUES (204, 'Sullivan, Sharon'); INSERT INTO person VALUES (216, 'Ivey, Sherry J.'); INSERT INTO person VALUES (46, 'Chavez, Shirley'); INSERT INTO person VALUES (223, 'Klausner, Stephanie'); INSERT INTO person VALUES (197, 'Sonnleitner, Stephanie'); INSERT INTO person VALUES (18, 'Hall, Stephen A.'); INSERT INTO person VALUES (36, 'Lekson, Stephen H.'); INSERT INTO person VALUES (194, 'Shure, Stephen'); INSERT INTO person VALUES (188, 'Roll, Steve'); INSERT INTO person VALUES (226, 'Knight, SuSu'); INSERT INTO person VALUES (51, 'Cly, Susan'); INSERT INTO person VALUES (174, 'Windes, Thomas C.'); INSERT INTO person VALUES (133, 'Lyons, Thomas R.'); INSERT INTO person VALUES (210, 'Hopkins, Thomas S.'); INSERT INTO person VALUES (139, 'Mathews, Thomas W.'); INSERT INTO person VALUES (175, 'Windes, Todd'); INSERT INTO person VALUES (113, 'Fulgham, Tommy R.'); INSERT INTO person VALUES (82, 'Begay, Tsosie'); INSERT INTO person VALUES (64, 'Curtis, Ty'); INSERT INTO person VALUES (149, 'Morgan, Vernon'); INSERT INTO person VALUES (220, 'Kee, Victor'); INSERT INTO person VALUES (77, 'Atkins, Victoria'); INSERT INTO person VALUES (218, 'Judge, W. James'); INSERT INTO person VALUES (43, 'Castillo, Wallace'); INSERT INTO person VALUES (42, 'Castiano, Wayne'); INSERT INTO person VALUES (126, 'Henry, Wilbur'); INSERT INTO person VALUES (127, 'Henry, Wilford'); INSERT INTO person VALUES (115, 'Gillespie, William B.'); INSERT INTO person VALUES (91, 'Brancard, William'); INSERT INTO person VALUES (171, 'Wills, Wirt H.'); INSERT INTO person VALUES (240, 'Degenhardt, William G.'); INSERT INTO person VALUES (241, 'Jones, Kirtland L.'); INSERT INTO person VALUES (242, 'Dunham, Arthur E.'); INSERT INTO person VALUES (243, 'Keyse, Thomas E.'); INSERT INTO person VALUES (244, 'Stanford, Jeannie'); INSERT INTO person VALUES (227, 'Struever, Kikorian'); INSERT INTO person VALUES (245, 'Snead, Rodman E.'); INSERT INTO person VALUES (246, 'DeAngelis, James M.'); INSERT INTO person VALUES (247, 'DuChene, H. R.'); INSERT INTO person VALUES (135, 'Malde, Harold'); INSERT INTO person VALUES (248, 'Potter, Loren D.'); INSERT INTO person VALUES (249, 'Kelley, N. Edmund'); INSERT INTO person VALUES (250, 'Bronitsky, Ron'); INSERT INTO person VALUES (251, 'Gumerman, George J.'); INSERT INTO person VALUES (252, 'Ware, John'); INSERT INTO person VALUES (253, 'Barker, L.'); INSERT INTO person VALUES (254, 'Capper, L.'); INSERT INTO person VALUES (255, 'Chang, C.'); INSERT INTO person VALUES (256, 'Hanson, D.'); INSERT INTO person VALUES (257, 'Reed, M.'); INSERT INTO person VALUES (258, 'Sessions, S.'); INSERT INTO person VALUES (260, 'Siemers, Charles T.'); INSERT INTO person VALUES (261, 'King, Norman R.'); INSERT INTO person VALUES (262, 'Perry, Gregg'); INSERT INTO person VALUES (263, 'Lewis, David'); INSERT INTO person VALUES (264, 'Shipman, Thomas'); INSERT INTO person VALUES (265, 'Vivian, R. Gwinn'); INSERT INTO person VALUES (266, 'Dodgen, Dulce N.'); INSERT INTO person VALUES (267, 'Hartmann, Gayle H.'); INSERT INTO person VALUES (268, 'Hodges, William K.'); INSERT INTO person VALUES (269, 'Jorde, Lynn'); INSERT INTO person VALUES (270, 'Young, Richard'); INSERT INTO person VALUES (271, 'Werner, Oswald'); INSERT INTO person VALUES (272, 'Fransted, Dennis'); INSERT INTO person VALUES (273, 'Noonan, Terry'); INSERT INTO person VALUES (275, 'Vickers, Roger'); INSERT INTO person VALUES (276, 'Beven, Bruce'); INSERT INTO person VALUES (277, 'Dolphin, Lambert'); INSERT INTO person VALUES (278, 'Ralph, Elizabeth'); INSERT INTO person VALUES (279, 'Dean, Jeffrey S.'); INSERT INTO person VALUES (280, 'Robinson, William'); INSERT INTO person VALUES (281, 'Warren, A. Helene'); INSERT INTO person VALUES (282, 'Levine, Richard'); INSERT INTO person VALUES (283, 'Morain, Stanley A.'); INSERT INTO person VALUES (284, 'Wells, Stephen G.'); INSERT INTO person VALUES (285, 'Rose, Martin'); INSERT INTO person VALUES (286, 'Toll, Mollie S.'); INSERT INTO person VALUES (287, 'Williams, David H.'); INSERT INTO person VALUES (288, 'Whittlesey, Julian'); INSERT INTO person VALUES (289, 'Allen, Chris'); INSERT INTO person VALUES (290, 'Thomas, Bob'); INSERT INTO person VALUES (291, 'Weymouth, John'); INSERT INTO person VALUES (292, 'Bennett, Connie'); INSERT INTO person VALUES (293, 'Bandy, Phil'); INSERT INTO person VALUES (294, 'DuBois, R.'); INSERT INTO person VALUES (295, 'Welsh, Stanley'); INSERT INTO person VALUES (297, 'Marshall, Michael P.'); INSERT INTO person VALUES (298, 'Warren, Richard L.'); INSERT INTO person VALUES (299, 'Nash, Thomas H. III'); INSERT INTO person VALUES (300, 'Sigal, Lorene L.'); INSERT INTO person VALUES (301, 'Lagasse, Peter F.'); INSERT INTO person VALUES (302, 'Simons, D. B.'); INSERT INTO person VALUES (303, 'Li, R. M.'); INSERT INTO person VALUES (304, 'Eggert, K. G.'); INSERT INTO person VALUES (305, 'Summer, R. M.'); INSERT INTO person VALUES (306, 'Anzia, T. L.'); INSERT INTO person VALUES (307, 'Fairley, T. C.'); INSERT INTO person VALUES (308, 'Conner, M. P.'); INSERT INTO person VALUES (309, 'Kirkpatrick, J. E.'); INSERT INTO person VALUES (310, 'Schumm, S. A.'); INSERT INTO person VALUES (311, 'Yarborough, Keith A.'); INSERT INTO person VALUES (312, 'McAuliffe, Dennis'); INSERT INTO person VALUES (313, 'Betancourt, Julio L.'); INSERT INTO person VALUES (314, 'Van Devender, Thomas R.'); INSERT INTO person VALUES (315, 'Emslie, Steve'); INSERT INTO person VALUES (316, 'McCharen, Joe'); INSERT INTO person VALUES (317, 'Heil, Ken'); INSERT INTO person VALUES (318, 'Sofaer, Anna'); INSERT INTO person VALUES (319, 'Sappington, Robert Lee'); INSERT INTO person VALUES (320, 'Schieck, Cherie'); INSERT INTO person VALUES (321, 'Vicklund, Lonyta'); INSERT INTO person VALUES (323, 'Altschul, Jeffrey S.'); INSERT INTO person VALUES (324, 'Gleickman, Carol L.'); INSERT INTO person VALUES (325, 'Walt, Henry'); INSERT INTO person VALUES (326, 'Warburton, Miranda'); INSERT INTO person VALUES (327, 'Reinhard, Karl J.'); INSERT INTO person VALUES (328, 'Dean, Glenna'); INSERT INTO person VALUES (329, 'Bradley, Zorro'); INSERT INTO person VALUES (330, 'Campbell, John'); INSERT INTO person VALUES (331, 'Corbett, John M.'); INSERT INTO person VALUES (332, 'Daugherty, Richard D.'); INSERT INTO person VALUES (333, 'Ellis, Florence H.'); INSERT INTO person VALUES (334, 'Ewing, George'); INSERT INTO person VALUES (335, 'Haag, William G.'); INSERT INTO person VALUES (336, 'Longacre, William A.'); INSERT INTO person VALUES (337, 'Reed, Erik K.'); INSERT INTO person VALUES (338, 'Schwartz, Douglas W.'); INSERT INTO person VALUES (12, 'Judd, Neil M.'); INSERT INTO person VALUES (339, 'Ruppert, Karl'); INSERT INTO person VALUES (340, 'Vivian, Gordon'); INSERT INTO person VALUES (341, 'Voll, Charles B.'); INSERT INTO person VALUES (343, 'Luhrs, Dorothy'); INSERT INTO person VALUES (344, 'Ferdon, Edwin'); INSERT INTO person VALUES (345, 'Rixey, Raymond'); INSERT INTO person VALUES (346, 'Hollenbach, Marion'); INSERT INTO person VALUES (347, 'Vann, Richard'); INSERT INTO person VALUES (348, 'Drucker, Phillip'); INSERT INTO person VALUES (349, 'Hawley, Florence'); INSERT INTO person VALUES (350, 'Brand, Donald D.'); INSERT INTO person VALUES (351, 'Reiter, Paul'); INSERT INTO person VALUES (352, 'Bullen, Ripley'); INSERT INTO person VALUES (353, 'Buggeln, Theodora'); INSERT INTO person VALUES (354, 'Chandler, Mary'); INSERT INTO person VALUES (355, 'Burroughs, Carroll'); INSERT INTO person VALUES (356, 'Stubbs, Stanley'); INSERT INTO person VALUES (357, 'Shepard, Anna'); INSERT INTO person VALUES (358, 'Fisher, Reginald'); INSERT INTO person VALUES (359, 'Hutchinson, Charles'); INSERT INTO person VALUES (360, 'Ely, Albert'); INSERT INTO person VALUES (361, 'Kelley, J. Charles'); INSERT INTO person VALUES (362, 'Maxon, James'); INSERT INTO person VALUES (363, 'Bromberg, William'); INSERT INTO person VALUES (364, 'Richert, Roland'); INSERT INTO person VALUES (365, 'Morris, Don'); INSERT INTO person VALUES (366, 'Abel, Leland'); INSERT INTO person VALUES (367, 'Draper, Neale'); INSERT INTO person VALUES (368, 'Franklin, Hayward'); INSERT INTO person VALUES (322, 'Post, Stephen'); INSERT INTO person VALUES (369, 'Bradley, Bruce'); INSERT INTO person VALUES (370, 'Schutt, Jeanne'); INSERT INTO person VALUES (371, 'VerEecke, Catherine'); INSERT INTO person VALUES (372, 'Bennett, Eric E.'); INSERT INTO person VALUES (373, 'Palkovich, Ann M.'); INSERT INTO person VALUES (374, 'Conley, Gary J.'); INSERT INTO person VALUES (375, 'Hull, Hulbert M.'); INSERT INTO person VALUES (377, 'McBride, J. David E.'); INSERT INTO person VALUES (378, 'Moore, James L.'); INSERT INTO person VALUES (379, 'Walters, Paul Jr.'); INSERT INTO person VALUES (380, 'Woods, Margaret'); INSERT INTO person VALUES (382, 'Knudson, L.'); INSERT INTO person VALUES (383, 'Raphael, M.'); INSERT INTO person VALUES (384, 'Hibben, Frank'); INSERT INTO person VALUES (385, 'Bliss, Wesley'); INSERT INTO person VALUES (386, 'Glenn, Nan'); INSERT INTO person VALUES (387, 'Clark, Barbara'); INSERT INTO person VALUES (388, 'Seltzer, F.'); INSERT INTO person VALUES (389, 'Senter, Donovan'); INSERT INTO person VALUES (390, 'Kluckhohn, Clyde'); INSERT INTO person VALUES (391, 'Mulloy, William'); INSERT INTO person VALUES (392, 'Kelly, A. R.'); INSERT INTO person VALUES (393, 'Taylor, Walter'); INSERT INTO person VALUES (394, 'Postlethwaite, W. W.'); INSERT INTO person VALUES (395, 'Harding, Mabel'); INSERT INTO person VALUES (396, 'Mayer, Martin'); INSERT INTO person VALUES (397, 'Buckingham, George'); INSERT INTO person VALUES (342, 'Shiner, Joel'); INSERT INTO person VALUES (398, 'Boone, H. K.'); INSERT INTO person VALUES (13, 'Roberts, Frank H. H. Jr.'); INSERT INTO person VALUES (399, 'Amsden, Monroe'); INSERT INTO person VALUES (400, 'Blom, Frans'); INSERT INTO person VALUES (401, 'Collins, H. B.'); INSERT INTO person VALUES (402, 'Hammond, L. C.'); INSERT INTO person VALUES (403, 'Havens, O. C.'); INSERT INTO person VALUES (404, 'Martin, George B.'); INSERT INTO person VALUES (405, 'Roberts, Henry B.'); INSERT INTO person VALUES (406, 'Putnam, Frederic'); INSERT INTO person VALUES (407, 'Tozzer, Alfred M.'); INSERT INTO person VALUES (408, 'Farabee, William C.'); INSERT INTO person VALUES (409, 'Hrdlicka, Ales'); INSERT INTO person VALUES (5, 'Moorehead, Warren K.'); INSERT INTO person VALUES (410, 'Holsinger, S. J.'); INSERT INTO person VALUES (411, 'Pearce, Sally'); INSERT INTO person VALUES (412, 'Maloney, Joseph'); INSERT INTO person VALUES (413, 'O. B. Walsh'); INSERT INTO person VALUES (414, 'Adams, Stephen E.'); INSERT INTO person VALUES (416, 'Irwin-Williams, Cynthia'); INSERT INTO person VALUES (417, 'Wiseman, Regge N.'); INSERT INTO person VALUES (418, 'Neitzel, Jill E.'); INSERT INTO person VALUES (419, 'Beal, John D.'); INSERT INTO person VALUES (420, 'Simmons, Alan H.'); INSERT INTO person VALUES (421, 'McNitt, Frank'); INSERT INTO person VALUES (422, 'Arritt, Susan'); INSERT INTO person VALUES (423, 'Saile, David G.'); INSERT INTO person VALUES (424, 'Finn, C.'); INSERT INTO person VALUES (425, 'Wilshusen, Richard H.'); INSERT INTO person VALUES (426, 'Farmer, James D.'); INSERT INTO person VALUES (427, 'Koeppen, R. C.'); INSERT INTO person VALUES (428, 'Mahoney, Nancy'); INSERT INTO person VALUES (429, 'Baldwin, Gordon C.'); INSERT INTO person VALUES (430, 'Boling, E.'); INSERT INTO person VALUES (431, 'Vann, R.P.'); INSERT INTO person VALUES (432, 'Van Dyke, Ruth M.'); INSERT INTO person VALUES (433, 'Scurlock, Dan'); INSERT INTO person VALUES (434, 'Dulaney, Alan R.'); INSERT INTO person VALUES (435, 'Dosh, Steven G.'); INSERT INTO person VALUES (436, 'Zinser, V.'); INSERT INTO person VALUES (437, 'Sinclair, Rolf M.'); INSERT INTO person VALUES (438, 'Didcoct, Betty'); INSERT INTO person VALUES (439, 'Curtis, Ross'); INSERT INTO person VALUES (440, 'Wakenhorst, Roger'); INSERT INTO person VALUES (441, 'West, Jeff'); INSERT INTO person VALUES (442, 'Tuwaletstiwa, P. J.'); INSERT INTO person VALUES (443, 'Scheick, Cherie'); INSERT INTO person VALUES (444, 'Webb, Melody'); INSERT INTO person VALUES (445, 'Donoghue, James J.'); INSERT INTO person VALUES (446, 'Sulam, Barry'); INSERT INTO person VALUES (447, 'Reyman, Jonathan E.'); INSERT INTO person VALUES (448, 'Kovacik, Jospeh J.'); INSERT INTO person VALUES (449, 'Smiley, Terah L.'); INSERT INTO person VALUES (450, 'Bannister, Bryant'); INSERT INTO person VALUES (451, 'Prudden, T. Mitchell'); INSERT INTO person VALUES (452, 'Miller, James Marshall'); INSERT INTO person VALUES (453, 'Gladwin, Harold Sterling'); INSERT INTO person VALUES (454, 'Pierson, Lloyd M.'); INSERT INTO person VALUES (455, 'Fowler, Don'); INSERT INTO person VALUES (456, 'Doxtater, Dennis'); INSERT INTO person VALUES (457, 'Merlin, Thomas W.'); INSERT INTO person VALUES (458, 'Merlin, Frances Levine'); INSERT INTO person VALUES (459, 'Switzer, Ronald R.'); INSERT INTO person VALUES (460, 'Gladwin, Winifred'); INSERT INTO person VALUES (461, 'Johnson, Fern'); INSERT INTO person VALUES (462, 'Schillaci, Michael A.'); INSERT INTO person VALUES (463, 'Ozolins, E. G.'); INSERT INTO person VALUES (465, 'Williamson, Ray A.'); INSERT INTO person VALUES (466, 'Rocek, Thomas R.'); INSERT INTO person VALUES (467, 'Wetherill, Lulu Wade'); INSERT INTO person VALUES (468, 'Cummings, Byron'); INSERT INTO person VALUES (464, 'Lumpken, Charles K. Jr.'); INSERT INTO person VALUES (469, 'Chapin, Gretchen'); INSERT INTO person VALUES (470, 'Marjorie, James'); INSERT INTO person VALUES (471, 'Dodge, R. E.'); INSERT INTO person VALUES (472, 'Wilcox, David R.'); INSERT INTO person VALUES (473, NULL); INSERT INTO person VALUES (474, 'Marinakis, Yorgos'); INSERT INTO person VALUES (475, 'Wetherill, M.'); INSERT INTO person VALUES (477, 'Dent, Barbara McReynolds'); INSERT INTO person VALUES (476, 'Dent, Stephen D.'); INSERT INTO person VALUES (478, 'Coleman, Barbara'); INSERT INTO person VALUES (479, 'Tucker, Gordon C. Jr.'); INSERT INTO person VALUES (480, 'Snyder, Floyd W.'); INSERT INTO person VALUES (481, 'Morris, Elizabeth Ann'); INSERT INTO person VALUES (482, 'Lambert, Ruth E.'); INSERT INTO person VALUES (483, 'Kolber, Jane'); INSERT INTO person VALUES (484, 'Stojanowski, Christopher M.'); INSERT INTO person VALUES (485, 'Zeilik, Michael'); INSERT INTO person VALUES (486, 'Baltz, Elmer H.'); INSERT INTO person VALUES (487, 'Turner, Christy G. II'); INSERT INTO person VALUES (488, 'Foster, W.'); INSERT INTO person VALUES (489, 'Hargrave, Lyndon L.'); INSERT INTO person VALUES (490, 'Maher, Robert F.'); INSERT INTO person VALUES (491, 'Hammond, J. F.'); INSERT INTO person VALUES (492, 'Riley, Carroll L.'); INSERT INTO person VALUES (493, 'Treshow, Michael'); INSERT INTO person VALUES (494, 'Keur, John Y.'); INSERT INTO person VALUES (495, 'Mindeleff, Victor'); INSERT INTO person VALUES (496, 'Bradley, Ronna J.'); INSERT INTO person VALUES (498, 'Sullivan, Richard'); INSERT INTO person VALUES (497, NULL); INSERT INTO person VALUES (499, 'Ferguson, Marjorie E. '); INSERT INTO person VALUES (500, 'Love, Marian F.'); INSERT INTO person VALUES (501, 'Washburn, Dorothy K. '); INSERT INTO person VALUES (502, 'Trott, Joseph J.'); INSERT INTO person VALUES (503, 'Ferdon, Edwin N.'); INSERT INTO person VALUES (504, 'Morenon, E. Pierre'); INSERT INTO person VALUES (505, 'Marshall, Anne Lawrason '); INSERT INTO person VALUES (506, 'Lummis, Charles F. '); INSERT INTO person VALUES (507, 'Hatch, Sharon K. '); INSERT INTO person VALUES (508, 'Winsor, J.'); INSERT INTO person VALUES (509, 'Winter, Joseph C. '); INSERT INTO person VALUES (510, 'Hartzler, Robert'); INSERT INTO person VALUES (512, 'Doelle, William H.'); INSERT INTO person VALUES (513, NULL); INSERT INTO person VALUES (511, 'Orcutt, Janet D.'); INSERT INTO person VALUES (514, 'Fell, Barry'); INSERT INTO person VALUES (515, 'Kantrowitz, Min'); INSERT INTO person VALUES (516, 'Long, Stephen'); INSERT INTO person VALUES (517, 'Kelley, Klara B.'); INSERT INTO person VALUES (518, NULL); INSERT INTO person VALUES (519, 'Crown, Patricia L.'); INSERT INTO person VALUES (520, 'Upham, Steadman'); INSERT INTO person VALUES (521, 'Plog, Stephen'); INSERT INTO person VALUES (523, 'McGuire, Randall H.'); INSERT INTO person VALUES (524, 'Saitta, Dean J.'); INSERT INTO person VALUES (522, NULL); INSERT INTO person VALUES (525, 'Carlson, John B.'); INSERT INTO person VALUES (526, 'Crawford, Robert P.'); INSERT INTO person VALUES (552, 'Maruca, Mary'); INSERT INTO person VALUES (553, 'Budge, Thomas K.'); INSERT INTO person VALUES (554, 'Komarek, Amelia'); INSERT INTO person VALUES (555, 'Kelley, Ellen Abbott'); INSERT INTO person VALUES (556, 'Toulouse, Joseph Harrison III'); INSERT INTO person VALUES (557, 'Moulton, Robert H. '); INSERT INTO person VALUES (558, 'Andrae, Scott W.'); INSERT INTO person VALUES (560, 'Anyon, Roger'); INSERT INTO person VALUES (559, 'Fowler, Andrew P. '); INSERT INTO person VALUES (561, 'Rudecoff, Christine A. '); INSERT INTO person VALUES (562, 'Whitmore, Jane'); INSERT INTO person VALUES (563, 'O''Laughlin, Thomas C. '); INSERT INTO person VALUES (564, 'Biella, Jan V. '); INSERT INTO person VALUES (565, 'Chapman, Richard E. '); INSERT INTO person VALUES (567, 'Harris, A. H.'); INSERT INTO person VALUES (566, 'Schoenwetter, J.'); INSERT INTO person VALUES (568, NULL); INSERT INTO person VALUES (569, 'Allan, William C. '); INSERT INTO person VALUES (570, 'Wilson, J. P.'); INSERT INTO person VALUES (571, 'Donehue, Joey B. '); INSERT INTO person VALUES (572, 'Roberts, Willow A.'); INSERT INTO person VALUES (575, 'Wozniak, Frank E. '); INSERT INTO person VALUES (574, 'Lange, Charles'); INSERT INTO person VALUES (586, 'Kantner, John'); INSERT INTO person VALUES (587, 'Olinger, Bart'); INSERT INTO person VALUES (588, 'Duff, Andrew'); INSERT INTO person VALUES (589, 'Rakita, Gordon F. M. '); INSERT INTO person VALUES (590, 'Doyel, David E.'); INSERT INTO person VALUES (597, 'Jones, Elizabeth A. '); INSERT INTO person VALUES (595, 'Morgan, Janet D.'); INSERT INTO person VALUES (598, 'Nelson, Laura A. '); INSERT INTO person VALUES (593, 'Bell, Michael G.'); INSERT INTO person VALUES (594, 'Gladney, Ernest S. '); INSERT INTO person VALUES (592, 'Bowker, Richard G.'); INSERT INTO person VALUES (596, 'Ferenbaugh, Roger W.'); INSERT INTO person VALUES (600, 'Bandelier, Adolph F. A.'); INSERT INTO person VALUES (601, 'Feinman, Gary M.'); INSERT INTO person VALUES (602, 'Reiter, Winifred S.'); INSERT INTO person VALUES (603, 'Schaafsma, Curtis'); INSERT INTO person VALUES (605, 'Wagner, David W.'); INSERT INTO person VALUES (604, 'Sever , Thomas L. '); INSERT INTO person VALUES (606, 'Stuart, David E.'); INSERT INTO person VALUES (608, 'Morrow, Baker H.'); INSERT INTO person VALUES (607, 'Price, V. B.'); INSERT INTO person VALUES (609, 'York, Robert F.'); INSERT INTO person VALUES (610, 'Novotny, Judith E.'); INSERT INTO person VALUES (611, 'Dykeman, Douglas D. '); INSERT INTO person VALUES (612, 'Gilpin, Dennis'); INSERT INTO person VALUES (613, 'Reed, Paul F.'); INSERT INTO person VALUES (28, 'Clary, Karen Husum'); INSERT INTO person VALUES (614, 'Kosse, Alan'); INSERT INTO person VALUES (615, 'Hudson, Dee T.'); INSERT INTO person VALUES (616, 'Cook, Jeffrey'); INSERT INTO person VALUES (617, 'Baker, Larry L.'); INSERT INTO person VALUES (618, 'Kirkpatrick, David Teal'); INSERT INTO person VALUES (619, 'Mark, Robert K.'); INSERT INTO person VALUES (620, 'Newman, Evelyn B.'); INSERT INTO person VALUES (622, 'O''Flynn, Donnel'); INSERT INTO person VALUES (621, 'Fisher, Howard J.'); INSERT INTO person VALUES (623, 'Benson, C.'); INSERT INTO person VALUES (624, 'Hecht, Robert'); INSERT INTO person VALUES (626, 'Rogers, Hugh C.'); INSERT INTO person VALUES (625, 'Walters, Harry'); INSERT INTO person VALUES (628, 'Elson, Mark D.'); INSERT INTO person VALUES (627, 'Warner, Laurie E.'); INSERT INTO person VALUES (629, 'Frisbie, Theodore R.'); INSERT INTO person VALUES (630, 'Morgan, William N.'); INSERT INTO person VALUES (631, 'Cordell, Linda S.'); INSERT INTO person VALUES (632, 'Stamm, Winifred'); INSERT INTO person VALUES (633, 'Funkhouser, Gary'); INSERT INTO person VALUES (634, 'Jercinovic, Devon E.'); INSERT INTO person VALUES (635, 'Everett, A. Gordon'); INSERT INTO person VALUES (636, 'Aveni, Anthony F.'); INSERT INTO person VALUES (637, 'Fletcher, Thomas F.'); INSERT INTO person VALUES (638, 'Watson, R. P.'); INSERT INTO person VALUES (639, NULL); INSERT INTO person VALUES (640, 'Brethauer, Douglas P.'); INSERT INTO person VALUES (642, 'Fehr, Russell T.'); INSERT INTO person VALUES (641, 'Popelish, Linda'); INSERT INTO person VALUES (643, 'Prouty, G. L.'); INSERT INTO person VALUES (644, 'Morris, Earl H.'); INSERT INTO person VALUES (645, 'Cleeland, Teri'); INSERT INTO person VALUES (646, 'Linford, Laurance D.'); INSERT INTO person VALUES (647, 'Peckham, Stewart'); INSERT INTO person VALUES (648, 'Bullen, Adelaide Kendall'); INSERT INTO person VALUES (649, 'Hogan, Patrick'); INSERT INTO person VALUES (652, 'Dennelt, Sarah'); INSERT INTO person VALUES (651, 'Scollar, Irwin'); INSERT INTO person VALUES (654, 'Hartmann, Nicholas'); INSERT INTO person VALUES (653, 'Muessig, Hans'); INSERT INTO person VALUES (650, 'Bevan, Bruce'); INSERT INTO person VALUES (655, 'Eighmy, Jeffrey'); INSERT INTO person VALUES (656, 'Baker, Craig'); INSERT INTO person VALUES (657, 'Johnson, David'); INSERT INTO person VALUES (658, NULL); INSERT INTO person VALUES (591, NULL); INSERT INTO person VALUES (659, 'Malcolm, Roy L.'); INSERT INTO person VALUES (660, 'Amsden, Charles W.'); INSERT INTO person VALUES (661, 'Durand, Stephen R.'); INSERT INTO person VALUES (662, 'Terrell, James A.'); INSERT INTO person VALUES (663, 'Cornett, Barbara'); INSERT INTO person VALUES (664, 'Hall, C. A.'); INSERT INTO person VALUES (665, 'Ford, Dabney A.'); INSERT INTO person VALUES (666, 'Rudofsky, B.'); INSERT INTO person VALUES (667, 'Antevs, E.'); INSERT INTO person VALUES (668, 'Townsend, Lloyd K.'); INSERT INTO person VALUES (669, 'LeBlanc, Steven A.'); INSERT INTO person VALUES (670, 'Elliott, Michael Lee'); INSERT INTO person VALUES (671, 'McKusick, Charmion R.'); INSERT INTO person VALUES (672, 'Robertson, Ben P.'); INSERT INTO person VALUES (673, 'Burgh, R. F.'); INSERT INTO person VALUES (674, 'Kaplan, Lawrence'); INSERT INTO person VALUES (675, NULL); INSERT INTO person VALUES (676, 'Bullard, T. F.'); INSERT INTO person VALUES (677, 'Herr, Sarah A.'); INSERT INTO person VALUES (678, 'Stodder, Ann Lucy Wiener'); INSERT INTO person VALUES (679, 'Wood, Robert E.'); INSERT INTO person VALUES (680, 'Wargo, Phillip M.'); INSERT INTO person VALUES (682, 'McKinney, Carolie'); INSERT INTO person VALUES (681, NULL); INSERT INTO person VALUES (683, 'Jones, Paul'); INSERT INTO person VALUES (684, 'Martin, Debra L.'); INSERT INTO person VALUES (685, 'Roney, John R.'); INSERT INTO person VALUES (686, 'Bloom, Lansing B.'); INSERT INTO person VALUES (687, 'Kievit, Karen A.'); INSERT INTO person VALUES (688, 'Palmer, Phyllis'); INSERT INTO person VALUES (689, 'Kaplan, Howard M.'); INSERT INTO person VALUES (690, 'Turner, Jacqueline A.'); INSERT INTO person VALUES (691, 'Preston, Douglas'); INSERT INTO person VALUES (692, 'Colberg, Anne M.'); INSERT INTO person VALUES (693, 'Sigleo, Anne C.'); INSERT INTO person VALUES (694, 'DiPeso, Charles C.'); INSERT INTO person VALUES (695, 'Stallings, W. S.'); INSERT INTO person VALUES (696, 'Thayer, William M.'); INSERT INTO person VALUES (697, 'Peet, Stephen D.'); INSERT INTO person VALUES (698, 'Mera, H. P.'); INSERT INTO person VALUES (699, 'Blinman, Eric'); INSERT INTO person VALUES (700, 'Wilson, C. Dean'); INSERT INTO person VALUES (701, 'Walker, William H.'); INSERT INTO person VALUES (702, 'Purcell, David'); INSERT INTO person VALUES (703, 'Gittings, Kirk'); INSERT INTO person VALUES (704, 'Till, Tom'); INSERT INTO person VALUES (705, 'Anderson, Margaret'); INSERT INTO person VALUES (706, 'Anderson, Douglas'); INSERT INTO person VALUES (707, 'Gardner, Thomas W.'); INSERT INTO person VALUES (708, 'Clinard, Marshall'); INSERT INTO person VALUES (709, 'Cook, Fletcher'); INSERT INTO person VALUES (710, 'Voth, Hazel H.'); INSERT INTO person VALUES (711, 'Palmer, H. F.'); INSERT INTO person VALUES (712, 'Weese, A. O.'); INSERT INTO person VALUES (713, 'Albright, Horace M.'); INSERT INTO person VALUES (714, 'Taylor, Frank J.'); INSERT INTO person VALUES (715, 'Robbins, Lynn A.'); INSERT INTO person VALUES (716, 'Chambers, George J.'); INSERT INTO person VALUES (717, 'Tietjens, Janet'); INSERT INTO person VALUES (718, 'Rodden, Karen K.'); INSERT INTO person VALUES (719, 'Borell, Adrey E.'); INSERT INTO person VALUES (720, 'Rollins-Griffin, Ramona'); INSERT INTO person VALUES (721, 'Neary, John'); INSERT INTO person VALUES (722, 'Fritz, John M.'); INSERT INTO person VALUES (723, 'Jaffe, Matthew'); INSERT INTO person VALUES (724, 'Early, Frank Lee'); INSERT INTO person VALUES (725, 'Armstrong, Ruth W.'); INSERT INTO person VALUES (727, 'Peck, Mary'); INSERT INTO person VALUES (726, 'Ortiz, Simon J.'); INSERT INTO person VALUES (728, 'Leach, Nicky'); INSERT INTO person VALUES (729, 'Lister, Florence C.'); INSERT INTO person VALUES (730, 'Weir, John K.'); INSERT INTO person VALUES (731, 'Fleming, Stuart'); INSERT INTO person VALUES (733, 'Lancaster, James A.'); INSERT INTO person VALUES (732, NULL); INSERT INTO person VALUES (734, 'Martin, Larry'); INSERT INTO person VALUES (739, 'Kintigh, Keith W.'); INSERT INTO person VALUES (740, 'Kilburn, Nicole'); INSERT INTO person VALUES (741, 'Kendrick, James W.'); INSERT INTO person VALUES (742, 'Hastings, H. F.'); INSERT INTO person VALUES (743, 'Ganer, Reg'); INSERT INTO person VALUES (744, 'Hurst, Winston'); INSERT INTO person VALUES (745, 'Kincaid, Chris'); INSERT INTO person VALUES (746, 'Piper, June-el'); INSERT INTO person VALUES (747, 'Frazier, Kendrick'); INSERT INTO person VALUES (748, 'Bustard, Wendy'); INSERT INTO person VALUES (749, NULL); INSERT INTO person VALUES (750, 'Baxter, Victor'); INSERT INTO person VALUES (752, 'Huey, George H. H.'); INSERT INTO person VALUES (751, 'Struttin, Michele'); INSERT INTO person VALUES (753, 'Taylor, Mark A.'); INSERT INTO person VALUES (754, 'Brody, J. J.'); INSERT INTO person VALUES (755, 'Jalbert, Peter'); INSERT INTO person VALUES (756, 'Till, Jonathan Dale'); INSERT INTO person VALUES (757, 'Nials, Fred'); INSERT INTO person VALUES (758, 'Shelley, Phillip H.'); INSERT INTO person VALUES (759, 'Flint, Richard'); INSERT INTO person VALUES (760, 'Flint, Shirley Cushing'); INSERT INTO person VALUES (762, 'Reed, Heidi E.'); INSERT INTO person VALUES (761, 'Stratton, Susan K.'); INSERT INTO person VALUES (764, 'Leonard, Robert D.'); INSERT INTO person VALUES (765, 'Elliott, Melinda'); INSERT INTO person VALUES (766, 'Snow, David H.'); INSERT INTO person VALUES (768, 'Burge, Raymond E.'); INSERT INTO person VALUES (767, 'Fenn, Dennis B.'); INSERT INTO person VALUES (769, 'Loomis, Barbara'); INSERT INTO person VALUES (770, 'Fisher, Grace'); INSERT INTO person VALUES (771, 'O''Bryan, Deric'); INSERT INTO person VALUES (772, 'Magers, Pamela C.'); INSERT INTO person VALUES (773, 'Johns, Kay'); INSERT INTO person VALUES (774, 'Douglass, Andrew E.'); INSERT INTO person VALUES (775, 'Reeside, J. B. Jr.'); INSERT INTO person VALUES (776, 'Bauer, C. M.'); INSERT INTO person VALUES (777, 'Kidder, Alfred V.'); INSERT INTO person VALUES (778, 'Schroeder, Albert H.'); INSERT INTO person VALUES (779, 'Gregg, Josiah'); INSERT INTO person VALUES (782, 'Milner, G. R.'); INSERT INTO person VALUES (781, 'Fish, Suzanne K.'); INSERT INTO person VALUES (780, 'Yoffee, N.'); INSERT INTO person VALUES (783, 'Varien, Mark D.'); INSERT INTO person VALUES (784, 'Graves, Michael W.'); INSERT INTO person VALUES (785, 'Metcalf, Mary P.'); INSERT INTO person VALUES (786, 'Webb, Robert H.'); INSERT INTO person VALUES (787, 'Cooper, Laurel Martine'); INSERT INTO person VALUES (789, 'Conrad, Edith'); INSERT INTO person VALUES (790, 'Holley, George R.'); INSERT INTO person VALUES (791, 'Nelson, Ben A.'); INSERT INTO person VALUES (792, 'Lewin, R.'); INSERT INTO person VALUES (793, 'LoPiccolo, Phillip'); INSERT INTO person VALUES (794, 'Russell, John C.'); INSERT INTO person VALUES (795, 'Klein, Garry'); INSERT INTO person VALUES (796, 'Palmer, Jay W.'); INSERT INTO person VALUES (797, 'Callen, Eric O.'); INSERT INTO person VALUES (798, NULL); INSERT INTO person VALUES (799, 'Von Bonin, G.'); INSERT INTO person VALUES (800, 'Bonin, G. Von'); INSERT INTO person VALUES (801, 'Anderson, Robert Yates'); INSERT INTO person VALUES (802, 'Kearns, Timothy M.'); INSERT INTO person VALUES (803, 'Reed, Lori Stephens'); INSERT INTO person VALUES (804, 'Gillio, David'); INSERT INTO person VALUES (805, 'Chapman, Richard C.'); INSERT INTO person VALUES (806, 'Wissler, Clark'); INSERT INTO person VALUES (807, 'Bryan, Kirk'); INSERT INTO person VALUES (808, 'Kohler, Timothy A.'); INSERT INTO person VALUES (809, 'Fritts, Harold C.'); INSERT INTO person VALUES (810, 'Murphey, S. Elizabeth'); INSERT INTO person VALUES (811, 'Pringle, Heather'); INSERT INTO person VALUES (815, 'Stewart, T. D.'); INSERT INTO person VALUES (816, 'Rhine, Stanley'); INSERT INTO person VALUES (817, 'Minear, William L.'); INSERT INTO person VALUES (818, 'Smith, David G.'); INSERT INTO person VALUES (819, 'Lorenz, Joseph G.'); INSERT INTO person VALUES (820, 'Hurt, Teresa D.'); INSERT INTO person VALUES (821, 'Mauzy, Wayne'); INSERT INTO person VALUES (822, 'Johnson, Gregory A.'); INSERT INTO person VALUES (823, 'Minnis, Paul'); INSERT INTO person VALUES (825, 'Earle, Timothy'); INSERT INTO person VALUES (826, 'Seaman, Timothy'); INSERT INTO person VALUES (827, 'Mills, Alison M.'); INSERT INTO person VALUES (828, 'Schaafsma, Polly'); INSERT INTO person VALUES (829, 'Knowles, Ralph L.'); INSERT INTO person VALUES (830, 'Schreiber, Stephen D.'); INSERT INTO person VALUES (831, 'Dabbs, Laura'); INSERT INTO person VALUES (832, 'Chauvenet, William'); INSERT INTO person VALUES (833, 'Elmore, Francis H.'); INSERT INTO person VALUES (834, 'Condie, Carol J.'); INSERT INTO person VALUES (835, 'Werito, Cecil'); INSERT INTO person VALUES (836, 'Walter, Paul A. F.'); INSERT INTO person VALUES (837, 'Tainter, Bonnie Bagley'); INSERT INTO person VALUES (838, 'Berger, Scott P.'); INSERT INTO person VALUES (839, 'Woods, Janet Mc'); INSERT INTO person VALUES (840, 'Sciscenti, J. V.'); INSERT INTO person VALUES (841, 'Whitten, Penelope'); INSERT INTO person VALUES (843, 'Reed, Alan'); INSERT INTO person VALUES (842, 'Swift, Marilyn'); INSERT INTO person VALUES (844, 'Flam, Louis'); INSERT INTO person VALUES (845, 'Morrison, C. C.'); INSERT INTO person VALUES (846, 'Newren, Marcia L.'); INSERT INTO person VALUES (847, 'Cozzens, Samuel Woodworth'); INSERT INTO person VALUES (848, 'Goff, J.'); INSERT INTO person VALUES (849, 'Hensler, K. N.'); INSERT INTO person VALUES (851, 'Nothwanger, Rosemary'); INSERT INTO person VALUES (850, 'Kiefer, Michael'); INSERT INTO person VALUES (852, 'Adler, Mark'); INSERT INTO person VALUES (853, 'Roler, Kathy L.'); INSERT INTO person VALUES (855, 'Maymon, Jeffrey'); INSERT INTO person VALUES (854, 'Cobb, Charles R.'); INSERT INTO person VALUES (856, 'Farmer, Malcolm F.'); INSERT INTO person VALUES (857, 'Hadingham, E.'); INSERT INTO person VALUES (858, 'Capone, Patricia H.'); INSERT INTO person VALUES (859, 'Schoeninger, Margaret J.'); INSERT INTO person VALUES (860, 'Burd, Karin'); INSERT INTO person VALUES (862, 'Earle, Charles'); INSERT INTO person VALUES (861, 'Osborn, Henry'); INSERT INTO person VALUES (863, 'Martin, Paul S.'); INSERT INTO person VALUES (864, 'Hamilton, J. B.'); INSERT INTO person VALUES (865, 'Kittredge, F. A. '); INSERT INTO person VALUES (866, NULL); INSERT INTO person VALUES (868, 'Berlin, Lennis'); INSERT INTO person VALUES (867, 'Berlin, Dennis'); INSERT INTO person VALUES (870, 'Gabriel, Kathryn'); INSERT INTO person VALUES (871, 'Szuter, Christine R.'); INSERT INTO person VALUES (874, 'Scott, Glenn R.'); INSERT INTO person VALUES (876, 'Weide, David L.'); INSERT INTO person VALUES (875, 'O''Sullivan, Robert B.'); INSERT INTO person VALUES (878, 'Bender, A. B.'); INSERT INTO person VALUES (877, NULL); INSERT INTO person VALUES (880, 'Lyford, Forest P.'); INSERT INTO person VALUES (879, NULL); INSERT INTO person VALUES (881, 'Woodbury, Richard'); INSERT INTO person VALUES (882, 'West, Samuel'); INSERT INTO person VALUES (883, 'Weir, James E.'); INSERT INTO person VALUES (884, 'Kelley, V. C.'); INSERT INTO person VALUES (381, 'Adams, Richard N.'); INSERT INTO person VALUES (885, 'Suiter, Judith E.'); INSERT INTO person VALUES (886, 'King, Mary Louise'); INSERT INTO person VALUES (887, 'Ash, Sidney R.'); INSERT INTO person VALUES (888, 'Little, Louise M.'); INSERT INTO person VALUES (889, 'Hagstrum, Melissa'); INSERT INTO person VALUES (890, 'Morgan, Lewis H.'); INSERT INTO person VALUES (891, 'Scarry, J. F.'); INSERT INTO person VALUES (894, 'Karlstrom, Thor N. V.'); INSERT INTO person VALUES (895, 'Plog, Fred'); INSERT INTO person VALUES (892, 'Hevly, Richard H.'); INSERT INTO person VALUES (893, 'Euler, Robert E.'); INSERT INTO person VALUES (896, 'Kimball, Timothy L.'); INSERT INTO person VALUES (897, 'Henderson, Sam R.'); INSERT INTO person VALUES (899, 'Frenzel, Peter F.'); INSERT INTO person VALUES (901, 'Stone, William G.'); INSERT INTO person VALUES (898, 'Mizell, Nancy H.'); INSERT INTO person VALUES (900, 'Padgett, Elizabeth T.'); INSERT INTO person VALUES (902, 'Kernodle, John Michael'); INSERT INTO person VALUES (903, 'Yarrow, H. C.'); INSERT INTO person VALUES (906, 'Blackhorse, Taft J.'); INSERT INTO person VALUES (904, 'Friedman, Richard'); INSERT INTO person VALUES (905, 'Williams, Jay H.'); INSERT INTO person VALUES (907, 'Field, Thomas'); INSERT INTO person VALUES (908, 'Ronald, C.'); INSERT INTO person VALUES (909, 'Sall, Jill E.'); INSERT INTO person VALUES (824, 'Bradfield, Wesley'); INSERT INTO person VALUES (910, 'Goddard, Pliny E.'); INSERT INTO person VALUES (911, 'Hunter, William C.'); INSERT INTO person VALUES (912, 'Pickle, John'); INSERT INTO person VALUES (259, 'Wilson, Scott'); INSERT INTO person VALUES (915, 'Ladwig, Jeffrey'); INSERT INTO person VALUES (917, 'Perlitz, Jacob'); INSERT INTO person VALUES (914, 'Bower, Nate'); INSERT INTO person VALUES (916, 'Hatta, Steve'); INSERT INTO person VALUES (918, 'Greve, Darren'); INSERT INTO person VALUES (919, 'Schneider, G. B.'); INSERT INTO person VALUES (920, 'Mytton, J. W.'); INSERT INTO person VALUES (921, 'Mobley-Tanaka, Jeanette S.'); INSERT INTO person VALUES (922, 'Sprague, Roderick'); INSERT INTO person VALUES (923, 'Signori, Aldo'); INSERT INTO person VALUES (924, 'Long, Austin'); INSERT INTO person VALUES (925, 'Lerman, Juan Carlos'); INSERT INTO person VALUES (926, 'Mazany, Terry'); INSERT INTO person VALUES (927, 'Young, M. Jane'); INSERT INTO person VALUES (928, 'Cope, E. D.'); INSERT INTO person VALUES (929, 'Loew, Oscar von'); INSERT INTO person VALUES (930, 'Crotty, Helen'); INSERT INTO person VALUES (931, 'Kues, Barry S.'); INSERT INTO person VALUES (932, 'Jernigan, E. Wesley'); INSERT INTO person VALUES (933, 'Huntington, Ellsworth'); INSERT INTO person VALUES (934, 'Simpson, James Hervey'); INSERT INTO person VALUES (935, 'Miller, Jay'); INSERT INTO person VALUES (936, 'Harwood, Katherine'); INSERT INTO person VALUES (938, 'Lester, Curtis'); INSERT INTO person VALUES (939, 'Snygg, John'); INSERT INTO person VALUES (942, 'Bonham, C. D.'); INSERT INTO person VALUES (941, 'Trlica, M. J.'); INSERT INTO person VALUES (940, 'Orodko, Apollo B.'); INSERT INTO person VALUES (943, 'Malville, Nancy J.'); INSERT INTO person VALUES (944, 'Valkenburgh, Richard F. Van'); INSERT INTO person VALUES (946, 'Sinclair, K. M.'); INSERT INTO person VALUES (945, 'Doggett, L. E.'); INSERT INTO person VALUES (947, 'Bsumek, Erika'); INSERT INTO person VALUES (950, 'Curry, S.'); INSERT INTO person VALUES (949, 'Encinas, D.'); INSERT INTO person VALUES (948, 'Fair, D.'); INSERT INTO person VALUES (951, 'McCann, J. J. Jr.'); INSERT INTO person VALUES (952, 'McCann, J. J.'); INSERT INTO person VALUES (953, 'Ross, Emily'); INSERT INTO person VALUES (954, 'Meyer, D.'); INSERT INTO person VALUES (955, 'Kent, Susan'); INSERT INTO person VALUES (956, NULL); INSERT INTO person VALUES (957, 'Peregrine, Peter N.'); INSERT INTO person VALUES (958, 'Blakeslee, Donald J.'); INSERT INTO person VALUES (959, 'Rapson, David J.'); INSERT INTO person VALUES (960, 'Samuels, Michael'); INSERT INTO person VALUES (961, 'Drake, R. J.'); INSERT INTO person VALUES (963, 'Armbruster, Carol'); INSERT INTO person VALUES (962, 'Eddy, Frank W.'); INSERT INTO person VALUES (964, 'Malville, J. McKim'); INSERT INTO person VALUES (965, 'Butterbaugh, Darrel J.'); INSERT INTO person VALUES (966, 'Anderson, David G.'); INSERT INTO person VALUES (967, 'Guiberson, Brenda Z.'); INSERT INTO person VALUES (968, 'Rollins, R.'); INSERT INTO person VALUES (969, 'Howe, Sherman S.'); INSERT INTO person VALUES (970, 'Aberle, David F.'); INSERT INTO person VALUES (973, 'Matthews, Washington'); INSERT INTO person VALUES (972, 'Washington, Matthews'); INSERT INTO person VALUES (971, 'Washington, Matthews'); INSERT INTO person VALUES (974, 'McClelland, Lindsay'); INSERT INTO person VALUES (975, 'Santucci, Vincent L.'); INSERT INTO person VALUES (977, 'Bailey, Flora L.'); INSERT INTO person VALUES (976, 'Wyman, Leland C.'); INSERT INTO person VALUES (978, 'Carr, Malcolm'); INSERT INTO person VALUES (980, 'Woolley, Doriane'); INSERT INTO person VALUES (979, 'Spencer, Katherine'); INSERT INTO person VALUES (982, 'Hill, Willard William'); INSERT INTO person VALUES (981, 'Osinai, Iva'); INSERT INTO person VALUES (983, 'Taylor, Tobi'); INSERT INTO person VALUES (984, 'Graves, Donna K.'); INSERT INTO person VALUES (985, 'Bishop, Ronald L.'); INSERT INTO person VALUES (986, NULL); INSERT INTO person VALUES (987, 'Mantonya, Kurt T.'); INSERT INTO person VALUES (988, 'Noble, David Grant'); INSERT INTO person VALUES (989, 'Nelson, Nels C.'); INSERT INTO person VALUES (990, 'Simpich, Frederick'); INSERT INTO person VALUES (991, 'Laskin, David'); INSERT INTO person VALUES (992, 'Prince, L. Bradford'); INSERT INTO person VALUES (993, 'Barnes, F. C.'); INSERT INTO person VALUES (994, 'Bell, W. A.'); INSERT INTO person VALUES (995, 'Powell, J. W.'); INSERT INTO person VALUES (996, 'Scovill, Douglas H.'); INSERT INTO person VALUES (997, NULL); INSERT INTO person VALUES (998, 'Durand, Kathy Roler'); INSERT INTO person VALUES (999, 'Cahill, Edgar D.'); INSERT INTO person VALUES (1000, 'Thompson, G.'); INSERT INTO person VALUES (1001, 'Hardaker, Chris'); INSERT INTO person VALUES (1002, 'Albright, G.'); INSERT INTO person VALUES (1003, 'Preucel, Robert W.'); INSERT INTO person VALUES (1004, 'Kane, Albert E.'); INSERT INTO person VALUES (1005, 'Efflund, R.'); INSERT INTO person VALUES (1006, 'Howe, H.'); INSERT INTO person VALUES (1007, 'Barber, J. W.'); INSERT INTO person VALUES (1008, 'Simon, Brona J.'); INSERT INTO person VALUES (1010, 'Harbottle, Garman'); INSERT INTO person VALUES (1009, NULL); INSERT INTO person VALUES (1011, 'Sudderth, W. E.'); INSERT INTO person VALUES (1014, 'Bawden, Leonard W.'); INSERT INTO person VALUES (1012, 'Solecki, Ralph S.'); INSERT INTO person VALUES (1013, 'Aschmann, H. Homer'); INSERT INTO person VALUES (1017, 'Kent, Kate P.'); INSERT INTO person VALUES (1016, 'Loehr, Virginia'); INSERT INTO person VALUES (1015, 'Kent, Karen P.'); INSERT INTO person VALUES (1018, 'Carver, L.'); INSERT INTO person VALUES (1019, 'Sowers, Ted C.'); INSERT INTO person VALUES (1020, 'Kover, A. N.'); INSERT INTO person VALUES (1021, 'Pouls, Basil G.'); INSERT INTO person VALUES (1022, 'Rabb, Joyce M.'); INSERT INTO person VALUES (1023, 'Brandt, John C.'); INSERT INTO person VALUES (1024, 'Gunckel, Lewis W.'); INSERT INTO person VALUES (1025, 'Lightfoot, Kent G.'); INSERT INTO person VALUES (1026, 'Barnes, Ethne'); INSERT INTO person VALUES (1027, 'Leonard, Robert P.'); INSERT INTO person VALUES (1028, 'Kneebone, Ron'); INSERT INTO person VALUES (1031, 'Cochran, C.'); INSERT INTO person VALUES (1034, 'Chamberlain, V. D.'); INSERT INTO person VALUES (1029, 'Kennedy, W. J.'); INSERT INTO person VALUES (1033, 'Moran, S. P.'); INSERT INTO person VALUES (1032, 'Kennedy, M.'); INSERT INTO person VALUES (1030, 'Harrington, R. S. '); INSERT INTO person VALUES (1035, 'Howell, Todd'); INSERT INTO person VALUES (1036, 'Potter, James M.'); INSERT INTO person VALUES (1037, 'Skibo, James M.'); INSERT INTO person VALUES (1038, 'Muller, Jon'); INSERT INTO person VALUES (1039, 'Hollander, M. G.'); INSERT INTO person VALUES (1040, 'Rogers, P. S. Z.'); INSERT INTO person VALUES (1044, 'Duffy, C. J.'); INSERT INTO person VALUES (1042, 'Brown, J. A.'); INSERT INTO person VALUES (1043, 'Lambert, J. B.'); INSERT INTO person VALUES (1041, 'Benjamin, T. M.'); INSERT INTO person VALUES (1045, 'Buettner, R. C.'); INSERT INTO person VALUES (1046, 'Schulman, A.'); INSERT INTO person VALUES (1047, 'Bickford, F. T.'); INSERT INTO person VALUES (1050, 'Hartesveldt, Eric von'); INSERT INTO person VALUES (1049, 'Hays-Gilpin, Kelley'); INSERT INTO person VALUES (1051, 'Severance, Owen'); INSERT INTO person VALUES (1052, 'Grebinger, Paul'); INSERT INTO person VALUES (1053, 'Amsden, Charles A.'); INSERT INTO person VALUES (1054, 'Fewkes, Jesse W.'); INSERT INTO person VALUES (1055, 'Olson, Alan P.'); INSERT INTO person VALUES (1056, NULL); INSERT INTO person VALUES (1057, 'Phibbs, Donal C.'); INSERT INTO person VALUES (1059, NULL); INSERT INTO person VALUES (1058, 'Sommerfeld, Milton R.'); INSERT INTO person VALUES (1060, 'Johnson, Charles David'); INSERT INTO person VALUES (1061, 'Sullivan, T. A.'); INSERT INTO person VALUES (1062, 'Renfrew, Colin'); INSERT INTO person VALUES (1064, 'Lee, Martha'); INSERT INTO person VALUES (1063, 'Stephens, Douglas'); INSERT INTO person VALUES (1065, 'Miller, T. C.'); INSERT INTO person VALUES (1066, 'Logan, Wilfred D.'); INSERT INTO person VALUES (1067, 'Rohn, Arthur H.'); INSERT INTO person VALUES (1068, 'Spinden, H. J.'); INSERT INTO person VALUES (1069, 'Rollins, W. E.'); INSERT INTO person VALUES (1070, 'Wilson, G. B.'); INSERT INTO person VALUES (1071, 'Jett, S. C.'); INSERT INTO person VALUES (1072, NULL); INSERT INTO person VALUES (1073, 'Bartlett, Katherine'); INSERT INTO person VALUES (1074, 'Moore, Ann'); INSERT INTO person VALUES (1075, 'Preston, Christian'); INSERT INTO person VALUES (1076, 'Waggoner, William M.'); INSERT INTO person VALUES (1077, 'Swentzell, Rina'); INSERT INTO person VALUES (1078, NULL); INSERT INTO person VALUES (1079, 'Baum, Henry M.'); INSERT INTO person VALUES (1080, 'Scully, Vincent'); INSERT INTO person VALUES (1081, 'Schultz, J. W.'); INSERT INTO person VALUES (1082, 'Slota, Peter J. Jr.'); INSERT INTO person VALUES (1084, 'Taylor, R. E.'); INSERT INTO person VALUES (1083, 'Payden, Louis A.'); INSERT INTO person VALUES (1085, 'Bryan, Bruce'); INSERT INTO person VALUES (1086, 'Bernardini, Wesley'); INSERT INTO person VALUES (1087, 'Allison, James R.'); INSERT INTO person VALUES (1088, 'Schlanger, Sarah'); INSERT INTO person VALUES (1089, 'Lumpkins, William'); INSERT INTO person VALUES (1091, NULL); INSERT INTO person VALUES (1090, 'Jordan, Gretchen W.'); INSERT INTO person VALUES (1092, 'Hegmon, Michelle'); INSERT INTO person VALUES (1093, 'Glenn, James R.'); INSERT INTO person VALUES (1094, 'Force, Eric R.'); INSERT INTO person VALUES (1095, 'Avery, Thomas Eugene'); INSERT INTO person VALUES (1096, 'Griffin, David E.'); INSERT INTO person VALUES (1097, 'Nickel, Robert K.'); INSERT INTO person VALUES (1098, 'Wood, W. Raymond'); INSERT INTO person VALUES (1101, 'Coddington, Bert'); INSERT INTO person VALUES (1103, 'Hill, L. A.'); INSERT INTO person VALUES (1104, 'Morris, W. W.'); INSERT INTO person VALUES (1099, 'Phillips, Paul'); INSERT INTO person VALUES (1100, 'Lucas, Bert'); INSERT INTO person VALUES (1102, NULL); INSERT INTO person VALUES (1105, 'Phillips, David A. Jr.'); INSERT INTO person VALUES (1106, 'Anduze, Richard A.'); INSERT INTO person VALUES (1107, 'Birnie, Rogers Jr'); INSERT INTO person VALUES (1108, NULL); INSERT INTO person VALUES (1109, 'Hoffman, W. J.'); INSERT INTO person VALUES (1111, 'Pierce, Sarah Louise'); INSERT INTO person VALUES (1110, NULL); INSERT INTO person VALUES (1112, 'Buchanan, Donal B.'); INSERT INTO person VALUES (1113, NULL); INSERT INTO person VALUES (1114, 'King, Dale S.'); INSERT INTO person VALUES (19, 'Cully, Anne C.'); INSERT INTO person VALUES (1115, 'Foraker, Margaret'); INSERT INTO person VALUES (1116, 'Jackson, William H.'); INSERT INTO person VALUES (1117, 'Howe, Gertrude D.'); INSERT INTO person VALUES (1118, 'Weigand, Phil C.'); INSERT INTO person VALUES (1119, 'Ember, Melvin'); INSERT INTO person VALUES (1120, 'Ortman, Scott G.'); INSERT INTO person VALUES (1121, 'Stearns, C. E.'); INSERT INTO person VALUES (1122, 'Haury, Emil W.'); INSERT INTO person VALUES (1123, 'Hodge, Frederick W.'); INSERT INTO person VALUES (1124, 'Danson, Edward B.'); INSERT INTO person VALUES (1125, 'McGregor, John C.'); INSERT INTO person VALUES (1126, 'Kolb, Charles C.'); INSERT INTO person VALUES (1128, 'Speakman, Robert J.'); INSERT INTO person VALUES (1127, 'Ortiz, David'); INSERT INTO person VALUES (1129, 'Cole, F.'); INSERT INTO person VALUES (1130, 'Bourne, Russell'); INSERT INTO person VALUES (1131, 'Loving, Kathryn Gabriel'); INSERT INTO person VALUES (1132, 'Steed, Paul P. Jr.'); INSERT INTO person VALUES (1133, 'Thompson, Sharon Elaine'); INSERT INTO person VALUES (1134, 'Kayser, David W.'); INSERT INTO person VALUES (1135, 'Snead, James E.'); INSERT INTO person VALUES (1136, 'Gannett, Henry'); INSERT INTO person VALUES (1137, 'Williamson, Thomas E.'); INSERT INTO person VALUES (1138, 'Lucas, Spencer G.'); INSERT INTO person VALUES (1139, 'Hunt, Adrian P.'); INSERT INTO person VALUES (1140, 'Yeo, Herbert W.'); INSERT INTO person VALUES (1142, 'Leinau, Alice'); INSERT INTO person VALUES (1141, NULL); INSERT INTO person VALUES (1143, 'Griffin, Jean'); INSERT INTO person VALUES (1144, 'Gould, C. N.'); INSERT INTO person VALUES (1145, 'Bevitt, Emogene A.'); INSERT INTO person VALUES (1147, 'Marshall, Leslie'); INSERT INTO person VALUES (1146, NULL); INSERT INTO person VALUES (1148, 'Mahrer, Kenneth D.'); INSERT INTO person VALUES (1149, 'King, Kenneth W.'); INSERT INTO person VALUES (1150, 'Algermissen, S. T.'); INSERT INTO person VALUES (1151, 'McDermott, P. J.'); INSERT INTO person VALUES (1152, 'Reher, Charles A.'); INSERT INTO person VALUES (1153, 'Miller, John'); INSERT INTO person VALUES (1155, 'Schuster, Wilhelm'); INSERT INTO person VALUES (1156, 'Young, Robert W.'); INSERT INTO person VALUES (1157, 'Kemrer, Meade F.'); INSERT INTO person VALUES (1158, 'Doleman, William'); INSERT INTO person VALUES (1159, 'Eckhert, Suzanne L.'); INSERT INTO person VALUES (1160, 'Eckert, Suzanne L.'); INSERT INTO person VALUES (1161, NULL); INSERT INTO person VALUES (1162, 'Reichard, Gladys A.'); INSERT INTO person VALUES (1163, 'McFadden, Leslie P.'); INSERT INTO person VALUES (1164, 'Simon, C.'); INSERT INTO person VALUES (1166, 'Sherman, John'); INSERT INTO person VALUES (1165, NULL); INSERT INTO person VALUES (1167, 'Mason, Henry J.'); INSERT INTO person VALUES (1168, 'Hocking, George M.'); INSERT INTO person VALUES (1169, 'Mariager, Dagmar'); INSERT INTO person VALUES (1170, 'LeTourneau, Philippe D.'); INSERT INTO person VALUES (1171, 'Carpenter, Andrea'); INSERT INTO person VALUES (1172, 'Grimm, William'); INSERT INTO person VALUES (1173, 'Schackley, M. Steven'); INSERT INTO person VALUES (1174, 'Senter, Florence H.'); INSERT INTO person VALUES (1175, 'Gill, H.'); INSERT INTO person VALUES (1176, 'Oates, W.'); INSERT INTO person VALUES (1177, 'Oates, H.'); INSERT INTO person VALUES (1180, 'Johnson, Phillip'); INSERT INTO person VALUES (1178, 'Edmundson, Kenneth L.'); INSERT INTO person VALUES (1179, 'Novak, Kurt'); INSERT INTO person VALUES (1181, 'Wicklen, John'); INSERT INTO person VALUES (1182, 'Laudeman, Peter M. '); INSERT INTO person VALUES (1183, 'Antieau, John'); INSERT INTO person VALUES (1184, 'Proper, Michael J.'); INSERT INTO person VALUES (1185, 'English, Nathan B.'); INSERT INTO person VALUES (1186, 'Quade, Jay'); INSERT INTO person VALUES (1188, 'Swedlund, Alan C.'); INSERT INTO person VALUES (1189, 'Armelagos, George J.'); INSERT INTO person VALUES (1187, 'Fish, Paul R.'); INSERT INTO person VALUES (1190, 'Milford, Stanley James'); INSERT INTO person VALUES (1191, 'Amick, Ben'); INSERT INTO person VALUES (1192, 'Palca, Joseph'); INSERT INTO person VALUES (1194, 'Rogers, Angella M.'); INSERT INTO person VALUES (1193, 'Chamberlain, Von el'); INSERT INTO person VALUES (1196, 'Anderson, Rachel'); INSERT INTO person VALUES (1197, 'Ford, Cheryl A.'); INSERT INTO person VALUES (1195, 'Johnson, Brian K.'); INSERT INTO person VALUES (1198, 'Johnston, E. Clark'); INSERT INTO person VALUES (1199, 'Lee, Eugene C.'); INSERT INTO person VALUES (1200, 'Abarr, James'); INSERT INTO person VALUES (1201, 'Bond, Frank'); INSERT INTO person VALUES (1202, 'Scofield, Carl S.'); INSERT INTO person VALUES (1203, 'Baugh, Timothy G.'); INSERT INTO person VALUES (1204, 'Salvador, M. G.'); INSERT INTO person VALUES (1205, 'Rotner, Sheila'); INSERT INTO person VALUES (1207, NULL); INSERT INTO person VALUES (1206, 'Yoder, Donna'); INSERT INTO person VALUES (1208, 'Eck, David C.'); INSERT INTO person VALUES (1209, 'Inglis, Michael'); INSERT INTO person VALUES (1210, 'McCall, M. B.'); INSERT INTO person VALUES (1211, 'Gardner, Michael'); INSERT INTO person VALUES (1212, 'Smith, Jack E.'); INSERT INTO person VALUES (128, 'Hitchcock, Robert K.'); INSERT INTO person VALUES (1213, 'Williamson, A. F.'); INSERT INTO person VALUES (1215, 'Huse, H.'); INSERT INTO person VALUES (1216, 'Noisat, B. A.'); INSERT INTO person VALUES (1214, 'Halasi, J. A.'); INSERT INTO person VALUES (1217, 'Harper, Randy'); INSERT INTO person VALUES (1218, 'Brandi, James'); INSERT INTO person VALUES (1219, 'Bullard, William R. Jr.'); INSERT INTO person VALUES (1220, 'Andrews, Anthony'); INSERT INTO person VALUES (1221, 'Ricketts, D.'); INSERT INTO person VALUES (1222, 'Radford, Jeff'); INSERT INTO person VALUES (1223, 'Hilpert, Bruce'); INSERT INTO person VALUES (1224, 'Thomas, David Hurst'); INSERT INTO person VALUES (1225, 'Stoltman, James B.'); INSERT INTO person VALUES (1226, 'Lyman, Albert R.'); INSERT INTO person VALUES (1228, NULL); INSERT INTO person VALUES (1227, 'Massouh, Paula Ann'); INSERT INTO person VALUES (1229, 'Ellis, Richard'); INSERT INTO person VALUES (1230, 'Matlock, Gary'); INSERT INTO person VALUES (1231, 'Enock, C. Reginald'); INSERT INTO person VALUES (1232, 'Skertchly, Sydney B. J.'); INSERT INTO person VALUES (1233, 'Donselaar, M. E.'); INSERT INTO person VALUES (1234, 'Titus, W. A.'); INSERT INTO person VALUES (1235, 'Hardacre, Emma C.'); INSERT INTO person VALUES (1236, 'Redman, Charles L.'); INSERT INTO person VALUES (1237, 'Lipe, William D.'); INSERT INTO person VALUES (1238, 'Lucero, L.'); INSERT INTO person VALUES (1239, 'Wait, Walter K.'); INSERT INTO person VALUES (1240, 'Richardson, George N.'); INSERT INTO person VALUES (1241, 'Scott, Norman J.'); INSERT INTO person VALUES (1242, 'Werner, Oscar'); INSERT INTO person VALUES (1243, 'Cannon, Brian'); INSERT INTO person VALUES (1244, 'Chorley, R. J.'); INSERT INTO person VALUES (1245, 'Chorely, R. J.'); INSERT INTO person VALUES (1246, NULL); INSERT INTO person VALUES (1247, 'Garrett, Elizabeth M.'); INSERT INTO person VALUES (1248, 'Coffee, MaryBeth'); INSERT INTO person VALUES (1249, 'Watkins, Frances E.'); INSERT INTO person VALUES (1250, 'Eaton, Robert'); INSERT INTO person VALUES (1251, 'Bancroft, Hubert H.'); INSERT INTO person VALUES (1253, 'Gregory, Herbert E.'); INSERT INTO person VALUES (1255, 'Roberts, Alexandra'); INSERT INTO person VALUES (1254, 'Begay, Richard M.'); INSERT INTO person VALUES (1256, 'Yazzi, Alfred'); INSERT INTO person VALUES (1257, 'Dellenbaugh, F. S.'); INSERT INTO person VALUES (1258, 'Roberts, David'); INSERT INTO person VALUES (1259, 'McLellan, George E.'); INSERT INTO person VALUES (1260, 'Farwell, Robin E.'); INSERT INTO person VALUES (1261, 'Stotts, Al'); INSERT INTO person VALUES (1262, 'Neily, Robert B.'); INSERT INTO person VALUES (1263, 'Hill, Roger A.'); INSERT INTO person VALUES (1264, 'Holmquist, Adela C.'); INSERT INTO person VALUES (1265, 'Baker, Shane A.'); INSERT INTO person VALUES (1266, 'Waters, Frank'); INSERT INTO person VALUES (1268, NULL); INSERT INTO person VALUES (1267, 'Coffin, Robert M.'); INSERT INTO person VALUES (1269, 'Haas, Jonathan'); INSERT INTO person VALUES (1270, 'Creamer, Winifred'); INSERT INTO person VALUES (1271, 'Pinkley, Frank'); INSERT INTO person VALUES (1273, 'Elting, Mary'); INSERT INTO person VALUES (1272, 'Folson, Michael'); INSERT INTO person VALUES (1274, 'Dodge, Andrea Ellis'); INSERT INTO person VALUES (1275, 'Bice, Richard A.'); INSERT INTO person VALUES (1276, 'Udall, James'); INSERT INTO person VALUES (1278, 'Idhe, A.'); INSERT INTO person VALUES (1277, 'Idhe, H.'); INSERT INTO person VALUES (1280, 'Ihde, A.'); INSERT INTO person VALUES (1279, 'Idhe, A.'); INSERT INTO person VALUES (1281, 'Richie, Michael'); INSERT INTO person VALUES (1282, 'Patterson, J. L.'); INSERT INTO person VALUES (1283, 'Nimbungco, Melissa S.'); INSERT INTO person VALUES (1284, 'Francis, Harris'); INSERT INTO person VALUES (1285, 'Paul, Peter D.'); INSERT INTO person VALUES (1286, 'Tyndall, Marianne R.'); INSERT INTO person VALUES (1287, 'Sutton, Stephen R.'); INSERT INTO person VALUES (1288, 'Deck, John R.'); INSERT INTO person VALUES (1289, 'Naranjo, T.'); INSERT INTO person VALUES (1291, 'Clark, T. E.'); INSERT INTO person VALUES (1290, 'Clark, A. E.'); INSERT INTO person VALUES (1292, 'Crowder, F.'); INSERT INTO person VALUES (1294, NULL); INSERT INTO person VALUES (1293, 'Keech, R. A.'); INSERT INTO person VALUES (1296, 'Taylor, Howard E.'); INSERT INTO person VALUES (1295, 'Antweiler, Ronald C.'); INSERT INTO person VALUES (1297, 'Vaughn, Robert'); INSERT INTO person VALUES (1298, 'Diamond, Jared'); INSERT INTO person VALUES (1299, 'Clark, Neil M.'); INSERT INTO person VALUES (1300, 'Sayre, Edward V.'); INSERT INTO person VALUES (1301, 'Davidson, Dale'); INSERT INTO person VALUES (1302, 'Hoebel, E. A.'); INSERT INTO person VALUES (1303, 'Osborne, Douglas'); INSERT INTO person VALUES (1304, 'Floyd-Hanna, Lisa'); INSERT INTO person VALUES (1305, 'Hanna, David D.'); INSERT INTO person VALUES (1306, 'Hays, Frank'); INSERT INTO person VALUES (1308, 'Appledorn, C. R.'); INSERT INTO person VALUES (1307, 'Wright, H. E.'); INSERT INTO person VALUES (1309, 'Morgan, James R.'); INSERT INTO person VALUES (1310, 'Walking, Eagle'); INSERT INTO person VALUES (1311, 'Chapman, Kenneth M.'); INSERT INTO person VALUES (1312, 'Chapman, H. H.'); INSERT INTO person VALUES (1313, 'Elston, Richard'); INSERT INTO person VALUES (1314, 'Dunmire, William G.'); INSERT INTO person VALUES (1315, 'Tierney, Gail D.'); INSERT INTO person VALUES (1317, 'Bailey, Florence M.'); INSERT INTO person VALUES (1318, 'Frothingham, Robert'); INSERT INTO person VALUES (1319, 'Quinn, Vernon'); INSERT INTO person VALUES (1321, NULL); INSERT INTO person VALUES (1320, 'Anderson, G. B.'); INSERT INTO person VALUES (1322, 'James, George Warton'); INSERT INTO person VALUES (1323, 'Austin, Mary'); INSERT INTO person VALUES (1324, 'Yard, Robert S.'); INSERT INTO person VALUES (1325, 'Dorsey, George A.'); INSERT INTO person VALUES (1326, 'Shaler, Millard K.'); INSERT INTO person VALUES (1328, 'Tolson, Hillary A.'); INSERT INTO person VALUES (1329, 'Bailey, Vernon'); INSERT INTO person VALUES (1330, 'Driggs, Howard R.'); INSERT INTO person VALUES (1331, 'Weltfish, Gene'); INSERT INTO person VALUES (1332, 'Shaler, Nathaniel S.'); INSERT INTO person VALUES (1333, 'Trego, Frank H.'); INSERT INTO person VALUES (1334, 'Hinton, Richard J.'); INSERT INTO person VALUES (1335, 'Robinson, Will H.'); INSERT INTO person VALUES (1336, 'Darton, Nelson H.'); INSERT INTO person VALUES (1337, 'Morris, Ann A.'); INSERT INTO person VALUES (1339, 'Magoffin, R. V. D.'); INSERT INTO person VALUES (1338, 'Davis, Emily C.'); INSERT INTO person VALUES (1340, 'Ladd, Horatio O.'); INSERT INTO person VALUES (1341, 'Twitchell, Ralph E.'); INSERT INTO person VALUES (1342, 'Short, John T.'); INSERT INTO person VALUES (1343, 'Faris, John T.'); INSERT INTO person VALUES (1346, 'Fergusson, Harvey'); INSERT INTO person VALUES (1347, 'Gilpin, Kelly A.'); INSERT INTO person VALUES (1351, 'Stoffle, Richard W.'); INSERT INTO person VALUES (1349, 'Stoffle, Brent W.'); INSERT INTO person VALUES (1348, 'Evans, Michael J.'); INSERT INTO person VALUES (1350, 'Kesel, Cindy J.'); INSERT INTO person VALUES (1352, 'Zedeño, M. Nieves'); INSERT INTO person VALUES (1353, 'Ickes, Anna W.'); INSERT INTO person VALUES (1354, 'Ruppert, Hans'); INSERT INTO person VALUES (1356, 'Douglas, H. F.'); INSERT INTO person VALUES (1355, 'Jeançon, Jean A.'); INSERT INTO person VALUES (1357, 'Hrdlicka, Aleš'); INSERT INTO person VALUES (1358, 'Domenech, Abbé Emmanuel H. D.'); INSERT INTO person VALUES (1360, 'Curtis, Ross'); INSERT INTO person VALUES (1361, 'Dick Ping Hsu'); INSERT INTO person VALUES (1362, 'Gaustad'); INSERT INTO person VALUES (1363, 'Gilmore, Charles W.'); INSERT INTO person VALUES (1364, 'Paul F. Reed'); INSERT INTO person VALUES (1365, 'Griffin, Pat'); INSERT INTO person VALUES (1366, NULL); INSERT INTO person VALUES (1367, 'Ingersoll, E.'); INSERT INTO person VALUES (1368, 'jackson, earl'); INSERT INTO person VALUES (1369, 'Jones, P. A.'); INSERT INTO person VALUES (1370, 'Judd, Neil Merton'); INSERT INTO person VALUES (1371, 'James, Marjorie'); INSERT INTO person VALUES (1372, 'Johnson, Gregory A.'); -- -- Data for TOC entry 87 (OID 561311) -- Name: project; Type: TABLE DATA; Schema: public; Owner: rwb3y -- INSERT INTO project VALUES (4, 'The Ecology of Chaco Canyon - Small Mammals and Vegetation', 'see title Published 1970', NULL, 1970); INSERT INTO project VALUES (5, 'Archaeological Survey of Chaco Canyon', 'published 1971', NULL, 1971); INSERT INTO project VALUES (6, 'Survey of the Physical Geography of the Chaco Canyon Region of New Mexico', 'published 1971', NULL, 1971); INSERT INTO project VALUES (7, 'Ecological Survey of Chaco Canyon', 'published 1972', NULL, 1972); INSERT INTO project VALUES (8, 'Remote Sensing Methodology and the Chaco Canyon Land Route System', 'published 1972', NULL, 1972); INSERT INTO project VALUES (9, 'Pleistocene Holocene Sedimentology: Cretaceous Macroinvertebrate Paleoecology', 'full title: Stratigraphy and Sedimentology of the Pleistocene Holocene? - Macroinvertebrate Paleoecology of the Upper Cretaceous published 1972', NULL, 1972); INSERT INTO project VALUES (10, 'Stratigraphy and Sedimentology. Seismic Studies', 'published 1972', NULL, 1972); INSERT INTO project VALUES (11, 'Chetro Ketl Painted Wood', 'published 1972', NULL, 1972); INSERT INTO project VALUES (12, 'Paleoclimate', 'published 1972', NULL, 1972); INSERT INTO project VALUES (13, 'Arroyo and Wash Development', 'published 1973', NULL, 1973); INSERT INTO project VALUES (14, 'Applications of Aerospace Remote Sensing in Archaeology: A Feasibility Study', 'full title: USGS EROS: Current and Future Applications of Aerospace Remote Sensing in Archaeology: A Feasibility Study published 1973', NULL, 1973); INSERT INTO project VALUES (15, 'Correlation of Indicator Plants and Archeological Studies, Chaco Canyon', 'full title: Correlation of Indicator Plants and Archeological Studies, Chaco Canyon National Monument published 1974', NULL, 1974); INSERT INTO project VALUES (16, 'Three Dimensional Sedimentary Facies Analysis of the Chaco Canyon Fill Sequence', 'full title: Three Dimensional Sedimentary Facies Analysis of the Canyon Fill Sequence, Chaco Canyon, New Mexico published 1974', NULL, 1974); INSERT INTO project VALUES (17, 'Aerial Photography', 'published 1974', NULL, 1974); INSERT INTO project VALUES (18, 'Ethnogeographic Survey', 'published 1974', NULL, 1974); INSERT INTO project VALUES (19, 'Subsurface Radar', 'published 1974', NULL, 1974); INSERT INTO project VALUES (20, 'Research Plan: Collect Pollen & Seeds from Chaco Canyon, Test Techniques', 'full title: Phase I Research Plan - to Collect Pollen and Seeds from Archeological Excavations and Surrounding Areas, Chaco Canyon - to Test Sampling Techniques and Develop Methods for Field Personnel published 1975', NULL, 1975); INSERT INTO project VALUES (21, 'Research Plan: Relation of Pollen & Flotation Analyses to Excavations in Chaco', 'full title: Phase II Research Plan - Relation of Pollen and Flotation Analyses to Archeological Excavations in Chaco Canyon published 1975', NULL, 1975); INSERT INTO project VALUES (22, 'Southwestern Paleoclimate', NULL, NULL, NULL); INSERT INTO project VALUES (23, 'Chaco Canyon Ceramic Studies: Technical Aspects, Type Collection, Mineral Traits', 'full title: Ceramic Studies: 1)Prepare a Report Upon the Technical Aspects of Pottery Found in Chaco Canyon; 2)Assemble and Catalog a Type Collection of Chaco Canyon Potsherds; 3)Prepare a File Collection Demonstrating the Mineral Characteristics of Clay Utilized in Representative Types of Pottery Found in Chaco Canyon published 1975 ', NULL, 1975); INSERT INTO project VALUES (24, 'Archit, Stratig, Chronol, Sites #299, 423, 721, 724, Ceramic Data Site 629', 'full title: Complete Publishable Reports on the Architecture and Stratigraphy, and Chronology of Archaeological Sites No. 299, 423, 721, and 724. Analysis of Ceramic Data from Site 629 and Related Sites, Chaco Canyon published 1975', NULL, 1975); INSERT INTO project VALUES (25, 'Ethnoscience Ethnography of Land Use in the Chaco Canyon Area', 'published 1975', NULL, 1975); INSERT INTO project VALUES (27, 'Analytical Studies of Turquoise', 'published 1976', NULL, 1976); INSERT INTO project VALUES (28, 'An Airborne Spectral Analysis of Settlement Sites in Chaco Canyon', 'published 1976', NULL, 1976); INSERT INTO project VALUES (29, 'Paleohydrologic Investigation of Holocene (post-Bonito) Stream Channels in Chaco', 'full title: Paleohydrologic Investigation of Holocene (post-Bonito) Stream Channels in Chaco Canyon, New Mexico ', NULL, NULL); INSERT INTO project VALUES (30, 'Dendrochronology of the Southwest Plateau', 'published 1977', NULL, 1977); INSERT INTO project VALUES (31, 'Chaco Ceramic Studies: Manufacture Sources by Temper Analysis; Trade Network', 'full title: Ceramic Studies: Determine Sources of Manufacture of Chacoan Ceramics as Revealed by Ceramic Temper Analysis; Determine the Nature as Well as Temporal and Spatial Extent of the Chacoan Trade Network; published 1977', NULL, 1977); INSERT INTO project VALUES (32, 'Analysis of Anasazi Diet and Subsistence - Coprolites', NULL, NULL, NULL); INSERT INTO project VALUES (34, 'Bipod Photography', 'published 1977', NULL, 1977); INSERT INTO project VALUES (35, 'Magnetic Surveys', 'published 1978', NULL, 1978); INSERT INTO project VALUES (36, 'Seismic Research at 29SJ633', 'other personnel from Texas Tech; published 1978 ', NULL, 1978); INSERT INTO project VALUES (37, 'Chaco Canyon Plant List', 'published 1978', NULL, 1978); INSERT INTO project VALUES (38, 'Birds and Mammals', 'published 1978', NULL, 1978); INSERT INTO project VALUES (39, 'Archaeomagnetic Dating', 'published 1978', NULL, 1978); INSERT INTO project VALUES (40, 'Computer Analyses of Chaco Data Files', 'published 1978', NULL, 1978); INSERT INTO project VALUES (41, 'Palynological Analyses', 'published 1978', NULL, 1978); INSERT INTO project VALUES (42, 'Botanical Analysis', 'published 1978', NULL, 1978); INSERT INTO project VALUES (43, 'Wood Species Identification', 'published 1978', NULL, 1978); INSERT INTO project VALUES (44, 'San Juan Basin Anasazi Aerial Reconnaissance', 'published 1978', NULL, 1978); INSERT INTO project VALUES (45, 'Prehistoric Stairways of Chaco Canyon', NULL, NULL, NULL); INSERT INTO project VALUES (46, 'Navajo Oral History of Anasazi Sites in the San Juan Basin', 'published 1978', NULL, 1978); INSERT INTO project VALUES (47, 'Dendrochronology of Chetro Ketl', 'published 1978', NULL, 1978); INSERT INTO project VALUES (48, 'Computer Recognition of Prehistoric Roads', 'published 1978', NULL, 1978); INSERT INTO project VALUES (49, 'Study of Lichens', 'published 1979', NULL, 1979); INSERT INTO project VALUES (50, 'Specifications and Standards for Terrestrial Photogrammetry', 'published 1979', NULL, 1979); INSERT INTO project VALUES (51, 'Archeological Visibility Study', 'published 1979', NULL, 1979); INSERT INTO project VALUES (52, 'Erosion/Flood Plain/Soil Piping', 'published 1979', NULL, 1979); INSERT INTO project VALUES (53, 'Paleohydrology', NULL, NULL, NULL); INSERT INTO project VALUES (54, 'Past Environment and Subsistence at Chaco Canyon, NM (Pueblo Alto)', 'published 1979', NULL, 1979); INSERT INTO project VALUES (55, 'History of Habitat Research in Chaco Canyon', 'published 1979', NULL, 1979); INSERT INTO project VALUES (56, 'Holocene Environment: Packrat Middens', 'published 1979', NULL, 1979); INSERT INTO project VALUES (57, 'Bone Identification', 'published 1979', NULL, 1979); INSERT INTO project VALUES (58, 'Macrobotanical Remains, Chaco Canyon Coprolites', NULL, NULL, NULL); INSERT INTO project VALUES (59, '3-D Perspective', 'published 1980', NULL, 1980); INSERT INTO project VALUES (60, 'Presence of Sclerocactus Mesae-verdae (Boissevain ex Hill & Salisbury) L. Benson', 'published 1980', NULL, 1980); INSERT INTO project VALUES (61, 'Sun Dagger Study', 'published ?', NULL, NULL); INSERT INTO project VALUES (62, 'Obsidian Dating', 'published ?', NULL, NULL); INSERT INTO project VALUES (63, 'Flotation & Macro-botanical Analysis, 29SJ629: Pueblo I-II Village, Chaco C', 'full title: Flotation and Macro-botanical Analysis at 29SJ629: A Pueblo I-II Village in Chaco Canyon; published 1981', NULL, 1981); INSERT INTO project VALUES (64, 'Macrobotanical Remains from Pueblo Alto and Overview', 'published 1981', NULL, 1981); INSERT INTO project VALUES (65, 'Pollen Analysis at Una Vida', 'published 1984', NULL, 1984); INSERT INTO project VALUES (66, 'Una Vida and Kin Nahasbas Macro-remains', 'published 1984', NULL, 1984); INSERT INTO project VALUES (67, 'Five Pollen Samples from Kin Nahasbas', 'published 1984', NULL, 1984); INSERT INTO project VALUES (68, 'Kin Nahasbas Chipped Stone', 'published 1984', NULL, 1984); INSERT INTO project VALUES (69, 'Archaeofauna of 29SJ626 and 29SJ597', 'published 1984', NULL, 1984); INSERT INTO project VALUES (70, 'Groundstone from 29SJ626, 29SJ597, and Kin Nahasbas, Chaco Canyon', 'full title: An Analysis of the Groundstone Assemblages from Sites 29SJ626, 29SJ597, and Kin Nahasbas, Chaco Canyon; published 1984', NULL, 1984); INSERT INTO project VALUES (71, 'A Ceramic Analysis of the Trash Area at Site 29SJ626', 'published 1984', NULL, 1984); INSERT INTO project VALUES (72, 'Human Burials of Chaco Canyon', 'published 1984', NULL, 1984); INSERT INTO project VALUES (73, 'Faunal of 29SJ392 (Kin Nahasbas)', 'published 1985', NULL, 1985); INSERT INTO project VALUES (74, 'Pueblo Alto Chipped Stone Report', 'published 1985', NULL, 1985); INSERT INTO project VALUES (75, 'Lithic Procurement and Technology in the Chaco Canyon Area', 'published 1985', NULL, 1985); INSERT INTO project VALUES (76, 'Regional Patterns of Ceramic Variability', 'published 1985', NULL, 1985); INSERT INTO project VALUES (77, 'Site Settlement, Site Typology, and Demographic Analyses', 'published 1985', NULL, 1985); INSERT INTO project VALUES (78, 'Evaluation of Agricultural Potential in Four Park Additions', 'published 1985', NULL, 1985); INSERT INTO project VALUES (79, 'Navajo and Historic Sites and Settlements', 'published 1985', NULL, 1985); INSERT INTO project VALUES (80, 'Historic Artifact Data', 'published 1985', NULL, 1985); INSERT INTO project VALUES (81, 'Analysis of Historic Artifacts from Archeological Inventory Survey', 'published 1986', NULL, 1986); INSERT INTO project VALUES (82, 'Parasite Analysis - Prehistoric Coprolites', NULL, NULL, NULL); INSERT INTO project VALUES (83, 'Human Coprolites - Pueblo Alto', 'published 1987', NULL, 1987); INSERT INTO project VALUES (84, 'Examination of Pollen Samples from Room 110, Pueblo Alto', 'published 1987', NULL, 1987); INSERT INTO project VALUES (85, 'Fauna of Pueblo del Arroyo', 'published 1987', NULL, 1987); INSERT INTO project VALUES (86, 'Pollen from Mealing Catchment Basins at 29SJ629', 'published 1992', NULL, 1992); INSERT INTO project VALUES (2, 'The Chaco Project', 'See Note 1 (CDI Note #1089642533436).', NULL, NULL); INSERT INTO project VALUES (90, 'Gordon Vivian''s Excavation of Pueblo del Arroyo''s Tri Wall Structure', NULL, 1950, 1950); INSERT INTO project VALUES (91, 'Penasco Blanco Excavations', 'few rooms excavated by local Navajo', 1950, 1950); INSERT INTO project VALUES (97, 'Excavations at Casa Rinconada by Gordon Vivian, Spon. by SAR and UNM', NULL, 1931, 1931); INSERT INTO project VALUES (104, 'Excavations at Site 8 by Hewett, Sponsored by SAR and UNM', NULL, NULL, NULL); INSERT INTO project VALUES (124, 'Excavations at 29SJ746 (Bc 84)', NULL, NULL, NULL); INSERT INTO project VALUES (1, 'UNM/SAR Field School', NULL, NULL, NULL); INSERT INTO project VALUES (126, 'Excavations at Bc 192 (Lizard House) by Maxon & Bromberg, Spon. by NPS', 'Masonry pueblo. Excavated 17 rooms and 3 kivas.', 1960, 1960); INSERT INTO project VALUES (125, 'Excavations at Bc 236 (29SJ589) by Zorro Bradley, Spon. by NPS', 'Masonry pueblo. Excavated 10 rooms, 1 kiva, 1 oven, 1 cist, and a PI pithouse.', 1958, 1958); INSERT INTO project VALUES (129, 'Excavations at Gallo Cliff Dwelling Sponsored by NPS', 'Excavated 1 kiva at west end and 4 rooms.', 1966, 1967); INSERT INTO project VALUES (128, 'Excavations at Voll''s Site (29SJ827) by Voll and Richert, Spon. by NPS', 'Masonry pueblo. Excavated 18 rooms, 3 kivas, and 2 plazas.', 1962, 1962); INSERT INTO project VALUES (127, 'Excavations at Bromberg''s Ditch, wall, canal by Bromberg and Maxon, Spon. by NPS', 'Partial excavation of water control feature.', 1960, 1960); INSERT INTO project VALUES (130, 'National Park Service Sponsored Work', NULL, NULL, NULL); INSERT INTO project VALUES (96, 'Excavations at Talus Unit No. 1 by Shiner, Spon. by NPS', 'Excavated Kiva J. Previous excavations by SAR field school.', 1959, 1959); INSERT INTO project VALUES (88, 'National Geographic Society Expedition', '1920: Judd''s Pithouse No. 1, 1921-1927: Pueblo Bonito: 198 rooms & kivas, trash mounds 1925: 2 pithouses under Pueblo Bonito''s West Court Trench & Room 241. Ruin 3. Ruin 13. Pueblo Bonito Trash Mound (1926), Hillside Ruin (trenches, PIII kiva: 1920s), Pueblo del Arroyo (65 rooms,tri-wall,associated rooms: 1923-1926), Pueblo del Arroyo Tri Wall(1920), 1926: Turkey House, Roberts Small Pueblo, Penasco Blanco and Pueblo Alto trash mound trenches, Shabik''eshchee. 1927: Smith''s Ranch Ruin.', 1920, 1927); INSERT INTO project VALUES (132, 'Excavations at "cemetery" 1 mi east of Pueblo Bonito by Warren K. Moorehead', '1897. Unknown, probably a trash midden.', 1897, 1897); INSERT INTO project VALUES (133, 'Excavations at Pueblo Bonito by Warren K. Moorehead, Rooms 53 and 56', '1897: Rooms 53 and 56.', 1897, 1897); INSERT INTO project VALUES (134, 'Excavations at Pueblo del Arroyo by S. J. Holsinger', '1901: excavated arc enclosing plaza. Site later excavated by Judd.', 1901, 1901); INSERT INTO project VALUES (135, 'Excavations at Holsinger''s Site', '1901: mound. No site number: 2 miles east of Kin Klizhin.', 1901, 1901); INSERT INTO project VALUES (131, 'Hyde Exploring Expedition', '1896-1899: Pueblo Bonito, entire site. Penasco Blanco: several rooms. 1896: Pepper''s Mound 1 (29SJ399): trash mound. 1896: Pepper''s Mound 2 (29SJ383): trash mound. 1896-1900: Kin Sabe: mound. 1899: Kin Neole: 100 burials. 1900: 29SJ1579: mound. 1901: Picture Cliffs: burial. Mound 1: midden. Mound 2: midden. Mound 3: midden. Mound 4: midden. House site: 8 rooms. Wetherill Mesa Pueblo: 7 rooms, 3 kivas.', 1896, 1901); INSERT INTO project VALUES (136, 'Excavations at Bc 48 by Martin Mayer, Spon. by NPS', NULL, 1947, 1947); INSERT INTO project VALUES (137, 'Excavations at Talus Unit by Sally Pearce, Spon. by NPS', 'partial excavation of two rooms.', 1932, 1932); INSERT INTO project VALUES (138, 'Excavations at Pithouses near Casa Rinconada, Bc 64A', 'Excavated one pit house and five cists.', 1936, 1936); INSERT INTO project VALUES (33, 'Computer Detection of Cultural Resources: Aerial Multispectral Digital Data', 'full title: Computer Detection of Cultural Resources - Pattern Recognition Study of Aerial Multispectral Scanner Digital Data; published 1977', NULL, 1977); INSERT INTO project VALUES (139, 'Earl Morris Excavations at Aztec', 'Earl Morris conducted initial excavations at Aztec and continued to be involved with decisions made regarding the site after it was transfered to National Park Service hands in 1923. These first excavations focused on the West Ruin and the Annex, and excavated 200 rooms, 8 kivas, and the Great Kiva.', 1916, 1923); INSERT INTO project VALUES (140, 'Excavation of the Hubbard Mound at Aztec ', 'The Hubbard Mound is located northeast of the main West Ruin. Gordon Vivian and Thomas B. Onstott excavated 22 rooms, 2 kivas, and sveral unassociated walls of this mound in 1953. The tract of land (tract 5) was aquired by the National Park Service from Clyde C. Hubbard in 1948. After several decades of exposure this mound was partially backfilled to prevent further degredation from the elements.', 1953, 1953); INSERT INTO project VALUES (141, 'East Ruin Excavations at Aztec', 'The East Ruin lies 150 yards northeast of the West Ruin at Aztec. 9 rooms with original ceilings were stabilized and 14 were excavated during these small-scale excavations. This part of the Aztec site was casually tested by Morris earlier in 1927, 10 rooms were cleared, but apparently few notes of these earlier excavations survive. ', 1957, 1957); INSERT INTO project VALUES (142, 'Small Trash Mound Excavations at Aztec', 'This excavation consisted of testing a small mound in front of the visitor center that was going to be landscaped. This mound turned out to be an undistrubed trash mound just south of the West Wing rooms in the West Ruin.', 1960, 1960); INSERT INTO project VALUES (143, 'The Aztec Reconnaissance', 'This project was undertaken to assess the archaeological resources to the north, west, and east of the existing (pre-1988)monument boundaries. In addition to the extension of monument boundaries, the NPS wanted a general management plan drawn up for Aztec Ruins in order to assess damage and preservation necessarry due to encroaching developement. The boundaries of the Aztec Ruins National Monument were subsequently extended under Public Law 100-559.', 1987, 1987); INSERT INTO project VALUES (144, 'San Juan Valley Archaeological Project', 'This was a long-term project undertaken by Eastern New Mexico University focused on Salmon Ruins. Important to Aztec Ruins because in 1974 Aerial photographs were taken of the Aztec area prior to much of the modern utility and residential development surrounding the site of Aztec. ', 1972, 1980); -- -- Data for TOC entry 88 (OID 561314) -- Name: site; Type: TABLE DATA; Schema: public; Owner: rwb3y -- INSERT INTO site VALUES (10, NULL, NULL, '29SJ178', NULL, NULL, NULL, NULL); INSERT INTO site VALUES (20, 'Casa Chiquita', 'Casa Chiquita', NULL, NULL, NULL, NULL, NULL); INSERT INTO site VALUES (21, 'Wijiji', 'Wijiji', NULL, NULL, NULL, NULL, NULL); INSERT INTO site VALUES (23, 'Allentown', NULL, NULL, 'Fort Defiance 12:19', NULL, NULL, 'Responsible Agency: Navajo Nation. 380 acres.'); INSERT INTO site VALUES (24, 'Andrews Ranch', NULL, NULL, 'LA 17218', NULL, NULL, 'Responsible Agency: Bureau of Land Management. 950 acres.'); INSERT INTO site VALUES (25, 'Bee Burrow', NULL, NULL, 'LA 13163', NULL, NULL, 'Responsible Agency: Bureau of Land Management. 480 acres.'); INSERT INTO site VALUES (27, 'Casa del Rio', NULL, NULL, 'LA 17221', NULL, NULL, 'Responsible agency: Navajo Nation. 40 acres.'); INSERT INTO site VALUES (30, 'Coolidge', NULL, NULL, 'LA 17289', NULL, NULL, 'Responsible agency: Navajo Nation. 450 acres.'); INSERT INTO site VALUES (31, 'Dalton Pass', NULL, NULL, 'LA 98222', NULL, NULL, 'Responsible agency: Navajo Nation. 135 acres.'); INSERT INTO site VALUES (32, 'Dittert', NULL, NULL, 'LA 11723', NULL, NULL, 'Responsible agency: Bureau of Land Management. 480 acres.'); INSERT INTO site VALUES (33, 'Great Bend', NULL, NULL, 'LA 6419, LA 6420', NULL, NULL, 'Responsible agency: Navajo Nation. 26 acres.'); INSERT INTO site VALUES (34, 'Greenlee Ruin', NULL, NULL, 'LA 35418', NULL, NULL, 'Responsible agency: Navajo Nation. 60 acres.'); INSERT INTO site VALUES (35, 'Grey Hill Spring', NULL, NULL, '18244', NULL, NULL, 'Responsible agency: Navajo Nation. 23 acres.'); INSERT INTO site VALUES (37, 'Halfway House', NULL, NULL, 'LA 15191', NULL, NULL, 'Responsible agency: Bureau of Land Management. 40 acres.'); INSERT INTO site VALUES (39, 'Hogback', NULL, NULL, 'LA 11594, LA 11207', NULL, NULL, 'Responsible agency: Navajo Nation. 453 acres.'); INSERT INTO site VALUES (40, 'Indian Creek', NULL, NULL, 'LA 17081, LA 17083', NULL, NULL, 'Responsible agency: Bureau of Land Management. 100 acres.'); INSERT INTO site VALUES (41, 'Jaquez', NULL, NULL, 'LA 2609, LA 5608', NULL, NULL, 'Responsible agency: private holding. 66 acres.'); INSERT INTO site VALUES (42, 'Kin Nizhoni', NULL, NULL, 'LA 18166, LA 18226', NULL, NULL, 'Responsible agency: Bureau of Land Management. 726 acres.'); INSERT INTO site VALUES (43, 'Lake Valley', NULL, NULL, 'LA 18755', NULL, NULL, 'Responsible agency: Navajo Nation. 30 acres.'); INSERT INTO site VALUES (44, 'Manuelito - Atsee Nitsae', NULL, NULL, 'LA 1057', NULL, NULL, 'Responsible agency: Navajo Nation. 60 acres.'); INSERT INTO site VALUES (45, 'Manuelito - Kin Hochoi', NULL, NULL, 'LA 6541', NULL, NULL, 'Responsible agency: Navajo Nation. 116 acres.'); INSERT INTO site VALUES (46, 'Morris Site 41', NULL, NULL, 'LA 5631', NULL, NULL, 'Responsible agency: Bureau of Land Management. 85 acres.'); INSERT INTO site VALUES (47, 'Muddy Water', NULL, NULL, 'LA 10959, LA 10716, LA 17257', NULL, NULL, 'Responsible agency: Navajo Nation. 1,090 acres.'); INSERT INTO site VALUES (49, 'Newcomb', NULL, NULL, 'LA 7551', NULL, NULL, 'Responsible agency: Navajo Nation. 50 acres.'); INSERT INTO site VALUES (50, 'Peach Springs', NULL, NULL, 'LA 10770', NULL, NULL, 'Responsible agency: Navajo Nation. 1,046 acres.'); INSERT INTO site VALUES (51, 'Pierre''s Site', NULL, NULL, 'LA 16508, LA 16509, LA 16515', NULL, NULL, 'Responsible agency: Bureau of Land Management. 440 acres.'); INSERT INTO site VALUES (52, 'Raton Well', NULL, NULL, 'LA 14354', NULL, NULL, 'Responsible agency: Navajo Nation. 23 acres.'); INSERT INTO site VALUES (53, 'Salmon Ruin', NULL, NULL, 'LA 8846', NULL, NULL, 'Responsible agency: State of New Mexico. 5 acres.'); INSERT INTO site VALUES (54, 'San Mateo', NULL, NULL, 'LA 15369', NULL, NULL, 'Responsible agency: private holding. 61 acres.'); INSERT INTO site VALUES (55, 'Sanostee', NULL, NULL, 'LA 7292', NULL, NULL, 'Responsible agency: Navajo Nation. 1,565 acres.'); INSERT INTO site VALUES (56, 'Section 8', NULL, NULL, 'LA 17225', NULL, NULL, 'Responsible agency: Navajo Nation. 10 acres.'); INSERT INTO site VALUES (58, 'Standing Rock', NULL, NULL, 'LA 18232', NULL, NULL, 'Responsible agency: Navajo Nation. 348 acres.'); INSERT INTO site VALUES (59, 'Toh-la-kai', NULL, NULL, 'LA 11234', NULL, NULL, 'Responsible agency: Bureau of Land Management. 10 acres.'); INSERT INTO site VALUES (60, 'Twin Angels', NULL, NULL, 'LA 5642', NULL, NULL, 'Responsible agency: Bureau of Land Management. 40 acres.'); INSERT INTO site VALUES (61, 'Upper Kin Klizhin', NULL, NULL, 'LA 34245', NULL, NULL, 'Responsible agency: Bureau of Land Management. 60 acres.'); INSERT INTO site VALUES (69, 'Site 8', NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO site VALUES (83, '29SJ746 (Bc 84)', NULL, '29SJ746', NULL, 'Bc 84', NULL, NULL); INSERT INTO site VALUES (101, NULL, NULL, '29SJ116', 'LA40116', NULL, NULL, 'Excavated in 1973 by Thomas Mathews. Pre-ceramic: archaic: 20 m of surface stripped; hearth excavated. Peripheral tests.'); INSERT INTO site VALUES (102, NULL, NULL, '29SJ126', 'LA40126', NULL, NULL, 'Excavated in 1972 by Dennis Stanford and Thomas R. Lyons. Pre-ceramic: archaic: surface cleared; burned area cleared.'); INSERT INTO site VALUES (103, 'Atlatl Cave', NULL, '29SJ1156', 'LA41156', NULL, NULL, 'Excavated in 1975-1976 by Thomas W. Mathews and John D. Schelberg. Pre-ceramic: Archaic: rock shelter tested and excavated.'); INSERT INTO site VALUES (104, 'Sleeping Dune, Ant Hill Dune', NULL, '29SJ1157', 'LA41157', NULL, NULL, 'Excavated in 1976 by Earl Neller and Victoria Atkins. Pre-ceramic: Archaic-Basketmaker II: tested dune areas, mapped artifact distribution.'); INSERT INTO site VALUES (90, 'Rich''s Site', NULL, '29SJ299', NULL, NULL, NULL, 'Excavated:BMIII:3 pit structures(PH A 600s-635,PH D 600s-685),cists;PI:1 pithouse(PH E),4 storage rooms,fronting ramadas.Pithouse C incomplete.Pithouses A & D burned,artifacts on floor.McKenna(1986:a49)sees these as two ends of spectrum missing middle.'); INSERT INTO site VALUES (89, NULL, NULL, '29SJ423', 'LA40423', NULL, NULL, '7 pit structures,40 cists.Excavated:BMIII:3 pit structures,1 great kiva(BMIII:520-540,540-550,557-),3 cists.1 of 20 pithouse sites on mesa top.Earliest great kiva resembles Mogollon in placement of roof post supports, presence of brown wares.Shrine.'); INSERT INTO site VALUES (91, NULL, NULL, '29SJ628', 'LA40628', NULL, NULL, 'Excavated:BMIII-PI continuum:6 pit structures(PH C, PH D-G, PH E, PH A, PH F),6 cists.Axis changes from 60deg east of south to north-south.Probably later pithouses and surface structures at this site.Evidence of continued occupation during BMIII-PI.'); INSERT INTO site VALUES (93, 'Bc 164', NULL, '29SJ721', 'LA40721', NULL, NULL, 'Features excavated: PI: 2 pithouses (dates: PH A 700s, PH C 700s), 6 cists, 1 PI room. Pithouse C salvaged to build Pithouse A. Pithouse A and room are contemporary. Intermittent activity areas present. PIII unfinished kiva also present and excavated.'); INSERT INTO site VALUES (17, 'House Block 1, House Block 2', NULL, '29SJ724', 'LA40724', NULL, NULL, 'Features present: 3 pithouses, 3 curvilinear mounds. Features excavated: PI: 1 pithouse, 2 living rooms (ramadas?), 8 storage rooms, ramada area. Dates: PI, late 700s. Two nuclear families in site area (possibly using pithouse A).'); INSERT INTO site VALUES (28, 'Casamero', 'Casamero', NULL, 'LA 8779', NULL, NULL, 'Responsible agency: Bureau of Land Management. 160 acres.'); INSERT INTO site VALUES (97, NULL, NULL, '29MC184', 'LA40081', NULL, NULL, 'Excavated in 1974 and 1976 by Thomas C. Windes. PI. Tested only (4 trenches in trash midden). PI site includes 4-5 rooms, 4-5 pithouses, 1-7 storage bins.'); INSERT INTO site VALUES (98, NULL, NULL, '29SJ597', 'LA40597', NULL, NULL, 'PI through early PII. Level of excavation: tests. Site consists of 3 heating pits, 1 firepit, 1 burial and trash; other material on other side of road. Excavated 1979 (Windes), 1980 (Anderson, Bradford, Trott, Windes), 1981 (Bradford).'); INSERT INTO site VALUES (99, NULL, NULL, '29SJ626', 'LA40626', NULL, NULL, 'Excavated 1975 by Thomas C. Windes and 1980 by James Bradford, Peter J. McKenna, Judy Miles, and Thomas C. Windes. PI through early PII. Level of excavation: 6 tests in 3 rooms and 3 areas of trash midden.'); INSERT INTO site VALUES (96, NULL, NULL, '29SJ627', 'LA40627', NULL, NULL, 'Present:25 rooms,7 pit structures,trash mound,ramadas.Excavated:PI through early PII.Dates:PI first construction,780-910,Pithouse C,rooms 9&5,4&16,8&3,19&22,west-of storage.Probably continuity of family use through time.'); INSERT INTO site VALUES (94, 'Spadefoot Toad Site', NULL, '29SJ629', 'LA40629', NULL, NULL, 'PI-PIII.Present:3 pit structures,9 rooms, ramada,kiva.Excavated:8 rooms, ramada/plaza,2 pit structures,kiva, midden.Long occupation, components include PI,early PII,PIII reoccupation.PH 2 has evidence for occupation by two nuclear families,800s-1000.'); INSERT INTO site VALUES (95, NULL, NULL, '29SJ1360', 'LA41360', NULL, NULL, 'Present:18 rooms,5 kivas.Excav:PI-early PII.PI:trash mounds 1 & 2.House 1:10 rooms,1 pithouse,parrot bin.House 2:6 rooms,kiva.May be part of larger settlement that includes 29SJ1278.Excav. 14 rooms,1 pithouse,1 kiva,ramada,3 trash pits.Archaeomag. samps.'); INSERT INTO site VALUES (106, NULL, NULL, '29SJ630', 'LA40630', NULL, NULL, 'Excavated in 1975 by Earl Neller and Robert Powers. PII-early PIII: tested 2 small areas of trash mound.'); INSERT INTO site VALUES (11, 'The 11th Hour Site', NULL, '29SJ633', 'LA40633', NULL, NULL, 'Excavated 1978 by LouAnn Jacobson and Marcia Truell. Early and late PIII. 1 and 1/2 rooms out of 15 rooms and 3 kivas were excavated. Places test on top of kiva, 2 areas of plaza. Site construction in 1100s, with reuse during 1200s.'); INSERT INTO site VALUES (100, 'Poco Site, Curious Site', NULL, '29SJ1010', 'LA1010', NULL, NULL, 'Excavated in 1975 by Dwight L. Drager and in 1976 by Thomas R. Lyons. PIII. Road related herradura. 3 circular structures excavated. Part of larger set of circular structures associated with road spur.'); INSERT INTO site VALUES (107, 'Stone Quarry', NULL, '29SJ1118', 'LA41118', NULL, NULL, 'Excavated in 1973 by Roger Huckins, Thomas Mathews, Milo McLeod, John D. Schelberg, and John Thrift.'); INSERT INTO site VALUES (108, NULL, NULL, '29SJ692', 'LA40692', NULL, NULL, 'Thomas C. Windes, 1974 to 1978. 2 Stone circles: N and S.'); INSERT INTO site VALUES (109, NULL, NULL, '29SJ866', 'LA40866', NULL, NULL, 'Thomas C. Windes, 1974 to 1978. Stone circle.'); INSERT INTO site VALUES (110, NULL, NULL, '29SJ919', 'LA40919', NULL, NULL, 'Thomas C. Windes, 1974 to 1978. Stone circle.'); INSERT INTO site VALUES (111, NULL, NULL, '29SJ1326', 'LA41326', NULL, NULL, 'Thomas C. Windes, 1974 to 1978. Stone circle.'); INSERT INTO site VALUES (112, NULL, NULL, '29SJ1419', 'LA41419', NULL, NULL, 'Thomas C. Windes, 1974 to 1978. Stone circle.'); INSERT INTO site VALUES (113, NULL, NULL, '29SJ1474', 'LA41474', NULL, NULL, 'Thomas C. Windes, 1974 to 1978. Stone circle.'); INSERT INTO site VALUES (114, NULL, NULL, '29SJ1505', 'LA41505', NULL, NULL, 'Thomas C. Windes, 1974 to 1978. Two stone circles, E and W.'); INSERT INTO site VALUES (115, NULL, NULL, '29SJ1533', 'LA41533', NULL, NULL, 'Thomas C. Windes, 1974 to 1978. Stone circle.'); INSERT INTO site VALUES (116, NULL, NULL, '29SJ1565', 'LA41565', NULL, NULL, 'Thomas C. Windes, 1974 to 1978. Stone circle.'); INSERT INTO site VALUES (117, NULL, NULL, '29SJ1572', 'LA41572', NULL, NULL, 'Thomas C. Windes, 1974 to 1978. Stone circle.'); INSERT INTO site VALUES (118, NULL, NULL, '29SJ1660', 'LA41660', NULL, NULL, 'Thomas C. Windes, 1974 to 1978. Stone circle.'); INSERT INTO site VALUES (119, NULL, NULL, '29SJ1976', 'LA41976', NULL, NULL, 'Thomas C. Windes, 1974 to 1978. Six stone circles: A, B, C, D, E, F.'); INSERT INTO site VALUES (120, NULL, NULL, '29SJ2240', 'LA42240', NULL, NULL, 'Thomas C. Windes, 1974 to 1978. Stone circle.'); INSERT INTO site VALUES (121, 'Doll House Site', NULL, '29SJ1613', 'LA41613', NULL, NULL, 'Historic. Excavated in 1975 by David M. Brugge.'); INSERT INTO site VALUES (22, 'Casa Rinconada', 'Casa Rinconada', '29SJ386', 'LA 841', 'Bc 255', NULL, '1930-1931: Casa Rinconada great kiva excavated by Gordon Vivian; SAR/UNM field school.'); INSERT INTO site VALUES (65, 'Kin Nahasbas', 'Kin Nahasbas', '29SJ392', 'LA 152', 'Bc 249', NULL, '1935: excavated (great kiva and 1 room) by Dorothy Luhrs as part of UNM/SAR field school. PII great house: previously excavated great kiva cleared and mapped. Room block mapped. By F. Joan Mathien and Thomas C. Windes in 1983.'); INSERT INTO site VALUES (78, 'Bc 114, Anna Shepard''s Site', NULL, '29SJ200', 'LA 40200', 'Bc 113-115', NULL, '1929: 3 rooms and trench excavated by Anna Shepard as part of a UNM/SAR field school.'); INSERT INTO site VALUES (75, 'Bc 55', NULL, '29SJ1921', 'LA41921', 'Bc 55', NULL, 'Talus site. 1941: 2 or 3 rooms excavated by Theodora Buggeln, M. Chandler, and Paul Reiter and his students as part of the UNM/SAR field school.'); INSERT INTO site VALUES (76, 'Bc 56', NULL, '29SJ753', 'LA40753', 'Bc 78-83', NULL, 'Talus site. 8 rooms, 2 kivas, and burials excavated in 1941 by Paul Reiter and students as part of the UNM/SAR field school.'); INSERT INTO site VALUES (77, 'Bc 58', NULL, '29SJ398', 'LA40398', 'Bc 58', NULL, 'Masonry pueblo. 1947: excavated by C. Burroughs and Stanley Stubbs: 10 or 11 rooms, 2 kivas. Part of a UNM/SAR field school.'); INSERT INTO site VALUES (2, 'Leyit Kin', 'Leyit Kin', '29SJ750', 'LA41750', 'Bc 24', NULL, 'Site 26,masonry pueblo. 1934, 1936: 14 rooms, 4 kivas, and trash midden excavated by Bertha P. Dutton as part of a UNM/SAR field school.'); INSERT INTO site VALUES (74, 'Bc 54', NULL, '29SJ1922', 'LA41922', 'Bc 54', NULL, 'Talus site. 1941: Excavated as part of a UNM/SAR field school by Ripley Bullen, William Mulloy, and Paul Reiter. Excavated 4 rooms, parts of others, and 3 kivas.'); INSERT INTO site VALUES (71, 'Cacique''s Sanctum', NULL, '29SJ1924', 'LA41924', 'Bc 86', NULL, '2 rooms excavated as part of a UNM/SAR field school in 1930 by Richard Vann and Phil Drucker.'); INSERT INTO site VALUES (72, 'Talus Rock Shelter', NULL, '29SJ1936', 'LA41936', 'Bc 98-99', NULL, '1930, 1933: excavated by Florence Hawley (later work: Florence H. Ellis) as part of a UNM/SAR field school: excavated shelter with firepit and storage cists. Exposed room walls.'); INSERT INTO site VALUES (80, 'Hurst Julian''s Niches (Bc 130, Bc 133), Cliff Cavities: PS1, PS2, PS3, U1, U2', NULL, '29SJ1944', 'LA41944', 'Bc 130, Bc 133 (U)', NULL, 'Series of cliff cavities between Chetro Ketl and Pueblo Bonito (PS) and behind Kin Kletso (U). 1932-1933: excavated by Hurst Julian and Dorothy Keur as part of a UNM/SAR field school.'); INSERT INTO site VALUES (79, 'Bc 126, Hutch''s Site', NULL, '29SJ838', 'LA40838', 'Bc 126', NULL, 'Masonry pueblo. 1934: excavated as part of UNM/SAR field school by Charles Hutchinson, Albert Ely, and J. Charles Kelley. Excavated 6 rooms and 2 kivas of previously looted site.'); INSERT INTO site VALUES (70, 'Kin Chinde, Site 21', NULL, '29SJ799', 'LA40799', 'Bc 60-61', NULL, '1934: Excavated by Bertha P. Dutton and Marion Hollenbach as part of a UNM/SAR field school: excavated 4 or 5 rooms and trash midden.'); INSERT INTO site VALUES (82, '29SJ240', NULL, '29SJ240', 'LA40240', NULL, NULL, 'Excavated in 1957 by Gordon Vivian, sponsored by NPS. Excavated 1 of 2 rooms, 1 kiva.'); INSERT INTO site VALUES (85, 'Bc 192, Lizard House', NULL, '29SJ1912', 'LA41912', 'Bc 192', NULL, 'Masonry pueblo. Excavated in 1960 by James Maxon and William Bromberg, spon. by NPS. Excavated 17 rooms and 3 kivas.'); INSERT INTO site VALUES (84, '29SJ589', NULL, '29SJ589', 'LA40589', 'Bc 236', NULL, 'Masonry pueblo. Excavated in 1958 by Zorro Bradley, spon. by NPS. Excavated 10 rooms, 1 kiva, 1 oven, 1 cist, and a PI pithouse.'); INSERT INTO site VALUES (88, 'Gallo Cliff Dwelling', NULL, '29SJ540', 'LA40540', 'Bc 288', NULL, 'Excavated in 1966-1967 by Donald Morris, Leland Abel, Martin Mayer, and George Buckingham, sponsored by NPS. Excavated 1 kiva at west end and 4 rooms.'); INSERT INTO site VALUES (87, 'Voll''s Site', NULL, '29SJ827', 'LA40827', 'Bc 362 (and Bc 250)', NULL, 'Masonry pueblo. Excavated in 1962 by Charles Voll and Roland Richert, sponsored by NPS. Excavated 18 rooms, 3 kivas, and 2 plazas.'); INSERT INTO site VALUES (86, 'Bromberg''s Ditch, wall, canal', NULL, '29SJ1095', 'LA41095', 'Bc 364', NULL, '1960: partial excavation of water control feature by William Bromberg and James Maxon, sponsored by NPS.'); INSERT INTO site VALUES (9, 'Kin Kletso', 'Kin Kletso', '29SJ393', 'LA 2464', 'Bc 248', NULL, 'Excavated in 1934 by Edwin Ferdon as part of a UNM/SAR field school. 9 rooms and 2 kivas. Later excavations by Vivian and Mathews (spon. by NPS): excavated remainder of this great house.'); INSERT INTO site VALUES (64, 'Talus Unit No. 1', NULL, '29SJ1930', 'LA 2740', 'Bc 257', NULL, '1933-1935, 1937: excavated by Paul Walters, Jr. and Margaret Woods as part of the UNM/SAR field school. 27 rooms and 6 kivas excavated. Later NPS excavation by Joel Shiner of Kiva J.'); INSERT INTO site VALUES (124, 'Bc 363 (29SJ1054)', NULL, '29SJ1054', 'LA41054', 'Bc 363', NULL, 'Excavated by Gordon Vivian (?) in 1947 (?), sponsored by National Park Service. Excavated 2 rooms and 1 kiva.'); INSERT INTO site VALUES (66, 'Headquarter''s Site 2', NULL, '29SJ515', 'LA40515', 'Bc 211', NULL, '1950: 4 rooms excavated by Gordon Vivian, sponsored by NPS.'); INSERT INTO site VALUES (1, 'Chetro Ketl', 'Chetro Ketl', '29SJ1928', 'LA 838', 'Bc 246', NULL, '1920-1921,1929-1935.Hewett.NE portion~130 rooms,great kiva,court kiva,~8 others,trash mound.Later excav rooms 92,93 by Vivian NPS.Site # incl. agric. fields.7 trenches excav,Loose 1974.Very late;fields similar to others Vivian documents N side C. Wash.'); INSERT INTO site VALUES (81, 'Three C Site, Bc 243', NULL, '29SJ625', 'LA41625', 'Bc 243', NULL, 'Masonry pueblo. PII. Vivian, Boone, Rixey, spon. by NPS: 1939, 1949: excav 9 rooms, 2 kivas. Chaco Project: level of excavation: tests (reopening of northeast rooms and 2 kivas). Previously excavated by Vivian (1965).'); INSERT INTO site VALUES (126, 'Hungo Pavie', NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO site VALUES (18, 'Pueblo del Arroyo', 'Pueblo del Arroyo', '29SJ1947', 'LA41947', 'Bc 254', NULL, '1923-1926: excavated by Judd and Ruppert: 65 rooms, tri-wall structure, several associated rooms. 1950: Gordon Vivian, Leland Abel, spon. by NPS: re-excavation and stabilization of tri-wall structure. Previously tested by Holsinger.'); INSERT INTO site VALUES (7, 'Pueblo Alto', 'Pueblo Alto', '29SJ389', 'LA 661', 'Bc 251', NULL, '1926:trash mound trench by Frank H. H. Roberts, Jr. for Harvard University dissertation, NGS Expedition.Excav 1975-1979 by Thomas C. Windes, crew.PII great house.PIII.Excavation of 10%.Central pueblo for community with roads and other small structures.'); INSERT INTO site VALUES (62, 'Hillside Ruin', NULL, '29SJ1175', 'LA41775', 'Bc 95', NULL, '1921-1927: Judd: PIII kiva excavated as part of NGS Expedition.'); INSERT INTO site VALUES (129, 'Judd''s Pithouse No. 2 ', NULL, '29SJ1678', 'LA41678', 'Bc 194', NULL, '1 mi./1.6 km east of Pueblo Bonito. Pit structure 12 ft. below valley floor; dendro dated to ca. AD 720 and 777. Excavated by Neil M. Judd, 1922 as part of the NGS Expeditions.'); INSERT INTO site VALUES (131, 'Ruin 13', NULL, NULL, 'LA65441', NULL, NULL, 'In side tributary to Kin Bineola Wash. L-shaped pueblo with 7+ rooms and a kiva dating to Classic Bonito Phase. Excavated by Monroe Amsden in 1925 as part of the NGS Expedition.'); INSERT INTO site VALUES (132, 'Pit structure (no site number, see comments for description)', NULL, NULL, NULL, NULL, NULL, '9 miles east of Pueblo Bonito, in gully in opposite bank from Arroyo House or Half House beneath Turkey House. Excavated by Frank H. H. Roberts, Jr. in 1926.'); INSERT INTO site VALUES (122, 'Half House, Arroyo House', NULL, '29SJ1657', 'LA41657', 'Bc 244, 373', NULL, '1926: partial pit structure excavated by F. Roberts as part of NGS Expedition. 1947: portion of pit house, excavated by R. Adams, L. Knudson, and M. Raphael as part of a UNM/SAR field school.'); INSERT INTO site VALUES (68, 'Turkey House, Roberts'' Small House', NULL, '29SJ2385', 'LA42385', 'Bc 262', NULL, '9 rooms and East Court, several burials in PII and PIII house and mound. Excavated by Frank H. H. Roberts, Jr. in 1926 as part of NGS Expedition.'); INSERT INTO site VALUES (133, 'Small house (no site #, see comments for description)', NULL, NULL, NULL, NULL, NULL, 'Small house 10 mi. east of Pueblo Bonito and 1 mi. east of Turkey House. 1926-1927: Frank H. H. Roberts, Jr., NGS Expedition: numerous burials from at least three rooms of Late PIII site.'); INSERT INTO site VALUES (134, 'Smith''s Ranch Ruin, Small house (no site #)', NULL, NULL, NULL, NULL, NULL, 'Excavated by Frank H. H. Roberts, Jr. in 1927 as part of the NGS Expedition.'); INSERT INTO site VALUES (135, 'Talus House behind Pueblo Bonito', NULL, '29SJ1935', 'LA41935', 'Bc 348', NULL, 'Two rooms and kiva of late PIII site excavated in 1927 by Frank H. H. Roberts, Jr., NGS Expedition.'); INSERT INTO site VALUES (5, 'Pueblo Bonito', 'Pueblo Bonito', '29SJ387', 'LA226', 'Bc 253', NULL, '1896-1899: HEE: Pepper and Wetherill: 190 rooms, trash mounds. 2 pit structures beneath West Court Trench and Room 241 excav. by Judd in 1925 as part of NGS Expedition.1921-1927: 198 rooms and kivas, trash mounds excavated by NGS Expedition.'); INSERT INTO site VALUES (136, 'Pepper''s Mound 2 ', NULL, '29SJ383 (?)', 'LA40383', 'Bc 117, 118', NULL, '1896: trash mound excavated by Pepper and Wetherill, Hyde Exploring Expedition.'); INSERT INTO site VALUES (137, '29SJ1579', NULL, '29SJ1579', 'LA41579', NULL, NULL, 'Mound excavated in 1900 (?) by Wetherill, Hyde Exploring Expedition.'); INSERT INTO site VALUES (63, 'Roberts'' Small House', NULL, '29SJ2384', 'LA42384', NULL, NULL, '1926-1927: Frank H. H. Roberts, Jr., NGS Expedition: test trench across unfinished PIII ruin eroding into wash.'); INSERT INTO site VALUES (125, 'Kin Bineola', 'Kin Bineola', NULL, NULL, NULL, NULL, NULL); INSERT INTO site VALUES (127, 'Pueblo Pintado', 'Pueblo Pintado', NULL, NULL, NULL, NULL, NULL); INSERT INTO site VALUES (123, 'Kin Sabe', NULL, '29SJ823', 'LA40823', 'Bc 263', NULL, '1931, 1937: excav for UNM/SAR field school; W. W. Postlethwaite, Alden C. Hayes, Mabel Harding. Previous work (trash mound): Wetherill, Pepper (HEE: 1896-1900) & Judd (1925). Also referred to as Bc 98, but this number also refers to Talus Rock Shelter.'); INSERT INTO site VALUES (139, 'Mound 1 (no site number)', NULL, NULL, NULL, NULL, NULL, '1901: midden excavated by William C. Farabee and Alfred M. Tozzer, Hyde Exploring Expedition.'); INSERT INTO site VALUES (140, 'Mound 2 (no site number)', NULL, NULL, NULL, NULL, NULL, '1901: midden excavated by William C. Farabee and Alfred M. Tozzer, Hyde Exploring Expedition.'); INSERT INTO site VALUES (141, 'Mound 3 (no site number)', NULL, NULL, NULL, NULL, NULL, '1901: midden excavated by William C. Farabee and Alfred M. Tozzer, Hyde Exploring Expedition.'); INSERT INTO site VALUES (142, 'Mound 4 (no site number)', NULL, NULL, NULL, NULL, NULL, '1901: midden excavated by William C. Farabee and Alfred M. Tozzer, Hyde Exploring Expedition.'); INSERT INTO site VALUES (143, 'House Site (no site number)', NULL, NULL, NULL, NULL, NULL, '8 rooms, excavated in 1901 by William C. Farabee and Alfred M. Tozzer, Hyde Exploring Expedition.'); INSERT INTO site VALUES (144, 'Wetherill Mesa Pueblo, Mesa Tierra', NULL, NULL, 'LA17220', NULL, NULL, '1901: 7 (of approximately 40) rooms and 3 kivas excavated by William C. Farabee and Alfred M. Tozzer, Hyde Exploring Expedition.'); INSERT INTO site VALUES (145, 'Kin Neole (no site number, see comments for description)', NULL, NULL, NULL, NULL, NULL, '1/3 mile west of Kin Bineola. 1899: 100 burials excavated by Frederic Putnam and Ales Hrdlicka, Hyde Exploring Expedition.'); INSERT INTO site VALUES (146, '"Cemetery" 1 mi east of Pueblo Bonito (no site number)', NULL, NULL, NULL, NULL, NULL, 'Unknown, probably a trash midden. Excavated in 1897 by Warren K. Moorehead.'); INSERT INTO site VALUES (147, 'Holsinger''s Site', NULL, NULL, NULL, NULL, NULL, 'No site number: 2 miles east of Kin Klizhin.'); INSERT INTO site VALUES (138, 'Picture Cliffs', NULL, '29SJ426', 'LA41426', NULL, NULL, '1901: burial excavated by Frederic Putnam and Alfred M. Tozzer, Hyde Exploring Expedition in order to obtain a sample of human remains. '); INSERT INTO site VALUES (4, 'Penasco Blanco', 'Penasco Blanco ', '29SJ410', 'LA 225', 'Bc 250', NULL, 'Several rooms excavated by "Waylo", other Navajo (?) with Hyde Exploring Expedition. 1926: trash mound trench by Frank Roberts,for Harvard University dissertation, part of NGS Expedition. Chaco Project: road segment.'); INSERT INTO site VALUES (148, 'Chetro Ketl field', NULL, '29SJ1680', NULL, NULL, NULL, 'AD 1200s? Investigated by the Chaco Project.'); INSERT INTO site VALUES (105, NULL, NULL, '29SJ1987', 'LA41987', NULL, NULL, 'Excavated in 1973 by John D. Schelberg and Kelley Masterson. Archaic. Basketmaker II: Hearth examined.'); INSERT INTO site VALUES (150, 'Rabbit Ruin', NULL, '29SJ390', NULL, NULL, NULL, 'early AD 1100s. Investigated by the Chaco Project in 1976.'); INSERT INTO site VALUES (19, 'Tsin Kletzin', 'Tsin Kletzin', '29SJ385', NULL, NULL, NULL, 'Early AD 1100s. Black House. Investigated by the Chaco Project in 1981.'); INSERT INTO site VALUES (151, 'Bc 48', NULL, NULL, NULL, 'Bc 48 or Bc 395', NULL, 'Excavated in 1947 by Martin Mayer, spon. by NPS.'); INSERT INTO site VALUES (152, 'Talus Unit', NULL, '29SJ1927', 'LA41927', 'Bc 89', NULL, 'partial excavation of two rooms in 1932 by Sally Pearce, Spon. by NPS.'); INSERT INTO site VALUES (153, 'Pit Houses near Casa Rinconada', NULL, NULL, NULL, 'Bc 64A', NULL, 'one pithouse and 5 cists excavated by Joseph Maloney in 1936.'); INSERT INTO site VALUES (154, 'Cliff House', NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO site VALUES (155, 'Kin Klizhin', 'Kin Klizhin', NULL, NULL, NULL, NULL, NULL); INSERT INTO site VALUES (6, 'Shabik''eshchee', 'Shabik''eshchee', '29SJ1659', 'LA41659', NULL, NULL, 'Present:67 pit structures,45+ cists,1 great kiva,3 refuse mounds.Excavated:BMIII-PI continuum:2 pit structures,48 cists,1 great kiva,3 refuse mound.Dates reinterpreted.Earlier dates now AD 500s.Not two discrete settlements as Roberts(1929) proposed.'); INSERT INTO site VALUES (14, 'Bc 51 (29SJ395)', 'Bc 51', '29SJ395', 'LA40395', 'Bc 51', NULL, '1937-1939, 1949-1950: most of site excavated as part of UNM/SAR field school by Kluckhohn, Hawley, Mulloy, Bliss, Kelly, Taylor, and Vivian. Masonry pueblo.'); INSERT INTO site VALUES (73, 'Bc 52, Casa Sombreada', 'Bc 52', '29SJ400', 'LA40400', 'Bc 52, Bc 54', NULL, 'Talus site. 1940-1941: 19 or 20 rooms and 3 kivas were excavated by William Mulloy as part of a UNM/SAR field school.'); INSERT INTO site VALUES (15, 'Bc 57', 'Bc 57', '29SJ397', 'LA40397', 'Bc 57', NULL, 'Masonry pueblo. 1942: Paul Reiter and students excavated 9 rooms, 4 kivas, and an earlier pit structure beneath trash as part of the UNM/SAR field school.'); INSERT INTO site VALUES (13, 'Tseh So', 'Bc 50', '29SJ394', 'LA40394', 'Bc 50', NULL, 'Most of site excavated 1936-1939, 1947 as part of a UNM/SAR field school by: Brand, Hawley, Hibben, Bliss, Glenn, Clark, Seltzer, Senter, Vivian, and Rixey.'); INSERT INTO site VALUES (26, 'Bis sa''ani', 'Bis sa''ani', NULL, 'LA 17286', NULL, NULL, 'Responsible agency: Bureau of Land Management. 131 acres.'); INSERT INTO site VALUES (29, 'Chimney Rock', 'Chimney Rock', NULL, '?', NULL, NULL, 'Responsible agency: Forest Service. 3,160 acres.'); INSERT INTO site VALUES (36, 'Guadalupe', 'Guadalupe', NULL, '?', NULL, NULL, 'Responsible agency: Bureau of Land Management. 115 acres.'); INSERT INTO site VALUES (38, 'Haystack', 'Haystack', NULL, 'LA 6022', NULL, NULL, 'Responsible agency: Navajo Nation. 565 acres.'); INSERT INTO site VALUES (156, 'Kin-ya-a', 'Kin-ya-a', NULL, NULL, NULL, NULL, NULL); INSERT INTO site VALUES (48, 'Navajo Springs', 'Navajo Springs', NULL, 'HPD-96-257', NULL, NULL, 'Responsible agency: Navajo Nation. 260 acres.'); INSERT INTO site VALUES (149, 'New Alto', 'New Alto', '29SJ388', NULL, NULL, NULL, 'early AD 1100s. Investigated by the Chaco Project in 1976.'); INSERT INTO site VALUES (157, 'Old Alto', 'Old Alto', NULL, NULL, NULL, NULL, NULL); INSERT INTO site VALUES (57, 'Skunk Springs/Crumbled House', 'Skunk Springs', NULL, 'LA 7000, LA 7070, LA 7080', NULL, NULL, 'Responsible agency: Navajo Nation. 533 acres.'); INSERT INTO site VALUES (67, 'Una Vida', 'Una Vida', '29SJ391', 'LA 143', 'Bc 259', NULL, 'PII great house:1956-1957, 1960:Gordon Vivian, spon. by NPS:excavated Kiva C, trench across east wing from Room 6 to Room 56, 5 Navajo hogans,15 rooms in NE corner.Previously excavated rooms cleared, mapped by Nancy Akins, William Gillespie 1978. '); INSERT INTO site VALUES (130, 'Ruin 3', NULL, NULL, 'LA 65441', NULL, NULL, '6 mi. east of Crownpoint near Kin Ya''a. L-shaped pueblo with 8 rooms, dating to Early Bonito Phase. Excavated in 1925 by Monroe Amsden as part of the NGS Expedition.'); INSERT INTO site VALUES (12, 'Bc 53, Ignorance Hollow, Roberts'' Site, Judd''s Pithouse No. 1', 'Bc 53', '29SJ396', 'LA40396', 'Bc 53', 'Chaco Center 396 (Hayes)', 'Judd''s Pithouse No. 1:100yd E of Casa Rinc., possibly beneath Bc 53.Mud pit structure 17ft. diam. with fireplace, 3 bins, 2 niches.Masonry pueblo.1940-1941:Excav by Frank Roberts, Reiter, UNM/SAR field school: excav 20 rooms, 4 kivas, trash midden.'); INSERT INTO site VALUES (16, 'Bc 59, Pepper''s Mound 1, Tom Mathews'' Site. Tom Mathew''s Dig', NULL, '29SJ399', 'LA40399', 'Bc 59', 'Chaco Center 399 (Hayes)', '1896: trash mound excavated by Pepper and Wetherill, HEE.Masonry pueblo. 1947: 16 to 20 rooms, 3 kivas, trash midden excavated by Thomas Mathews and Gordon Vivian as part of a UNM/SAR field school. Stabilization led to excavation of 3 additional rooms.'); INSERT INTO site VALUES (8, 'Aztec', 'Aztec', NULL, 'LA 45', NULL, NULL, 'Responsible Agency: National Park Service'); -- -- Data for TOC entry 89 (OID 561320) -- Name: project_institution; Type: TABLE DATA; Schema: public; Owner: rwb3y -- INSERT INTO project_institution VALUES (2, 4, 25, 0, 0, 0, 0, NULL, 'Not Specified'); INSERT INTO project_institution VALUES (3, 5, 25, 0, 0, 0, 0, NULL, 'Not Specified'); INSERT INTO project_institution VALUES (4, 6, 25, 0, 0, 0, 0, NULL, 'Not Specified'); INSERT INTO project_institution VALUES (5, 7, 25, 0, 0, 0, 0, NULL, 'Not Specified'); INSERT INTO project_institution VALUES (6, 8, 32, 0, 0, 0, 0, NULL, 'Not Specified'); INSERT INTO project_institution VALUES (7, 9, 25, 0, 0, 0, 0, NULL, 'Not Specified'); INSERT INTO project_institution VALUES (8, 10, 25, 0, 0, 0, 0, NULL, 'Not Specified'); INSERT INTO project_institution VALUES (9, 11, 2, 0, 0, 0, 0, NULL, 'Not Specified'); INSERT INTO project_institution VALUES (11, 13, 25, 0, 0, 0, 0, NULL, 'Not Specified'); INSERT INTO project_institution VALUES (12, 14, 25, 0, 0, 0, 0, NULL, 'Not Specified'); INSERT INTO project_institution VALUES (13, 15, 25, 0, 0, 0, 0, NULL, 'Not Specified'); INSERT INTO project_institution VALUES (14, 16, 25, 0, 0, 0, 0, NULL, 'Not Specified'); INSERT INTO project_institution VALUES (15, 17, 34, 0, 0, 0, 0, NULL, 'Not Specified'); INSERT INTO project_institution VALUES (16, 18, 30, 0, 0, 0, 0, NULL, 'Not Specified'); INSERT INTO project_institution VALUES (17, 19, 35, 0, 0, 0, 0, NULL, 'Not Specified'); INSERT INTO project_institution VALUES (18, 20, 25, 0, 0, 0, 0, NULL, 'Not Specified'); INSERT INTO project_institution VALUES (19, 21, 25, 0, 0, 0, 0, NULL, 'Not Specified'); INSERT INTO project_institution VALUES (20, 22, 36, 0, 0, 0, 0, NULL, 'Not Specified'); INSERT INTO project_institution VALUES (21, 25, 30, 0, 0, 0, 0, NULL, 'Not Specified'); INSERT INTO project_institution VALUES (22, 27, 25, 0, 0, 0, 0, NULL, 'Not Specified'); INSERT INTO project_institution VALUES (23, 28, 25, 0, 0, 0, 0, NULL, 'Not Specified'); INSERT INTO project_institution VALUES (24, 29, 25, 0, 0, 0, 0, NULL, 'Not Specified'); INSERT INTO project_institution VALUES (25, 30, 36, 0, 0, 0, 0, NULL, 'Not Specified'); INSERT INTO project_institution VALUES (26, 32, 25, 0, 0, 0, 0, NULL, 'Not Specified'); INSERT INTO project_institution VALUES (27, 33, 25, 0, 0, 0, 0, NULL, 'Not Specified'); INSERT INTO project_institution VALUES (28, 33, 37, 0, 0, 0, 0, NULL, 'Not Specified'); INSERT INTO project_institution VALUES (30, 35, 38, 0, 0, 0, 0, NULL, 'Not Specified'); INSERT INTO project_institution VALUES (29, 35, 39, 0, 0, 0, 0, NULL, 'Not Specified'); INSERT INTO project_institution VALUES (31, 38, 40, 0, 0, 0, 0, NULL, 'Not Specified'); INSERT INTO project_institution VALUES (32, 43, 41, 0, 0, 0, 0, NULL, 'Not Specified'); INSERT INTO project_institution VALUES (33, 45, 25, 0, 0, 0, 0, NULL, 'Not Specified'); INSERT INTO project_institution VALUES (34, 47, 36, 0, 0, 0, 0, NULL, 'Not Specified'); INSERT INTO project_institution VALUES (35, 49, 42, 0, 0, 0, 0, NULL, 'Not Specified'); INSERT INTO project_institution VALUES (36, 50, 43, 0, 0, 0, 0, NULL, 'Not Specified'); INSERT INTO project_institution VALUES (37, 52, 44, 0, 0, 0, 0, NULL, 'Not Specified'); INSERT INTO project_institution VALUES (38, 53, 44, 0, 0, 0, 0, NULL, 'Not Specified'); INSERT INTO project_institution VALUES (39, 54, 25, 0, 0, 0, 0, NULL, 'Not Specified'); INSERT INTO project_institution VALUES (40, 55, 45, 0, 0, 0, 0, NULL, 'Not Specified'); INSERT INTO project_institution VALUES (43, 56, 46, 0, 0, 0, 0, NULL, NULL); INSERT INTO project_institution VALUES (42, 56, 47, 0, 0, 0, 0, NULL, NULL); INSERT INTO project_institution VALUES (44, 58, 25, 0, 0, 0, 0, NULL, NULL); INSERT INTO project_institution VALUES (45, 59, 25, 0, 0, 0, 0, NULL, NULL); INSERT INTO project_institution VALUES (46, 60, 48, 0, 0, 0, 0, NULL, 'Not Specified'); INSERT INTO project_institution VALUES (47, 61, 49, 0, 0, 0, 0, NULL, 'Not Specified'); INSERT INTO project_institution VALUES (48, 63, 25, 0, 0, 0, 0, NULL, 'Not Specified'); INSERT INTO project_institution VALUES (49, 64, 25, 0, 0, 0, 0, NULL, 'Not Specified'); INSERT INTO project_institution VALUES (50, 65, 25, 0, 0, 0, 0, NULL, 'Not Specified'); INSERT INTO project_institution VALUES (51, 66, 25, 0, 0, 0, 0, NULL, 'Not Specified'); INSERT INTO project_institution VALUES (52, 67, 25, 0, 0, 0, 0, NULL, 'Not Specified'); INSERT INTO project_institution VALUES (53, 70, 50, 0, 0, 0, 0, NULL, 'Not Specified'); INSERT INTO project_institution VALUES (54, 71, 50, 0, 0, 0, 0, NULL, 'Not Specified'); INSERT INTO project_institution VALUES (55, 78, 25, 0, 0, 0, 0, NULL, 'Not Specified'); INSERT INTO project_institution VALUES (56, 83, 25, 0, 0, 0, 0, NULL, 'Not Specified'); INSERT INTO project_institution VALUES (57, 84, 25, 0, 0, 0, 0, NULL, 'Not Specified'); INSERT INTO project_institution VALUES (60, 88, 11, 0, 0, 0, 1, NULL, 'Not Specified'); INSERT INTO project_institution VALUES (62, 90, 45, 1, 0, 0, 0, NULL, 'Not Specified'); INSERT INTO project_institution VALUES (63, 91, 45, 0, 0, 0, 0, NULL, 'Not Specified'); INSERT INTO project_institution VALUES (69, 96, 45, 1, 0, 0, 0, '1959', 'Not Specified'); INSERT INTO project_institution VALUES (70, 97, 19, 1, 0, 0, 0, NULL, 'Not Specified'); INSERT INTO project_institution VALUES (71, 97, 25, 1, 0, 0, 0, NULL, 'Not Specified'); INSERT INTO project_institution VALUES (79, 104, 25, 1, 0, 0, 0, NULL, 'Not Specified'); INSERT INTO project_institution VALUES (78, 104, 19, 1, 0, 0, 0, NULL, 'Not Specified'); INSERT INTO project_institution VALUES (110, 124, 45, 1, 0, 0, 0, NULL, 'Not Specified'); INSERT INTO project_institution VALUES (111, 125, 45, 1, 0, 0, 0, NULL, 'Not Specified'); INSERT INTO project_institution VALUES (112, 126, 45, 1, 0, 0, 0, NULL, 'Not Specified'); INSERT INTO project_institution VALUES (113, 127, 45, 1, 0, 0, 0, NULL, 'Not Specified'); INSERT INTO project_institution VALUES (114, 128, 45, 1, 0, 0, 0, '1962', 'Not Specified'); INSERT INTO project_institution VALUES (115, 129, 45, 1, 0, 0, 0, '1966-1967', 'Not Specified'); INSERT INTO project_institution VALUES (116, 2, 36, 0, 0, 0, 0, NULL, 'Staff Support'); INSERT INTO project_institution VALUES (117, 1, 25, 0, 0, 0, 0, NULL, 'Not Specified'); INSERT INTO project_institution VALUES (118, 1, 19, 0, 0, 0, 0, NULL, 'Not Specified'); INSERT INTO project_institution VALUES (1, 1, 7, 0, 0, 0, 0, NULL, 'Not Specified'); INSERT INTO project_institution VALUES (119, 130, 45, 0, 0, 0, 0, NULL, 'Not Specified'); INSERT INTO project_institution VALUES (59, 88, 9, 1, 0, 0, 0, NULL, 'Not Specified'); INSERT INTO project_institution VALUES (120, 131, 1, 0, 0, 0, 0, NULL, 'Not Specified'); INSERT INTO project_institution VALUES (121, 139, 1, 0, 0, 0, 0, NULL, NULL); INSERT INTO project_institution VALUES (122, 140, 45, 0, 0, 0, 0, NULL, NULL); INSERT INTO project_institution VALUES (123, 141, 45, 0, 0, 0, 0, NULL, NULL); INSERT INTO project_institution VALUES (124, 142, 45, 0, 0, 0, 0, NULL, NULL); INSERT INTO project_institution VALUES (125, 143, 45, 1, 1, 1, 1, NULL, NULL); INSERT INTO project_institution VALUES (126, 144, 31, 0, 0, 0, 0, NULL, NULL); -- -- Data for TOC entry 90 (OID 561323) -- Name: person_institution; Type: TABLE DATA; Schema: public; Owner: rwb3y -- INSERT INTO person_institution VALUES (2, NULL, 2, NULL, NULL); INSERT INTO person_institution VALUES (1, NULL, 2, NULL, NULL); INSERT INTO person_institution VALUES (3, 5, 4, NULL, NULL); INSERT INTO person_institution VALUES (4, 3, 4, NULL, NULL); INSERT INTO person_institution VALUES (5, 2, 4, NULL, NULL); INSERT INTO person_institution VALUES (12, 7, 6, NULL, NULL); INSERT INTO person_institution VALUES (7, 12, 9, NULL, NULL); INSERT INTO person_institution VALUES (11, 2, 10, NULL, NULL); INSERT INTO person_institution VALUES (6, 10, 5, NULL, NULL); INSERT INTO person_institution VALUES (13, 11, 8, NULL, NULL); INSERT INTO person_institution VALUES (10, 8, 7, NULL, NULL); INSERT INTO person_institution VALUES (8, 3, 10, NULL, NULL); INSERT INTO person_institution VALUES (9, 9, 6, NULL, NULL); INSERT INTO person_institution VALUES (16, 14, 12, NULL, NULL); INSERT INTO person_institution VALUES (14, 13, 11, NULL, NULL); INSERT INTO person_institution VALUES (15, 12, 11, NULL, NULL); INSERT INTO person_institution VALUES (17, 17, 27, NULL, NULL); INSERT INTO person_institution VALUES (20, 24, 25, 'MS student', NULL); INSERT INTO person_institution VALUES (25, 23, 25, 'PhD student', NULL); INSERT INTO person_institution VALUES (21, 25, 25, 'PhD student', NULL); INSERT INTO person_institution VALUES (24, 22, 25, 'MA student', NULL); INSERT INTO person_institution VALUES (23, 18, 24, 'PhD student', NULL); INSERT INTO person_institution VALUES (19, 21, 25, 'MS student', NULL); INSERT INTO person_institution VALUES (18, 20, 25, 'MA student', NULL); INSERT INTO person_institution VALUES (22, 19, 25, 'MA student', NULL); INSERT INTO person_institution VALUES (26, 26, 29, 'PhD student', NULL); INSERT INTO person_institution VALUES (27, 27, 30, 'PhD student', NULL); INSERT INTO person_institution VALUES (28, 28, 25, 'MA student', NULL); INSERT INTO person_institution VALUES (29, 29, 31, 'MA student', NULL); INSERT INTO person_institution VALUES (30, 30, 25, 'MS student', NULL); INSERT INTO person_institution VALUES (31, 31, 25, 'PhD student', NULL); INSERT INTO person_institution VALUES (32, 32, 25, 'MA student', NULL); INSERT INTO person_institution VALUES (33, 33, 23, 'PhD student', NULL); INSERT INTO person_institution VALUES (57, 36, 25, 'PhD student', NULL); INSERT INTO person_institution VALUES (58, 37, 25, 'PhD student', NULL); INSERT INTO person_institution VALUES (61, 329, 45, 'Not Specified', NULL); INSERT INTO person_institution VALUES (62, 331, 45, 'Not Specified', NULL); INSERT INTO person_institution VALUES (63, 337, 45, 'Not Specified', NULL); INSERT INTO person_institution VALUES (64, 330, 25, 'Not Specified', NULL); INSERT INTO person_institution VALUES (65, 333, 25, 'Not Specified', NULL); INSERT INTO person_institution VALUES (66, 248, 25, 'Not Specified', NULL); INSERT INTO person_institution VALUES (67, 332, 51, 'Not Specified', NULL); INSERT INTO person_institution VALUES (68, 334, 7, 'Not Specified', NULL); INSERT INTO person_institution VALUES (69, 335, 52, 'Not Specified', NULL); INSERT INTO person_institution VALUES (70, 336, 46, 'Not Specified', NULL); INSERT INTO person_institution VALUES (71, 265, 46, 'Not Specified', NULL); INSERT INTO person_institution VALUES (72, 338, 19, 'Not Specified', NULL); INSERT INTO person_institution VALUES (35, 670, 25, 'Not Specified', NULL); -- -- Data for TOC entry 91 (OID 561326) -- Name: project_collection; Type: TABLE DATA; Schema: public; Owner: rwb3y -- INSERT INTO project_collection VALUES (88, 9); INSERT INTO project_collection VALUES (1, 9); INSERT INTO project_collection VALUES (88, 7); INSERT INTO project_collection VALUES (131, 6); INSERT INTO project_collection VALUES (88, 1); INSERT INTO project_collection VALUES (88, 2); INSERT INTO project_collection VALUES (1, 2); INSERT INTO project_collection VALUES (139, 11); INSERT INTO project_collection VALUES (139, 13); INSERT INTO project_collection VALUES (139, 10); INSERT INTO project_collection VALUES (139, 14); -- -- Data for TOC entry 92 (OID 561328) -- Name: log_collection; Type: TABLE DATA; Schema: public; Owner: rwb3y -- INSERT INTO log_collection VALUES (1, 1); INSERT INTO log_collection VALUES (2, 1); INSERT INTO log_collection VALUES (4, 1); INSERT INTO log_collection VALUES (5, 2); INSERT INTO log_collection VALUES (5, 1); INSERT INTO log_collection VALUES (4, 2); INSERT INTO log_collection VALUES (6, 2); INSERT INTO log_collection VALUES (7, 2); INSERT INTO log_collection VALUES (6, 7); INSERT INTO log_collection VALUES (6, 1); INSERT INTO log_collection VALUES (8, 1); INSERT INTO log_collection VALUES (9, 1); INSERT INTO log_collection VALUES (11, 1); INSERT INTO log_collection VALUES (12, 2); INSERT INTO log_collection VALUES (12, 1); INSERT INTO log_collection VALUES (13, 2); INSERT INTO log_collection VALUES (13, 1); INSERT INTO log_collection VALUES (11, 2); INSERT INTO log_collection VALUES (13, 8); INSERT INTO log_collection VALUES (14, 1); INSERT INTO log_collection VALUES (14, 2); INSERT INTO log_collection VALUES (15, 1); INSERT INTO log_collection VALUES (15, 2); INSERT INTO log_collection VALUES (16, 2); INSERT INTO log_collection VALUES (16, 1); INSERT INTO log_collection VALUES (17, 9); INSERT INTO log_collection VALUES (18, 2); INSERT INTO log_collection VALUES (19, 1); INSERT INTO log_collection VALUES (19, 2); -- -- Data for TOC entry 93 (OID 561330) -- Name: storage_unit_object; Type: TABLE DATA; Schema: public; Owner: rwb3y -- INSERT INTO storage_unit_object VALUES (1, 7); INSERT INTO storage_unit_object VALUES (1, 8); INSERT INTO storage_unit_object VALUES (1, 9); INSERT INTO storage_unit_object VALUES (1, 10); INSERT INTO storage_unit_object VALUES (1, 11); INSERT INTO storage_unit_object VALUES (1, 12); INSERT INTO storage_unit_object VALUES (1, 13); INSERT INTO storage_unit_object VALUES (1, 14); INSERT INTO storage_unit_object VALUES (2, 15); INSERT INTO storage_unit_object VALUES (2, 16); INSERT INTO storage_unit_object VALUES (4, 17); INSERT INTO storage_unit_object VALUES (3, 17); INSERT INTO storage_unit_object VALUES (5, 19); INSERT INTO storage_unit_object VALUES (5, 20); INSERT INTO storage_unit_object VALUES (6, 21); INSERT INTO storage_unit_object VALUES (7, 22); INSERT INTO storage_unit_object VALUES (8, 23); INSERT INTO storage_unit_object VALUES (8, 24); INSERT INTO storage_unit_object VALUES (8, 25); INSERT INTO storage_unit_object VALUES (8, 26); INSERT INTO storage_unit_object VALUES (8, 27); INSERT INTO storage_unit_object VALUES (8, 28); INSERT INTO storage_unit_object VALUES (9, 29); INSERT INTO storage_unit_object VALUES (8, 30); INSERT INTO storage_unit_object VALUES (9, 31); INSERT INTO storage_unit_object VALUES (8, 32); INSERT INTO storage_unit_object VALUES (9, 33); INSERT INTO storage_unit_object VALUES (8, 34); INSERT INTO storage_unit_object VALUES (8, 35); INSERT INTO storage_unit_object VALUES (8, 36); INSERT INTO storage_unit_object VALUES (9, 37); INSERT INTO storage_unit_object VALUES (9, 38); INSERT INTO storage_unit_object VALUES (9, 39); INSERT INTO storage_unit_object VALUES (9, 40); INSERT INTO storage_unit_object VALUES (9, 41); INSERT INTO storage_unit_object VALUES (9, 42); INSERT INTO storage_unit_object VALUES (9, 43); INSERT INTO storage_unit_object VALUES (9, 44); INSERT INTO storage_unit_object VALUES (9, 45); INSERT INTO storage_unit_object VALUES (9, 46); INSERT INTO storage_unit_object VALUES (9, 48); INSERT INTO storage_unit_object VALUES (9, 47); INSERT INTO storage_unit_object VALUES (9, 49); INSERT INTO storage_unit_object VALUES (13, 50); INSERT INTO storage_unit_object VALUES (13, 52); INSERT INTO storage_unit_object VALUES (13, 53); INSERT INTO storage_unit_object VALUES (12, 54); INSERT INTO storage_unit_object VALUES (14, 57); INSERT INTO storage_unit_object VALUES (14, 59); INSERT INTO storage_unit_object VALUES (15, 62); INSERT INTO storage_unit_object VALUES (15, 63); INSERT INTO storage_unit_object VALUES (15, 64); INSERT INTO storage_unit_object VALUES (12, 55); INSERT INTO storage_unit_object VALUES (15, 65); INSERT INTO storage_unit_object VALUES (15, 66); INSERT INTO storage_unit_object VALUES (15, 67); INSERT INTO storage_unit_object VALUES (15, 68); INSERT INTO storage_unit_object VALUES (15, 69); INSERT INTO storage_unit_object VALUES (15, 72); INSERT INTO storage_unit_object VALUES (15, 73); INSERT INTO storage_unit_object VALUES (15, 74); INSERT INTO storage_unit_object VALUES (17, 75); INSERT INTO storage_unit_object VALUES (18, 78); INSERT INTO storage_unit_object VALUES (17, 77); INSERT INTO storage_unit_object VALUES (18, 79); INSERT INTO storage_unit_object VALUES (18, 81); INSERT INTO storage_unit_object VALUES (17, 80); INSERT INTO storage_unit_object VALUES (18, 83); INSERT INTO storage_unit_object VALUES (18, 84); INSERT INTO storage_unit_object VALUES (18, 85); INSERT INTO storage_unit_object VALUES (18, 86); INSERT INTO storage_unit_object VALUES (17, 87); INSERT INTO storage_unit_object VALUES (17, 88); INSERT INTO storage_unit_object VALUES (17, 89); INSERT INTO storage_unit_object VALUES (17, 90); INSERT INTO storage_unit_object VALUES (19, 91); INSERT INTO storage_unit_object VALUES (17, 92); INSERT INTO storage_unit_object VALUES (17, 94); INSERT INTO storage_unit_object VALUES (20, 95); INSERT INTO storage_unit_object VALUES (20, 97); INSERT INTO storage_unit_object VALUES (17, 96); INSERT INTO storage_unit_object VALUES (20, 98); INSERT INTO storage_unit_object VALUES (17, 99); INSERT INTO storage_unit_object VALUES (20, 100); INSERT INTO storage_unit_object VALUES (17, 101); INSERT INTO storage_unit_object VALUES (20, 102); INSERT INTO storage_unit_object VALUES (20, 103); INSERT INTO storage_unit_object VALUES (20, 104); INSERT INTO storage_unit_object VALUES (17, 105); INSERT INTO storage_unit_object VALUES (17, 106); INSERT INTO storage_unit_object VALUES (20, 107); INSERT INTO storage_unit_object VALUES (17, 108); INSERT INTO storage_unit_object VALUES (20, 109); INSERT INTO storage_unit_object VALUES (20, 111); INSERT INTO storage_unit_object VALUES (20, 113); INSERT INTO storage_unit_object VALUES (20, 114); INSERT INTO storage_unit_object VALUES (17, 115); INSERT INTO storage_unit_object VALUES (17, 116); INSERT INTO storage_unit_object VALUES (21, 119); INSERT INTO storage_unit_object VALUES (17, 118); INSERT INTO storage_unit_object VALUES (21, 120); INSERT INTO storage_unit_object VALUES (22, 121); INSERT INTO storage_unit_object VALUES (22, 122); INSERT INTO storage_unit_object VALUES (21, 123); INSERT INTO storage_unit_object VALUES (22, 124); INSERT INTO storage_unit_object VALUES (22, 125); INSERT INTO storage_unit_object VALUES (17, 93); INSERT INTO storage_unit_object VALUES (25, 146); INSERT INTO storage_unit_object VALUES (25, 147); INSERT INTO storage_unit_object VALUES (26, 148); INSERT INTO storage_unit_object VALUES (26, 149); INSERT INTO storage_unit_object VALUES (26, 150); INSERT INTO storage_unit_object VALUES (26, 151); INSERT INTO storage_unit_object VALUES (27, 152); INSERT INTO storage_unit_object VALUES (28, 153); INSERT INTO storage_unit_object VALUES (28, 154); INSERT INTO storage_unit_object VALUES (28, 155); INSERT INTO storage_unit_object VALUES (28, 156); INSERT INTO storage_unit_object VALUES (28, 157); INSERT INTO storage_unit_object VALUES (29, 82); INSERT INTO storage_unit_object VALUES (29, 158); INSERT INTO storage_unit_object VALUES (29, 159); INSERT INTO storage_unit_object VALUES (29, 160); INSERT INTO storage_unit_object VALUES (29, 161); INSERT INTO storage_unit_object VALUES (29, 162); INSERT INTO storage_unit_object VALUES (29, 163); INSERT INTO storage_unit_object VALUES (29, 164); INSERT INTO storage_unit_object VALUES (15, 165); INSERT INTO storage_unit_object VALUES (15, 166); INSERT INTO storage_unit_object VALUES (15, 167); INSERT INTO storage_unit_object VALUES (15, 168); INSERT INTO storage_unit_object VALUES (15, 169); INSERT INTO storage_unit_object VALUES (15, 170); INSERT INTO storage_unit_object VALUES (15, 171); INSERT INTO storage_unit_object VALUES (15, 172); INSERT INTO storage_unit_object VALUES (15, 173); INSERT INTO storage_unit_object VALUES (15, 174); INSERT INTO storage_unit_object VALUES (15, 175); INSERT INTO storage_unit_object VALUES (15, 176); INSERT INTO storage_unit_object VALUES (30, 177); INSERT INTO storage_unit_object VALUES (30, 178); INSERT INTO storage_unit_object VALUES (30, 179); INSERT INTO storage_unit_object VALUES (30, 180); INSERT INTO storage_unit_object VALUES (32, 181); INSERT INTO storage_unit_object VALUES (32, 182); INSERT INTO storage_unit_object VALUES (30, 183); INSERT INTO storage_unit_object VALUES (30, 185); INSERT INTO storage_unit_object VALUES (32, 186); INSERT INTO storage_unit_object VALUES (32, 187); INSERT INTO storage_unit_object VALUES (32, 188); INSERT INTO storage_unit_object VALUES (30, 189); INSERT INTO storage_unit_object VALUES (32, 190); INSERT INTO storage_unit_object VALUES (30, 191); INSERT INTO storage_unit_object VALUES (32, 192); INSERT INTO storage_unit_object VALUES (32, 193); INSERT INTO storage_unit_object VALUES (30, 194); INSERT INTO storage_unit_object VALUES (32, 195); INSERT INTO storage_unit_object VALUES (32, 196); INSERT INTO storage_unit_object VALUES (32, 198); INSERT INTO storage_unit_object VALUES (30, 199); INSERT INTO storage_unit_object VALUES (32, 200); INSERT INTO storage_unit_object VALUES (32, 201); INSERT INTO storage_unit_object VALUES (30, 202); INSERT INTO storage_unit_object VALUES (32, 203); INSERT INTO storage_unit_object VALUES (30, 204); INSERT INTO storage_unit_object VALUES (32, 205); INSERT INTO storage_unit_object VALUES (32, 206); INSERT INTO storage_unit_object VALUES (30, 207); INSERT INTO storage_unit_object VALUES (32, 208); INSERT INTO storage_unit_object VALUES (30, 209); INSERT INTO storage_unit_object VALUES (32, 210); INSERT INTO storage_unit_object VALUES (30, 211); INSERT INTO storage_unit_object VALUES (30, 212); INSERT INTO storage_unit_object VALUES (32, 213); INSERT INTO storage_unit_object VALUES (30, 214); INSERT INTO storage_unit_object VALUES (32, 215); INSERT INTO storage_unit_object VALUES (30, 216); INSERT INTO storage_unit_object VALUES (30, 217); INSERT INTO storage_unit_object VALUES (32, 218); INSERT INTO storage_unit_object VALUES (30, 219); INSERT INTO storage_unit_object VALUES (32, 220); INSERT INTO storage_unit_object VALUES (30, 221); INSERT INTO storage_unit_object VALUES (30, 222); INSERT INTO storage_unit_object VALUES (30, 223); INSERT INTO storage_unit_object VALUES (32, 224); INSERT INTO storage_unit_object VALUES (32, 225); INSERT INTO storage_unit_object VALUES (32, 226); INSERT INTO storage_unit_object VALUES (30, 227); INSERT INTO storage_unit_object VALUES (30, 228); INSERT INTO storage_unit_object VALUES (32, 184); INSERT INTO storage_unit_object VALUES (30, 229); INSERT INTO storage_unit_object VALUES (32, 230); INSERT INTO storage_unit_object VALUES (30, 231); INSERT INTO storage_unit_object VALUES (32, 232); INSERT INTO storage_unit_object VALUES (32, 233); INSERT INTO storage_unit_object VALUES (32, 234); INSERT INTO storage_unit_object VALUES (30, 235); INSERT INTO storage_unit_object VALUES (30, 236); INSERT INTO storage_unit_object VALUES (32, 237); INSERT INTO storage_unit_object VALUES (32, 238); INSERT INTO storage_unit_object VALUES (32, 239); INSERT INTO storage_unit_object VALUES (32, 240); INSERT INTO storage_unit_object VALUES (33, 241); INSERT INTO storage_unit_object VALUES (33, 242); INSERT INTO storage_unit_object VALUES (32, 243); INSERT INTO storage_unit_object VALUES (33, 244); INSERT INTO storage_unit_object VALUES (32, 245); INSERT INTO storage_unit_object VALUES (33, 246); INSERT INTO storage_unit_object VALUES (32, 247); INSERT INTO storage_unit_object VALUES (33, 248); INSERT INTO storage_unit_object VALUES (33, 249); INSERT INTO storage_unit_object VALUES (33, 250); INSERT INTO storage_unit_object VALUES (33, 251); INSERT INTO storage_unit_object VALUES (32, 252); INSERT INTO storage_unit_object VALUES (32, 253); INSERT INTO storage_unit_object VALUES (32, 254); INSERT INTO storage_unit_object VALUES (33, 255); INSERT INTO storage_unit_object VALUES (33, 256); INSERT INTO storage_unit_object VALUES (33, 257); INSERT INTO storage_unit_object VALUES (33, 258); INSERT INTO storage_unit_object VALUES (33, 259); INSERT INTO storage_unit_object VALUES (33, 260); INSERT INTO storage_unit_object VALUES (33, 261); INSERT INTO storage_unit_object VALUES (33, 262); INSERT INTO storage_unit_object VALUES (33, 263); INSERT INTO storage_unit_object VALUES (33, 264); INSERT INTO storage_unit_object VALUES (33, 265); INSERT INTO storage_unit_object VALUES (34, 266); INSERT INTO storage_unit_object VALUES (34, 267); INSERT INTO storage_unit_object VALUES (34, 268); INSERT INTO storage_unit_object VALUES (34, 269); INSERT INTO storage_unit_object VALUES (34, 270); INSERT INTO storage_unit_object VALUES (34, 271); INSERT INTO storage_unit_object VALUES (34, 272); INSERT INTO storage_unit_object VALUES (34, 273); INSERT INTO storage_unit_object VALUES (34, 274); INSERT INTO storage_unit_object VALUES (34, 275); INSERT INTO storage_unit_object VALUES (34, 276); INSERT INTO storage_unit_object VALUES (34, 277); INSERT INTO storage_unit_object VALUES (34, 278); INSERT INTO storage_unit_object VALUES (34, 279); INSERT INTO storage_unit_object VALUES (34, 280); INSERT INTO storage_unit_object VALUES (34, 281); INSERT INTO storage_unit_object VALUES (34, 282); INSERT INTO storage_unit_object VALUES (34, 283); INSERT INTO storage_unit_object VALUES (34, 284); INSERT INTO storage_unit_object VALUES (34, 285); INSERT INTO storage_unit_object VALUES (34, 286); INSERT INTO storage_unit_object VALUES (34, 287); INSERT INTO storage_unit_object VALUES (34, 293); INSERT INTO storage_unit_object VALUES (34, 295); INSERT INTO storage_unit_object VALUES (34, 297); INSERT INTO storage_unit_object VALUES (34, 299); INSERT INTO storage_unit_object VALUES (34, 301); INSERT INTO storage_unit_object VALUES (34, 304); INSERT INTO storage_unit_object VALUES (34, 305); INSERT INTO storage_unit_object VALUES (34, 308); INSERT INTO storage_unit_object VALUES (34, 310); INSERT INTO storage_unit_object VALUES (40, 607); INSERT INTO storage_unit_object VALUES (40, 582); INSERT INTO storage_unit_object VALUES (40, 583); INSERT INTO storage_unit_object VALUES (40, 584); INSERT INTO storage_unit_object VALUES (40, 599); INSERT INTO storage_unit_object VALUES (40, 600); INSERT INTO storage_unit_object VALUES (40, 601); INSERT INTO storage_unit_object VALUES (40, 602); INSERT INTO storage_unit_object VALUES (40, 598); INSERT INTO storage_unit_object VALUES (40, 606); INSERT INTO storage_unit_object VALUES (40, 585); INSERT INTO storage_unit_object VALUES (40, 603); INSERT INTO storage_unit_object VALUES (40, 604); INSERT INTO storage_unit_object VALUES (40, 605); INSERT INTO storage_unit_object VALUES (41, 608); INSERT INTO storage_unit_object VALUES (41, 586); INSERT INTO storage_unit_object VALUES (41, 587); INSERT INTO storage_unit_object VALUES (41, 588); INSERT INTO storage_unit_object VALUES (41, 591); INSERT INTO storage_unit_object VALUES (41, 589); INSERT INTO storage_unit_object VALUES (41, 590); INSERT INTO storage_unit_object VALUES (41, 592); INSERT INTO storage_unit_object VALUES (41, 593); INSERT INTO storage_unit_object VALUES (41, 594); INSERT INTO storage_unit_object VALUES (41, 595); INSERT INTO storage_unit_object VALUES (41, 596); INSERT INTO storage_unit_object VALUES (34, 312); INSERT INTO storage_unit_object VALUES (41, 597); INSERT INTO storage_unit_object VALUES (41, 288); INSERT INTO storage_unit_object VALUES (41, 289); INSERT INTO storage_unit_object VALUES (41, 292); INSERT INTO storage_unit_object VALUES (41, 294); INSERT INTO storage_unit_object VALUES (41, 298); INSERT INTO storage_unit_object VALUES (41, 300); INSERT INTO storage_unit_object VALUES (41, 302); INSERT INTO storage_unit_object VALUES (41, 306); INSERT INTO storage_unit_object VALUES (41, 307); INSERT INTO storage_unit_object VALUES (34, 313); INSERT INTO storage_unit_object VALUES (41, 309); INSERT INTO storage_unit_object VALUES (41, 311); INSERT INTO storage_unit_object VALUES (34, 314); INSERT INTO storage_unit_object VALUES (41, 315); INSERT INTO storage_unit_object VALUES (41, 316); INSERT INTO storage_unit_object VALUES (34, 317); INSERT INTO storage_unit_object VALUES (41, 318); INSERT INTO storage_unit_object VALUES (34, 319); INSERT INTO storage_unit_object VALUES (41, 320); INSERT INTO storage_unit_object VALUES (41, 321); INSERT INTO storage_unit_object VALUES (34, 322); INSERT INTO storage_unit_object VALUES (41, 323); INSERT INTO storage_unit_object VALUES (41, 324); INSERT INTO storage_unit_object VALUES (34, 325); INSERT INTO storage_unit_object VALUES (41, 326); INSERT INTO storage_unit_object VALUES (34, 327); INSERT INTO storage_unit_object VALUES (41, 328); INSERT INTO storage_unit_object VALUES (34, 329); INSERT INTO storage_unit_object VALUES (34, 330); INSERT INTO storage_unit_object VALUES (41, 331); INSERT INTO storage_unit_object VALUES (34, 332); INSERT INTO storage_unit_object VALUES (41, 333); INSERT INTO storage_unit_object VALUES (34, 334); INSERT INTO storage_unit_object VALUES (41, 335); INSERT INTO storage_unit_object VALUES (34, 336); INSERT INTO storage_unit_object VALUES (41, 337); INSERT INTO storage_unit_object VALUES (34, 338); INSERT INTO storage_unit_object VALUES (41, 339); INSERT INTO storage_unit_object VALUES (41, 340); INSERT INTO storage_unit_object VALUES (34, 341); INSERT INTO storage_unit_object VALUES (41, 342); INSERT INTO storage_unit_object VALUES (34, 343); INSERT INTO storage_unit_object VALUES (41, 344); INSERT INTO storage_unit_object VALUES (41, 345); INSERT INTO storage_unit_object VALUES (34, 346); INSERT INTO storage_unit_object VALUES (41, 347); INSERT INTO storage_unit_object VALUES (35, 348); INSERT INTO storage_unit_object VALUES (36, 349); INSERT INTO storage_unit_object VALUES (35, 350); INSERT INTO storage_unit_object VALUES (35, 351); INSERT INTO storage_unit_object VALUES (36, 352); INSERT INTO storage_unit_object VALUES (35, 353); INSERT INTO storage_unit_object VALUES (35, 354); INSERT INTO storage_unit_object VALUES (36, 355); INSERT INTO storage_unit_object VALUES (35, 356); INSERT INTO storage_unit_object VALUES (36, 357); INSERT INTO storage_unit_object VALUES (35, 358); INSERT INTO storage_unit_object VALUES (36, 359); INSERT INTO storage_unit_object VALUES (35, 360); INSERT INTO storage_unit_object VALUES (35, 361); INSERT INTO storage_unit_object VALUES (35, 362); INSERT INTO storage_unit_object VALUES (35, 363); INSERT INTO storage_unit_object VALUES (36, 364); INSERT INTO storage_unit_object VALUES (35, 365); INSERT INTO storage_unit_object VALUES (35, 366); INSERT INTO storage_unit_object VALUES (36, 367); INSERT INTO storage_unit_object VALUES (36, 368); INSERT INTO storage_unit_object VALUES (36, 370); INSERT INTO storage_unit_object VALUES (35, 369); INSERT INTO storage_unit_object VALUES (36, 371); INSERT INTO storage_unit_object VALUES (36, 372); INSERT INTO storage_unit_object VALUES (35, 373); INSERT INTO storage_unit_object VALUES (35, 374); INSERT INTO storage_unit_object VALUES (36, 375); INSERT INTO storage_unit_object VALUES (35, 376); INSERT INTO storage_unit_object VALUES (36, 377); INSERT INTO storage_unit_object VALUES (35, 378); INSERT INTO storage_unit_object VALUES (35, 379); INSERT INTO storage_unit_object VALUES (35, 380); INSERT INTO storage_unit_object VALUES (35, 381); INSERT INTO storage_unit_object VALUES (35, 382); INSERT INTO storage_unit_object VALUES (35, 383); INSERT INTO storage_unit_object VALUES (37, 384); INSERT INTO storage_unit_object VALUES (35, 385); INSERT INTO storage_unit_object VALUES (37, 386); INSERT INTO storage_unit_object VALUES (35, 387); INSERT INTO storage_unit_object VALUES (37, 388); INSERT INTO storage_unit_object VALUES (35, 389); INSERT INTO storage_unit_object VALUES (37, 390); INSERT INTO storage_unit_object VALUES (35, 391); INSERT INTO storage_unit_object VALUES (37, 392); INSERT INTO storage_unit_object VALUES (37, 396); INSERT INTO storage_unit_object VALUES (35, 393); INSERT INTO storage_unit_object VALUES (37, 399); INSERT INTO storage_unit_object VALUES (35, 400); INSERT INTO storage_unit_object VALUES (37, 401); INSERT INTO storage_unit_object VALUES (37, 402); INSERT INTO storage_unit_object VALUES (35, 403); INSERT INTO storage_unit_object VALUES (35, 404); INSERT INTO storage_unit_object VALUES (37, 405); INSERT INTO storage_unit_object VALUES (35, 406); INSERT INTO storage_unit_object VALUES (35, 407); INSERT INTO storage_unit_object VALUES (37, 408); INSERT INTO storage_unit_object VALUES (35, 409); INSERT INTO storage_unit_object VALUES (37, 410); INSERT INTO storage_unit_object VALUES (35, 411); INSERT INTO storage_unit_object VALUES (37, 412); INSERT INTO storage_unit_object VALUES (35, 413); INSERT INTO storage_unit_object VALUES (37, 414); INSERT INTO storage_unit_object VALUES (37, 415); INSERT INTO storage_unit_object VALUES (35, 416); INSERT INTO storage_unit_object VALUES (37, 417); INSERT INTO storage_unit_object VALUES (35, 418); INSERT INTO storage_unit_object VALUES (37, 419); INSERT INTO storage_unit_object VALUES (35, 420); INSERT INTO storage_unit_object VALUES (37, 421); INSERT INTO storage_unit_object VALUES (35, 422); INSERT INTO storage_unit_object VALUES (35, 423); INSERT INTO storage_unit_object VALUES (37, 424); INSERT INTO storage_unit_object VALUES (35, 425); INSERT INTO storage_unit_object VALUES (35, 426); INSERT INTO storage_unit_object VALUES (35, 427); INSERT INTO storage_unit_object VALUES (35, 428); INSERT INTO storage_unit_object VALUES (35, 429); INSERT INTO storage_unit_object VALUES (37, 430); INSERT INTO storage_unit_object VALUES (37, 431); INSERT INTO storage_unit_object VALUES (35, 432); INSERT INTO storage_unit_object VALUES (37, 433); INSERT INTO storage_unit_object VALUES (35, 434); INSERT INTO storage_unit_object VALUES (35, 435); INSERT INTO storage_unit_object VALUES (37, 436); INSERT INTO storage_unit_object VALUES (37, 437); INSERT INTO storage_unit_object VALUES (35, 438); INSERT INTO storage_unit_object VALUES (37, 439); INSERT INTO storage_unit_object VALUES (35, 440); INSERT INTO storage_unit_object VALUES (37, 441); INSERT INTO storage_unit_object VALUES (35, 442); INSERT INTO storage_unit_object VALUES (37, 443); INSERT INTO storage_unit_object VALUES (35, 444); INSERT INTO storage_unit_object VALUES (37, 445); INSERT INTO storage_unit_object VALUES (37, 446); INSERT INTO storage_unit_object VALUES (37, 447); INSERT INTO storage_unit_object VALUES (35, 448); INSERT INTO storage_unit_object VALUES (37, 449); INSERT INTO storage_unit_object VALUES (37, 450); INSERT INTO storage_unit_object VALUES (35, 451); INSERT INTO storage_unit_object VALUES (37, 452); INSERT INTO storage_unit_object VALUES (35, 453); INSERT INTO storage_unit_object VALUES (37, 454); INSERT INTO storage_unit_object VALUES (37, 455); INSERT INTO storage_unit_object VALUES (35, 456); INSERT INTO storage_unit_object VALUES (35, 457); INSERT INTO storage_unit_object VALUES (37, 458); INSERT INTO storage_unit_object VALUES (35, 460); INSERT INTO storage_unit_object VALUES (37, 461); INSERT INTO storage_unit_object VALUES (35, 462); INSERT INTO storage_unit_object VALUES (37, 463); INSERT INTO storage_unit_object VALUES (35, 464); INSERT INTO storage_unit_object VALUES (37, 465); INSERT INTO storage_unit_object VALUES (35, 466); INSERT INTO storage_unit_object VALUES (37, 467); INSERT INTO storage_unit_object VALUES (37, 468); INSERT INTO storage_unit_object VALUES (35, 469); INSERT INTO storage_unit_object VALUES (37, 470); INSERT INTO storage_unit_object VALUES (35, 471); INSERT INTO storage_unit_object VALUES (35, 472); INSERT INTO storage_unit_object VALUES (37, 473); INSERT INTO storage_unit_object VALUES (35, 474); INSERT INTO storage_unit_object VALUES (37, 475); INSERT INTO storage_unit_object VALUES (35, 476); INSERT INTO storage_unit_object VALUES (35, 477); INSERT INTO storage_unit_object VALUES (35, 478); INSERT INTO storage_unit_object VALUES (37, 479); INSERT INTO storage_unit_object VALUES (37, 480); INSERT INTO storage_unit_object VALUES (37, 482); INSERT INTO storage_unit_object VALUES (35, 481); INSERT INTO storage_unit_object VALUES (37, 483); INSERT INTO storage_unit_object VALUES (35, 484); INSERT INTO storage_unit_object VALUES (37, 485); INSERT INTO storage_unit_object VALUES (37, 486); INSERT INTO storage_unit_object VALUES (38, 487); INSERT INTO storage_unit_object VALUES (38, 488); INSERT INTO storage_unit_object VALUES (39, 489); INSERT INTO storage_unit_object VALUES (38, 490); INSERT INTO storage_unit_object VALUES (38, 491); INSERT INTO storage_unit_object VALUES (39, 492); INSERT INTO storage_unit_object VALUES (39, 493); INSERT INTO storage_unit_object VALUES (39, 494); INSERT INTO storage_unit_object VALUES (38, 495); INSERT INTO storage_unit_object VALUES (39, 496); INSERT INTO storage_unit_object VALUES (38, 497); INSERT INTO storage_unit_object VALUES (39, 498); INSERT INTO storage_unit_object VALUES (38, 499); INSERT INTO storage_unit_object VALUES (38, 500); INSERT INTO storage_unit_object VALUES (38, 501); INSERT INTO storage_unit_object VALUES (38, 502); INSERT INTO storage_unit_object VALUES (38, 503); INSERT INTO storage_unit_object VALUES (38, 504); INSERT INTO storage_unit_object VALUES (38, 505); INSERT INTO storage_unit_object VALUES (38, 506); INSERT INTO storage_unit_object VALUES (39, 507); INSERT INTO storage_unit_object VALUES (39, 508); INSERT INTO storage_unit_object VALUES (39, 509); INSERT INTO storage_unit_object VALUES (38, 510); INSERT INTO storage_unit_object VALUES (38, 511); INSERT INTO storage_unit_object VALUES (39, 512); INSERT INTO storage_unit_object VALUES (38, 513); INSERT INTO storage_unit_object VALUES (39, 514); INSERT INTO storage_unit_object VALUES (39, 515); INSERT INTO storage_unit_object VALUES (39, 516); INSERT INTO storage_unit_object VALUES (39, 517); INSERT INTO storage_unit_object VALUES (38, 518); INSERT INTO storage_unit_object VALUES (39, 519); INSERT INTO storage_unit_object VALUES (38, 520); INSERT INTO storage_unit_object VALUES (39, 521); INSERT INTO storage_unit_object VALUES (38, 522); INSERT INTO storage_unit_object VALUES (38, 523); INSERT INTO storage_unit_object VALUES (38, 524); INSERT INTO storage_unit_object VALUES (38, 525); INSERT INTO storage_unit_object VALUES (39, 526); INSERT INTO storage_unit_object VALUES (38, 527); INSERT INTO storage_unit_object VALUES (39, 528); INSERT INTO storage_unit_object VALUES (38, 529); INSERT INTO storage_unit_object VALUES (38, 530); INSERT INTO storage_unit_object VALUES (38, 531); INSERT INTO storage_unit_object VALUES (39, 532); INSERT INTO storage_unit_object VALUES (38, 533); INSERT INTO storage_unit_object VALUES (39, 534); INSERT INTO storage_unit_object VALUES (38, 535); INSERT INTO storage_unit_object VALUES (39, 536); INSERT INTO storage_unit_object VALUES (38, 537); INSERT INTO storage_unit_object VALUES (39, 538); INSERT INTO storage_unit_object VALUES (39, 539); INSERT INTO storage_unit_object VALUES (38, 540); INSERT INTO storage_unit_object VALUES (39, 541); INSERT INTO storage_unit_object VALUES (38, 542); INSERT INTO storage_unit_object VALUES (39, 543); INSERT INTO storage_unit_object VALUES (38, 544); INSERT INTO storage_unit_object VALUES (39, 545); INSERT INTO storage_unit_object VALUES (39, 546); INSERT INTO storage_unit_object VALUES (38, 547); INSERT INTO storage_unit_object VALUES (38, 548); INSERT INTO storage_unit_object VALUES (38, 549); INSERT INTO storage_unit_object VALUES (39, 550); INSERT INTO storage_unit_object VALUES (38, 551); INSERT INTO storage_unit_object VALUES (38, 552); INSERT INTO storage_unit_object VALUES (38, 553); INSERT INTO storage_unit_object VALUES (39, 554); INSERT INTO storage_unit_object VALUES (38, 555); INSERT INTO storage_unit_object VALUES (39, 556); INSERT INTO storage_unit_object VALUES (38, 557); INSERT INTO storage_unit_object VALUES (39, 558); INSERT INTO storage_unit_object VALUES (38, 559); INSERT INTO storage_unit_object VALUES (39, 560); INSERT INTO storage_unit_object VALUES (38, 561); INSERT INTO storage_unit_object VALUES (38, 562); INSERT INTO storage_unit_object VALUES (39, 563); INSERT INTO storage_unit_object VALUES (38, 564); INSERT INTO storage_unit_object VALUES (39, 565); INSERT INTO storage_unit_object VALUES (39, 566); INSERT INTO storage_unit_object VALUES (39, 567); INSERT INTO storage_unit_object VALUES (38, 568); INSERT INTO storage_unit_object VALUES (39, 569); INSERT INTO storage_unit_object VALUES (39, 570); INSERT INTO storage_unit_object VALUES (38, 571); INSERT INTO storage_unit_object VALUES (38, 572); INSERT INTO storage_unit_object VALUES (39, 573); INSERT INTO storage_unit_object VALUES (38, 574); INSERT INTO storage_unit_object VALUES (39, 575); INSERT INTO storage_unit_object VALUES (38, 576); INSERT INTO storage_unit_object VALUES (39, 577); INSERT INTO storage_unit_object VALUES (39, 578); INSERT INTO storage_unit_object VALUES (39, 579); INSERT INTO storage_unit_object VALUES (38, 580); INSERT INTO storage_unit_object VALUES (39, 581); INSERT INTO storage_unit_object VALUES (38, 611); INSERT INTO storage_unit_object VALUES (38, 612); INSERT INTO storage_unit_object VALUES (39, 613); INSERT INTO storage_unit_object VALUES (39, 614); INSERT INTO storage_unit_object VALUES (38, 615); INSERT INTO storage_unit_object VALUES (39, 616); INSERT INTO storage_unit_object VALUES (38, 618); INSERT INTO storage_unit_object VALUES (39, 619); INSERT INTO storage_unit_object VALUES (39, 620); INSERT INTO storage_unit_object VALUES (38, 621); INSERT INTO storage_unit_object VALUES (38, 622); INSERT INTO storage_unit_object VALUES (39, 623); INSERT INTO storage_unit_object VALUES (38, 624); INSERT INTO storage_unit_object VALUES (38, 625); INSERT INTO storage_unit_object VALUES (39, 626); INSERT INTO storage_unit_object VALUES (38, 627); INSERT INTO storage_unit_object VALUES (38, 628); INSERT INTO storage_unit_object VALUES (39, 629); INSERT INTO storage_unit_object VALUES (38, 630); INSERT INTO storage_unit_object VALUES (38, 631); INSERT INTO storage_unit_object VALUES (38, 632); INSERT INTO storage_unit_object VALUES (38, 633); INSERT INTO storage_unit_object VALUES (39, 634); INSERT INTO storage_unit_object VALUES (38, 635); INSERT INTO storage_unit_object VALUES (39, 636); INSERT INTO storage_unit_object VALUES (38, 637); INSERT INTO storage_unit_object VALUES (38, 638); INSERT INTO storage_unit_object VALUES (39, 639); INSERT INTO storage_unit_object VALUES (39, 640); INSERT INTO storage_unit_object VALUES (38, 641); INSERT INTO storage_unit_object VALUES (39, 642); INSERT INTO storage_unit_object VALUES (39, 643); INSERT INTO storage_unit_object VALUES (38, 645); INSERT INTO storage_unit_object VALUES (39, 646); INSERT INTO storage_unit_object VALUES (38, 644); INSERT INTO storage_unit_object VALUES (38, 647); INSERT INTO storage_unit_object VALUES (39, 648); INSERT INTO storage_unit_object VALUES (38, 649); INSERT INTO storage_unit_object VALUES (38, 650); INSERT INTO storage_unit_object VALUES (39, 651); INSERT INTO storage_unit_object VALUES (38, 652); INSERT INTO storage_unit_object VALUES (38, 653); INSERT INTO storage_unit_object VALUES (38, 654); INSERT INTO storage_unit_object VALUES (38, 655); INSERT INTO storage_unit_object VALUES (38, 656); INSERT INTO storage_unit_object VALUES (38, 658); INSERT INTO storage_unit_object VALUES (38, 659); INSERT INTO storage_unit_object VALUES (38, 660); INSERT INTO storage_unit_object VALUES (38, 661); INSERT INTO storage_unit_object VALUES (38, 662); INSERT INTO storage_unit_object VALUES (38, 663); INSERT INTO storage_unit_object VALUES (38, 664); INSERT INTO storage_unit_object VALUES (38, 665); INSERT INTO storage_unit_object VALUES (38, 666); INSERT INTO storage_unit_object VALUES (38, 667); INSERT INTO storage_unit_object VALUES (38, 668); INSERT INTO storage_unit_object VALUES (39, 669); INSERT INTO storage_unit_object VALUES (39, 670); INSERT INTO storage_unit_object VALUES (38, 671); INSERT INTO storage_unit_object VALUES (39, 672); INSERT INTO storage_unit_object VALUES (39, 673); INSERT INTO storage_unit_object VALUES (39, 674); INSERT INTO storage_unit_object VALUES (38, 675); INSERT INTO storage_unit_object VALUES (38, 676); INSERT INTO storage_unit_object VALUES (38, 677); INSERT INTO storage_unit_object VALUES (39, 678); INSERT INTO storage_unit_object VALUES (38, 679); INSERT INTO storage_unit_object VALUES (39, 680); INSERT INTO storage_unit_object VALUES (39, 681); INSERT INTO storage_unit_object VALUES (38, 682); INSERT INTO storage_unit_object VALUES (38, 684); INSERT INTO storage_unit_object VALUES (39, 685); INSERT INTO storage_unit_object VALUES (39, 686); INSERT INTO storage_unit_object VALUES (38, 687); INSERT INTO storage_unit_object VALUES (43, 683); INSERT INTO storage_unit_object VALUES (39, 688); INSERT INTO storage_unit_object VALUES (39, 689); INSERT INTO storage_unit_object VALUES (43, 690); INSERT INTO storage_unit_object VALUES (43, 691); INSERT INTO storage_unit_object VALUES (43, 692); INSERT INTO storage_unit_object VALUES (39, 693); INSERT INTO storage_unit_object VALUES (39, 694); INSERT INTO storage_unit_object VALUES (39, 695); INSERT INTO storage_unit_object VALUES (39, 696); INSERT INTO storage_unit_object VALUES (39, 697); INSERT INTO storage_unit_object VALUES (44, 698); INSERT INTO storage_unit_object VALUES (39, 699); INSERT INTO storage_unit_object VALUES (39, 700); INSERT INTO storage_unit_object VALUES (39, 701); INSERT INTO storage_unit_object VALUES (39, 702); INSERT INTO storage_unit_object VALUES (39, 703); INSERT INTO storage_unit_object VALUES (39, 705); INSERT INTO storage_unit_object VALUES (45, 704); INSERT INTO storage_unit_object VALUES (39, 706); INSERT INTO storage_unit_object VALUES (45, 707); INSERT INTO storage_unit_object VALUES (44, 708); INSERT INTO storage_unit_object VALUES (39, 709); INSERT INTO storage_unit_object VALUES (45, 710); INSERT INTO storage_unit_object VALUES (39, 711); INSERT INTO storage_unit_object VALUES (39, 712); INSERT INTO storage_unit_object VALUES (45, 713); INSERT INTO storage_unit_object VALUES (39, 714); INSERT INTO storage_unit_object VALUES (45, 715); INSERT INTO storage_unit_object VALUES (39, 716); INSERT INTO storage_unit_object VALUES (45, 717); INSERT INTO storage_unit_object VALUES (45, 718); INSERT INTO storage_unit_object VALUES (39, 719); INSERT INTO storage_unit_object VALUES (45, 720); INSERT INTO storage_unit_object VALUES (46, 721); INSERT INTO storage_unit_object VALUES (39, 722); INSERT INTO storage_unit_object VALUES (45, 723); INSERT INTO storage_unit_object VALUES (45, 724); INSERT INTO storage_unit_object VALUES (39, 725); INSERT INTO storage_unit_object VALUES (45, 726); INSERT INTO storage_unit_object VALUES (45, 727); INSERT INTO storage_unit_object VALUES (39, 728); INSERT INTO storage_unit_object VALUES (46, 729); INSERT INTO storage_unit_object VALUES (45, 731); INSERT INTO storage_unit_object VALUES (45, 732); INSERT INTO storage_unit_object VALUES (39, 733); INSERT INTO storage_unit_object VALUES (39, 734); INSERT INTO storage_unit_object VALUES (45, 735); INSERT INTO storage_unit_object VALUES (45, 736); INSERT INTO storage_unit_object VALUES (45, 737); INSERT INTO storage_unit_object VALUES (45, 738); INSERT INTO storage_unit_object VALUES (45, 739); INSERT INTO storage_unit_object VALUES (39, 740); INSERT INTO storage_unit_object VALUES (45, 741); INSERT INTO storage_unit_object VALUES (39, 742); INSERT INTO storage_unit_object VALUES (47, 743); INSERT INTO storage_unit_object VALUES (45, 744); INSERT INTO storage_unit_object VALUES (45, 745); INSERT INTO storage_unit_object VALUES (39, 746); INSERT INTO storage_unit_object VALUES (45, 747); INSERT INTO storage_unit_object VALUES (34, 748); INSERT INTO storage_unit_object VALUES (45, 749); INSERT INTO storage_unit_object VALUES (45, 750); INSERT INTO storage_unit_object VALUES (39, 751); INSERT INTO storage_unit_object VALUES (45, 752); INSERT INTO storage_unit_object VALUES (47, 753); INSERT INTO storage_unit_object VALUES (45, 754); INSERT INTO storage_unit_object VALUES (45, 755); INSERT INTO storage_unit_object VALUES (39, 756); INSERT INTO storage_unit_object VALUES (45, 757); INSERT INTO storage_unit_object VALUES (39, 758); INSERT INTO storage_unit_object VALUES (45, 759); INSERT INTO storage_unit_object VALUES (45, 760); INSERT INTO storage_unit_object VALUES (47, 761); INSERT INTO storage_unit_object VALUES (39, 762); INSERT INTO storage_unit_object VALUES (45, 763); INSERT INTO storage_unit_object VALUES (39, 764); INSERT INTO storage_unit_object VALUES (45, 765); INSERT INTO storage_unit_object VALUES (39, 766); INSERT INTO storage_unit_object VALUES (45, 767); INSERT INTO storage_unit_object VALUES (39, 768); INSERT INTO storage_unit_object VALUES (39, 769); INSERT INTO storage_unit_object VALUES (47, 770); INSERT INTO storage_unit_object VALUES (45, 771); INSERT INTO storage_unit_object VALUES (39, 772); INSERT INTO storage_unit_object VALUES (47, 773); INSERT INTO storage_unit_object VALUES (39, 774); INSERT INTO storage_unit_object VALUES (39, 775); INSERT INTO storage_unit_object VALUES (45, 776); INSERT INTO storage_unit_object VALUES (47, 777); INSERT INTO storage_unit_object VALUES (45, 778); INSERT INTO storage_unit_object VALUES (47, 779); INSERT INTO storage_unit_object VALUES (45, 780); INSERT INTO storage_unit_object VALUES (47, 781); INSERT INTO storage_unit_object VALUES (47, 782); INSERT INTO storage_unit_object VALUES (45, 783); INSERT INTO storage_unit_object VALUES (47, 785); INSERT INTO storage_unit_object VALUES (45, 784); INSERT INTO storage_unit_object VALUES (45, 786); INSERT INTO storage_unit_object VALUES (45, 787); INSERT INTO storage_unit_object VALUES (47, 788); INSERT INTO storage_unit_object VALUES (45, 789); INSERT INTO storage_unit_object VALUES (47, 790); INSERT INTO storage_unit_object VALUES (47, 792); INSERT INTO storage_unit_object VALUES (45, 791); INSERT INTO storage_unit_object VALUES (45, 793); INSERT INTO storage_unit_object VALUES (45, 794); INSERT INTO storage_unit_object VALUES (47, 795); INSERT INTO storage_unit_object VALUES (47, 796); INSERT INTO storage_unit_object VALUES (45, 797); INSERT INTO storage_unit_object VALUES (45, 798); INSERT INTO storage_unit_object VALUES (45, 799); INSERT INTO storage_unit_object VALUES (45, 800); INSERT INTO storage_unit_object VALUES (45, 801); INSERT INTO storage_unit_object VALUES (45, 802); INSERT INTO storage_unit_object VALUES (49, 803); INSERT INTO storage_unit_object VALUES (45, 804); INSERT INTO storage_unit_object VALUES (45, 805); INSERT INTO storage_unit_object VALUES (45, 807); INSERT INTO storage_unit_object VALUES (49, 808); INSERT INTO storage_unit_object VALUES (45, 809); INSERT INTO storage_unit_object VALUES (45, 810); INSERT INTO storage_unit_object VALUES (49, 811); INSERT INTO storage_unit_object VALUES (45, 812); INSERT INTO storage_unit_object VALUES (45, 813); INSERT INTO storage_unit_object VALUES (45, 814); INSERT INTO storage_unit_object VALUES (45, 815); INSERT INTO storage_unit_object VALUES (45, 816); INSERT INTO storage_unit_object VALUES (45, 817); INSERT INTO storage_unit_object VALUES (45, 818); INSERT INTO storage_unit_object VALUES (45, 820); INSERT INTO storage_unit_object VALUES (43, 819); INSERT INTO storage_unit_object VALUES (50, 819); INSERT INTO storage_unit_object VALUES (45, 821); INSERT INTO storage_unit_object VALUES (45, 822); INSERT INTO storage_unit_object VALUES (45, 823); INSERT INTO storage_unit_object VALUES (45, 824); INSERT INTO storage_unit_object VALUES (43, 825); INSERT INTO storage_unit_object VALUES (50, 825); INSERT INTO storage_unit_object VALUES (45, 826); INSERT INTO storage_unit_object VALUES (43, 827); INSERT INTO storage_unit_object VALUES (50, 827); INSERT INTO storage_unit_object VALUES (45, 828); INSERT INTO storage_unit_object VALUES (45, 829); INSERT INTO storage_unit_object VALUES (45, 830); INSERT INTO storage_unit_object VALUES (43, 831); INSERT INTO storage_unit_object VALUES (50, 831); INSERT INTO storage_unit_object VALUES (45, 832); INSERT INTO storage_unit_object VALUES (45, 833); INSERT INTO storage_unit_object VALUES (45, 834); INSERT INTO storage_unit_object VALUES (45, 835); INSERT INTO storage_unit_object VALUES (50, 836); INSERT INTO storage_unit_object VALUES (45, 837); INSERT INTO storage_unit_object VALUES (52, 838); INSERT INTO storage_unit_object VALUES (45, 839); INSERT INTO storage_unit_object VALUES (45, 840); INSERT INTO storage_unit_object VALUES (45, 841); INSERT INTO storage_unit_object VALUES (45, 842); INSERT INTO storage_unit_object VALUES (50, 843); INSERT INTO storage_unit_object VALUES (45, 844); INSERT INTO storage_unit_object VALUES (45, 845); INSERT INTO storage_unit_object VALUES (44, 838); INSERT INTO storage_unit_object VALUES (45, 846); INSERT INTO storage_unit_object VALUES (45, 847); INSERT INTO storage_unit_object VALUES (45, 848); INSERT INTO storage_unit_object VALUES (45, 849); INSERT INTO storage_unit_object VALUES (45, 850); INSERT INTO storage_unit_object VALUES (45, 851); INSERT INTO storage_unit_object VALUES (45, 852); INSERT INTO storage_unit_object VALUES (55, 853); INSERT INTO storage_unit_object VALUES (45, 855); INSERT INTO storage_unit_object VALUES (45, 854); INSERT INTO storage_unit_object VALUES (45, 856); INSERT INTO storage_unit_object VALUES (45, 857); INSERT INTO storage_unit_object VALUES (45, 858); INSERT INTO storage_unit_object VALUES (45, 859); INSERT INTO storage_unit_object VALUES (45, 860); INSERT INTO storage_unit_object VALUES (45, 861); INSERT INTO storage_unit_object VALUES (45, 862); INSERT INTO storage_unit_object VALUES (45, 863); INSERT INTO storage_unit_object VALUES (45, 864); INSERT INTO storage_unit_object VALUES (45, 865); INSERT INTO storage_unit_object VALUES (45, 866); INSERT INTO storage_unit_object VALUES (45, 867); INSERT INTO storage_unit_object VALUES (45, 868); INSERT INTO storage_unit_object VALUES (45, 869); INSERT INTO storage_unit_object VALUES (45, 870); INSERT INTO storage_unit_object VALUES (45, 872); INSERT INTO storage_unit_object VALUES (45, 871); INSERT INTO storage_unit_object VALUES (45, 873); INSERT INTO storage_unit_object VALUES (45, 874); INSERT INTO storage_unit_object VALUES (45, 875); INSERT INTO storage_unit_object VALUES (45, 876); INSERT INTO storage_unit_object VALUES (45, 877); INSERT INTO storage_unit_object VALUES (45, 878); INSERT INTO storage_unit_object VALUES (45, 879); INSERT INTO storage_unit_object VALUES (45, 880); INSERT INTO storage_unit_object VALUES (45, 881); INSERT INTO storage_unit_object VALUES (45, 882); INSERT INTO storage_unit_object VALUES (45, 883); INSERT INTO storage_unit_object VALUES (45, 884); INSERT INTO storage_unit_object VALUES (45, 888); INSERT INTO storage_unit_object VALUES (56, 889); INSERT INTO storage_unit_object VALUES (45, 890); INSERT INTO storage_unit_object VALUES (56, 891); INSERT INTO storage_unit_object VALUES (57, 892); INSERT INTO storage_unit_object VALUES (45, 893); INSERT INTO storage_unit_object VALUES (56, 894); INSERT INTO storage_unit_object VALUES (45, 895); INSERT INTO storage_unit_object VALUES (56, 896); INSERT INTO storage_unit_object VALUES (45, 897); INSERT INTO storage_unit_object VALUES (45, 898); INSERT INTO storage_unit_object VALUES (45, 899); INSERT INTO storage_unit_object VALUES (45, 900); INSERT INTO storage_unit_object VALUES (45, 901); INSERT INTO storage_unit_object VALUES (45, 902); INSERT INTO storage_unit_object VALUES (58, 903); INSERT INTO storage_unit_object VALUES (45, 904); INSERT INTO storage_unit_object VALUES (45, 905); INSERT INTO storage_unit_object VALUES (58, 906); INSERT INTO storage_unit_object VALUES (45, 907); INSERT INTO storage_unit_object VALUES (58, 908); INSERT INTO storage_unit_object VALUES (45, 909); INSERT INTO storage_unit_object VALUES (58, 910); INSERT INTO storage_unit_object VALUES (45, 911); INSERT INTO storage_unit_object VALUES (45, 912); INSERT INTO storage_unit_object VALUES (45, 913); INSERT INTO storage_unit_object VALUES (58, 914); INSERT INTO storage_unit_object VALUES (45, 915); INSERT INTO storage_unit_object VALUES (58, 916); INSERT INTO storage_unit_object VALUES (45, 917); INSERT INTO storage_unit_object VALUES (58, 918); INSERT INTO storage_unit_object VALUES (45, 919); INSERT INTO storage_unit_object VALUES (45, 920); INSERT INTO storage_unit_object VALUES (58, 921); INSERT INTO storage_unit_object VALUES (58, 922); INSERT INTO storage_unit_object VALUES (45, 923); INSERT INTO storage_unit_object VALUES (58, 924); INSERT INTO storage_unit_object VALUES (58, 925); INSERT INTO storage_unit_object VALUES (58, 926); INSERT INTO storage_unit_object VALUES (45, 927); INSERT INTO storage_unit_object VALUES (45, 928); INSERT INTO storage_unit_object VALUES (58, 929); INSERT INTO storage_unit_object VALUES (45, 930); INSERT INTO storage_unit_object VALUES (58, 931); INSERT INTO storage_unit_object VALUES (45, 932); INSERT INTO storage_unit_object VALUES (58, 933); INSERT INTO storage_unit_object VALUES (45, 934); INSERT INTO storage_unit_object VALUES (58, 935); INSERT INTO storage_unit_object VALUES (59, 936); INSERT INTO storage_unit_object VALUES (59, 937); INSERT INTO storage_unit_object VALUES (59, 938); INSERT INTO storage_unit_object VALUES (59, 939); INSERT INTO storage_unit_object VALUES (59, 940); INSERT INTO storage_unit_object VALUES (59, 941); INSERT INTO storage_unit_object VALUES (59, 942); INSERT INTO storage_unit_object VALUES (59, 943); INSERT INTO storage_unit_object VALUES (59, 944); INSERT INTO storage_unit_object VALUES (59, 945); INSERT INTO storage_unit_object VALUES (61, 946); INSERT INTO storage_unit_object VALUES (61, 947); INSERT INTO storage_unit_object VALUES (61, 948); INSERT INTO storage_unit_object VALUES (61, 949); INSERT INTO storage_unit_object VALUES (61, 950); INSERT INTO storage_unit_object VALUES (61, 951); INSERT INTO storage_unit_object VALUES (61, 952); INSERT INTO storage_unit_object VALUES (62, 165); INSERT INTO storage_unit_object VALUES (62, 166); INSERT INTO storage_unit_object VALUES (62, 167); INSERT INTO storage_unit_object VALUES (61, 169); INSERT INTO storage_unit_object VALUES (61, 168); INSERT INTO storage_unit_object VALUES (61, 170); INSERT INTO storage_unit_object VALUES (63, 171); INSERT INTO storage_unit_object VALUES (63, 953); INSERT INTO storage_unit_object VALUES (41, 290); INSERT INTO storage_unit_object VALUES (41, 296); INSERT INTO storage_unit_object VALUES (65, 955); INSERT INTO storage_unit_object VALUES (66, 956); INSERT INTO storage_unit_object VALUES (66, 957); INSERT INTO storage_unit_object VALUES (66, 958); INSERT INTO storage_unit_object VALUES (66, 959); INSERT INTO storage_unit_object VALUES (66, 960); INSERT INTO storage_unit_object VALUES (66, 961); INSERT INTO storage_unit_object VALUES (66, 962); INSERT INTO storage_unit_object VALUES (66, 963); INSERT INTO storage_unit_object VALUES (66, 964); INSERT INTO storage_unit_object VALUES (66, 97); INSERT INTO storage_unit_object VALUES (67, 965); INSERT INTO storage_unit_object VALUES (9, 966); INSERT INTO storage_unit_object VALUES (9, 967); INSERT INTO storage_unit_object VALUES (19, 968); INSERT INTO storage_unit_object VALUES (19, 969); INSERT INTO storage_unit_object VALUES (19, 970); INSERT INTO storage_unit_object VALUES (19, 971); INSERT INTO storage_unit_object VALUES (19, 972); INSERT INTO storage_unit_object VALUES (19, 973); INSERT INTO storage_unit_object VALUES (19, 974); INSERT INTO storage_unit_object VALUES (19, 975); INSERT INTO storage_unit_object VALUES (19, 976); INSERT INTO storage_unit_object VALUES (19, 977); INSERT INTO storage_unit_object VALUES (19, 978); INSERT INTO storage_unit_object VALUES (19, 979); INSERT INTO storage_unit_object VALUES (19, 980); INSERT INTO storage_unit_object VALUES (19, 981); INSERT INTO storage_unit_object VALUES (19, 982); INSERT INTO storage_unit_object VALUES (19, 983); INSERT INTO storage_unit_object VALUES (19, 984); INSERT INTO storage_unit_object VALUES (20, 112); INSERT INTO storage_unit_object VALUES (15, 985); INSERT INTO storage_unit_object VALUES (68, 986); INSERT INTO storage_unit_object VALUES (68, 987); INSERT INTO storage_unit_object VALUES (68, 988); INSERT INTO storage_unit_object VALUES (63, 172); INSERT INTO storage_unit_object VALUES (63, 173); INSERT INTO storage_unit_object VALUES (63, 174); INSERT INTO storage_unit_object VALUES (63, 175); INSERT INTO storage_unit_object VALUES (63, 176); INSERT INTO storage_unit_object VALUES (38, 617); INSERT INTO storage_unit_object VALUES (38, 657); INSERT INTO storage_unit_object VALUES (45, 806); INSERT INTO storage_unit_object VALUES (17, 989); INSERT INTO storage_unit_object VALUES (70, 990); INSERT INTO storage_unit_object VALUES (71, 991); INSERT INTO storage_unit_object VALUES (72, 992); INSERT INTO storage_unit_object VALUES (72, 993); INSERT INTO storage_unit_object VALUES (72, 994); INSERT INTO storage_unit_object VALUES (72, 995); INSERT INTO storage_unit_object VALUES (72, 996); INSERT INTO storage_unit_object VALUES (73, 996); INSERT INTO storage_unit_object VALUES (74, 997); INSERT INTO storage_unit_object VALUES (74, 998); INSERT INTO storage_unit_object VALUES (74, 1000); INSERT INTO storage_unit_object VALUES (74, 1001); INSERT INTO storage_unit_object VALUES (74, 1002); INSERT INTO storage_unit_object VALUES (74, 1003); INSERT INTO storage_unit_object VALUES (74, 1004); INSERT INTO storage_unit_object VALUES (74, 1005); INSERT INTO storage_unit_object VALUES (75, 1006); INSERT INTO storage_unit_object VALUES (75, 1007); INSERT INTO storage_unit_object VALUES (75, 42); INSERT INTO storage_unit_object VALUES (75, 1008); INSERT INTO storage_unit_object VALUES (75, 1009); INSERT INTO storage_unit_object VALUES (75, 43); INSERT INTO storage_unit_object VALUES (75, 149); INSERT INTO storage_unit_object VALUES (75, 1010); INSERT INTO storage_unit_object VALUES (75, 44); INSERT INTO storage_unit_object VALUES (75, 1011); INSERT INTO storage_unit_object VALUES (75, 1012); INSERT INTO storage_unit_object VALUES (75, 1013); INSERT INTO storage_unit_object VALUES (75, 1014); INSERT INTO storage_unit_object VALUES (75, 1015); INSERT INTO storage_unit_object VALUES (75, 1016); INSERT INTO storage_unit_object VALUES (75, 1017); INSERT INTO storage_unit_object VALUES (75, 1018); INSERT INTO storage_unit_object VALUES (75, 1019); INSERT INTO storage_unit_object VALUES (75, 1020); INSERT INTO storage_unit_object VALUES (75, 1021); INSERT INTO storage_unit_object VALUES (75, 1022); INSERT INTO storage_unit_object VALUES (75, 1023); INSERT INTO storage_unit_object VALUES (75, 1024); INSERT INTO storage_unit_object VALUES (75, 1026); INSERT INTO storage_unit_object VALUES (75, 1027); INSERT INTO storage_unit_object VALUES (75, 1028); INSERT INTO storage_unit_object VALUES (75, 1029); INSERT INTO storage_unit_object VALUES (75, 1025); INSERT INTO storage_unit_object VALUES (75, 1030); INSERT INTO storage_unit_object VALUES (75, 1031); INSERT INTO storage_unit_object VALUES (75, 1032); INSERT INTO storage_unit_object VALUES (45, 1033); INSERT INTO storage_unit_object VALUES (45, 1034); INSERT INTO storage_unit_object VALUES (43, 1035); INSERT INTO storage_unit_object VALUES (45, 1036); INSERT INTO storage_unit_object VALUES (45, 1037); INSERT INTO storage_unit_object VALUES (45, 1038); INSERT INTO storage_unit_object VALUES (76, 1039); INSERT INTO storage_unit_object VALUES (76, 1040); INSERT INTO storage_unit_object VALUES (76, 1041); INSERT INTO storage_unit_object VALUES (76, 1042); INSERT INTO storage_unit_object VALUES (77, 1044); INSERT INTO storage_unit_object VALUES (78, 1047); INSERT INTO storage_unit_object VALUES (78, 1048); INSERT INTO storage_unit_object VALUES (78, 1049); INSERT INTO storage_unit_object VALUES (78, 1050); INSERT INTO storage_unit_object VALUES (78, 1051); INSERT INTO storage_unit_object VALUES (78, 1052); INSERT INTO storage_unit_object VALUES (78, 1053); INSERT INTO storage_unit_object VALUES (78, 1054); INSERT INTO storage_unit_object VALUES (78, 1055); INSERT INTO storage_unit_object VALUES (78, 1056); INSERT INTO storage_unit_object VALUES (79, 1057); -- -- Data for TOC entry 94 (OID 561332) -- Name: storage_unit_log; Type: TABLE DATA; Schema: public; Owner: rwb3y -- INSERT INTO storage_unit_log VALUES (6, 2); INSERT INTO storage_unit_log VALUES (5, 2); INSERT INTO storage_unit_log VALUES (4, 2); INSERT INTO storage_unit_log VALUES (7, 2); INSERT INTO storage_unit_log VALUES (3, 2); INSERT INTO storage_unit_log VALUES (8, 2); INSERT INTO storage_unit_log VALUES (2, 2); INSERT INTO storage_unit_log VALUES (1, 2); INSERT INTO storage_unit_log VALUES (9, 2); INSERT INTO storage_unit_log VALUES (11, 4); INSERT INTO storage_unit_log VALUES (6, 1); INSERT INTO storage_unit_log VALUES (7, 1); INSERT INTO storage_unit_log VALUES (1, 1); INSERT INTO storage_unit_log VALUES (4, 1); INSERT INTO storage_unit_log VALUES (2, 1); INSERT INTO storage_unit_log VALUES (5, 1); INSERT INTO storage_unit_log VALUES (3, 1); INSERT INTO storage_unit_log VALUES (8, 1); INSERT INTO storage_unit_log VALUES (9, 1); INSERT INTO storage_unit_log VALUES (12, 4); INSERT INTO storage_unit_log VALUES (15, 4); INSERT INTO storage_unit_log VALUES (17, 4); INSERT INTO storage_unit_log VALUES (22, 4); INSERT INTO storage_unit_log VALUES (17, 5); INSERT INTO storage_unit_log VALUES (9, 5); INSERT INTO storage_unit_log VALUES (11, 5); INSERT INTO storage_unit_log VALUES (12, 5); INSERT INTO storage_unit_log VALUES (13, 5); INSERT INTO storage_unit_log VALUES (14, 5); INSERT INTO storage_unit_log VALUES (3, 5); INSERT INTO storage_unit_log VALUES (15, 5); INSERT INTO storage_unit_log VALUES (22, 5); INSERT INTO storage_unit_log VALUES (18, 5); INSERT INTO storage_unit_log VALUES (19, 5); INSERT INTO storage_unit_log VALUES (20, 5); INSERT INTO storage_unit_log VALUES (21, 5); INSERT INTO storage_unit_log VALUES (25, 6); INSERT INTO storage_unit_log VALUES (26, 7); INSERT INTO storage_unit_log VALUES (27, 6); INSERT INTO storage_unit_log VALUES (27, 7); INSERT INTO storage_unit_log VALUES (28, 7); INSERT INTO storage_unit_log VALUES (28, 6); INSERT INTO storage_unit_log VALUES (15, 6); INSERT INTO storage_unit_log VALUES (31, 6); INSERT INTO storage_unit_log VALUES (32, 6); INSERT INTO storage_unit_log VALUES (30, 7); INSERT INTO storage_unit_log VALUES (33, 7); INSERT INTO storage_unit_log VALUES (33, 8); INSERT INTO storage_unit_log VALUES (34, 8); INSERT INTO storage_unit_log VALUES (40, 9); INSERT INTO storage_unit_log VALUES (41, 9); INSERT INTO storage_unit_log VALUES (35, 8); INSERT INTO storage_unit_log VALUES (36, 9); INSERT INTO storage_unit_log VALUES (37, 9); INSERT INTO storage_unit_log VALUES (38, 8); INSERT INTO storage_unit_log VALUES (39, 9); INSERT INTO storage_unit_log VALUES (38, 11); INSERT INTO storage_unit_log VALUES (38, 12); INSERT INTO storage_unit_log VALUES (43, 11); INSERT INTO storage_unit_log VALUES (44, 12); INSERT INTO storage_unit_log VALUES (45, 12); INSERT INTO storage_unit_log VALUES (44, 11); INSERT INTO storage_unit_log VALUES (46, 11); INSERT INTO storage_unit_log VALUES (47, 11); INSERT INTO storage_unit_log VALUES (48, 13); INSERT INTO storage_unit_log VALUES (39, 13); INSERT INTO storage_unit_log VALUES (49, 11); INSERT INTO storage_unit_log VALUES (50, 11); INSERT INTO storage_unit_log VALUES (51, 13); INSERT INTO storage_unit_log VALUES (52, 13); INSERT INTO storage_unit_log VALUES (53, 11); INSERT INTO storage_unit_log VALUES (54, 13); INSERT INTO storage_unit_log VALUES (55, 13); INSERT INTO storage_unit_log VALUES (56, 13); INSERT INTO storage_unit_log VALUES (57, 11); INSERT INTO storage_unit_log VALUES (58, 13); INSERT INTO storage_unit_log VALUES (58, 11); INSERT INTO storage_unit_log VALUES (59, 13); INSERT INTO storage_unit_log VALUES (59, 11); INSERT INTO storage_unit_log VALUES (60, 13); INSERT INTO storage_unit_log VALUES (61, 13); INSERT INTO storage_unit_log VALUES (62, 13); INSERT INTO storage_unit_log VALUES (63, 13); INSERT INTO storage_unit_log VALUES (63, 11); INSERT INTO storage_unit_log VALUES (60, 11); INSERT INTO storage_unit_log VALUES (61, 11); INSERT INTO storage_unit_log VALUES (64, 13); INSERT INTO storage_unit_log VALUES (15, 12); INSERT INTO storage_unit_log VALUES (61, 12); INSERT INTO storage_unit_log VALUES (63, 12); INSERT INTO storage_unit_log VALUES (62, 12); INSERT INTO storage_unit_log VALUES (65, 15); INSERT INTO storage_unit_log VALUES (65, 16); INSERT INTO storage_unit_log VALUES (66, 14); INSERT INTO storage_unit_log VALUES (66, 16); INSERT INTO storage_unit_log VALUES (67, 14); INSERT INTO storage_unit_log VALUES (67, 16); INSERT INTO storage_unit_log VALUES (9, 16); INSERT INTO storage_unit_log VALUES (28, 16); INSERT INTO storage_unit_log VALUES (68, 4); INSERT INTO storage_unit_log VALUES (68, 16); INSERT INTO storage_unit_log VALUES (69, 14); INSERT INTO storage_unit_log VALUES (69, 16); INSERT INTO storage_unit_log VALUES (70, 17); INSERT INTO storage_unit_log VALUES (71, 17); INSERT INTO storage_unit_log VALUES (74, 17); INSERT INTO storage_unit_log VALUES (75, 17); INSERT INTO storage_unit_log VALUES (45, 11); INSERT INTO storage_unit_log VALUES (45, 18); INSERT INTO storage_unit_log VALUES (43, 18); INSERT INTO storage_unit_log VALUES (1, 19); INSERT INTO storage_unit_log VALUES (9, 19); INSERT INTO storage_unit_log VALUES (47, 19); INSERT INTO storage_unit_log VALUES (44, 19); INSERT INTO storage_unit_log VALUES (3, 19); INSERT INTO storage_unit_log VALUES (19, 19); INSERT INTO storage_unit_log VALUES (43, 19); INSERT INTO storage_unit_log VALUES (4, 19); INSERT INTO storage_unit_log VALUES (2, 19); INSERT INTO storage_unit_log VALUES (45, 19); INSERT INTO storage_unit_log VALUES (64, 18); INSERT INTO storage_unit_log VALUES (76, 20); INSERT INTO storage_unit_log VALUES (77, 20); INSERT INTO storage_unit_log VALUES (78, 20); INSERT INTO storage_unit_log VALUES (79, 20); -- -- Data for TOC entry 95 (OID 561334) -- Name: site_object; Type: TABLE DATA; Schema: public; Owner: rwb3y -- INSERT INTO site_object VALUES (4, 154); INSERT INTO site_object VALUES (6, 153); INSERT INTO site_object VALUES (6, 75); INSERT INTO site_object VALUES (4, 167); INSERT INTO site_object VALUES (18, 168); INSERT INTO site_object VALUES (18, 169); INSERT INTO site_object VALUES (18, 170); INSERT INTO site_object VALUES (18, 171); INSERT INTO site_object VALUES (5, 172); INSERT INTO site_object VALUES (5, 173); INSERT INTO site_object VALUES (5, 176); INSERT INTO site_object VALUES (5, 195); INSERT INTO site_object VALUES (5, 196); INSERT INTO site_object VALUES (5, 198); INSERT INTO site_object VALUES (5, 200); INSERT INTO site_object VALUES (5, 201); INSERT INTO site_object VALUES (5, 203); INSERT INTO site_object VALUES (5, 205); INSERT INTO site_object VALUES (5, 206); INSERT INTO site_object VALUES (5, 208); INSERT INTO site_object VALUES (7, 209); INSERT INTO site_object VALUES (5, 210); INSERT INTO site_object VALUES (5, 211); INSERT INTO site_object VALUES (5, 213); INSERT INTO site_object VALUES (5, 215); INSERT INTO site_object VALUES (5, 218); INSERT INTO site_object VALUES (4, 219); INSERT INTO site_object VALUES (5, 220); INSERT INTO site_object VALUES (1, 221); INSERT INTO site_object VALUES (1, 222); INSERT INTO site_object VALUES (5, 186); INSERT INTO site_object VALUES (5, 224); INSERT INTO site_object VALUES (5, 225); INSERT INTO site_object VALUES (5, 226); INSERT INTO site_object VALUES (21, 227); INSERT INTO site_object VALUES (5, 184); INSERT INTO site_object VALUES (1, 229); INSERT INTO site_object VALUES (5, 230); INSERT INTO site_object VALUES (19, 231); INSERT INTO site_object VALUES (5, 232); INSERT INTO site_object VALUES (5, 233); INSERT INTO site_object VALUES (5, 234); INSERT INTO site_object VALUES (7, 235); INSERT INTO site_object VALUES (5, 238); INSERT INTO site_object VALUES (5, 239); INSERT INTO site_object VALUES (5, 240); INSERT INTO site_object VALUES (5, 241); INSERT INTO site_object VALUES (5, 242); INSERT INTO site_object VALUES (5, 243); INSERT INTO site_object VALUES (5, 244); INSERT INTO site_object VALUES (5, 245); INSERT INTO site_object VALUES (5, 246); INSERT INTO site_object VALUES (5, 247); INSERT INTO site_object VALUES (5, 248); INSERT INTO site_object VALUES (5, 249); INSERT INTO site_object VALUES (5, 250); INSERT INTO site_object VALUES (5, 251); INSERT INTO site_object VALUES (5, 252); INSERT INTO site_object VALUES (5, 253); INSERT INTO site_object VALUES (5, 254); INSERT INTO site_object VALUES (5, 255); INSERT INTO site_object VALUES (5, 256); INSERT INTO site_object VALUES (5, 257); INSERT INTO site_object VALUES (5, 258); INSERT INTO site_object VALUES (5, 259); INSERT INTO site_object VALUES (5, 260); INSERT INTO site_object VALUES (5, 261); INSERT INTO site_object VALUES (5, 262); INSERT INTO site_object VALUES (5, 263); INSERT INTO site_object VALUES (5, 264); INSERT INTO site_object VALUES (5, 265); INSERT INTO site_object VALUES (5, 266); INSERT INTO site_object VALUES (5, 267); INSERT INTO site_object VALUES (5, 268); INSERT INTO site_object VALUES (5, 269); INSERT INTO site_object VALUES (5, 270); INSERT INTO site_object VALUES (5, 271); INSERT INTO site_object VALUES (5, 272); INSERT INTO site_object VALUES (5, 273); INSERT INTO site_object VALUES (5, 274); INSERT INTO site_object VALUES (5, 275); INSERT INTO site_object VALUES (5, 276); INSERT INTO site_object VALUES (5, 277); INSERT INTO site_object VALUES (5, 278); INSERT INTO site_object VALUES (5, 279); INSERT INTO site_object VALUES (5, 280); INSERT INTO site_object VALUES (5, 281); INSERT INTO site_object VALUES (5, 282); INSERT INTO site_object VALUES (5, 283); INSERT INTO site_object VALUES (5, 284); INSERT INTO site_object VALUES (5, 285); INSERT INTO site_object VALUES (5, 286); INSERT INTO site_object VALUES (5, 288); INSERT INTO site_object VALUES (5, 287); INSERT INTO site_object VALUES (5, 290); INSERT INTO site_object VALUES (5, 292); INSERT INTO site_object VALUES (5, 293); INSERT INTO site_object VALUES (5, 294); INSERT INTO site_object VALUES (5, 295); INSERT INTO site_object VALUES (5, 296); INSERT INTO site_object VALUES (5, 297); INSERT INTO site_object VALUES (5, 298); INSERT INTO site_object VALUES (5, 299); INSERT INTO site_object VALUES (5, 301); INSERT INTO site_object VALUES (5, 302); INSERT INTO site_object VALUES (5, 304); INSERT INTO site_object VALUES (5, 300); INSERT INTO site_object VALUES (5, 305); INSERT INTO site_object VALUES (5, 306); INSERT INTO site_object VALUES (5, 307); INSERT INTO site_object VALUES (5, 308); INSERT INTO site_object VALUES (5, 309); INSERT INTO site_object VALUES (5, 310); INSERT INTO site_object VALUES (1, 607); INSERT INTO site_object VALUES (1, 582); INSERT INTO site_object VALUES (1, 583); INSERT INTO site_object VALUES (1, 584); INSERT INTO site_object VALUES (7, 606); INSERT INTO site_object VALUES (21, 606); INSERT INTO site_object VALUES (18, 606); INSERT INTO site_object VALUES (4, 585); INSERT INTO site_object VALUES (18, 585); INSERT INTO site_object VALUES (5, 608); INSERT INTO site_object VALUES (5, 586); INSERT INTO site_object VALUES (5, 587); INSERT INTO site_object VALUES (5, 588); INSERT INTO site_object VALUES (5, 591); INSERT INTO site_object VALUES (5, 589); INSERT INTO site_object VALUES (5, 590); INSERT INTO site_object VALUES (5, 593); INSERT INTO site_object VALUES (5, 594); INSERT INTO site_object VALUES (5, 595); INSERT INTO site_object VALUES (5, 596); INSERT INTO site_object VALUES (5, 312); INSERT INTO site_object VALUES (5, 313); INSERT INTO site_object VALUES (5, 311); INSERT INTO site_object VALUES (5, 314); INSERT INTO site_object VALUES (5, 315); INSERT INTO site_object VALUES (5, 316); INSERT INTO site_object VALUES (5, 317); INSERT INTO site_object VALUES (5, 318); INSERT INTO site_object VALUES (5, 319); INSERT INTO site_object VALUES (5, 320); INSERT INTO site_object VALUES (5, 321); INSERT INTO site_object VALUES (5, 322); INSERT INTO site_object VALUES (5, 323); INSERT INTO site_object VALUES (5, 324); INSERT INTO site_object VALUES (5, 325); INSERT INTO site_object VALUES (5, 326); INSERT INTO site_object VALUES (5, 327); INSERT INTO site_object VALUES (5, 328); INSERT INTO site_object VALUES (5, 329); INSERT INTO site_object VALUES (5, 330); INSERT INTO site_object VALUES (5, 331); INSERT INTO site_object VALUES (5, 332); INSERT INTO site_object VALUES (5, 333); INSERT INTO site_object VALUES (5, 334); INSERT INTO site_object VALUES (5, 335); INSERT INTO site_object VALUES (5, 336); INSERT INTO site_object VALUES (5, 337); INSERT INTO site_object VALUES (5, 338); INSERT INTO site_object VALUES (5, 339); INSERT INTO site_object VALUES (62, 339); INSERT INTO site_object VALUES (5, 340); INSERT INTO site_object VALUES (5, 341); INSERT INTO site_object VALUES (5, 342); INSERT INTO site_object VALUES (5, 343); INSERT INTO site_object VALUES (5, 344); INSERT INTO site_object VALUES (5, 345); INSERT INTO site_object VALUES (5, 346); INSERT INTO site_object VALUES (5, 347); INSERT INTO site_object VALUES (125, 598); INSERT INTO site_object VALUES (126, 599); INSERT INTO site_object VALUES (126, 600); INSERT INTO site_object VALUES (126, 601); INSERT INTO site_object VALUES (126, 602); INSERT INTO site_object VALUES (127, 603); INSERT INTO site_object VALUES (67, 605); INSERT INTO site_object VALUES (67, 604); INSERT INTO site_object VALUES (5, 348); INSERT INTO site_object VALUES (5, 350); INSERT INTO site_object VALUES (5, 351); INSERT INTO site_object VALUES (5, 353); INSERT INTO site_object VALUES (5, 354); INSERT INTO site_object VALUES (5, 356); INSERT INTO site_object VALUES (5, 358); INSERT INTO site_object VALUES (5, 360); INSERT INTO site_object VALUES (5, 361); INSERT INTO site_object VALUES (5, 362); INSERT INTO site_object VALUES (5, 363); INSERT INTO site_object VALUES (8, 364); INSERT INTO site_object VALUES (5, 365); INSERT INTO site_object VALUES (5, 366); INSERT INTO site_object VALUES (18, 367); INSERT INTO site_object VALUES (18, 368); INSERT INTO site_object VALUES (18, 370); INSERT INTO site_object VALUES (5, 369); INSERT INTO site_object VALUES (18, 371); INSERT INTO site_object VALUES (18, 372); INSERT INTO site_object VALUES (5, 373); INSERT INTO site_object VALUES (5, 374); INSERT INTO site_object VALUES (5, 375); INSERT INTO site_object VALUES (5, 376); INSERT INTO site_object VALUES (4, 377); INSERT INTO site_object VALUES (5, 378); INSERT INTO site_object VALUES (5, 379); INSERT INTO site_object VALUES (5, 380); INSERT INTO site_object VALUES (5, 381); INSERT INTO site_object VALUES (5, 382); INSERT INTO site_object VALUES (5, 383); INSERT INTO site_object VALUES (5, 384); INSERT INTO site_object VALUES (5, 385); INSERT INTO site_object VALUES (5, 386); INSERT INTO site_object VALUES (5, 387); INSERT INTO site_object VALUES (5, 388); INSERT INTO site_object VALUES (5, 389); INSERT INTO site_object VALUES (5, 390); INSERT INTO site_object VALUES (5, 391); INSERT INTO site_object VALUES (5, 392); INSERT INTO site_object VALUES (5, 396); INSERT INTO site_object VALUES (5, 393); INSERT INTO site_object VALUES (5, 399); INSERT INTO site_object VALUES (5, 400); INSERT INTO site_object VALUES (5, 401); INSERT INTO site_object VALUES (5, 402); INSERT INTO site_object VALUES (5, 403); INSERT INTO site_object VALUES (5, 404); INSERT INTO site_object VALUES (5, 405); INSERT INTO site_object VALUES (127, 606); INSERT INTO site_object VALUES (5, 406); INSERT INTO site_object VALUES (5, 407); INSERT INTO site_object VALUES (5, 408); INSERT INTO site_object VALUES (5, 409); INSERT INTO site_object VALUES (5, 410); INSERT INTO site_object VALUES (5, 411); INSERT INTO site_object VALUES (5, 412); INSERT INTO site_object VALUES (5, 413); INSERT INTO site_object VALUES (5, 414); INSERT INTO site_object VALUES (5, 416); INSERT INTO site_object VALUES (5, 417); INSERT INTO site_object VALUES (5, 418); INSERT INTO site_object VALUES (5, 419); INSERT INTO site_object VALUES (5, 420); INSERT INTO site_object VALUES (5, 421); INSERT INTO site_object VALUES (5, 422); INSERT INTO site_object VALUES (5, 423); INSERT INTO site_object VALUES (5, 424); INSERT INTO site_object VALUES (5, 425); INSERT INTO site_object VALUES (5, 426); INSERT INTO site_object VALUES (5, 427); INSERT INTO site_object VALUES (5, 428); INSERT INTO site_object VALUES (5, 429); INSERT INTO site_object VALUES (5, 430); INSERT INTO site_object VALUES (5, 431); INSERT INTO site_object VALUES (5, 432); INSERT INTO site_object VALUES (5, 433); INSERT INTO site_object VALUES (5, 434); INSERT INTO site_object VALUES (5, 435); INSERT INTO site_object VALUES (5, 436); INSERT INTO site_object VALUES (5, 437); INSERT INTO site_object VALUES (5, 438); INSERT INTO site_object VALUES (5, 439); INSERT INTO site_object VALUES (5, 440); INSERT INTO site_object VALUES (5, 441); INSERT INTO site_object VALUES (5, 442); INSERT INTO site_object VALUES (5, 443); INSERT INTO site_object VALUES (5, 444); INSERT INTO site_object VALUES (5, 445); INSERT INTO site_object VALUES (5, 446); INSERT INTO site_object VALUES (5, 447); INSERT INTO site_object VALUES (5, 448); INSERT INTO site_object VALUES (5, 449); INSERT INTO site_object VALUES (5, 450); INSERT INTO site_object VALUES (5, 451); INSERT INTO site_object VALUES (5, 452); INSERT INTO site_object VALUES (5, 453); INSERT INTO site_object VALUES (5, 454); INSERT INTO site_object VALUES (5, 455); INSERT INTO site_object VALUES (5, 456); INSERT INTO site_object VALUES (5, 457); INSERT INTO site_object VALUES (18, 458); INSERT INTO site_object VALUES (5, 460); INSERT INTO site_object VALUES (18, 461); INSERT INTO site_object VALUES (5, 462); INSERT INTO site_object VALUES (18, 463); INSERT INTO site_object VALUES (5, 464); INSERT INTO site_object VALUES (18, 465); INSERT INTO site_object VALUES (5, 466); INSERT INTO site_object VALUES (18, 467); INSERT INTO site_object VALUES (18, 468); INSERT INTO site_object VALUES (5, 469); INSERT INTO site_object VALUES (18, 470); INSERT INTO site_object VALUES (5, 471); INSERT INTO site_object VALUES (5, 472); INSERT INTO site_object VALUES (18, 473); INSERT INTO site_object VALUES (5, 474); INSERT INTO site_object VALUES (18, 475); INSERT INTO site_object VALUES (5, 476); INSERT INTO site_object VALUES (5, 415); INSERT INTO site_object VALUES (5, 477); INSERT INTO site_object VALUES (5, 478); INSERT INTO site_object VALUES (18, 479); INSERT INTO site_object VALUES (18, 480); INSERT INTO site_object VALUES (18, 482); INSERT INTO site_object VALUES (5, 481); INSERT INTO site_object VALUES (18, 483); INSERT INTO site_object VALUES (5, 484); INSERT INTO site_object VALUES (18, 485); INSERT INTO site_object VALUES (18, 486); INSERT INTO site_object VALUES (5, 487); INSERT INTO site_object VALUES (5, 488); INSERT INTO site_object VALUES (5, 489); INSERT INTO site_object VALUES (5, 490); INSERT INTO site_object VALUES (5, 491); INSERT INTO site_object VALUES (126, 492); INSERT INTO site_object VALUES (1, 493); INSERT INTO site_object VALUES (145, 494); INSERT INTO site_object VALUES (5, 495); INSERT INTO site_object VALUES (126, 496); INSERT INTO site_object VALUES (1, 496); INSERT INTO site_object VALUES (154, 496); INSERT INTO site_object VALUES (67, 496); INSERT INTO site_object VALUES (135, 497); INSERT INTO site_object VALUES (5, 498); INSERT INTO site_object VALUES (5, 499); INSERT INTO site_object VALUES (5, 500); INSERT INTO site_object VALUES (5, 501); INSERT INTO site_object VALUES (5, 502); INSERT INTO site_object VALUES (5, 503); INSERT INTO site_object VALUES (5, 504); INSERT INTO site_object VALUES (5, 505); INSERT INTO site_object VALUES (5, 506); INSERT INTO site_object VALUES (5, 507); INSERT INTO site_object VALUES (5, 508); INSERT INTO site_object VALUES (5, 509); INSERT INTO site_object VALUES (5, 511); INSERT INTO site_object VALUES (5, 512); INSERT INTO site_object VALUES (5, 513); INSERT INTO site_object VALUES (5, 514); INSERT INTO site_object VALUES (5, 515); INSERT INTO site_object VALUES (5, 516); INSERT INTO site_object VALUES (5, 517); INSERT INTO site_object VALUES (5, 518); INSERT INTO site_object VALUES (5, 519); INSERT INTO site_object VALUES (5, 520); INSERT INTO site_object VALUES (5, 521); INSERT INTO site_object VALUES (5, 522); INSERT INTO site_object VALUES (5, 523); INSERT INTO site_object VALUES (5, 524); INSERT INTO site_object VALUES (5, 525); INSERT INTO site_object VALUES (5, 526); INSERT INTO site_object VALUES (5, 527); INSERT INTO site_object VALUES (5, 528); INSERT INTO site_object VALUES (5, 529); INSERT INTO site_object VALUES (5, 530); INSERT INTO site_object VALUES (5, 531); INSERT INTO site_object VALUES (5, 532); INSERT INTO site_object VALUES (5, 533); INSERT INTO site_object VALUES (5, 534); INSERT INTO site_object VALUES (5, 535); INSERT INTO site_object VALUES (5, 536); INSERT INTO site_object VALUES (5, 537); INSERT INTO site_object VALUES (5, 538); INSERT INTO site_object VALUES (5, 539); INSERT INTO site_object VALUES (5, 540); INSERT INTO site_object VALUES (5, 541); INSERT INTO site_object VALUES (5, 542); INSERT INTO site_object VALUES (5, 543); INSERT INTO site_object VALUES (126, 544); INSERT INTO site_object VALUES (5, 545); INSERT INTO site_object VALUES (5, 546); INSERT INTO site_object VALUES (5, 547); INSERT INTO site_object VALUES (1, 549); INSERT INTO site_object VALUES (5, 550); INSERT INTO site_object VALUES (1, 551); INSERT INTO site_object VALUES (1, 552); INSERT INTO site_object VALUES (67, 553); INSERT INTO site_object VALUES (5, 554); INSERT INTO site_object VALUES (67, 555); INSERT INTO site_object VALUES (5, 556); INSERT INTO site_object VALUES (18, 557); INSERT INTO site_object VALUES (5, 558); INSERT INTO site_object VALUES (5, 559); INSERT INTO site_object VALUES (18, 559); INSERT INTO site_object VALUES (5, 560); INSERT INTO site_object VALUES (18, 561); INSERT INTO site_object VALUES (18, 562); INSERT INTO site_object VALUES (5, 563); INSERT INTO site_object VALUES (18, 564); INSERT INTO site_object VALUES (5, 565); INSERT INTO site_object VALUES (5, 566); INSERT INTO site_object VALUES (5, 567); INSERT INTO site_object VALUES (18, 568); INSERT INTO site_object VALUES (5, 569); INSERT INTO site_object VALUES (5, 570); INSERT INTO site_object VALUES (18, 571); INSERT INTO site_object VALUES (18, 572); INSERT INTO site_object VALUES (5, 573); INSERT INTO site_object VALUES (18, 574); INSERT INTO site_object VALUES (5, 575); INSERT INTO site_object VALUES (18, 576); INSERT INTO site_object VALUES (5, 577); INSERT INTO site_object VALUES (5, 578); INSERT INTO site_object VALUES (5, 579); INSERT INTO site_object VALUES (18, 580); INSERT INTO site_object VALUES (5, 581); INSERT INTO site_object VALUES (5, 7); INSERT INTO site_object VALUES (5, 8); INSERT INTO site_object VALUES (5, 9); INSERT INTO site_object VALUES (5, 12); INSERT INTO site_object VALUES (18, 12); INSERT INTO site_object VALUES (19, 12); INSERT INTO site_object VALUES (126, 12); INSERT INTO site_object VALUES (1, 12); INSERT INTO site_object VALUES (155, 12); INSERT INTO site_object VALUES (4, 12); INSERT INTO site_object VALUES (125, 12); INSERT INTO site_object VALUES (21, 12); INSERT INTO site_object VALUES (5, 14); INSERT INTO site_object VALUES (5, 15); INSERT INTO site_object VALUES (135, 16); INSERT INTO site_object VALUES (5, 16); INSERT INTO site_object VALUES (5, 17); INSERT INTO site_object VALUES (18, 21); INSERT INTO site_object VALUES (5, 21); INSERT INTO site_object VALUES (5, 22); INSERT INTO site_object VALUES (18, 25); INSERT INTO site_object VALUES (5, 27); INSERT INTO site_object VALUES (5, 28); INSERT INTO site_object VALUES (5, 30); INSERT INTO site_object VALUES (5, 32); INSERT INTO site_object VALUES (5, 34); INSERT INTO site_object VALUES (5, 35); INSERT INTO site_object VALUES (5, 36); INSERT INTO site_object VALUES (5, 38); INSERT INTO site_object VALUES (5, 42); INSERT INTO site_object VALUES (5, 43); INSERT INTO site_object VALUES (5, 46); INSERT INTO site_object VALUES (18, 48); INSERT INTO site_object VALUES (5, 47); INSERT INTO site_object VALUES (18, 49); INSERT INTO site_object VALUES (5, 49); INSERT INTO site_object VALUES (5, 50); INSERT INTO site_object VALUES (5, 53); INSERT INTO site_object VALUES (5, 57); INSERT INTO site_object VALUES (5, 59); INSERT INTO site_object VALUES (5, 62); INSERT INTO site_object VALUES (5, 66); INSERT INTO site_object VALUES (18, 66); INSERT INTO site_object VALUES (18, 67); INSERT INTO site_object VALUES (5, 73); INSERT INTO site_object VALUES (18, 68); INSERT INTO site_object VALUES (5, 92); INSERT INTO site_object VALUES (12, 95); INSERT INTO site_object VALUES (12, 91); INSERT INTO site_object VALUES (5, 93); INSERT INTO site_object VALUES (5, 96); INSERT INTO site_object VALUES (12, 97); INSERT INTO site_object VALUES (4, 99); INSERT INTO site_object VALUES (18, 99); INSERT INTO site_object VALUES (12, 100); INSERT INTO site_object VALUES (68, 82); INSERT INTO site_object VALUES (18, 10); INSERT INTO site_object VALUES (6, 11); INSERT INTO site_object VALUES (12, 102); INSERT INTO site_object VALUES (12, 103); INSERT INTO site_object VALUES (12, 104); INSERT INTO site_object VALUES (12, 109); INSERT INTO site_object VALUES (12, 111); INSERT INTO site_object VALUES (12, 113); INSERT INTO site_object VALUES (12, 114); INSERT INTO site_object VALUES (12, 119); INSERT INTO site_object VALUES (7, 118); INSERT INTO site_object VALUES (7, 121); INSERT INTO site_object VALUES (5, 121); INSERT INTO site_object VALUES (12, 120); INSERT INTO site_object VALUES (13, 120); INSERT INTO site_object VALUES (18, 611); INSERT INTO site_object VALUES (18, 612); INSERT INTO site_object VALUES (5, 613); INSERT INTO site_object VALUES (5, 614); INSERT INTO site_object VALUES (5, 615); INSERT INTO site_object VALUES (18, 615); INSERT INTO site_object VALUES (5, 616); INSERT INTO site_object VALUES (18, 617); INSERT INTO site_object VALUES (5, 618); INSERT INTO site_object VALUES (5, 619); INSERT INTO site_object VALUES (5, 620); INSERT INTO site_object VALUES (5, 621); INSERT INTO site_object VALUES (18, 622); INSERT INTO site_object VALUES (5, 623); INSERT INTO site_object VALUES (18, 624); INSERT INTO site_object VALUES (18, 625); INSERT INTO site_object VALUES (5, 626); INSERT INTO site_object VALUES (18, 627); INSERT INTO site_object VALUES (18, 628); INSERT INTO site_object VALUES (5, 629); INSERT INTO site_object VALUES (18, 630); INSERT INTO site_object VALUES (18, 631); INSERT INTO site_object VALUES (5, 632); INSERT INTO site_object VALUES (18, 633); INSERT INTO site_object VALUES (5, 634); INSERT INTO site_object VALUES (18, 635); INSERT INTO site_object VALUES (5, 636); INSERT INTO site_object VALUES (18, 637); INSERT INTO site_object VALUES (18, 638); INSERT INTO site_object VALUES (5, 639); INSERT INTO site_object VALUES (5, 640); INSERT INTO site_object VALUES (5, 642); INSERT INTO site_object VALUES (5, 643); INSERT INTO site_object VALUES (5, 645); INSERT INTO site_object VALUES (5, 646); INSERT INTO site_object VALUES (5, 644); INSERT INTO site_object VALUES (5, 647); INSERT INTO site_object VALUES (18, 647); INSERT INTO site_object VALUES (5, 648); INSERT INTO site_object VALUES (5, 649); INSERT INTO site_object VALUES (5, 651); INSERT INTO site_object VALUES (5, 652); INSERT INTO site_object VALUES (5, 653); INSERT INTO site_object VALUES (5, 654); INSERT INTO site_object VALUES (127, 655); INSERT INTO site_object VALUES (5, 656); INSERT INTO site_object VALUES (21, 657); INSERT INTO site_object VALUES (5, 658); INSERT INTO site_object VALUES (1, 659); INSERT INTO site_object VALUES (5, 660); INSERT INTO site_object VALUES (5, 661); INSERT INTO site_object VALUES (5, 664); INSERT INTO site_object VALUES (5, 666); INSERT INTO site_object VALUES (1, 666); INSERT INTO site_object VALUES (18, 666); INSERT INTO site_object VALUES (18, 667); INSERT INTO site_object VALUES (21, 668); INSERT INTO site_object VALUES (5, 669); INSERT INTO site_object VALUES (5, 670); INSERT INTO site_object VALUES (5, 671); INSERT INTO site_object VALUES (5, 672); INSERT INTO site_object VALUES (5, 673); INSERT INTO site_object VALUES (5, 674); INSERT INTO site_object VALUES (5, 675); INSERT INTO site_object VALUES (5, 676); INSERT INTO site_object VALUES (5, 677); INSERT INTO site_object VALUES (18, 677); INSERT INTO site_object VALUES (22, 677); INSERT INTO site_object VALUES (5, 678); INSERT INTO site_object VALUES (21, 679); INSERT INTO site_object VALUES (5, 680); INSERT INTO site_object VALUES (5, 681); INSERT INTO site_object VALUES (5, 682); INSERT INTO site_object VALUES (5, 684); INSERT INTO site_object VALUES (5, 685); INSERT INTO site_object VALUES (5, 686); INSERT INTO site_object VALUES (5, 687); INSERT INTO site_object VALUES (5, 688); INSERT INTO site_object VALUES (5, 689); INSERT INTO site_object VALUES (12, 692); INSERT INTO site_object VALUES (5, 693); INSERT INTO site_object VALUES (5, 694); INSERT INTO site_object VALUES (5, 695); INSERT INTO site_object VALUES (5, 696); INSERT INTO site_object VALUES (5, 697); INSERT INTO site_object VALUES (12, 698); INSERT INTO site_object VALUES (5, 699); INSERT INTO site_object VALUES (5, 700); INSERT INTO site_object VALUES (5, 701); INSERT INTO site_object VALUES (5, 702); INSERT INTO site_object VALUES (5, 703); INSERT INTO site_object VALUES (5, 705); INSERT INTO site_object VALUES (5, 704); INSERT INTO site_object VALUES (5, 706); INSERT INTO site_object VALUES (5, 707); INSERT INTO site_object VALUES (5, 709); INSERT INTO site_object VALUES (5, 710); INSERT INTO site_object VALUES (5, 711); INSERT INTO site_object VALUES (5, 712); INSERT INTO site_object VALUES (5, 713); INSERT INTO site_object VALUES (5, 714); INSERT INTO site_object VALUES (5, 715); INSERT INTO site_object VALUES (5, 716); INSERT INTO site_object VALUES (5, 718); INSERT INTO site_object VALUES (5, 719); INSERT INTO site_object VALUES (5, 720); INSERT INTO site_object VALUES (18, 721); INSERT INTO site_object VALUES (5, 722); INSERT INTO site_object VALUES (5, 723); INSERT INTO site_object VALUES (5, 724); INSERT INTO site_object VALUES (5, 725); INSERT INTO site_object VALUES (5, 726); INSERT INTO site_object VALUES (5, 727); INSERT INTO site_object VALUES (5, 728); INSERT INTO site_object VALUES (18, 729); INSERT INTO site_object VALUES (5, 731); INSERT INTO site_object VALUES (5, 732); INSERT INTO site_object VALUES (5, 733); INSERT INTO site_object VALUES (5, 734); INSERT INTO site_object VALUES (5, 735); INSERT INTO site_object VALUES (5, 736); INSERT INTO site_object VALUES (5, 737); INSERT INTO site_object VALUES (5, 738); INSERT INTO site_object VALUES (5, 739); INSERT INTO site_object VALUES (5, 740); INSERT INTO site_object VALUES (5, 741); INSERT INTO site_object VALUES (5, 742); INSERT INTO site_object VALUES (5, 743); INSERT INTO site_object VALUES (5, 744); INSERT INTO site_object VALUES (5, 746); INSERT INTO site_object VALUES (5, 747); INSERT INTO site_object VALUES (5, 748); INSERT INTO site_object VALUES (5, 749); INSERT INTO site_object VALUES (5, 750); INSERT INTO site_object VALUES (5, 751); INSERT INTO site_object VALUES (5, 752); INSERT INTO site_object VALUES (5, 753); INSERT INTO site_object VALUES (5, 754); INSERT INTO site_object VALUES (5, 755); INSERT INTO site_object VALUES (5, 756); INSERT INTO site_object VALUES (5, 757); INSERT INTO site_object VALUES (5, 758); INSERT INTO site_object VALUES (5, 759); INSERT INTO site_object VALUES (5, 760); INSERT INTO site_object VALUES (5, 761); INSERT INTO site_object VALUES (5, 762); INSERT INTO site_object VALUES (5, 763); INSERT INTO site_object VALUES (5, 764); INSERT INTO site_object VALUES (5, 765); INSERT INTO site_object VALUES (5, 766); INSERT INTO site_object VALUES (5, 767); INSERT INTO site_object VALUES (5, 768); INSERT INTO site_object VALUES (5, 769); INSERT INTO site_object VALUES (5, 770); INSERT INTO site_object VALUES (5, 771); INSERT INTO site_object VALUES (5, 772); INSERT INTO site_object VALUES (5, 773); INSERT INTO site_object VALUES (5, 774); INSERT INTO site_object VALUES (18, 775); INSERT INTO site_object VALUES (5, 776); INSERT INTO site_object VALUES (5, 777); INSERT INTO site_object VALUES (5, 778); INSERT INTO site_object VALUES (5, 779); INSERT INTO site_object VALUES (5, 780); INSERT INTO site_object VALUES (5, 781); INSERT INTO site_object VALUES (5, 782); INSERT INTO site_object VALUES (5, 783); INSERT INTO site_object VALUES (12, 785); INSERT INTO site_object VALUES (6, 789); INSERT INTO site_object VALUES (6, 791); INSERT INTO site_object VALUES (6, 793); INSERT INTO site_object VALUES (6, 794); INSERT INTO site_object VALUES (6, 797); INSERT INTO site_object VALUES (6, 798); INSERT INTO site_object VALUES (6, 799); INSERT INTO site_object VALUES (6, 800); INSERT INTO site_object VALUES (6, 801); INSERT INTO site_object VALUES (6, 802); INSERT INTO site_object VALUES (6, 804); INSERT INTO site_object VALUES (6, 805); INSERT INTO site_object VALUES (6, 806); INSERT INTO site_object VALUES (6, 807); INSERT INTO site_object VALUES (6, 809); INSERT INTO site_object VALUES (6, 810); INSERT INTO site_object VALUES (6, 812); INSERT INTO site_object VALUES (6, 813); INSERT INTO site_object VALUES (6, 814); INSERT INTO site_object VALUES (6, 815); INSERT INTO site_object VALUES (6, 816); INSERT INTO site_object VALUES (6, 817); INSERT INTO site_object VALUES (6, 818); INSERT INTO site_object VALUES (6, 820); INSERT INTO site_object VALUES (6, 819); INSERT INTO site_object VALUES (6, 821); INSERT INTO site_object VALUES (6, 822); INSERT INTO site_object VALUES (6, 823); INSERT INTO site_object VALUES (6, 824); INSERT INTO site_object VALUES (6, 826); INSERT INTO site_object VALUES (12, 827); INSERT INTO site_object VALUES (6, 828); INSERT INTO site_object VALUES (6, 829); INSERT INTO site_object VALUES (6, 830); INSERT INTO site_object VALUES (6, 832); INSERT INTO site_object VALUES (6, 833); INSERT INTO site_object VALUES (6, 834); INSERT INTO site_object VALUES (6, 835); INSERT INTO site_object VALUES (12, 836); INSERT INTO site_object VALUES (12, 838); INSERT INTO site_object VALUES (68, 844); INSERT INTO site_object VALUES (68, 845); INSERT INTO site_object VALUES (12, 124); INSERT INTO site_object VALUES (68, 846); INSERT INTO site_object VALUES (68, 847); INSERT INTO site_object VALUES (1, 848); INSERT INTO site_object VALUES (1, 849); INSERT INTO site_object VALUES (1, 850); INSERT INTO site_object VALUES (1, 851); INSERT INTO site_object VALUES (5, 853); INSERT INTO site_object VALUES (12, 854); INSERT INTO site_object VALUES (68, 856); INSERT INTO site_object VALUES (68, 857); INSERT INTO site_object VALUES (12, 858); INSERT INTO site_object VALUES (68, 859); INSERT INTO site_object VALUES (12, 860); INSERT INTO site_object VALUES (68, 861); INSERT INTO site_object VALUES (12, 862); INSERT INTO site_object VALUES (12, 864); INSERT INTO site_object VALUES (12, 865); INSERT INTO site_object VALUES (6, 866); INSERT INTO site_object VALUES (12, 867); INSERT INTO site_object VALUES (12, 868); INSERT INTO site_object VALUES (5, 869); INSERT INTO site_object VALUES (12, 870); INSERT INTO site_object VALUES (12, 872); INSERT INTO site_object VALUES (12, 873); INSERT INTO site_object VALUES (12, 874); INSERT INTO site_object VALUES (126, 875); INSERT INTO site_object VALUES (12, 876); INSERT INTO site_object VALUES (12, 877); INSERT INTO site_object VALUES (18, 878); INSERT INTO site_object VALUES (12, 879); INSERT INTO site_object VALUES (12, 880); INSERT INTO site_object VALUES (6, 881); INSERT INTO site_object VALUES (12, 882); INSERT INTO site_object VALUES (12, 883); INSERT INTO site_object VALUES (12, 884); INSERT INTO site_object VALUES (12, 888); INSERT INTO site_object VALUES (8, 889); INSERT INTO site_object VALUES (12, 890); INSERT INTO site_object VALUES (5, 891); INSERT INTO site_object VALUES (5, 892); INSERT INTO site_object VALUES (12, 893); INSERT INTO site_object VALUES (156, 894); INSERT INTO site_object VALUES (12, 895); INSERT INTO site_object VALUES (12, 897); INSERT INTO site_object VALUES (12, 898); INSERT INTO site_object VALUES (12, 899); INSERT INTO site_object VALUES (12, 900); INSERT INTO site_object VALUES (12, 901); INSERT INTO site_object VALUES (12, 902); INSERT INTO site_object VALUES (5, 903); INSERT INTO site_object VALUES (12, 904); INSERT INTO site_object VALUES (12, 905); INSERT INTO site_object VALUES (5, 906); INSERT INTO site_object VALUES (12, 907); INSERT INTO site_object VALUES (5, 908); INSERT INTO site_object VALUES (12, 909); INSERT INTO site_object VALUES (12, 911); INSERT INTO site_object VALUES (12, 912); INSERT INTO site_object VALUES (12, 913); INSERT INTO site_object VALUES (5, 914); INSERT INTO site_object VALUES (12, 915); INSERT INTO site_object VALUES (5, 916); INSERT INTO site_object VALUES (5, 910); INSERT INTO site_object VALUES (12, 917); INSERT INTO site_object VALUES (12, 919); INSERT INTO site_object VALUES (12, 920); INSERT INTO site_object VALUES (5, 921); INSERT INTO site_object VALUES (5, 922); INSERT INTO site_object VALUES (12, 923); INSERT INTO site_object VALUES (5, 924); INSERT INTO site_object VALUES (5, 925); INSERT INTO site_object VALUES (6, 927); INSERT INTO site_object VALUES (6, 928); INSERT INTO site_object VALUES (5, 929); INSERT INTO site_object VALUES (6, 930); INSERT INTO site_object VALUES (5, 931); INSERT INTO site_object VALUES (6, 932); INSERT INTO site_object VALUES (6, 934); INSERT INTO site_object VALUES (5, 935); INSERT INTO site_object VALUES (5, 936); INSERT INTO site_object VALUES (5, 937); INSERT INTO site_object VALUES (5, 938); INSERT INTO site_object VALUES (5, 939); INSERT INTO site_object VALUES (5, 941); INSERT INTO site_object VALUES (5, 945); INSERT INTO site_object VALUES (18, 947); INSERT INTO site_object VALUES (18, 948); INSERT INTO site_object VALUES (18, 946); INSERT INTO site_object VALUES (18, 949); INSERT INTO site_object VALUES (18, 950); INSERT INTO site_object VALUES (18, 951); INSERT INTO site_object VALUES (18, 952); INSERT INTO site_object VALUES (12, 122); INSERT INTO site_object VALUES (18, 123); INSERT INTO site_object VALUES (5, 123); INSERT INTO site_object VALUES (12, 112); INSERT INTO site_object VALUES (5, 148); INSERT INTO site_object VALUES (5, 149); INSERT INTO site_object VALUES (5, 151); INSERT INTO site_object VALUES (5, 152); INSERT INTO site_object VALUES (5, 156); INSERT INTO site_object VALUES (7, 155); INSERT INTO site_object VALUES (6, 158); INSERT INTO site_object VALUES (125, 166); INSERT INTO site_object VALUES (5, 178); INSERT INTO site_object VALUES (5, 177); INSERT INTO site_object VALUES (7, 180); INSERT INTO site_object VALUES (5, 181); INSERT INTO site_object VALUES (5, 182); INSERT INTO site_object VALUES (5, 185); INSERT INTO site_object VALUES (5, 187); INSERT INTO site_object VALUES (5, 943); INSERT INTO site_object VALUES (5, 188); INSERT INTO site_object VALUES (5, 190); INSERT INTO site_object VALUES (22, 191); INSERT INTO site_object VALUES (4, 191); INSERT INTO site_object VALUES (5, 192); INSERT INTO site_object VALUES (5, 193); INSERT INTO site_object VALUES (125, 194); INSERT INTO site_object VALUES (19, 194); INSERT INTO site_object VALUES (5, 926); INSERT INTO site_object VALUES (5, 918); INSERT INTO site_object VALUES (6, 207); INSERT INTO site_object VALUES (5, 944); INSERT INTO site_object VALUES (149, 217); INSERT INTO site_object VALUES (67, 223); INSERT INTO site_object VALUES (126, 229); INSERT INTO site_object VALUES (67, 229); INSERT INTO site_object VALUES (157, 235); INSERT INTO site_object VALUES (68, 871); INSERT INTO site_object VALUES (6, 236); INSERT INTO site_object VALUES (155, 606); INSERT INTO site_object VALUES (5, 41); INSERT INTO site_object VALUES (5, 63); INSERT INTO site_object VALUES (5, 65); INSERT INTO site_object VALUES (4, 87); INSERT INTO site_object VALUES (7, 87); INSERT INTO site_object VALUES (5, 86); INSERT INTO site_object VALUES (4, 165); INSERT INTO site_object VALUES (19, 165); INSERT INTO site_object VALUES (21, 165); INSERT INTO site_object VALUES (127, 165); INSERT INTO site_object VALUES (67, 165); INSERT INTO site_object VALUES (126, 165); INSERT INTO site_object VALUES (1, 165); INSERT INTO site_object VALUES (125, 165); INSERT INTO site_object VALUES (7, 165); INSERT INTO site_object VALUES (149, 165); INSERT INTO site_object VALUES (157, 165); INSERT INTO site_object VALUES (155, 165); INSERT INTO site_object VALUES (5, 191); INSERT INTO site_object VALUES (5, 101); INSERT INTO site_object VALUES (5, 955); INSERT INTO site_object VALUES (12, 956); INSERT INTO site_object VALUES (12, 957); INSERT INTO site_object VALUES (12, 958); INSERT INTO site_object VALUES (12, 959); INSERT INTO site_object VALUES (12, 960); INSERT INTO site_object VALUES (12, 961); INSERT INTO site_object VALUES (12, 962); INSERT INTO site_object VALUES (12, 963); INSERT INTO site_object VALUES (12, 964); INSERT INTO site_object VALUES (1, 966); INSERT INTO site_object VALUES (16, 967); INSERT INTO site_object VALUES (18, 967); INSERT INTO site_object VALUES (1, 352); INSERT INTO site_object VALUES (12, 968); INSERT INTO site_object VALUES (12, 969); INSERT INTO site_object VALUES (12, 970); INSERT INTO site_object VALUES (12, 971); INSERT INTO site_object VALUES (12, 972); INSERT INTO site_object VALUES (12, 973); INSERT INTO site_object VALUES (12, 974); INSERT INTO site_object VALUES (12, 975); INSERT INTO site_object VALUES (12, 976); INSERT INTO site_object VALUES (12, 977); INSERT INTO site_object VALUES (12, 978); INSERT INTO site_object VALUES (12, 979); INSERT INTO site_object VALUES (12, 980); INSERT INTO site_object VALUES (12, 981); INSERT INTO site_object VALUES (12, 982); INSERT INTO site_object VALUES (12, 983); INSERT INTO site_object VALUES (12, 984); INSERT INTO site_object VALUES (5, 985); INSERT INTO site_object VALUES (5, 641); INSERT INTO site_object VALUES (5, 150); INSERT INTO site_object VALUES (5, 52); INSERT INTO site_object VALUES (135, 189); INSERT INTO site_object VALUES (5, 597); INSERT INTO site_object VALUES (5, 989); INSERT INTO site_object VALUES (5, 990); INSERT INTO site_object VALUES (5, 991); INSERT INTO site_object VALUES (8, 992); INSERT INTO site_object VALUES (8, 993); INSERT INTO site_object VALUES (8, 994); INSERT INTO site_object VALUES (8, 995); INSERT INTO site_object VALUES (8, 996); INSERT INTO site_object VALUES (5, 997); INSERT INTO site_object VALUES (5, 998); INSERT INTO site_object VALUES (5, 999); INSERT INTO site_object VALUES (5, 1000); INSERT INTO site_object VALUES (5, 1001); INSERT INTO site_object VALUES (5, 1005); INSERT INTO site_object VALUES (5, 1006); INSERT INTO site_object VALUES (5, 1008); INSERT INTO site_object VALUES (5, 1009); INSERT INTO site_object VALUES (5, 1010); INSERT INTO site_object VALUES (5, 1011); INSERT INTO site_object VALUES (5, 1012); INSERT INTO site_object VALUES (18, 1013); INSERT INTO site_object VALUES (5, 1013); INSERT INTO site_object VALUES (4, 1013); INSERT INTO site_object VALUES (5, 1014); INSERT INTO site_object VALUES (5, 1015); INSERT INTO site_object VALUES (5, 45); INSERT INTO site_object VALUES (5, 1016); INSERT INTO site_object VALUES (5, 1017); INSERT INTO site_object VALUES (5, 1018); INSERT INTO site_object VALUES (5, 1019); INSERT INTO site_object VALUES (5, 1020); INSERT INTO site_object VALUES (5, 1021); INSERT INTO site_object VALUES (5, 1022); INSERT INTO site_object VALUES (5, 1023); INSERT INTO site_object VALUES (5, 1024); INSERT INTO site_object VALUES (5, 1026); INSERT INTO site_object VALUES (5, 1027); INSERT INTO site_object VALUES (5, 1028); INSERT INTO site_object VALUES (5, 1029); INSERT INTO site_object VALUES (5, 1025); INSERT INTO site_object VALUES (5, 1030); INSERT INTO site_object VALUES (5, 1031); INSERT INTO site_object VALUES (5, 1033); INSERT INTO site_object VALUES (12, 683); INSERT INTO site_object VALUES (12, 1035); INSERT INTO site_object VALUES (12, 1036); INSERT INTO site_object VALUES (12, 1037); INSERT INTO site_object VALUES (12, 1038); INSERT INTO site_object VALUES (5, 1039); INSERT INTO site_object VALUES (8, 1040); INSERT INTO site_object VALUES (8, 1041); INSERT INTO site_object VALUES (5, 1042); INSERT INTO site_object VALUES (14, 1044); INSERT INTO site_object VALUES (13, 1044); INSERT INTO site_object VALUES (8, 1045); INSERT INTO site_object VALUES (8, 1046); INSERT INTO site_object VALUES (5, 1047); INSERT INTO site_object VALUES (1, 1048); INSERT INTO site_object VALUES (7, 1049); INSERT INTO site_object VALUES (5, 1051); INSERT INTO site_object VALUES (1, 1051); INSERT INTO site_object VALUES (5, 1052); INSERT INTO site_object VALUES (5, 1053); INSERT INTO site_object VALUES (5, 1054); INSERT INTO site_object VALUES (5, 1055); INSERT INTO site_object VALUES (5, 1056); INSERT INTO site_object VALUES (5, 1057); INSERT INTO site_object VALUES (4, 1057); INSERT INTO site_object VALUES (8, 1058); -- -- Data for TOC entry 96 (OID 561336) -- Name: person_project; Type: TABLE DATA; Schema: public; Owner: rwb3y -- INSERT INTO person_project VALUES (129, 69, 2, 0, 0, 1, 0, 0, '1975', NULL); INSERT INTO person_project VALUES (131, 71, 2, 0, 0, 0, 0, 1, '1976-1982', NULL); INSERT INTO person_project VALUES (132, 72, 2, 0, 0, 0, 0, 1, '1983-1990', NULL); INSERT INTO person_project VALUES (133, 73, 2, 0, 0, 0, 0, 1, '1971', NULL); INSERT INTO person_project VALUES (134, 74, 2, 0, 0, 0, 0, 1, '1975-1977', NULL); INSERT INTO person_project VALUES (135, 75, 2, 0, 0, 0, 0, 1, '1980-1985', NULL); INSERT INTO person_project VALUES (136, 76, 2, 0, 0, 0, 0, 1, '1982', NULL); INSERT INTO person_project VALUES (137, 77, 2, 0, 0, 0, 0, 1, '1976', NULL); INSERT INTO person_project VALUES (138, 78, 2, 0, 0, 0, 0, 1, '1973-1976', NULL); INSERT INTO person_project VALUES (141, 81, 2, 0, 0, 0, 0, 1, '1973, 1976', NULL); INSERT INTO person_project VALUES (142, 82, 2, 0, 0, 0, 0, 1, '1973', NULL); INSERT INTO person_project VALUES (144, 84, 2, 0, 0, 0, 0, 1, '1974', NULL); INSERT INTO person_project VALUES (146, 85, 2, 0, 0, 0, 0, 1, '1984', NULL); INSERT INTO person_project VALUES (147, 86, 2, 0, 0, 0, 0, 1, '1973', NULL); INSERT INTO person_project VALUES (145, 87, 2, 0, 0, 0, 0, 1, '1983', NULL); INSERT INTO person_project VALUES (148, 89, 2, 0, 0, 1, 0, 0, '1977', NULL); INSERT INTO person_project VALUES (149, 90, 2, 0, 0, 1, 0, 0, '1982-1983', NULL); INSERT INTO person_project VALUES (151, 91, 2, 0, 0, 1, 0, 0, '1984', NULL); INSERT INTO person_project VALUES (152, 88, 2, 0, 0, 0, 0, 1, '1982', NULL); INSERT INTO person_project VALUES (156, 92, 2, 0, 0, 0, 0, 1, '1982-1985', NULL); INSERT INTO person_project VALUES (154, 96, 2, 0, 0, 1, 0, 0, '1972', NULL); INSERT INTO person_project VALUES (155, 94, 2, 0, 0, 0, 0, 1, '1977', NULL); INSERT INTO person_project VALUES (150, 95, 2, 0, 0, 0, 0, 1, '1977-1978', NULL); INSERT INTO person_project VALUES (159, 99, 2, 0, 0, 0, 0, 1, '1978', NULL); INSERT INTO person_project VALUES (163, 41, 2, 0, 0, 0, 0, 1, '1974-1976', NULL); INSERT INTO person_project VALUES (165, 42, 2, 0, 0, 0, 0, 1, '1976-1978', NULL); INSERT INTO person_project VALUES (161, 40, 2, 0, 0, 1, 0, 0, '1979', NULL); INSERT INTO person_project VALUES (164, 45, 2, 0, 0, 0, 0, 1, '1992-1996', NULL); INSERT INTO person_project VALUES (160, 44, 2, 0, 0, 0, 0, 1, '1975', NULL); INSERT INTO person_project VALUES (125, 38, 2, 0, 0, 0, 0, 1, '1976', NULL); INSERT INTO person_project VALUES (170, 46, 2, 0, 0, 0, 0, 1, '1980', NULL); INSERT INTO person_project VALUES (168, 47, 2, 0, 0, 0, 0, 1, '1983', NULL); INSERT INTO person_project VALUES (169, 48, 2, 0, 0, 0, 0, 1, '1976', NULL); INSERT INTO person_project VALUES (166, 49, 2, 0, 0, 0, 0, 1, '1983', NULL); INSERT INTO person_project VALUES (167, 50, 2, 0, 0, 0, 0, 1, '1983', NULL); INSERT INTO person_project VALUES (172, 51, 2, 0, 0, 0, 0, 1, '1977', NULL); INSERT INTO person_project VALUES (171, 52, 2, 0, 0, 0, 0, 1, '1982', NULL); INSERT INTO person_project VALUES (176, 53, 2, 0, 0, 0, 0, 1, '1983', NULL); INSERT INTO person_project VALUES (175, 54, 2, 0, 0, 0, 0, 1, '1974', NULL); INSERT INTO person_project VALUES (173, 55, 2, 0, 0, 0, 0, 1, '1974', NULL); INSERT INTO person_project VALUES (174, 56, 2, 0, 0, 0, 0, 1, NULL, NULL); INSERT INTO person_project VALUES (181, 58, 2, 0, 0, 0, 0, 1, '1985-1989?', NULL); INSERT INTO person_project VALUES (177, 59, 2, 0, 0, 0, 0, 1, '1974', NULL); INSERT INTO person_project VALUES (185, 60, 2, 0, 0, 0, 0, 1, '1974', NULL); INSERT INTO person_project VALUES (183, 61, 2, 0, 0, 0, 0, 1, '1974', NULL); INSERT INTO person_project VALUES (184, 62, 2, 0, 0, 0, 0, 1, '1974', NULL); INSERT INTO person_project VALUES (186, 68, 2, 0, 0, 0, 0, 1, '1973-1976', NULL); INSERT INTO person_project VALUES (179, 63, 2, 0, 0, 0, 0, 1, '1974', NULL); INSERT INTO person_project VALUES (180, 64, 2, 0, 0, 0, 0, 1, '1974', NULL); INSERT INTO person_project VALUES (178, 65, 2, 0, 0, 0, 0, 1, '1974', NULL); INSERT INTO person_project VALUES (189, 100, 2, 0, 0, 1, 0, 0, '1977', NULL); INSERT INTO person_project VALUES (190, 105, 2, 0, 0, 0, 0, 1, '1974', NULL); INSERT INTO person_project VALUES (192, 103, 2, 0, 0, 1, 0, 0, '1972/3-1984', NULL); INSERT INTO person_project VALUES (193, 104, 2, 0, 0, 0, 0, 1, '1974', NULL); INSERT INTO person_project VALUES (195, 107, 2, 0, 0, 0, 0, 1, '1973', NULL); INSERT INTO person_project VALUES (206, 108, 2, 0, 0, 0, 0, 1, '1976', NULL); INSERT INTO person_project VALUES (202, 106, 2, 0, 0, 0, 0, 1, '1975-1976', NULL); INSERT INTO person_project VALUES (196, 111, 2, 0, 0, 0, 0, 1, '1974', NULL); INSERT INTO person_project VALUES (203, 117, 2, 0, 0, 0, 0, 1, '1975-1978', NULL); INSERT INTO person_project VALUES (198, 112, 2, 0, 0, 0, 0, 1, '1974', NULL); INSERT INTO person_project VALUES (204, 113, 2, 0, 0, 0, 0, 1, '1973-1975', NULL); INSERT INTO person_project VALUES (205, 114, 2, 0, 0, 0, 0, 1, '1976-1977', NULL); INSERT INTO person_project VALUES (201, 116, 2, 0, 0, 1, 0, 0, '1984', NULL); INSERT INTO person_project VALUES (210, 120, 2, 0, 0, 0, 0, 1, '1983', NULL); INSERT INTO person_project VALUES (215, 18, 2, 0, 0, 0, 0, 1, '1972', NULL); INSERT INTO person_project VALUES (216, 122, 2, 0, 0, 0, 0, 1, '1982', NULL); INSERT INTO person_project VALUES (207, 123, 2, 0, 0, 0, 0, 1, '1977', NULL); INSERT INTO person_project VALUES (213, 118, 2, 0, 0, 0, 0, 1, '1985-1986', NULL); INSERT INTO person_project VALUES (212, 124, 2, 0, 0, 0, 0, 1, '1976-1978', NULL); INSERT INTO person_project VALUES (208, 130, 2, 0, 0, 1, 0, 0, '1975-1976', NULL); INSERT INTO person_project VALUES (209, 126, 2, 0, 0, 0, 0, 1, '1984', NULL); INSERT INTO person_project VALUES (218, 127, 2, 0, 0, 0, 0, 1, '1982', NULL); INSERT INTO person_project VALUES (217, 128, 2, 0, 0, 0, 0, 1, '1972-1975', NULL); INSERT INTO person_project VALUES (219, 129, 2, 0, 0, 0, 0, 1, '1984', NULL); INSERT INTO person_project VALUES (182, 66, 2, 0, 0, 0, 0, 1, '1978', NULL); INSERT INTO person_project VALUES (222, 210, 2, 0, 0, 0, 0, 1, '1976-1977', NULL); INSERT INTO person_project VALUES (224, 211, 2, 0, 0, 0, 0, 1, '1983-1985', NULL); INSERT INTO person_project VALUES (221, 212, 2, 0, 0, 0, 1, 0, '1972-1973', NULL); INSERT INTO person_project VALUES (223, 213, 2, 0, 0, 0, 0, 1, '1984', NULL); INSERT INTO person_project VALUES (227, 215, 2, 0, 0, 1, 0, 0, '1979, 1982-present', NULL); INSERT INTO person_project VALUES (225, 216, 2, 0, 0, 0, 0, 1, '1986-1990', NULL); INSERT INTO person_project VALUES (226, 217, 2, 0, 0, 0, 0, 1, '1974', NULL); INSERT INTO person_project VALUES (232, 219, 2, 0, 0, 0, 0, 1, '1974-1976', NULL); INSERT INTO person_project VALUES (233, 220, 2, 0, 0, 0, 0, 1, '1976-1977', NULL); INSERT INTO person_project VALUES (234, 221, 2, 0, 0, 0, 0, 1, '1973-1975', NULL); INSERT INTO person_project VALUES (230, 222, 2, 0, 0, 0, 0, 1, '1976', NULL); INSERT INTO person_project VALUES (231, 223, 2, 0, 0, 1, 0, 0, '1976-1977', NULL); INSERT INTO person_project VALUES (237, 225, 2, 0, 0, 0, 0, 1, '1973', NULL); INSERT INTO person_project VALUES (248, 226, 2, 0, 0, 0, 0, 1, '1973-1974', NULL); INSERT INTO person_project VALUES (244, 227, 2, 0, 0, 0, 0, 1, '1971', NULL); INSERT INTO person_project VALUES (240, 228, 2, 0, 0, 0, 0, 1, '1982', NULL); INSERT INTO person_project VALUES (239, 229, 2, 0, 0, 1, 0, 0, '1982-1985', NULL); INSERT INTO person_project VALUES (236, 224, 2, 0, 0, 0, 0, 1, '1976-1983', NULL); INSERT INTO person_project VALUES (246, 230, 2, 0, 0, 0, 0, 1, '1979', NULL); INSERT INTO person_project VALUES (243, 238, 2, 0, 0, 0, 0, 1, '1974', NULL); INSERT INTO person_project VALUES (235, 231, 2, 0, 0, 0, 0, 1, '1976', NULL); INSERT INTO person_project VALUES (238, 232, 2, 0, 0, 0, 0, 1, '1976-1977', NULL); INSERT INTO person_project VALUES (249, 234, 2, 0, 0, 0, 0, 1, '1976-1994', NULL); INSERT INTO person_project VALUES (241, 235, 2, 0, 0, 1, 0, 0, '1973-1976', NULL); INSERT INTO person_project VALUES (247, 236, 2, 0, 0, 0, 0, 1, '1977', NULL); INSERT INTO person_project VALUES (245, 237, 2, 0, 0, 0, 0, 1, '1973-1976', NULL); INSERT INTO person_project VALUES (254, 131, 2, 0, 0, 0, 0, 1, '1976', NULL); INSERT INTO person_project VALUES (253, 134, 2, 0, 0, 0, 0, 1, '1978', NULL); INSERT INTO person_project VALUES (259, 136, 2, 0, 0, 0, 0, 1, '1982', NULL); INSERT INTO person_project VALUES (260, 137, 2, 0, 0, 0, 0, 1, '1975-1977', NULL); INSERT INTO person_project VALUES (258, 138, 2, 0, 0, 1, 0, 0, '1973-1974', NULL); INSERT INTO person_project VALUES (274, 142, 2, 0, 0, 0, 0, 1, '1976', NULL); INSERT INTO person_project VALUES (267, 143, 2, 0, 0, 0, 0, 1, '1982', NULL); INSERT INTO person_project VALUES (268, 145, 2, 0, 0, 0, 0, 1, '1982', NULL); INSERT INTO person_project VALUES (269, 140, 2, 0, 0, 0, 0, 1, '1974', NULL); INSERT INTO person_project VALUES (273, 148, 2, 0, 0, 0, 0, 1, '1975', NULL); INSERT INTO person_project VALUES (265, 149, 2, 0, 0, 0, 0, 1, '1974', NULL); INSERT INTO person_project VALUES (264, 150, 2, 0, 0, 1, 0, 0, '1974-1975', NULL); INSERT INTO person_project VALUES (266, 151, 2, 0, 0, 0, 0, 1, '1991-1992', NULL); INSERT INTO person_project VALUES (229, 218, 2, 1, 0, 1, 0, 0, '1974-1985', 'Ecologist, Archaeologist, Chief (1978-1985)'); INSERT INTO person_project VALUES (252, 133, 2, 0, 1, 1, 0, 0, '1969-1981?', 'Geologist/Supv. Archaeologist, Chief RS 1974-81'); INSERT INTO person_project VALUES (139, 79, 2, 0, 0, 0, 0, 1, '1972', 'Survey Archaeologist'); INSERT INTO person_project VALUES (140, 80, 2, 0, 0, 0, 0, 1, '1972-1973', 'Survey Archaeologist'); INSERT INTO person_project VALUES (157, 97, 2, 0, 0, 0, 0, 1, '1977-1978, 1980-1981', 'RS geographer'); INSERT INTO person_project VALUES (158, 98, 2, 0, 0, 0, 0, 1, '1974-1976', 'Ethnologist'); INSERT INTO person_project VALUES (162, 43, 2, 0, 0, 0, 0, 1, '1976', 'Laboratory'); INSERT INTO person_project VALUES (187, 31, 2, 0, 0, 0, 0, 1, '1972', 'Survey Archaeologist'); INSERT INTO person_project VALUES (188, 67, 2, 0, 0, 0, 0, 1, '1980-1983', 'RS Geographer'); INSERT INTO person_project VALUES (191, 101, 2, 0, 0, 0, 0, 1, '1982-1983', 'Computer programmer'); INSERT INTO person_project VALUES (194, 102, 2, 0, 1, 1, 0, 1, '1975-1985', 'RS Archaeologist Chief (1984-1985)'); INSERT INTO person_project VALUES (200, 26, 2, 0, 0, 0, 0, 1, '1977-1978', 'RS Ethnologist'); INSERT INTO person_project VALUES (197, 110, 2, 0, 0, 0, 0, 1, '1972', 'Survey Archaeologist'); INSERT INTO person_project VALUES (214, 119, 2, 0, 0, 0, 0, 1, '1979-1980', 'RS Geologist'); INSERT INTO person_project VALUES (242, 233, 2, 1, 1, 0, 0, 1, '1971-1978', 'Director/Chief'); INSERT INTO person_project VALUES (251, 23, 2, 0, 0, 0, 0, 1, '1972', 'Geologist'); INSERT INTO person_project VALUES (261, 135, 2, 0, 0, 0, 0, 1, '1974', 'Geologist'); INSERT INTO person_project VALUES (256, 139, 2, 0, 1, 1, 0, 0, '1973-1978', 'Supervisory Archaeologist'); INSERT INTO person_project VALUES (263, 141, 2, 0, 0, 0, 0, 1, '1972-1973', 'Survey Archaeologist'); INSERT INTO person_project VALUES (272, 147, 2, 0, 0, 1, 0, 1, '1976-1977', 'Archaeologist, Photographer'); INSERT INTO person_project VALUES (278, 152, 2, 0, 0, 1, 0, 0, '1972-1976', NULL); INSERT INTO person_project VALUES (275, 153, 2, 0, 0, 0, 0, 1, '1973-1976', NULL); INSERT INTO person_project VALUES (276, 154, 2, 0, 1, 0, 0, 1, '1985-1995', 'Chief'); INSERT INTO person_project VALUES (277, 22, 2, 0, 0, 1, 0, 0, '1976-1979', NULL); INSERT INTO person_project VALUES (279, 156, 2, 0, 0, 0, 0, 1, '1972', 'RS Technician'); INSERT INTO person_project VALUES (280, 157, 2, 0, 0, 0, 0, 1, '1982', NULL); INSERT INTO person_project VALUES (283, 182, 2, 0, 0, 0, 0, 1, '1972-1975', 'Administrative Officer'); INSERT INTO person_project VALUES (284, 184, 2, 0, 0, 0, 0, 1, '1977-1978', NULL); INSERT INTO person_project VALUES (282, 185, 2, 0, 0, 1, 0, 0, '1972', NULL); INSERT INTO person_project VALUES (285, 186, 2, 0, 0, 0, 0, 1, '1980-1983', 'RS Geographer'); INSERT INTO person_project VALUES (290, 181, 2, 0, 0, 0, 0, 1, '1973', 'Museum Aid'); INSERT INTO person_project VALUES (287, 187, 2, 0, 0, 0, 0, 1, '1971-1973', 'Clerk Typist/Archaeology Technician'); INSERT INTO person_project VALUES (288, 193, 2, 0, 0, 0, 0, 1, '1972', NULL); INSERT INTO person_project VALUES (289, 188, 2, 0, 0, 0, 0, 1, '1977', NULL); INSERT INTO person_project VALUES (295, 189, 2, 0, 0, 0, 0, 1, '1976-1984', 'Archival Technician/Archivist'); INSERT INTO person_project VALUES (291, 190, 2, 0, 0, 0, 0, 1, '1981', NULL); INSERT INTO person_project VALUES (292, 191, 2, 0, 0, 1, 0, 0, '1976', NULL); INSERT INTO person_project VALUES (293, 192, 2, 0, 0, 0, 0, 1, '1978', NULL); INSERT INTO person_project VALUES (302, 195, 2, 0, 0, 0, 0, 1, '1971-1973', 'RS Museum Technician'); INSERT INTO person_project VALUES (312, 196, 2, 0, 0, 0, 0, 1, '1976', NULL); INSERT INTO person_project VALUES (309, 197, 2, 0, 0, 0, 0, 1, '1983-1985', 'computer programmer'); INSERT INTO person_project VALUES (299, 198, 2, 0, 0, 0, 0, 1, '1983', NULL); INSERT INTO person_project VALUES (305, 199, 2, 0, 0, 0, 0, 1, '1971-1972', 'Survey Archaeologist'); INSERT INTO person_project VALUES (307, 200, 2, 0, 0, 0, 0, 1, '1972', 'Survey Archaeologist'); INSERT INTO person_project VALUES (300, 201, 2, 0, 0, 0, 0, 1, '1984-1985', 'clerk'); INSERT INTO person_project VALUES (304, 194, 2, 0, 0, 0, 0, 1, '1971-1972', 'Museum Technician'); INSERT INTO person_project VALUES (301, 202, 2, 0, 0, 1, 0, 0, '1984', NULL); INSERT INTO person_project VALUES (308, 209, 2, 0, 0, 0, 0, 1, '1975', 'Translator'); INSERT INTO person_project VALUES (298, 204, 2, 0, 0, 1, 0, 1, '1973', 'Volunteer Archaeologist'); INSERT INTO person_project VALUES (306, 205, 2, 0, 0, 0, 0, 1, '1972', 'Survey Archaeologist'); INSERT INTO person_project VALUES (297, 206, 2, 0, 0, 0, 0, 1, '1970', 'RS staff'); INSERT INTO person_project VALUES (311, 207, 2, 0, 0, 0, 0, 1, '1972-1973', 'Survey Archaeologist'); INSERT INTO person_project VALUES (322, 160, 2, 0, 0, 0, 0, 1, '1975-1978, 1982', NULL); INSERT INTO person_project VALUES (327, 161, 2, 0, 0, 0, 0, 1, '1980', 'RS typist'); INSERT INTO person_project VALUES (319, 162, 2, 0, 0, 0, 0, 1, '1985', 'Publications Typist'); INSERT INTO person_project VALUES (323, 163, 2, 0, 0, 0, 0, 1, '1984-1985', 'Archivist'); INSERT INTO person_project VALUES (328, 164, 2, 0, 0, 1, 0, 0, '1978-1980', NULL); INSERT INTO person_project VALUES (326, 165, 2, 0, 0, 0, 0, 1, '1975', NULL); INSERT INTO person_project VALUES (318, 166, 2, 0, 0, 0, 0, 1, '1974', NULL); INSERT INTO person_project VALUES (320, 159, 2, 0, 0, 0, 0, 1, '1973-1976', NULL); INSERT INTO person_project VALUES (314, 167, 2, 0, 0, 0, 0, 1, '1973', NULL); INSERT INTO person_project VALUES (329, 175, 2, 0, 0, 0, 0, 1, '1983, 1986-1987', NULL); INSERT INTO person_project VALUES (317, 168, 2, 0, 0, 0, 0, 1, '1974-1976', NULL); INSERT INTO person_project VALUES (315, 169, 2, 0, 0, 0, 0, 1, '1978', NULL); INSERT INTO person_project VALUES (325, 170, 2, 0, 0, 1, 0, 0, '1983', NULL); INSERT INTO person_project VALUES (316, 172, 2, 0, 0, 0, 0, 1, '1983, 1986-1987', NULL); INSERT INTO person_project VALUES (321, 173, 2, 0, 0, 0, 0, 1, '1977', NULL); INSERT INTO person_project VALUES (335, 177, 2, 0, 0, 0, 0, 1, '1971-1972', NULL); INSERT INTO person_project VALUES (332, 178, 2, 0, 0, 0, 0, 1, '1971-1972', 'Survey Archaeologist'); INSERT INTO person_project VALUES (331, 179, 2, 0, 0, 0, 0, 1, '1973-1976', NULL); INSERT INTO person_project VALUES (333, 180, 2, 0, 0, 1, 0, 0, '1983-1984', NULL); INSERT INTO person_project VALUES (339, 242, 4, 0, 0, 0, 0, 1, NULL, 'other personnel'); INSERT INTO person_project VALUES (337, 243, 4, 0, 0, 0, 0, 1, NULL, 'other personnel'); INSERT INTO person_project VALUES (336, 240, 4, 1, 0, 0, 0, 0, NULL, 'principal investigator'); INSERT INTO person_project VALUES (338, 241, 4, 0, 0, 0, 0, 1, NULL, '(PI) other personnel'); INSERT INTO person_project VALUES (341, 218, 5, 1, 0, 0, 0, 0, NULL, 'principal investigator'); INSERT INTO person_project VALUES (340, 199, 5, 0, 0, 0, 0, 1, NULL, 'other personnel'); INSERT INTO person_project VALUES (344, 80, 5, 0, 0, 0, 0, 1, NULL, 'other personnel'); INSERT INTO person_project VALUES (342, 110, 5, 0, 0, 0, 0, 1, NULL, 'other personnel'); INSERT INTO person_project VALUES (343, 178, 5, 0, 0, 0, 0, 1, NULL, 'other personnel'); INSERT INTO person_project VALUES (348, 244, 5, 0, 0, 0, 0, 1, NULL, 'other personnel'); INSERT INTO person_project VALUES (346, 113, 5, 0, 0, 0, 0, 1, NULL, 'other personnel'); INSERT INTO person_project VALUES (347, 177, 5, 0, 0, 0, 0, 1, NULL, 'other personnel'); INSERT INTO person_project VALUES (345, 227, 5, 0, 0, 0, 0, 1, NULL, 'other personnel'); INSERT INTO person_project VALUES (349, 245, 6, 1, 0, 0, 0, 0, NULL, 'Principal Investigator'); INSERT INTO person_project VALUES (350, 246, 6, 0, 0, 0, 0, 1, NULL, 'other personnel'); INSERT INTO person_project VALUES (351, 247, 6, 0, 0, 0, 0, 1, NULL, 'other personnel'); INSERT INTO person_project VALUES (355, 248, 7, 1, 0, 0, 0, 0, NULL, 'principal investigator (1 of 2)'); INSERT INTO person_project VALUES (354, 249, 7, 1, 0, 0, 0, 0, NULL, 'principal investigator (1 of 2)'); INSERT INTO person_project VALUES (353, 250, 7, 0, 0, 0, 0, 1, NULL, 'other personnel'); INSERT INTO person_project VALUES (352, 135, 7, 0, 0, 0, 0, 1, NULL, 'USGS other personnel'); INSERT INTO person_project VALUES (362, 252, 8, 0, 0, 0, 0, 1, NULL, 'other personnel'); INSERT INTO person_project VALUES (358, 253, 8, 0, 0, 0, 0, 1, NULL, 'other personnel'); INSERT INTO person_project VALUES (360, 254, 8, 0, 0, 0, 0, 1, NULL, 'other personnel'); INSERT INTO person_project VALUES (365, 251, 8, 1, 0, 0, 0, 0, NULL, 'Principal Investigator'); INSERT INTO person_project VALUES (364, 255, 8, 0, 0, 0, 0, 1, NULL, 'other personnel'); INSERT INTO person_project VALUES (363, 259, 8, 0, 0, 0, 0, 1, NULL, 'other personnel'); INSERT INTO person_project VALUES (359, 256, 8, 0, 0, 0, 0, 1, NULL, 'other personnel'); INSERT INTO person_project VALUES (357, 241, 8, 0, 0, 0, 0, 1, NULL, 'other personnel'); INSERT INTO person_project VALUES (361, 257, 8, 0, 0, 0, 0, 1, NULL, 'other personnel'); INSERT INTO person_project VALUES (356, 258, 8, 0, 0, 0, 0, 1, NULL, 'other personnel'); INSERT INTO person_project VALUES (369, 261, 9, 0, 0, 0, 0, 1, NULL, 'University of Tennessee other personnel'); INSERT INTO person_project VALUES (366, 23, 9, 0, 0, 0, 0, 1, NULL, 'other personnel'); INSERT INTO person_project VALUES (368, 262, 9, 0, 0, 0, 0, 1, NULL, 'other personnel'); INSERT INTO person_project VALUES (367, 260, 9, 1, 0, 0, 0, 0, NULL, 'Principal Investigator'); INSERT INTO person_project VALUES (370, 260, 10, 1, 0, 0, 0, 0, NULL, 'Principal Investigator'); INSERT INTO person_project VALUES (371, 263, 10, 0, 0, 0, 0, 1, NULL, 'other personnel'); INSERT INTO person_project VALUES (372, 264, 10, 0, 0, 0, 0, 1, NULL, 'other personnel'); INSERT INTO person_project VALUES (374, 265, 11, 1, 0, 0, 0, 0, NULL, 'Principal Investigator'); INSERT INTO person_project VALUES (375, 266, 11, 0, 0, 0, 0, 1, NULL, 'other personnel'); INSERT INTO person_project VALUES (373, 267, 11, 0, 0, 0, 0, 1, NULL, 'other personnel'); INSERT INTO person_project VALUES (376, 18, 12, 1, 0, 0, 0, 0, NULL, 'Principal Investigator'); INSERT INTO person_project VALUES (379, 245, 13, 1, 0, 0, 0, 0, NULL, 'Principal Investigator'); INSERT INTO person_project VALUES (378, 268, 13, 0, 0, 0, 0, 1, NULL, 'other personnel'); INSERT INTO person_project VALUES (377, 246, 13, 0, 0, 0, 0, 1, NULL, 'other personnel'); INSERT INTO person_project VALUES (381, 269, 14, 1, 0, 0, 0, 0, NULL, 'Principal Investigator'); INSERT INTO person_project VALUES (382, 83, 14, 0, 0, 0, 0, 0, NULL, NULL); INSERT INTO person_project VALUES (383, 248, 15, 1, 0, 0, 0, 0, NULL, 'Principal Investigator'); INSERT INTO person_project VALUES (384, 270, 15, 0, 0, 0, 0, 1, NULL, 'other personnel'); INSERT INTO person_project VALUES (385, 260, 16, 1, 0, 0, 0, 0, NULL, 'Principal Investigator'); INSERT INTO person_project VALUES (387, 23, 16, 0, 0, 0, 0, 1, NULL, 'other personnel'); INSERT INTO person_project VALUES (386, 21, 16, 0, 0, 0, 0, 1, NULL, 'other personnel'); INSERT INTO person_project VALUES (389, 271, 18, 1, 0, 0, 0, 0, NULL, 'Principal Investigator'); INSERT INTO person_project VALUES (390, 272, 18, 0, 0, 0, 0, 1, NULL, 'other personnel'); INSERT INTO person_project VALUES (388, 273, 18, 0, 0, 0, 0, 1, NULL, 'other personnel'); INSERT INTO person_project VALUES (394, 275, 19, 1, 0, 0, 0, 0, NULL, 'Principal Investigator'); INSERT INTO person_project VALUES (393, 277, 19, 0, 0, 0, 0, 1, NULL, 'other personnel'); INSERT INTO person_project VALUES (391, 278, 19, 0, 0, 0, 0, 1, NULL, 'other personnel'); INSERT INTO person_project VALUES (395, 248, 20, 1, 0, 0, 0, 0, NULL, 'Principal Investigator'); INSERT INTO person_project VALUES (397, 19, 20, 0, 0, 0, 0, 1, NULL, 'other personnel'); INSERT INTO person_project VALUES (400, 248, 21, 1, 0, 0, 0, 0, NULL, 'Principal Investigator'); INSERT INTO person_project VALUES (398, 19, 21, 0, 0, 0, 0, 1, NULL, 'other personnel'); INSERT INTO person_project VALUES (402, 279, 22, 1, 0, 0, 0, 0, NULL, 'Principal Investigator (1 of 2)'); INSERT INTO person_project VALUES (401, 280, 22, 1, 0, 0, 0, 0, NULL, 'Principal Investigator (1 of 2)'); INSERT INTO person_project VALUES (403, 281, 23, 1, 0, 0, 0, 0, NULL, 'Principal Investigator'); INSERT INTO person_project VALUES (404, 174, 24, 1, 0, 0, 0, 0, NULL, 'Principal Investigator'); INSERT INTO person_project VALUES (405, 271, 25, 1, 0, 0, 0, 0, NULL, 'Principal Investigator'); INSERT INTO person_project VALUES (406, 282, 25, 0, 0, 0, 0, 1, NULL, 'other personnel'); INSERT INTO person_project VALUES (407, 25, 27, 1, 0, 0, 0, 0, NULL, 'Principal Investigator'); INSERT INTO person_project VALUES (408, 283, 28, 1, 0, 0, 0, 0, NULL, 'Principal Investigator'); INSERT INTO person_project VALUES (409, 284, 29, 1, 0, 0, 0, 0, NULL, 'Principal Investigator'); INSERT INTO person_project VALUES (410, 285, 30, 1, 0, 0, 0, 0, NULL, 'Principal Investigator'); INSERT INTO person_project VALUES (411, 281, 31, 1, 0, 0, 0, 0, NULL, 'Principal Investigator'); INSERT INTO person_project VALUES (413, 28, 32, 1, 0, 0, 0, 0, NULL, 'Principal Investigator'); INSERT INTO person_project VALUES (412, 19, 32, 0, 0, 0, 0, 1, NULL, 'other personnel'); INSERT INTO person_project VALUES (415, 287, 33, 1, 0, 0, 0, 0, NULL, 'Principal Investigator'); INSERT INTO person_project VALUES (416, 288, 34, 1, 0, 0, 0, 0, NULL, 'Principal Investigator'); INSERT INTO person_project VALUES (417, 289, 34, 0, 0, 0, 0, 1, NULL, 'other personnel'); INSERT INTO person_project VALUES (419, 102, 34, 0, 0, 0, 0, 1, NULL, 'other personnel'); INSERT INTO person_project VALUES (418, 223, 34, 0, 0, 0, 0, 1, NULL, 'other personnel'); INSERT INTO person_project VALUES (420, 290, 34, 0, 0, 0, 0, 1, NULL, 'other personnel'); INSERT INTO person_project VALUES (421, 291, 35, 1, 0, 0, 0, 0, NULL, 'Principal Investigator'); INSERT INTO person_project VALUES (422, 292, 35, 0, 0, 0, 0, 1, NULL, 'other personnel'); INSERT INTO person_project VALUES (423, 293, 36, 1, 0, 0, 0, 0, NULL, 'Principal Investigator'); INSERT INTO person_project VALUES (424, 19, 37, 1, 0, 0, 0, 0, NULL, 'Principal Investigator'); INSERT INTO person_project VALUES (425, 31, 38, 1, 0, 0, 0, 0, NULL, 'Principal Investigator'); INSERT INTO person_project VALUES (426, 294, 39, 1, 0, 0, 0, 0, NULL, 'Principal Investigator'); INSERT INTO person_project VALUES (427, 269, 40, 1, 0, 0, 0, 0, NULL, 'Principal Investigator'); INSERT INTO person_project VALUES (428, 19, 41, 1, 0, 0, 0, 0, NULL, 'Principal Investigator'); INSERT INTO person_project VALUES (430, 295, 43, 1, 0, 0, 0, 0, NULL, 'Principal Investigator'); INSERT INTO person_project VALUES (431, 297, 44, 1, 0, 0, 0, 0, NULL, 'Principal Investigator'); INSERT INTO person_project VALUES (432, 158, 45, 1, 0, 0, 0, 0, NULL, 'Principal Investigator'); INSERT INTO person_project VALUES (433, 271, 46, 1, 0, 0, 0, 0, NULL, 'Principal Investigator'); INSERT INTO person_project VALUES (434, 272, 46, 1, 0, 0, 0, 0, NULL, 'other personnel'); INSERT INTO person_project VALUES (435, 279, 47, 1, 0, 0, 0, 0, NULL, 'Principal Investigator (1 of 2)'); INSERT INTO person_project VALUES (436, 298, 47, 1, 0, 0, 0, 0, NULL, 'Principal Investigator (1 of 2)'); INSERT INTO person_project VALUES (437, 287, 48, 1, 0, 0, 0, 0, NULL, 'Principal Investigator'); INSERT INTO person_project VALUES (439, 299, 49, 1, 0, 0, 0, 0, NULL, 'Principal Investigator (1 of 2)'); INSERT INTO person_project VALUES (438, 300, 49, 1, 0, 0, 0, 0, NULL, 'Principal Investigator (1 of 2)'); INSERT INTO person_project VALUES (440, 133, 50, 1, 0, 0, 0, 0, NULL, 'Principal Investigator'); INSERT INTO person_project VALUES (441, 119, 51, 1, 0, 0, 0, 0, NULL, 'Principal Investigator'); INSERT INTO person_project VALUES (442, 301, 52, 1, 0, 0, 0, 0, NULL, 'Principal Investigator'); INSERT INTO person_project VALUES (451, 303, 52, 0, 0, 0, 0, 1, NULL, 'other personnel'); INSERT INTO person_project VALUES (448, 304, 52, 0, 0, 0, 0, 1, NULL, 'other personnel'); INSERT INTO person_project VALUES (449, 305, 52, 0, 0, 0, 0, 1, NULL, 'other personnel'); INSERT INTO person_project VALUES (450, 302, 52, 0, 0, 0, 0, 1, NULL, 'other personnel'); INSERT INTO person_project VALUES (444, 306, 52, 0, 0, 0, 0, 1, NULL, 'other personnel'); INSERT INTO person_project VALUES (446, 310, 52, 0, 0, 0, 0, 1, NULL, 'other personnel'); INSERT INTO person_project VALUES (452, 307, 52, 0, 0, 0, 0, 1, NULL, 'other personnel'); INSERT INTO person_project VALUES (447, 308, 52, 0, 0, 0, 0, 1, NULL, 'other personnel'); INSERT INTO person_project VALUES (443, 309, 52, 0, 0, 0, 0, 1, NULL, 'other personnel'); INSERT INTO person_project VALUES (445, 284, 52, 0, 0, 0, 0, 1, NULL, 'other personnel'); INSERT INTO person_project VALUES (453, 301, 53, 1, 0, 0, 0, 0, NULL, 'Principal Investigator (1 of 2)'); INSERT INTO person_project VALUES (454, 304, 53, 1, 0, 0, 0, 0, NULL, 'Principal Investigator (1 of 2)'); INSERT INTO person_project VALUES (455, 311, 53, 0, 0, 0, 0, 1, NULL, 'other personnel'); INSERT INTO person_project VALUES (456, 19, 54, 1, 0, 0, 0, 0, NULL, 'Principal Investigator (1 of 2)'); INSERT INTO person_project VALUES (458, 312, 55, 1, 0, 0, 0, 0, NULL, 'Principal Investigator'); INSERT INTO person_project VALUES (460, 313, 56, 1, 0, 0, 0, 0, NULL, 'Principal Investigator (1 of 2)'); INSERT INTO person_project VALUES (459, 314, 56, 1, 0, 0, 0, 0, NULL, 'Principal Investigator (1 of 2)'); INSERT INTO person_project VALUES (461, 315, 57, 1, 0, 0, 0, 0, NULL, 'Principal Investigator'); INSERT INTO person_project VALUES (463, 28, 58, 0, 0, 0, 0, 1, NULL, 'other personnel'); INSERT INTO person_project VALUES (465, 133, 59, 1, 0, 0, 0, 0, NULL, 'Principal Investigator (1 of 2)'); INSERT INTO person_project VALUES (464, 164, 59, 1, 0, 0, 0, 0, NULL, 'Principal Investigator (1 of 2)'); INSERT INTO person_project VALUES (466, 316, 59, 0, 0, 0, 0, 1, NULL, 'other personnel'); INSERT INTO person_project VALUES (467, 317, 60, 1, 0, 0, 0, 0, NULL, 'Principal Investigator'); INSERT INTO person_project VALUES (468, 318, 61, 1, 0, 0, 0, 0, NULL, 'Principal Investigator'); INSERT INTO person_project VALUES (469, 319, 62, 1, 0, 0, 0, 0, NULL, 'Principal Investigator'); INSERT INTO person_project VALUES (470, 19, 63, 1, 0, 0, 0, 0, NULL, 'Principal Investigator (1 of 2)'); INSERT INTO person_project VALUES (473, 19, 65, 1, 0, 0, 0, 0, NULL, 'Principal Investigator'); INSERT INTO person_project VALUES (475, 19, 67, 1, 0, 0, 0, 0, NULL, 'Principal Investigator'); INSERT INTO person_project VALUES (476, 39, 68, 1, 0, 0, 0, 0, NULL, 'Principal Investigator'); INSERT INTO person_project VALUES (478, 83, 69, 0, 0, 0, 0, 1, NULL, 'other personnel'); INSERT INTO person_project VALUES (477, 70, 69, 1, 0, 0, 0, 0, NULL, 'Principal Investigator'); INSERT INTO person_project VALUES (480, 321, 70, 0, 0, 0, 0, 1, NULL, 'other personnel'); INSERT INTO person_project VALUES (479, 320, 70, 1, 0, 0, 0, 0, NULL, 'Principal Investigator'); INSERT INTO person_project VALUES (481, 322, 71, 0, 0, 0, 0, 1, NULL, 'other personnel'); INSERT INTO person_project VALUES (482, 70, 72, 1, 0, 0, 0, 0, NULL, 'Principal Investigator'); INSERT INTO person_project VALUES (483, 70, 73, 1, 0, 0, 0, 0, NULL, 'Principal Investigator'); INSERT INTO person_project VALUES (484, 39, 74, 1, 0, 0, 0, 0, NULL, 'Principal Investigator'); INSERT INTO person_project VALUES (486, 180, 75, 1, 0, 0, 0, 0, NULL, 'Principal Investigator (1 of 2)'); INSERT INTO person_project VALUES (485, 39, 75, 1, 0, 0, 0, 0, NULL, 'Principal Investigator (1 of 2)'); INSERT INTO person_project VALUES (487, 146, 76, 1, 0, 0, 0, 0, NULL, 'Principal Investigator'); INSERT INTO person_project VALUES (488, 37, 77, 1, 0, 0, 0, 0, NULL, 'Principal Investigator'); INSERT INTO person_project VALUES (489, 323, 77, 0, 0, 0, 0, 1, NULL, 'other personnel'); INSERT INTO person_project VALUES (490, 19, 78, 1, 0, 0, 0, 0, NULL, 'Principal Investigator (1 of 2)'); INSERT INTO person_project VALUES (492, 324, 79, 1, 0, 0, 0, 0, NULL, 'Principal Investigator'); INSERT INTO person_project VALUES (493, 325, 80, 1, 0, 0, 0, 0, NULL, 'Principal Investigator'); INSERT INTO person_project VALUES (494, 326, 81, 1, 0, 0, 0, 0, NULL, 'Principal Investigator'); INSERT INTO person_project VALUES (495, 327, 82, 1, 0, 0, 0, 0, NULL, 'Principal Investigator (1 of 2)'); INSERT INTO person_project VALUES (496, 28, 82, 1, 0, 0, 0, 0, NULL, 'Principal Investigator (1 of 2)'); INSERT INTO person_project VALUES (497, 28, 83, 1, 0, 0, 0, 0, NULL, 'Principal Investigator'); INSERT INTO person_project VALUES (498, 28, 84, 1, 0, 0, 0, 0, NULL, 'Principal Investigator'); INSERT INTO person_project VALUES (499, 83, 85, 1, 0, 0, 0, 0, NULL, 'Principal Investigator'); INSERT INTO person_project VALUES (500, 328, 86, 1, 0, 0, 0, 0, NULL, 'Principal Investigator'); INSERT INTO person_project VALUES (506, 340, 90, 1, 0, 0, 0, 0, NULL, NULL); INSERT INTO person_project VALUES (507, 340, 91, 1, 0, 0, 0, 0, NULL, NULL); INSERT INTO person_project VALUES (513, 340, 97, 1, 0, 0, 0, 0, NULL, NULL); INSERT INTO person_project VALUES (523, 14, 104, 1, 0, 0, 0, 0, NULL, NULL); INSERT INTO person_project VALUES (557, 340, 124, 1, 0, 0, 0, 0, NULL, NULL); INSERT INTO person_project VALUES (565, 367, 2, 0, 0, 0, 1, 0, NULL, 'Ceramic analyst.'); INSERT INTO person_project VALUES (566, 368, 2, 0, 0, 0, 1, 0, NULL, 'Ceramic analyst.'); INSERT INTO person_project VALUES (270, 146, 2, 0, 0, 1, 1, 0, '1984', 'Ceramic analyst.'); INSERT INTO person_project VALUES (567, 322, 2, 0, 0, 0, 1, 0, NULL, 'Ceramic analyst.'); INSERT INTO person_project VALUES (568, 281, 2, 0, 0, 0, 1, 0, NULL, 'Ceramic analyst.'); INSERT INTO person_project VALUES (334, 176, 2, 0, 0, 0, 1, 1, '1976', 'Ceramic analyst.'); INSERT INTO person_project VALUES (569, 369, 2, 0, 0, 0, 1, 0, NULL, 'Lithic analyst (chipped stone).'); INSERT INTO person_project VALUES (228, 32, 2, 0, 0, 1, 1, 0, '1977-1978', 'Lithic analyst (chipped stone).'); INSERT INTO person_project VALUES (571, 370, 2, 0, 0, 0, 1, 0, NULL, 'Lithic analyst (chipped stone).'); INSERT INTO person_project VALUES (572, 371, 2, 0, 0, 0, 1, 0, NULL, 'Lithic analyst (chipped stone).'); INSERT INTO person_project VALUES (126, 39, 2, 0, 0, 1, 1, 0, '1975-1982', 'Lithic analyst (chipped stone and manos).'); INSERT INTO person_project VALUES (294, 27, 2, 0, 0, 1, 1, 0, '1972-1982', 'Lithic analyst (metates).'); INSERT INTO person_project VALUES (574, 320, 2, 0, 0, 0, 1, 0, NULL, 'Lithic analyst (ground stone).'); INSERT INTO person_project VALUES (575, 321, 2, 0, 0, 0, 1, 0, NULL, 'Lithic analyst (ground stone).'); INSERT INTO person_project VALUES (257, 25, 2, 0, 0, 1, 1, 0, '1978-present', 'Lithic analyst (ornaments and minerals).'); INSERT INTO person_project VALUES (576, 373, 2, 0, 0, 0, 1, 0, NULL, 'Human remains analyst: burials (skeletal remains and grave goods).'); INSERT INTO person_project VALUES (310, 33, 2, 0, 0, 1, 1, 0, '1976-1985', 'Ceramic analyst. Human remains analyst: burials (skeletal remains and grave goods).'); INSERT INTO person_project VALUES (578, 374, 2, 0, 0, 0, 1, 0, NULL, 'Human remains analyst: coprolites.'); INSERT INTO person_project VALUES (579, 327, 2, 0, 0, 0, 1, 0, NULL, 'Human remains analyst: coprolites.'); INSERT INTO person_project VALUES (220, 214, 2, 0, 0, 0, 1, 1, '1978', 'Architecture analyst.'); INSERT INTO person_project VALUES (250, 36, 2, 0, 0, 1, 1, 0, '1976-1985', 'Lithic analyst (chipped stone). Architecture analyst.'); INSERT INTO person_project VALUES (255, 29, 2, 0, 0, 1, 1, 0, '1973-1992', 'Ceramic analyst. Architecture analyst.'); INSERT INTO person_project VALUES (281, 158, 2, 0, 0, 0, 1, 1, '1971-1976', 'Museum/Archaeology Technician. Architecture analyst.'); INSERT INTO person_project VALUES (286, 183, 2, 0, 0, 1, 1, 1, '1975-present', 'Archaeologist (Acting Program Leader 1995-present). Lithic analyst (ground stone). Architecture analyst.'); INSERT INTO person_project VALUES (303, 208, 2, 0, 0, 1, 1, 0, '1973-1982', 'Architecture analyst.'); INSERT INTO person_project VALUES (580, 313, 2, 0, 0, 0, 1, 0, NULL, 'Tree-ring sample analyst.'); INSERT INTO person_project VALUES (581, 279, 2, 0, 0, 0, 1, 0, NULL, 'Tree-ring sample analyst.'); INSERT INTO person_project VALUES (582, 375, 2, 0, 0, 0, 1, 0, NULL, 'Tree-ring sample analyst.'); INSERT INTO person_project VALUES (583, 280, 2, 0, 0, 0, 1, 0, NULL, 'Tree-ring sample analyst.'); INSERT INTO person_project VALUES (584, 285, 2, 0, 0, 0, 1, 0, NULL, 'Tree-ring sample analyst.'); INSERT INTO person_project VALUES (585, 298, 2, 0, 0, 0, 1, 0, NULL, 'Tree-ring sample analyst.'); INSERT INTO person_project VALUES (586, 295, 2, 0, 0, 0, 1, 0, NULL, 'Wood species analyst.'); INSERT INTO person_project VALUES (211, 125, 2, 0, 1, 0, 1, 0, '1971-1975', 'Ceramic analyst. Wooden tools analyst.'); INSERT INTO person_project VALUES (153, 93, 2, 0, 0, 1, 1, 0, '1974, 1976-1978, 1982', 'Lithic analyst (axes and mauls). Botanical remains analyst.'); INSERT INTO person_project VALUES (396, 20, 20, 0, 0, 0, 0, 1, NULL, 'other personnel. for other work, see Mollie Struever, or Mary or Mollie Toll.'); INSERT INTO person_project VALUES (399, 20, 21, 0, 0, 0, 0, 1, NULL, 'other personnel. For other work, see Mollie Struever, or Mary or Mollie Toll.'); INSERT INTO person_project VALUES (429, 203, 42, 1, 0, 0, 0, 0, NULL, 'Principal Investigator. For other work, see Mollie Toll, Mary Struever or Mary Toll.'); INSERT INTO person_project VALUES (296, 203, 2, 0, 0, 0, 0, 1, NULL, 'for other work: see Mollie S. Toll, Mary Struever Toll, or Mary Struever.'); INSERT INTO person_project VALUES (462, 286, 58, 1, 0, 0, 0, 0, NULL, 'Principal Investigator. For other work: see Mollie Struever, Mary Struever, or Mary Toll.'); INSERT INTO person_project VALUES (457, 286, 54, 0, 0, 0, 0, 1, NULL, 'Principal Investigator (1 of 2) For other work: see Mollie Struever, Mary Struever, or Mary Toll.'); INSERT INTO person_project VALUES (491, 286, 78, 1, 0, 0, 0, 0, NULL, 'Principal Investigator (1 of 2). For other work: see Mollie Struever, Mary Struever, or Mary Toll.'); INSERT INTO person_project VALUES (471, 286, 63, 1, 0, 0, 0, 0, NULL, 'Principal Investigator (1 of 2). For other work: see Mollie Struever, Mary Struever, or Mary Toll.'); INSERT INTO person_project VALUES (414, 286, 32, 0, 0, 0, 0, 1, NULL, 'other personnel For other work: see Mollie Struever, Mary Struever, or Mary Toll.'); INSERT INTO person_project VALUES (472, 286, 64, 1, 0, 0, 0, 0, NULL, 'Principal Investigator. For other work: see Mollie Struever, Mary Struever, or Mary Toll.'); INSERT INTO person_project VALUES (474, 286, 66, 1, 0, 0, 0, 0, NULL, 'Principal Investigator. For other work: see Mollie Struever, Mary Struever, or Mary Toll.'); INSERT INTO person_project VALUES (577, 28, 2, 0, 0, 0, 1, 0, NULL, 'Human remains analyst: coprolites. Pollen analyst.'); INSERT INTO person_project VALUES (588, 19, 2, 0, 0, 0, 1, 0, NULL, 'Pollen analyst.'); INSERT INTO person_project VALUES (589, 328, 2, 0, 0, 0, 1, 0, NULL, 'Pollen analyst.'); INSERT INTO person_project VALUES (130, 70, 2, 0, 0, 1, 1, 0, '1974-1982', 'Lithic analyst (abraders). Human remains analyst: burials (skeletal remains and grave goods). Faunal remains analyst: bone species, uses, and tools.'); INSERT INTO person_project VALUES (573, 372, 2, 0, 0, 0, 1, 0, NULL, 'Lithic analyst (manos). Faunal remains analyst: bone species, uses, and tools.'); INSERT INTO person_project VALUES (143, 83, 2, 0, 0, 0, 0, 1, '1972', 'Survey Archaeologist. Faunal remains analyst: bone species, uses, and tools.'); INSERT INTO person_project VALUES (199, 115, 2, 0, 0, 1, 1, 0, '1976-1982', 'Architecture analyst. Faunal remains analyst: bone species, uses, and tools.'); INSERT INTO person_project VALUES (590, 377, 2, 0, 0, 0, 1, 0, NULL, 'Faunal remains analyst: bone species, uses, and tools.'); INSERT INTO person_project VALUES (262, 144, 2, 0, 0, 0, 1, 1, '1980-1985', 'Archaeological Technician. Faunal remains analyst: bone species, uses, and tools.'); INSERT INTO person_project VALUES (591, 378, 2, 0, 0, 0, 1, 0, NULL, 'Faunal remains analyst: bone species, uses, and tools.'); INSERT INTO person_project VALUES (313, 171, 2, 0, 0, 0, 1, 1, '1975-1978, 1983', 'Lithic analyst (hammerstones). Architecture analyst. Faunal remains analyst: bone species, uses, and tools.'); INSERT INTO person_project VALUES (324, 174, 2, 0, 1, 1, 1, 0, '1972-present', 'Supervisory Archaeologist. Ceramic and lithic (ground stone) analyst. Architecture analyst. Tree-ring sample analyst. Turkey eggshell analyst.'); INSERT INTO person_project VALUES (592, 14, 1, 1, 0, 0, 0, 0, '1920-1921, 1929-1935', NULL); INSERT INTO person_project VALUES (593, 344, 1, 0, 0, 1, 0, 0, '1934', 'Excavated 9 rooms and 2 kivas in Kin Kletso.'); INSERT INTO person_project VALUES (597, 379, 1, 0, 0, 1, 0, 0, '1933-1937', 'Excavated 27 rooms and 6 kivas at Talus Unit No. 1.'); INSERT INTO person_project VALUES (598, 380, 1, 0, 0, 1, 0, 0, '1933-1937', 'Excavated 27 rooms and 6 kivas at Talus Unit No. 1.'); INSERT INTO person_project VALUES (600, 353, 1, 0, 0, 1, 0, 0, '1941', 'Excavated 2 or 3 rooms at Bc 55.'); INSERT INTO person_project VALUES (599, 354, 1, 0, 0, 1, 0, 0, '1941', 'Excavated 2 or 3 rooms at Bc 55.'); INSERT INTO person_project VALUES (603, 355, 1, 0, 0, 1, 0, 0, '1947', 'Excavated 10 or 11 rooms, 2 kivas at Bc 58 as part of a UNM/SAR field school.'); INSERT INTO person_project VALUES (604, 139, 1, 0, 0, 1, 0, 0, '1947', 'Bc 59: 16-20 rooms, 3 kivas, trash midden excavated. Stabilization led to excavation of 3 additional rooms.'); INSERT INTO person_project VALUES (605, 356, 1, 0, 0, 1, 0, 0, '1947', 'Excavated 10 or 11 rooms at Bc 58.'); INSERT INTO person_project VALUES (596, 357, 1, 0, 0, 1, 0, 0, '1929', 'Excavated 3 rooms and trench at Anna Shepard''s Site (29SJ200).'); INSERT INTO person_project VALUES (595, 343, 1, 0, 0, 1, 0, 0, '1935', 'Excavated great kiva and 1 room in great house at Kin Nahasbas.'); INSERT INTO person_project VALUES (608, 381, 1, 0, 0, 1, 0, 0, '1947', 'Excavated portion of pithouse, previously excavated by Roberts, at Half House/Arroyo House (29SJ1657).'); INSERT INTO person_project VALUES (606, 382, 1, 0, 0, 1, 0, 0, '1947', 'Excavated portion of pithouse, previously excavated by Roberts, at Half House/Arroyo House (29SJ1657).'); INSERT INTO person_project VALUES (607, 383, 1, 0, 0, 1, 0, 0, '1947', 'Excavated portion of pithouse, previously excavated by Roberts, at Half House/Arroyo House (29SJ1657).'); INSERT INTO person_project VALUES (612, 384, 1, 0, 0, 1, 0, 0, '1936', 'Excavated most of site at Bc 50 (Tseh Tso).'); INSERT INTO person_project VALUES (618, 350, 1, 0, 0, 1, 0, 0, '1936', 'Excavated most of site at Bc 50 (Tseh Tso).'); INSERT INTO person_project VALUES (616, 386, 1, 0, 0, 1, 0, 0, '1937', 'Excavated most of site at Bc 50 (Tseh Tso).'); INSERT INTO person_project VALUES (611, 345, 1, 0, 0, 1, 0, 0, '1947', 'Excavated most of site at Bc 50 (Tseh Tso).'); INSERT INTO person_project VALUES (613, 387, 1, 0, 0, 1, 0, 0, '1938', 'Excavated most of site at Bc 50 (Tseh Tso).'); INSERT INTO person_project VALUES (614, 388, 1, 0, 0, 1, 0, 0, '1939', 'Excavated most of site at Bc 50 (Tseh Tso).'); INSERT INTO person_project VALUES (617, 389, 1, 0, 0, 1, 0, 0, '1939', 'Excavated most of site at Bc 50 (Tseh Tso).'); INSERT INTO person_project VALUES (621, 390, 1, 0, 0, 1, 0, 0, '1937', 'Excavated most of site at Bc 51.'); INSERT INTO person_project VALUES (622, 393, 1, 0, 0, 1, 0, 0, '1939', 'Excavated most of site at Bc 51.'); INSERT INTO person_project VALUES (620, 392, 1, 0, 0, 1, 0, 0, '1938', 'Excavated most of site at Bc 51.'); INSERT INTO person_project VALUES (610, 385, 1, 0, 0, 1, 0, 0, '1936, 1937', 'Excavated most of site at Bc 50 (Tseh Tso). Excavated most of site at Bc 51.'); INSERT INTO person_project VALUES (624, 13, 1, 0, 0, 1, 0, 0, '1940-1941', 'Bc 53 (Ignorance Hollow, Roberts'' Site): Excavated 20 rooms, 4 kivas, trash midden, and earlier pithouse excavated by Judd.'); INSERT INTO person_project VALUES (625, 352, 1, 0, 0, 1, 0, 0, '1941', 'Bc 54: excavated 4 rooms, parts of others, and 3 kivas.'); INSERT INTO person_project VALUES (623, 391, 1, 0, 0, 1, 0, 0, '1937, 1940-1941', '1937: Excavated most of site at Bc 51. 1940-1941: Excavated 19 or 20 rooms and 3 kivas at Bc 52 (Casa Sombreada). 1941: Bc 54: excavated 4 rooms, parts of others, and 3 kivas.'); INSERT INTO person_project VALUES (601, 351, 1, 0, 0, 1, 0, 0, '1940-1942', '1940-1941: Bc 53 (Ignorance Hollow, Roberts'' Site): excavated 20 rooms, 4 kivas, trash midden, and earlier pithouse excavated by Judd. 1941: excavated 2 or 3 rooms at Bc 55. Excavated 8 rooms, 2 kivas, and burials at Bc 56. Bc 54: excavated 4 rooms, parts of others, and 3 kivas. 1942: Excavated 9 rooms, 4 kivas, and an earlier pit structure beneath trash.'); INSERT INTO person_project VALUES (626, 347, 1, 0, 0, 1, 0, 0, '1930', 'Cacique''s Sanctum (29SJ1924): excavated 2 rooms.'); INSERT INTO person_project VALUES (627, 348, 1, 0, 0, 1, 0, 0, '1930', 'Cacique''s Sanctum (29SJ1924): excavated 2 rooms.'); INSERT INTO person_project VALUES (619, 349, 1, 0, 0, 1, 0, 0, '1936, 1937', '1930, 1933: Talus Rock Shelter (29SJ1936): excavated shelter with firepit and storage cists. Exposed room walls. 1936, 1937: Excavated most of site at Bc 50 (Tseh Tso). Excavated most of site at Bc 51. For later work see Florence Hawley Ellis.'); INSERT INTO person_project VALUES (594, 340, 1, 0, 0, 1, 0, 0, '1930-1931, 1947, 1949-1950', '1947: Excavated most of site at Bc 50 (Tseh Tso). 1930-1931, 1949-1950: Excavated Casa Rinconada. Excavated at Bc 59: 16-20 rooms, 3 kivas, trash midden. Stabilization led to excavation of 3 additional rooms. Excavated most of site at Bc 51.'); INSERT INTO person_project VALUES (628, 394, 1, 0, 0, 1, 0, 0, '1931, 1937', 'Excavated at Kin Sabe (29SJ823): previous work by Wetherill and Pepper (1896-1900) and by Judd (1925).'); INSERT INTO person_project VALUES (629, 125, 1, 0, 0, 1, 0, 0, '1931, 1937', 'Excavated at Kin Sabe (29SJ823): previous work by Wetherill and Pepper (1896-1900) and by Judd (1925).'); INSERT INTO person_project VALUES (630, 395, 1, 0, 0, 1, 0, 0, '1931, 1937', 'Excavated at Kin Sabe (29SJ823): previous work by Wetherill and Pepper (1896-1900) and by Judd (1925).'); INSERT INTO person_project VALUES (631, 7, 1, 0, 0, 1, 0, 0, '1932-1933', 'Excavated at Hurst Julian''s Niches (cliff cavities): 29SJ1944.'); INSERT INTO person_project VALUES (632, 9, 1, 0, 0, 1, 0, 0, '1932-1933', 'Excavated at Hurst Julian''s Niches (cliff cavities): 29SJ1944.'); INSERT INTO person_project VALUES (635, 359, 1, 0, 0, 1, 0, 0, '1934', 'Hutch''s Site (29SJ838, Bc 126): Excavated 6 rooms and 2 kivas of previously looted site.'); INSERT INTO person_project VALUES (634, 360, 1, 0, 0, 1, 0, 0, '1934', 'Hutch''s Site (29SJ838, Bc 126): Excavated 6 rooms and 2 kivas of previously looted site.'); INSERT INTO person_project VALUES (633, 361, 1, 0, 0, 1, 0, 0, '1934', 'Hutch''s Site (29SJ838, Bc 126): Excavated 6 rooms and 2 kivas of previously looted site.'); INSERT INTO person_project VALUES (636, 346, 1, 0, 0, 1, 0, 0, '1934', 'Kin Chinde (29SJ799): 4 or 5 rooms and trash midden excavated. '); INSERT INTO person_project VALUES (609, 8, 1, 0, 0, 1, 0, 0, '1934, 1936', 'Kin Chinde (29SJ799): 4 or 5 rooms and trash midden excavated. Excavated 14 rooms, 4 kivas, and trash midden at Leyit Kin.'); INSERT INTO person_project VALUES (559, 362, 126, 1, 0, 1, 0, 0, '1960', 'excavated 17 rooms and 3 kivas.'); INSERT INTO person_project VALUES (637, 363, 126, 1, 0, 1, 0, 0, '1960', 'Excavated 17 rooms and 3 kivas.'); INSERT INTO person_project VALUES (558, 329, 125, 1, 0, 1, 0, 0, '1958', 'Excavated 10 rooms, 1 kiva, 1 oven, 1 cist, and a PI pithouse.'); INSERT INTO person_project VALUES (564, 366, 129, 1, 0, 1, 0, 0, '1966-1967', 'Excavated 1 kiva at west end and 4 rooms.'); INSERT INTO person_project VALUES (563, 365, 129, 1, 0, 1, 0, 0, '1966-1967', 'Excavated 1 kiva at west end and 4 rooms.'); INSERT INTO person_project VALUES (638, 396, 129, 1, 0, 1, 0, 0, '1966-1967', 'Excavated 1 kiva at west end and 4 rooms.'); INSERT INTO person_project VALUES (639, 397, 129, 1, 0, 1, 0, 0, '1966-1967', 'Excavated 1 kiva at west end and 4 rooms.'); INSERT INTO person_project VALUES (561, 341, 128, 1, 0, 1, 0, 0, '1962', 'Excavated 18 rooms, 3 kivas, and 2 plazas.'); INSERT INTO person_project VALUES (562, 364, 128, 1, 0, 1, 0, 0, '1962', 'Excavated 18 rooms, 3 kivas, and 2 plazas.'); INSERT INTO person_project VALUES (640, 362, 127, 1, 0, 1, 0, 0, '1960', 'Partial excavation of water control feature.'); INSERT INTO person_project VALUES (560, 363, 127, 1, 0, 1, 0, 0, '1960', 'Partial excavation of water control feature.'); INSERT INTO person_project VALUES (512, 342, 96, 1, 0, 1, 0, 0, '1959', 'Excavated Kiva J. Previous excavations by SAR field school.'); INSERT INTO person_project VALUES (643, 396, 130, 1, 0, 1, 0, 0, '1964', 'Chetro Ketl: excavated room 92. The UNM/SAR field schools had previously excavated much of the east side of this great house.'); INSERT INTO person_project VALUES (644, 341, 130, 1, 0, 1, 0, 0, '1964', 'Excavated Chetro Ketl, room 92. The UNM/SAR field schools had previously excavated much of the east side of this great house.'); INSERT INTO person_project VALUES (645, 139, 130, 1, 0, 1, 0, 0, '1950-1951, 1953', 'Excavated remainder of Kin Kletso with Gordon Vivian.'); INSERT INTO person_project VALUES (646, 366, 130, 1, 0, 1, 0, 0, '1950', 'Re-excavated and stabilized tri-wall structure at Pueblo del Arroyo with Gordon Vivan. Previously tested by Holsinger and partially excavated by Judd.'); INSERT INTO person_project VALUES (641, 340, 130, 1, 0, 1, 0, 0, '1947, 1949-1951, 1953, 1956-1957, 1960', '1939,1949: Three-C: 9 rooms, 2 kivas with Boone and Rixey.1947:Chetro Ketl:excav. room 93.Bc 363:excav 2 rooms, 1 kiva.Excav Tseh Tso, previously with UNM/SAR field school.1949-1950: Excav Bc 51.1950: Excav 4 rooms, Headquarter''s Site 2.Pueblo del Arroyo tri-wall structure: re-excav, stabilized.1950-1951, 1953: excav remainder of Kin Kletso with Mathews.1957: 29SJ240: excav 1 of 2 rooms, 1 kiva.1956-1957, 1960: Una Vida: excav Kiva C, trench across E wing Room 6-Room 56, 5 Nav hogans, 15 rooms in NE corner.'); INSERT INTO person_project VALUES (642, 345, 130, 1, 0, 1, 0, 0, '1947, 1949', '1947: Excavated Tseh Tso (Bc 50) with Gordon Vivian; also UNM/SAR field school. 1949: Excavated 2 kivas at Three-C Site with Gordon Vivian.'); INSERT INTO person_project VALUES (647, 398, 130, 1, 0, 1, 0, 0, '1939', 'Excavated 9 rooms at Three-C Site with Gordon Vivian.'); INSERT INTO person_project VALUES (651, 400, 88, 0, 0, 1, 0, 0, '1921-1927', 'Excavated 198 rooms and kivas at Pueblo Bonito; also trash mound trench.'); INSERT INTO person_project VALUES (654, 401, 88, 0, 0, 1, 0, 0, '1921-1927', 'Excavated 198 rooms and kivas at Pueblo Bonito; also trash mound trench.'); INSERT INTO person_project VALUES (648, 402, 88, 0, 0, 1, 0, 0, '1921-1927', 'Excavated 198 rooms and kivas at Pueblo Bonito; also trash mound trench.'); INSERT INTO person_project VALUES (653, 405, 88, 0, 0, 1, 0, 0, '1921-1927', 'Excavated 198 rooms and kivas at Pueblo Bonito; also trash mound trench.'); INSERT INTO person_project VALUES (649, 403, 88, 0, 0, 1, 0, 0, '1921-1927', 'Excavated 198 rooms and kivas at Pueblo Bonito; also trash mound trench.'); INSERT INTO person_project VALUES (650, 404, 88, 0, 0, 1, 0, 0, '1921-1927', 'Excavated 198 rooms and kivas at Pueblo Bonito; also trash mound trench.'); INSERT INTO person_project VALUES (504, 339, 88, 0, 0, 1, 1, 0, '1920, 1921-1927', '1920: Excavated Pueblo del Arroyo''s tri wall structure. 1921-1927: excavated 198 rooms and kivas at Pueblo Bonito. 1923-1926: Pueblo del Arroyo: excavated 65 rooms, tri-wall structure, and several associated rooms.'); INSERT INTO person_project VALUES (502, 12, 88, 1, 0, 1, 0, 0, '1920-1927', '1920: Excavated Judd''s Pithouse No. 1 (29SJ396) with Zuni crew. 1922: Excavated Judd''s Pithouse No. 2 (29SJ1678). 1921-1927: excavated 198 rooms and kivas, trash mounds at Pueblo Bonito. Excavated PIII kiva at Hillside Ruin. 1923-1926: Pueblo del Arroyo: excavated 65 rooms, tri-wall structure, and several associated rooms. 1925: excavated 2 pit structures beneath Pueblo Bonito West Court Trench and Room 241.'); INSERT INTO person_project VALUES (652, 399, 88, 0, 0, 1, 0, 0, '1921-1927', 'Excavated 198 rooms and kivas at Pueblo Bonito; also trash mound trench. 1925: excavated Ruin 3 (L-shaped pueblo with 8 rooms, dating to Early Bonito Phase); excavated Ruin 13 (L-shaped pueblo with 7+ rooms and a kiva dating to Classic Bonito Phase).'); INSERT INTO person_project VALUES (503, 13, 88, 0, 0, 1, 1, 0, '1921-1927', '1921-1927, 1926:Excav Pueblo Bonito''s trash mound (trench), 198 rooms & kivas. Shabik''eshchee: 2 pithouses & several storage cists, western side of gully.18 pit structures, court, great kiva, 48 storage bins. 1926: trash mound trenches, Penasco Blanco & Pueblo Alto for Harvard dissertation, part of NGS Expedition. Pit structure excav, Arroyo House/Half House excav.Turkey House/Roberts'' Small House. 1927: Smith''s Ranch Ruin, Talus House behind Pueblo Bonito (29SJ1935).'); INSERT INTO person_project VALUES (655, 2, 131, 1, 0, 1, 0, 0, '1896-1900', 'Pueblo Bonito: almost entire site: 190 rooms, trash mounds. Pepper''s Mound 1 (29SJ399): trash mound. Pepper''s Mound 2 (29SJ383): trash mound. Kin Sabe: trash mound (?)'); INSERT INTO person_project VALUES (656, 3, 131, 1, 0, 1, 0, 0, '1896-1899', 'Pepper''s Mound 1 (29SJ399): trash mound. Pueblo Bonito: almost entire site: 190 rooms, trash mounds. Pepper''s Mound 2 (29SJ383): trash mound. Kin Sabe: mound (?) 29SJ1579: mound.'); INSERT INTO person_project VALUES (657, 407, 131, 0, 0, 1, 0, 0, '1901', 'Picture cliffs: burial. Mound 1: midden excavation. Mound 2: midden excavation. Mound 3: midden excavation. Mound 4: midden excavation. House site: 8 rooms. Wetherill Mesa Pueblo: 7 rooms, 3 kivas.'); INSERT INTO person_project VALUES (659, 408, 131, 0, 0, 1, 0, 0, '1901', 'Mound 1: midden excavation. Mound 2: midden excavation. Mound 3: midden excavation. Mound 4: midden excavation. House site: 8 rooms. Wetherill Mesa Pueblo: 7 rooms, 3 kivas.'); INSERT INTO person_project VALUES (658, 406, 131, 0, 0, 1, 0, 0, '1901', '1899: Kin Neole: 100 burials. 1901: Picture cliffs: burial. '); INSERT INTO person_project VALUES (660, 409, 131, 0, 0, 1, 0, 0, '1899', 'Kin Neole: 100 burials.'); INSERT INTO person_project VALUES (661, 5, 132, 0, 0, 1, 0, 0, '1897', NULL); INSERT INTO person_project VALUES (662, 5, 133, 0, 0, 1, 0, 0, '1897', NULL); INSERT INTO person_project VALUES (663, 410, 134, 0, 0, 1, 0, 0, '1901', 'Excavated arc enclosing plaza.'); INSERT INTO person_project VALUES (664, 410, 135, 0, 0, 1, 0, 0, '1901', 'mound.'); INSERT INTO person_project VALUES (665, 396, 136, 1, 0, 1, 0, 0, '1947', NULL); INSERT INTO person_project VALUES (666, 411, 137, 1, 0, 1, 0, 0, '1932', 'partially excavated two rooms.'); INSERT INTO person_project VALUES (667, 412, 138, 1, 0, 1, 0, 0, '1936', 'Excavated one pithouse and 5 cists.'); INSERT INTO person_project VALUES (668, 413, 88, 0, 0, 0, 0, 1, NULL, 'We don''t know what O.B. Walsh''s role was during the NG project - but we have come across his name as the illustrator of plan and profile drawings.'); INSERT INTO person_project VALUES (587, 286, 2, 0, 0, 0, 1, 0, NULL, 'Macrobotanical remains analyst. For other work, see Mary Struever, Mollie Toll, and Mollie Struever.'); INSERT INTO person_project VALUES (392, 650, 19, 0, 0, 0, 0, 1, NULL, 'other personnel'); INSERT INTO person_project VALUES (669, 670, 2, 0, 0, 0, 1, 0, NULL, 'Lithic analyst (chipped stone).'); INSERT INTO person_project VALUES (670, 644, 139, 0, 0, 0, 0, 0, NULL, NULL); INSERT INTO person_project VALUES (671, 340, 140, 0, 0, 0, 0, 0, NULL, NULL); INSERT INTO person_project VALUES (672, 364, 141, 0, 1, 1, 0, 0, NULL, NULL); INSERT INTO person_project VALUES (673, 362, 142, 0, 1, 1, 0, 0, NULL, NULL); INSERT INTO person_project VALUES (675, 200, 143, 0, 1, 0, 0, 0, NULL, 'conducted 4 days of survey in Jan. 1987.'); INSERT INTO person_project VALUES (674, 29, 143, 0, 0, 0, 0, 0, NULL, NULL); INSERT INTO person_project VALUES (677, 29, 144, 0, 0, 0, 0, 0, NULL, NULL); INSERT INTO person_project VALUES (676, 416, 144, 0, 0, 0, 0, 1, NULL, NULL); -- -- Data for TOC entry 97 (OID 561339) -- Name: site_project; Type: TABLE DATA; Schema: public; Owner: rwb3y -- INSERT INTO site_project VALUES (2, 1); INSERT INTO site_project VALUES (1, 1); INSERT INTO site_project VALUES (5, 88); INSERT INTO site_project VALUES (62, 88); INSERT INTO site_project VALUES (18, 88); INSERT INTO site_project VALUES (63, 88); INSERT INTO site_project VALUES (4, 91); INSERT INTO site_project VALUES (64, 96); INSERT INTO site_project VALUES (69, 104); INSERT INTO site_project VALUES (83, 124); INSERT INTO site_project VALUES (84, 125); INSERT INTO site_project VALUES (85, 126); INSERT INTO site_project VALUES (86, 127); INSERT INTO site_project VALUES (87, 128); INSERT INTO site_project VALUES (88, 129); INSERT INTO site_project VALUES (89, 2); INSERT INTO site_project VALUES (90, 2); INSERT INTO site_project VALUES (91, 2); INSERT INTO site_project VALUES (93, 2); INSERT INTO site_project VALUES (17, 2); INSERT INTO site_project VALUES (94, 2); INSERT INTO site_project VALUES (95, 2); INSERT INTO site_project VALUES (96, 2); INSERT INTO site_project VALUES (6, 2); INSERT INTO site_project VALUES (97, 2); INSERT INTO site_project VALUES (98, 2); INSERT INTO site_project VALUES (99, 2); INSERT INTO site_project VALUES (81, 2); INSERT INTO site_project VALUES (7, 2); INSERT INTO site_project VALUES (100, 2); INSERT INTO site_project VALUES (11, 2); INSERT INTO site_project VALUES (101, 2); INSERT INTO site_project VALUES (102, 2); INSERT INTO site_project VALUES (103, 2); INSERT INTO site_project VALUES (104, 2); INSERT INTO site_project VALUES (105, 2); INSERT INTO site_project VALUES (106, 2); INSERT INTO site_project VALUES (1, 2); INSERT INTO site_project VALUES (67, 2); INSERT INTO site_project VALUES (65, 2); INSERT INTO site_project VALUES (108, 2); INSERT INTO site_project VALUES (109, 2); INSERT INTO site_project VALUES (110, 2); INSERT INTO site_project VALUES (111, 2); INSERT INTO site_project VALUES (112, 2); INSERT INTO site_project VALUES (113, 2); INSERT INTO site_project VALUES (114, 2); INSERT INTO site_project VALUES (115, 2); INSERT INTO site_project VALUES (116, 2); INSERT INTO site_project VALUES (117, 2); INSERT INTO site_project VALUES (118, 2); INSERT INTO site_project VALUES (119, 2); INSERT INTO site_project VALUES (120, 2); INSERT INTO site_project VALUES (121, 2); INSERT INTO site_project VALUES (22, 1); INSERT INTO site_project VALUES (9, 1); INSERT INTO site_project VALUES (65, 1); INSERT INTO site_project VALUES (64, 1); INSERT INTO site_project VALUES (78, 1); INSERT INTO site_project VALUES (75, 1); INSERT INTO site_project VALUES (76, 1); INSERT INTO site_project VALUES (15, 1); INSERT INTO site_project VALUES (77, 1); INSERT INTO site_project VALUES (16, 1); INSERT INTO site_project VALUES (122, 1); INSERT INTO site_project VALUES (13, 1); INSERT INTO site_project VALUES (14, 1); INSERT INTO site_project VALUES (73, 1); INSERT INTO site_project VALUES (12, 1); INSERT INTO site_project VALUES (74, 1); INSERT INTO site_project VALUES (71, 1); INSERT INTO site_project VALUES (72, 1); INSERT INTO site_project VALUES (123, 1); INSERT INTO site_project VALUES (80, 1); INSERT INTO site_project VALUES (79, 1); INSERT INTO site_project VALUES (70, 1); INSERT INTO site_project VALUES (124, 130); INSERT INTO site_project VALUES (13, 130); INSERT INTO site_project VALUES (14, 130); INSERT INTO site_project VALUES (66, 130); INSERT INTO site_project VALUES (82, 130); INSERT INTO site_project VALUES (1, 130); INSERT INTO site_project VALUES (9, 130); INSERT INTO site_project VALUES (18, 130); INSERT INTO site_project VALUES (67, 130); INSERT INTO site_project VALUES (81, 130); INSERT INTO site_project VALUES (4, 88); INSERT INTO site_project VALUES (7, 88); INSERT INTO site_project VALUES (12, 88); INSERT INTO site_project VALUES (129, 88); INSERT INTO site_project VALUES (130, 88); INSERT INTO site_project VALUES (131, 88); INSERT INTO site_project VALUES (132, 88); INSERT INTO site_project VALUES (122, 88); INSERT INTO site_project VALUES (6, 88); INSERT INTO site_project VALUES (68, 88); INSERT INTO site_project VALUES (133, 88); INSERT INTO site_project VALUES (134, 88); INSERT INTO site_project VALUES (135, 88); INSERT INTO site_project VALUES (5, 131); INSERT INTO site_project VALUES (4, 131); INSERT INTO site_project VALUES (16, 131); INSERT INTO site_project VALUES (136, 131); INSERT INTO site_project VALUES (123, 131); INSERT INTO site_project VALUES (137, 131); INSERT INTO site_project VALUES (138, 131); INSERT INTO site_project VALUES (139, 131); INSERT INTO site_project VALUES (140, 131); INSERT INTO site_project VALUES (141, 131); INSERT INTO site_project VALUES (142, 131); INSERT INTO site_project VALUES (143, 131); INSERT INTO site_project VALUES (144, 131); INSERT INTO site_project VALUES (145, 131); INSERT INTO site_project VALUES (146, 132); INSERT INTO site_project VALUES (5, 133); INSERT INTO site_project VALUES (18, 134); INSERT INTO site_project VALUES (147, 135); INSERT INTO site_project VALUES (18, 131); INSERT INTO site_project VALUES (4, 2); INSERT INTO site_project VALUES (107, 2); INSERT INTO site_project VALUES (148, 2); INSERT INTO site_project VALUES (149, 2); INSERT INTO site_project VALUES (150, 2); INSERT INTO site_project VALUES (19, 2); INSERT INTO site_project VALUES (151, 136); INSERT INTO site_project VALUES (152, 137); INSERT INTO site_project VALUES (153, 138); INSERT INTO site_project VALUES (8, 139); INSERT INTO site_project VALUES (8, 140); INSERT INTO site_project VALUES (8, 141); INSERT INTO site_project VALUES (8, 142); INSERT INTO site_project VALUES (8, 143); INSERT INTO site_project VALUES (53, 144); INSERT INTO site_project VALUES (8, 144); -- -- Data for TOC entry 98 (OID 561341) -- Name: eo_pk_table; Type: TABLE DATA; Schema: public; Owner: rwb3y -- INSERT INTO eo_pk_table VALUES ('public.person_institution', 72); INSERT INTO eo_pk_table VALUES ('public.site', 157); INSERT INTO eo_pk_table VALUES ('public.institution', 55); INSERT INTO eo_pk_table VALUES ('public.alternative_title', 4); INSERT INTO eo_pk_table VALUES ('public.person', 1372); INSERT INTO eo_pk_table VALUES ('public.notes', 25); INSERT INTO eo_pk_table VALUES ('public.collection', 14); INSERT INTO eo_pk_table VALUES ('public.project', 144); INSERT INTO eo_pk_table VALUES ('public.person_project', 677); INSERT INTO eo_pk_table VALUES ('public.project_institution', 126); INSERT INTO eo_pk_table VALUES ('public.work', 2681); INSERT INTO eo_pk_table VALUES ('public.person_created_work', 3508); INSERT INTO eo_pk_table VALUES ('public.cdi_accession', 170); INSERT INTO eo_pk_table VALUES ('public.person_doc_inst', 2083); INSERT INTO eo_pk_table VALUES ('public.documentary_instance', 1618); INSERT INTO eo_pk_table VALUES ('public.collection_survey_log', 20); INSERT INTO eo_pk_table VALUES ('public.storage_unit', 79); INSERT INTO eo_pk_table VALUES ('public.object', 1058); -- -- Data for TOC entry 99 (OID 561345) -- Name: notes; Type: TABLE DATA; Schema: public; Owner: rwb3y -- INSERT INTO notes VALUES (2, '1089642533436', 'Note 1: Names under which the Chaco Project personnel operated: 1969-Sept. 20 Chaco Canyon Archeological Center 1971-Aug. 10 New Mexico Archeological Center 1973-July 18 Chaco Center 1976-Nov. 21 Division of Remote Sensing established under the Southwest Cultural Resource Center Division of Chaco Research established under the Southwest Cultural Resource Center 1978-Oct. 1 Division of Cultural Research 1980-April 20 Branch of Remote Sensing placed under the Division of Cultural Research 1985-Mar.31 Branch of Cultural Research placed under the Division of Anthropology of the Southwest Cultural Resource Center 1995-May 15 Anthropology Program of the Intermountain Cultural Resource Center 1997-January Anthropology Program of the Intermountain Region, Santa Fe Office'); INSERT INTO notes VALUES (11, '1089827026454', 'I have seen various instances where there is a card in a folder indicating that there is a negative that exists somewhere - but I need to find out where, and how we get ahold of it should we want to do so...'); INSERT INTO notes VALUES (16, '1089994237749', '10 html files of query results from Chaco Archive database in Albuquerque. W. Bustard ran 2 queries for each of the 5 CDI sites. The first (e.g. Bc 50) was run using the "29SJ--" number as the search criteria. The second (e.g. Bc 50.1) was run using "Bc50" as the search criteria. In all cases, the second search generated a larger list of objects. However, we need to cross reference these two lists to make sure we have one comprehensive list for each site. '); INSERT INTO notes VALUES (17, '1090339105968', 'Full text of correspondence (Object 664) from Neil M. Judd to Dr. Melville B. Grosvenor, President of the National Geographic Society, June 3, 1961. " 1423 Highland Drive, Silver Spring, Md., June 3, 1961 Dr. Melville B. Grosvenor, President, The National Geographic Society, Washington, D. C. Dear Mel: The four restorations of Pueblo Bonito, made by Prof. Kenneth Conant of the Harvard Architectural School in 1926 and based upon the Society''s excavation data, were not transferred to the Smithsonian Institution at the time your major archeological collections were presented. I recommend that the presentation be made. The four drawings are recorded on Negatives 12068B-12071B. Three are hanging in my workshop at the National Museum but the fourth (Neg. 12070B) is missing and I have an uncertain recollection it was borrowed by the Society in preparation for the Langdon Kihn painting reproduced in Indians of the Americas, page 111, and never returned. It may be hanging in one of your staff offices. If found it should, of course, be donated with the others. With warm personal regards, Cordially yours, Neil M. Judd"'); INSERT INTO notes VALUES (19, '1090434499370', 'I just wanted to note that in the Roberts box 23, there was a folder labeled "Shabik''eshchee Village - NGS Photos": it was completely empty (not even a note saying whether there ever was anything in there or if there was, where they went).'); INSERT INTO notes VALUES (20, '1090526988259', 'Both Judd and Roberts material - mostly photos. Finished Judd box 36. Went through box "27" "28" and "30" of the Roberts "Unarranged Photographs" (4 boxes). I also looked at a nitrate negative box (Roberts). I looked through 2 misc. boxes from Judd to double check that Chaco material wasn''t lurking in random boxes. I found a Fewkes photo box on SIRIS that had Aztec material - so I went through that. We ended on Thursday by going through Judd oversized material (6 folders). SOme of this we had been through before. '); INSERT INTO notes VALUES (3, '1089748742002', 'Information transferred to Object 306, CDI Object Description.'); INSERT INTO notes VALUES (21, '1091554843573', 'In the process of going back and reviewing object #15, I came across a card which references the Mindeleff photos. On the top of this card "37 cds" is written in pen. I wonder if this means there are 37 cds of Mindeleff photos that were digitized??'); INSERT INTO notes VALUES (22, '1091628185646', 'We are reasonably certain that objects 72, 105, and 106 refer to the same test sections, but to confirm this will require looking at all the objects together (letters, tabular data, maps).'); INSERT INTO notes VALUES (23, '1091638752611', 'Objects 296 and 300 appear to be the same photo card which has been entered into the database twice.'); INSERT INTO notes VALUES (24, '1091639433473', 'Objects 290 and 302 appear to be the same photo card, located in two different boxes (26 and 27, respectively).'); INSERT INTO notes VALUES (4, '1089752634084', 'Information transferred to Object 593, CDI Object Description'); INSERT INTO notes VALUES (5, '1089811635529', 'Information transferred to Object 312, CDI Object Description'); INSERT INTO notes VALUES (6, '1089813972620', 'Information transferred to Object 328, CDI Object Description. '); INSERT INTO notes VALUES (7, '1089814305707', 'Information transferred to Object 331, CDI Object Description'); INSERT INTO notes VALUES (8, '1089815423954', 'Information transferred to Object 332, CDI Object Description'); INSERT INTO notes VALUES (9, '1089817524665', 'Information transferred to Object 343, CDI Object Description'); INSERT INTO notes VALUES (10, '1089826327692', 'Information transferred to Object 369, CDI Object Description'); INSERT INTO notes VALUES (12, '1089901434725', 'Information transferred to Object 457, CDI Object Description '); INSERT INTO notes VALUES (13, '1089904353907', 'Information transferred to Object 481, CDI Object Description'); INSERT INTO notes VALUES (14, '1089912565519', ' Information transferred to Object 506, CDI Object Description'); INSERT INTO notes VALUES (15, '1089919117890', 'Information transferred to Object 547, CDI Object Description'); INSERT INTO notes VALUES (18, '1090348559933', 'Several folders from Box 18 and 21 are missing photo negatives that could be important. Particularly important could be a missing album of negatives from 1940 at BC 53 from box 18. The folder that this album should be in is titled "Photo Negs Sites Chaco Canyon, N.M., BC 53 site Album 1940." (see also object numbers 692, 691, 690, 698). S. McElrath (Archivist at the National Anthropological Archives) has no knowledge of what happened to these negatives. The only information we have at the moment is that they were taken to be copied in 1988. The originals and copies of them may be around somewhere. Susan said to ask V. Thomas (anther archivist at the National Anthropological Archives) because she''s been at NAA longer. Box 21, contains a folder titled "Photo negs. Artifacts Site--Chaco Canyon, N.M., BC 53 site (pottery bone and stone tools)." that contains nothing but the note: "Nitrate Negs. taken to be copied onto safety film SG 5/4/88." Other folders from this box (mainly miscellaneous artifact photos with little contextual information and no folder labeled specifically with Chaco) also contain the same handwritten notes. In box 21, they are: "Artifacts Type--Pottery--Sherds", "Artifacts--Type--Pottery--Pitchers and jugs.", "Artifacts--Type--Pottery--Bowls.", Bowls", "Misc. Unidentified" "Artifacts--Type--Shell Beads", "Artifacts Type--Stone Tools--Misc.", "Artifacts Type--Pottery--Sherds," UPDATE 7/21 WEDNESDAY Vyrtis came through and located two boxes of nitrate negatives from the Roberts collection. these boxes do not have numbers of their own, so we''ll be calling them boxes 30 and 31. The boxes have envelopes detailing the boxes where the negatives were pulled from, so I will link the negatives entered as objects to both the box that they should have been in as well as the new box that they are currently being stored in. Also, the missing negatives from the "Miscellaneous Unidentified" folder in Box 21 were found and contained nothing relevant to Chaco. '); INSERT INTO notes VALUES (25, '1095434488486', 'sep 9/14/2004 - Most of photos in the Roberts Papers, Box 23, folder entitled "Photo-Prints, Sites, Chaco Canyon, N.M., Bc 53 Site, 1941 Season" are different images, though some of them show the same area from a slightly different perspective or at a slightly earlier or later time as indicated by the changes in the locations of people in the image. Although we could probably exclude a few from our copy list, in general it wouldn''t be worth making a separate trip back to NAA for that purpose. '); -- -- Data for TOC entry 100 (OID 561353) -- Name: work; Type: TABLE DATA; Schema: public; Owner: rwb3y -- INSERT INTO "work" VALUES (83, NULL, '1930', NULL, 'Anonymous, 0', 'Glimpses of Our National Monuments', ' National Park Service, Washington, D.C. pp. 10-14.'); INSERT INTO "work" VALUES (84, NULL, '1930', NULL, 'Anonymous, 0', 'University Field School', ' El Palacio 29(1):31-32.'); INSERT INTO "work" VALUES (85, NULL, '1931', NULL, 'Anonymous, 0', 'Chetro Ketl Still a Riddle: Great Chaco Canyon Site Offers Problems Still to be Solved by Archaeologists', ' El Palacio 31(3):29-31.'); INSERT INTO "work" VALUES (86, NULL, '1931', NULL, 'Anonymous, 0', 'Summer Field School at Chaco Canyon', ' El Palacio 31(3):29-37.'); INSERT INTO "work" VALUES (87, NULL, '1931', NULL, 'Anonymous, 0', 'Summer Work Under Way', ' El Palacio 30(21-22):274-277.'); INSERT INTO "work" VALUES (88, NULL, '1932', NULL, 'Anonymous, 0', 'Chaco Inscriptions', ' El Palacio 33(7-8):67-68.'); INSERT INTO "work" VALUES (89, NULL, '1932', NULL, 'Anonymous, 0', 'Dr', 'Hewett Announces Discovery. El Palacio 32(19-20):255-257.'); INSERT INTO "work" VALUES (90, NULL, '1932', NULL, 'Anonymous, 0', 'Excavations at Chetro Ketl', ' El Palacio 33(2):13-20.'); INSERT INTO "work" VALUES (91, NULL, '1932', NULL, 'Anonymous, 0', 'Excavations at the Ruins of Chetro Ketl in Chaco Canyon, New Mexico', ' The Masterkey 6:98.'); INSERT INTO "work" VALUES (92, NULL, '1932', NULL, 'Anonymous, 0', 'Oldest Tree Ring Record of Ancient Pueblos', ' El Palacio 32(7-8):108-110.'); INSERT INTO "work" VALUES (93, NULL, '1933', NULL, 'Anonymous, 0', 'Announcement of Summer Field Sessions', ' Chetro Ketl, Chaco Canyon. El Palacio 34(7-8):49-54.'); INSERT INTO "work" VALUES (94, NULL, '1933', NULL, 'Anonymous, 0', 'Summer Field Session', 'Permanent Research Station at Chaco. El Palacio 35(7-8):65-70.'); INSERT INTO "work" VALUES (95, NULL, '1933', NULL, 'Anonymous, 0', 'The Chaco Canyon Thirty-Five Years Ago', ' El Palacio 34(17-18):127-135.'); INSERT INTO "work" VALUES (96, NULL, '1934', NULL, 'Anonymous, 0', 'U', '. Department of Interior, National Park Service, Southwestern Monuments Six Year Program. U.S. Department of the Interior, National Park Service.'); INSERT INTO "work" VALUES (97, NULL, '1936', NULL, 'Anonymous, 0', 'A Few Papers on the Chaco Canyon', ' Southwestern Lore 2(1):22. June.'); INSERT INTO "work" VALUES (98, NULL, '1937', NULL, 'Anonymous, 0', 'New Chaco Building and Season''s Work Discussed', ' El Palacio 42(13-15):84-86.'); INSERT INTO "work" VALUES (99, NULL, '1937', NULL, 'Anonymous, 0', 'No title', ' New Mexico Anthropologist 1(3):40.'); INSERT INTO "work" VALUES (100, NULL, '1938', NULL, 'Anonymous, 0', 'The University of New Mexico and the School of American Research', ' New Mexico Anthropologist 2(3):162.'); INSERT INTO "work" VALUES (101, NULL, '1941', NULL, 'Anonymous, 0', 'Chaco Threatening Rock Falls', ' El Palacio 48(2):25-26.'); INSERT INTO "work" VALUES (102, NULL, '1955', NULL, 'Anonymous, 0', 'Chaco Canyon National Monument, New Mexico', ' U.S. Department of the Interior Pamphlet.'); INSERT INTO "work" VALUES (103, NULL, '1974', NULL, 'Anonymous, 0', 'Professional Activities, Chaco Center, National Park Service', ' AWANYU 2(4):40-43.'); INSERT INTO "work" VALUES (104, NULL, '1975', NULL, 'Anonymous, 0', 'Professional Activities, Chaco Center, National Park Service', ' AWANYU 3(3):7-10; 3(4):8-13.'); INSERT INTO "work" VALUES (105, NULL, '1976', NULL, 'Anonymous, 0', 'Professional Activities, Chaco Center, National Park Service', ' AWANYU 4(1):7, 40-41; 4(2):5-7, 39-41; 4(3):40-42; 4(4):18-21.'); INSERT INTO "work" VALUES (106, NULL, '1977', NULL, 'Anonymous, 0', 'Professional Activities, Chaco Center, National Park Service', ' AWANYU 5(1):31-33; 5(2):45-48; 5(3):5-7, 36.'); INSERT INTO "work" VALUES (107, NULL, '1987', NULL, 'Anonymous, 0', 'Chaco Park Land Exchange: A "Win Win" Solution', ' National Parks 61:1. Jan-Feb.'); INSERT INTO "work" VALUES (144, NULL, '1959', NULL, 'Bryant Bannister, 0', 'Tree-Ring Dating of Archaeological Sites in the Chaco Canyon Region, New Mexico', ' Unpublished Ph.D. dissertation, Department of Anthropology, University of Arizona, Tucson.'); INSERT INTO "work" VALUES (147, NULL, '1965', NULL, 'Bryant Bannister, 0', 'Tree-Ring Dating of the Archeological Sites in the Chaco Canyon Region, New Mexico', ' Southwestern Monuments Association Technical Series 6(2):117-206, Globe, AZ.'); INSERT INTO "work" VALUES (172, NULL, '1980', 0, 'C. Benson, 0', 'Anasazi Sun-Watching Stations', ' El Palacio 86(2):4-9.'); INSERT INTO "work" VALUES (197, NULL, '1937', NULL, 'Lansing B. Bloom, 0', 'Bourke on the Southwest', ' New Mexico Historical Review XI(1&3).'); INSERT INTO "work" VALUES (193, NULL, '1920', 0, 'Lansing B. Bloom, 0', 'Pre-Historic Villages', ' El Palacio 8:30-34.'); INSERT INTO "work" VALUES (285, NULL, '1997', NULL, 'Bureau of Reclamation, 0', 'Draft Annual Progress Report, Chaco Culture National Historical Park, New Mexico, Erosion Control', 'Bureau of Reclamation, Denver.'); INSERT INTO "work" VALUES (315, NULL, '1982', NULL, 'Catherine M. Cameron, 0', 'The Chipped Stone of Chaco Canyon, New Mexico', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published in 1997.'); INSERT INTO "work" VALUES (353, NULL, '1990', 0, 'John B. Carlson, 0', 'America''s Ancient Skywatchers', ' National Geographic 177(3):76-108.'); INSERT INTO "work" VALUES (423, NULL, '1980', 0, 'Anne C. Cully, 0', 'Chaco Canyon Plant List', ' Report to M. R. Fletcher, Office of Natural Resources, Nationl Park Service, Santa Fe.'); INSERT INTO "work" VALUES (450, NULL, '1915', 0, 'Byron Cummings, 0', 'Kivas of the San Juan Drainage', ' American Anthropologist 17(2):272-282.'); INSERT INTO "work" VALUES (507, NULL, '2002', 0, 'Dennis Doxtater, 0', 'A Hypothetical Layout of Chaco Canyon Structures via Large-Scale Alignments between Significant Natural Features', ' Kiva 68(1):1-25.'); INSERT INTO "work" VALUES (512, NULL, '1983', NULL, 'David E. Doyel, 0; Cory D. Breternitz, 1; Michael P. Marshall, 2', 'Chacoan Community Structure: Bis sa''ani Pueblo and the Chaco Halo', ' Kiva 49:1-2.'); INSERT INTO "work" VALUES (557, NULL, '1980', NULL, 'James I. (Editor Ebert, 0; with contributions by Galen N. Brown, 1; Dwight L. Drager, 2; James I. Ebert, 3; Dick Ping Hsu, 4; Thomas R. Lyons, 5', 'Remote Sensing in Large-Scale Cultural Resources Survey: A Case Study from the Arctic', ' In Cultural Resources Remote Sensing, edited by Thomas R. Lyons and Frances Joan Mathien, pp. 7-78. Cultural Resources Management Division, National Park Service, Washington.'); INSERT INTO "work" VALUES (560, NULL, '1975', 0, 'James I. Ebert, 0; Robert K. Hitchcock, 1', 'Chaco Canyon''s Mysterious Highways', ' Horizon 17(4):48-53.'); INSERT INTO "work" VALUES (575, NULL, '1975', 0, 'Florence H. Ellis, 0', 'A Thousand Years of the Pueblo Sun-Moon-Star Calendar', ' In Archaeoastronomy in Pre-Columbian America, edited by Anthony F. Aveni, pp. 59-87. University of Texas, Austin.'); INSERT INTO "work" VALUES (701, NULL, '1930', NULL, 'Charles W. Gilmore, 0', 'Fossil Hunting in New Mexico', ' In Smithsonian Institution, Explorations and Fieldwork, Pub. 3060, pp. 17-22.'); INSERT INTO "work" VALUES (762, NULL, '1939', NULL, 'J. B. Hamilton, 0', 'Threatening Rock', ' National Park Service Region 3 Quarterly 1(1):8. Santa Fe.'); INSERT INTO "work" VALUES (769, NULL, '1929', 0, 'Mabel Harding, 0', 'Architectural Details of Chetro Ketl', ' Archive 2125J, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (913, NULL, '2001', 0, 'Matthew Jaffe, 0', 'Chaco Canyon''s Star Power', ' Sunset Magazine April.'); INSERT INTO "work" VALUES (955, NULL, '1931', 0, 'Neil Merton Judd, 0', 'A Sentinel of the Desert', ' New Mexico Highway Journal 9(4):19, 29.'); INSERT INTO "work" VALUES (988, NULL, '1983', NULL, 'W. James Judge, 0', 'Chaco Canyon-San Juan Basin', ' Paper presented at the School of American Research Seminar entitled "Dynamics of Southwestern Prehistory." School of American Research, Santa Fe. Published in 1989.'); INSERT INTO "work" VALUES (1018, NULL, '1997', 0, 'John Kantner, 0', 'Ancient Roads, Modern Mapping', ' Evaluating Chaco Anasazi Roadways Using GIS Technology. Expedition 39(3):49-62.'); INSERT INTO "work" VALUES (1227, NULL, '1969', NULL, 'Wilfred Logan, 0; Zorro Bradley, 1', 'Prospectus: Chaco Canyon Studies', ' National Park Service, U.S. Department of the Interior, Washington, D.C.'); INSERT INTO "work" VALUES (1228, NULL, '1982', 0, 'Stephen Long, 0', 'Ageless Dagger of Time', ' Santa Fe Reporter July 15.'); INSERT INTO "work" VALUES (1330, NULL, '1886', 0, 'Dagmar Mariager, 0', 'Some Zuni Traditions', ' Overland Monthly 8:216-218.'); INSERT INTO "work" VALUES (1389, NULL, '1984', 0, 'Frances Joan Mathien, 0', 'Archeological Application of Historic Structure Reports', ' CRM Bulletin 7(1):11, 19.'); INSERT INTO "work" VALUES (1468, NULL, '1981', 0, 'Peter J. McKenna, 0', 'Ceramics of Bc 59', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1570, NULL, '1959', 0, 'Elizabeth Ann Morris, 0', 'A Pueblo I Site near Bennett''s Peak, New Mexico', ' El Palacio 66(5):169-175.'); INSERT INTO "work" VALUES (1584, NULL, '1885', NULL, '(Marquis) de Nadaillac, 0', 'The Cliff-Dwellers and Inhabitants of the Pueblos', ' In Pre-Historic America, by the Marquis de Nadaillac, pp. 198-259. Murray, London.'); INSERT INTO "work" VALUES (1588, NULL, '1962', NULL, 'National Park Service, 0', 'Handbook for Ruins Stabilization, Part 2', ' Field Methods. U.S. Department of the Interior, Washington, D.C.'); INSERT INTO "work" VALUES (1589, NULL, '1995', NULL, 'National Park Service, 0', 'Chaco Museum Collection Guide, Chaco Culture National Historical Park', ' Submitted in fulfillment of Southwest Parks and Monuments Grant.'); INSERT INTO "work" VALUES (1590, NULL, '1997', NULL, 'National Park Service, 0', 'Baseline Water Quality Data, Inventory and Analysis, Chaco Culture National Historical Park', ' Technical Report Water Resources Division, National Park Service, Fort Collins, CO.'); INSERT INTO "work" VALUES (1699, NULL, '1985', 0, 'Stephen Post, 0', 'A Ceramic Analysis of the Trash Area at Site 29SJ626', ' Contract PX-7029-4-0703. Southwest Archaeological Consultants, Santa Fe.'); INSERT INTO "work" VALUES (1712, NULL, '1992', NULL, 'James M. Potter, 0', 'Power and Negotiation Through Material Culture: The Case of the Chaco Regional System', ' Kroeber Anthropological Society Papers 73/74:26-39.'); INSERT INTO "work" VALUES (1791, NULL, '1973', 0, 'Jonathan E. Reyman, 0', 'Archaeoastromony and the Planetarium', ' The Planetarium 9/73:125-131.'); INSERT INTO "work" VALUES (1844, NULL, '1974', NULL, 'William J. Robinson, 0; Bruce G. Harrill, 1; Richard L. Warren, 2', 'Tree-ring Dates from New Mexico B: Chaco-Gobernador Area', ' The Laboratory of Tree-Ring Research, University of Arizona, Tucson.'); INSERT INTO "work" VALUES (1877, NULL, '1997', NULL, 'Dean J. Saitta, 0', 'Power, Labor, and the Dynamics of Change in Chacoan Political Economy', ' American Antiquity 62(1):7-26.'); INSERT INTO "work" VALUES (1885, NULL, '1980', 0, 'Polly Schaafsma, 0', 'Indian Rock Art of the Southwest', ' School of American Research Press Santa Fe.'); INSERT INTO "work" VALUES (1914, NULL, '1998', 0, 'Michael A. Schillaci, 0; E. G. Ozolins, 1; Thomas C. Windes, 2', 'A Multivariate Analysis of Craniometric Variation among the Prehistoric Pueblo Indian Population', ' Poster session, 71st Pecos Conference, Pecos.'); INSERT INTO "work" VALUES (1986, NULL, '1982', NULL, 'Li & Associates Simons, Inc., 0', 'Erosion Study at Chaco Culture National Historical Park, New Mexico', ' Contract CX 7029-1-0018. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1987, NULL, '1982', NULL, 'Li & Associates Simons, Inc., 0', 'Flood Plain Maps for Chaco Culture National Historical Park New Mexico', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1988, NULL, '1982', NULL, 'Li & Associates Simons, Inc., 0', 'Soil Piping Study in the Vicinity of Pueblo Bonito, Chaco Culture National Historical Park New Mexico', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2044, NULL, '1973', NULL, 'Soil Conservation Service, 0', 'Chaco Canyon National Monument Watershed Investigation, San Juan River Basin, McKinley, Sandoval and San Juan Counties, New Mexico', ' Soil Conservation Service Watershed Investigation Report Albuquerque.'); INSERT INTO "work" VALUES (2045, NULL, '1980', NULL, 'Southwest Regional Office, 0', 'Chaco Outliers', ' An Alternatives Study. National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (2085, NULL, '1969', NULL, 'M. A. Stokes, 0; T. L. Smiley, 1', 'Tree-Ring Dates from the Navajo Land Claim: IV', ' The Eastern Sector. Tree-Ring Bulletin 29(1-2):2-15.'); INSERT INTO "work" VALUES (2081, NULL, '1937', 0, 'T. D. Stewart, 0', 'Different Types of Cranial Deformity in the Pueblo Area', ' American Anthropologist 39:169-171.'); INSERT INTO "work" VALUES (2117, NULL, '1970', 0, 'Ronald R. Switzer, 0', 'A Late Red Mesa-Early Wingate Phase Necklace', ' The Artifact 8(1):17-31. El Paso Archaeological Society.'); INSERT INTO "work" VALUES (2138, NULL, '1980', NULL, 'H. Wolcott Toll, III, 0', 'Ceramic Comparisons Concerning Redistribution in Chaco Canyon, New Mexico', ' Paper presented at the Symposium entitled Technology and Trade: A Ceramic Colloquium. University of Southampton, England.'); INSERT INTO "work" VALUES (2135, NULL, '1898', 0, 'Tom Till, 0', 'Chaco Canyon', ' Southwest Parks and Monuments Assn., Tucson.'); INSERT INTO "work" VALUES (2218, NULL, '1879', NULL, 'Engineer Department U.S. Army, 0', 'Report Upon United States Geographical Surveys West of the One-Hundredth Meridian, in Charge of Lieut', 'Geo. M. Wheeler, Corps of Engineers, U.S. Army, Published by the Authority of the Honorable the Secretary of War, in Accordance with Acts of Congress of June 23, 1974, and February 15, 1875, Volume VII, Archaeology. Government Printing Office, Washington, D.C.'); INSERT INTO "work" VALUES (2220, NULL, '1995', NULL, 'Department of Transportation United States, 0', 'Final Construction Report on New Mexico PRA-CHCU 10(1), Pueblo Bonito Bridge, Chaco Culture National Historical Park', ' Ms. report by U.S. D.O.T., Federal Highway Aadministration, Central Federal Lands Highway Division, Region 16, Sept. 21, 1995, Denver.'); INSERT INTO "work" VALUES (2223, NULL, '1917', NULL, 'Smithsonian Institution United States, 0', 'Prehistoric Remains in New Mexico, Colorado, and Utah', ' Smithsonian Miscellaneous Collections 66:76-92.'); INSERT INTO "work" VALUES (2224, NULL, '1921', NULL, 'Smithsonian Institution United States, 0', 'Archaeological Investigations in Utah, Arizona, and New Mexico', ' Smithsonian Miscellaneous Collections 72:96-102.'); INSERT INTO "work" VALUES (2225, NULL, '1979', NULL, 'University Analytical Center, 0', 'Fourth Quarterly Report of the Southwest National Monuments Aerosol Study', ' University Analytical Center, Department of Chemistry, University of Arizona, Tucson.'); INSERT INTO "work" VALUES (2293, NULL, '1957', 0, 'R. Gordon Vivian, 0', 'Two Navaho Baskets', ' El Palacio 64(5-6):145-155.'); INSERT INTO "work" VALUES (2404, NULL, '1932', 0, 'Gene Weltfish, 0', '[Prehistoric Basketry of Pueblo Bonito, Chaco Canyon]', ' Smithsonian Miscellaneous Collections 89(7):21-22.'); INSERT INTO "work" VALUES (2474, NULL, '1955', 0, 'G. B. Wilson, 0', 'Pueblo Bonito [a poem]', ' Desert Magazine 18(9):2.'); INSERT INTO "work" VALUES (2530, NULL, '1998', NULL, 'Thomas C. Windes, 0; Rachel Anderson, 1', 'Sunrise, Sunset: Sedentism and Mobility in the Chaco East Community', ' Paper presented at the 63rd Annual Meeting of the Society for American Archaeology, Seattle.'); INSERT INTO "work" VALUES (2527, NULL, '1999', 0, 'Thomas C. Windes, 0', 'A Chacoan Community at Pueblo Pintado', ' Paper presented at the 72nd Pecos Conference, Pinedale, AZ.'); INSERT INTO "work" VALUES (25, NULL, '1982', 0, 'Nancy J. Akins, 0', 'Perspectives on Faunal Resource Utilization, Chaco Canyon, New Mexico', ' Paper presented at the New Mexico Archeological Council Workshop No. 1: Archeological Research in the San Juan Basin. Chaco Culture National Historical Park, NM. Published as 1982e.'); INSERT INTO "work" VALUES (65, NULL, '1869', 0, 'Anonymous, 0', 'The Aztec Ruins of Mexico and Arizona', ' All The Year Round 1:540-544. London. May 8.'); INSERT INTO "work" VALUES (66, NULL, '1880', 0, 'Anonymous, 0', 'Aztec Ruins in New Mexico', ' Pacific Rural Press 19:185. March 20.'); INSERT INTO "work" VALUES (67, NULL, '1882', 0, 'Anonymous, 0', 'The First Americans', ' Harper''s Magazine 65:342-355. August.'); INSERT INTO "work" VALUES (68, NULL, '1888', 0, 'Anonymous, 0', 'Aboriginal Architecture in the Southwest', ' Science 11:257-259.'); INSERT INTO "work" VALUES (69, NULL, '1918', 0, 'Anonymous, 0', 'National Monuments of New Mexico', ' 5. The Chaco Canyon National Monument. El Palacio 5:257-262.'); INSERT INTO "work" VALUES (70, NULL, '1921', 0, 'Anonymous, 0', 'Explorations in Chaco Canyon in 1920', ' El Palacio 10:(2-5):12-13. February 19.'); INSERT INTO "work" VALUES (71, NULL, '1921', 0, 'Anonymous, 0', 'The Pueblo Bonito Expedition of the National Geographic Society', ' Science 54:458. November 11.'); INSERT INTO "work" VALUES (72, NULL, '1921', 0, 'Anonymous, 0', 'Ruins of Chaco Canyon, New Mexico; Nature-Made Treasure Chest to be Excavated and Studied', ' National Geographic Magazine 39:637-643.'); INSERT INTO "work" VALUES (2222, NULL, '1930', 0, 'National Park Service United States, 0', 'Chaco Canyon National Monument', ' In Glimpses of Our National Monuments, pp. 10-14. USDI, National Park Service, Government Printing Office, Washington, D.C.'); INSERT INTO "work" VALUES (2221, NULL, '1917', 0, 'National Park Service United States, 0', 'Chaco Canyon National Monument', ' In General Information Regarding the National Monuments Set Aside Under the Act of Congress Approved June 8, 1908, pp. 11-12. USDI, National Park Service, Government Printing Office, Washington, D.C.'); INSERT INTO "work" VALUES (73, NULL, '1925', 0, 'Anonymous, 0', 'Chaco Canyon National Monument', ' American Scenic and Historical Preservation Society, 30th Annual Report, 1925, pp. 156-157.'); INSERT INTO "work" VALUES (74, NULL, '1927', 0, 'Anonymous, 0', 'Recent Finds in Chaco Canyon', ' El Palacio 23:485-487.'); INSERT INTO "work" VALUES (75, NULL, '1927', 0, 'Anonymous, 0', 'Slab House Builders in Chaco Canyon', ' El Palacio 23(18):462-464.'); INSERT INTO "work" VALUES (1621, NULL, '1928', 0, 'New Mexico Highway Journal, 0', 'Prehistoric Chaco Canyon "Roads" Puzzle Scientists, p', '9.'); INSERT INTO "work" VALUES (76, NULL, '1928', 0, 'Anonymous, 0', 'Prehistoric Chaco Canyon "Roads" Puzzle Scientists', ' New Mexico Highway Journal, March.'); INSERT INTO "work" VALUES (77, NULL, '1929', 0, 'Anonymous, 0', 'East Tower Uncovered', ' El Palacio 26(19-25):315-316. Also in Digs 1:5.'); INSERT INTO "work" VALUES (78, NULL, '1929', 0, 'Anonymous, 0', 'Hewett Describes Chaco Canyon, Past and Present', ' El Palacio 26(19-25):313-315. Also in Digs 1:3-4.'); INSERT INTO "work" VALUES (79, NULL, '1929', 0, 'Anonymous, 0', 'Talus Mounds Excavated', ' El Palacio 27:40-41.'); INSERT INTO "work" VALUES (80, NULL, '1929', 0, 'Anonymous, 0', 'University Group Works at Chetro Ketl', ' El Palacio 26(19-25):312-313. Also in Digs1:2-3.'); INSERT INTO "work" VALUES (81, NULL, '1930', 0, 'Anonymous, 0', 'Dam Saves Pueblo from Enemy Stream', ' El Palacio 29(12-13):233.'); INSERT INTO "work" VALUES (82, NULL, '1930', 0, 'Anonymous, 0', 'Excavations and Other Work (Section V of the Director''s Annual Report)', ' El Palacio 29(12-13):201-203.'); INSERT INTO "work" VALUES (116, NULL, '1995', 0, 'Susan Arritt, 0', '"Anteologists" Unearth Secrets of the Ancients', ' New Mexico Magazine 73(2):36-39.'); INSERT INTO "work" VALUES (1872, NULL, '1977', 0, 'David G. Saile, 0', '"Architecture" in Pre-hispanic Pueblo Archaeology; Examples from Chaco Canyon, New Mexico', ' World Archeology 9(2):157-173.'); INSERT INTO "work" VALUES (2327, NULL, '1996', 0, 'R. Gwinn Vivian, 0', '"Chaco" As a Regional System', ' In Interpreting Southwestern Diversity: Underlying Principles and Overarching Patterns, edited by Paul R. Fish and J. Jefferson Rid, pp. 45-53. Arizona State University Anthropological Research Paper No. 48. Tempe.'); INSERT INTO "work" VALUES (616, NULL, '1997', 0, 'C. Finn, 0', '"Leaving More than Footprints": Modern Votive Offerings at Chaco Canyon Pre-historic Site', ' Antiquity 71:271:169-178.'); INSERT INTO "work" VALUES (2349, NULL, '1964', 0, 'Charles B. Voll, 0; Martin T. Mayer, 1', '1964 Stabilization of Casa Chiquita Ruin, Chaco Canyon National Monument', ' Ruins Stabilization Unit, National Park Service, Southwest Archaeological Center, Globe, AZ. Ms. on file, Western Archeological and Conservation Center, Tucson.'); INSERT INTO "work" VALUES (2470, NULL, '1998', 0, 'Richard H. Wilshusen, 0', '"Things Just Went Nuts": Identifying Changes in the Cultural Landscape of the San Juan River Basin in the Ninth and Tenth Centuries', ' Paper presented at the 63rd Annual Meeting of the Society for American Archaeology, Seattle.'); INSERT INTO "work" VALUES (595, NULL, '2002', 0, 'James D. Farmer, 0', '"When Pueblo met Chetro": Turner''s Mexican Hypothesis and the Evolution of Chaco Great House Architecture', ' Paper presented at the 67th Annual Meeting of the Society for American Archaeology, Denver.'); INSERT INTO "work" VALUES (1279, NULL, '1976', 0, 'Thomas R. Lyons, 0', '(assembler) Remote Sensing Experiments in Cultural Resource Studies', ' Non-destructive Methods of Archeological Exploration, Survey, and Analysis. Reports of the Chaco Center No. 1. National Park Service and University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1981, NULL, '1982', 0, 'Alan H. Simmons, 0', '(assembler) Prehistoric Adaptive Strategies in the Chaco Canyon Region, Northwestern New Mexico', ' Navajo Nation Papers in Anthropology No. 9. Window Rock, AZ.'); INSERT INTO "work" VALUES (1082, NULL, NULL, 0, 'R. C. Koeppen, 0', '1977', 'Unworked Wood from Bc 288. Submitted from Department of Agriculture, U.S. Forest Service, Forest Products Laboratory, Madison, WI. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1541, NULL, NULL, 0, 'James L. Moore, 0', '1979', 'An Analysis of the Bone Tool Assemblage from a Site in Chaco Canyon, New Mexico. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1310, NULL, '1998', 0, 'Nancy Mahoney, 0', '1996 Cottonwood Wash Survey Project Report, San Juan County, Utah', ' Report on file, Bureau of Land Management, Monticello.'); INSERT INTO "work" VALUES (1311, NULL, '1998', 0, 'Nancy Mahoney, 0', '1997 Cottonwood Wash Survey Project Report, San Juan County, Utah', ' Report on file, Bureau of Land Management, Monticello.'); INSERT INTO "work" VALUES (1487, NULL, '1975', 0, 'Peter J. McKenna, 0; Thomas C. Windes, 1', '29SJ1088: Site Notes', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (909, NULL, '1978', 0, 'LouAnn Jacobson, 0', '29SJ633: An Application and Test of Remote Sensing in Archeology', ' Ms. on file, Branch of Remote Sensing, National Park Service, Intermountain Region, Santa Fe Office.'); INSERT INTO "work" VALUES (128, NULL, '1938', 0, 'Gordon C. Baldwin, 0', 'A Basket Maker III Sandal Tablet', ' Southwestern Lore 5(30):48-52.'); INSERT INTO "work" VALUES (35, NULL, '1986', 0, 'Nancy J. Akins, 0', 'A Biocultural Approach to Human Burials from Chaco Canyon, New Mexico', ' Reports of the Chaco Center, No. 9. Branch of Cultural Research, National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (31, NULL, '1985', 0, 'Nancy J. Akins, 0', 'A Biocultural Approach to the Human Burials from Chaco Canyon, New Mexico', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published in 1986.'); INSERT INTO "work" VALUES (198, NULL, '1982', 0, 'E. Boling, 0', 'A Brief History of Investigations and Excavations in Chaco Canyon: 1877 to Present', ' U.S.D.I., National Park Service.'); INSERT INTO "work" VALUES (324, NULL, '1992', 0, 'Catherine M. Cameron, 0', 'A Brief Summary of Chipped Stone Use at Site 29SJ627', ' In Excavations at 29SJ627, Chaco Canyon, New Mexico. Volume II: The Artifact Analyses, edited by Frances Joan Mathien, pp. 249-264. Reports of the Chaco Center No. 11. Branch of Cultural Research, National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (813, NULL, '1975', 0, 'Alden C. Hayes, 0', 'A Cache of Gardening Tools: Chaco Canyon', ' In Collected Papers in Honor of Marjorie Ferguson Lambert, edited by Albert H. Schroeder, pp. 73-84. Papers of the Archaeological Society of New Mexico: 3. Albuquerque.'); INSERT INTO "work" VALUES (2241, NULL, '1929', 0, 'R. P. Vann, 0', 'A Cacique''s Sanctum', ' Archive 1884, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1471, NULL, '1983', 0, 'Peter J. McKenna, 0', 'A Case Study of an Early Bonito Phase Small Site, 29SJ1360, in Chaco Canyon, New Mexico', ' Unpublished M.A. thesis, Department of Anthropology, Eastern New Mexico University, Portales.'); INSERT INTO "work" VALUES (2231, NULL, '1998', 0, 'Ruth M. Van Dyke, 0', 'A Chacoan Landscape: The View from the Red Mesa Valley', ' Paper presented at the 63rd Annual Meeting of the Society for American Archaeology, Seattle.'); INSERT INTO "work" VALUES (1467, NULL, '1981', 0, 'Peter J. McKenna, 0', 'A Chacoan Primer: Village Excavations in Chaco Canyon 1973-1978', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published in 1986.'); INSERT INTO "work" VALUES (1939, NULL, '1969', 0, 'Dan Scurlock, 0', 'A Checklist of the Birds of Chaco Canyon National Monument', ' Ms. on file, Natural Resources Office, National Park Service, Denver.'); INSERT INTO "work" VALUES (542, NULL, '1981', 0, 'Alan R. Dulaney, 0; Steven G. Dosh, 1', 'A Class II Cultural Resources Inventory of the Southern Portion of the Chaco Planning Unit, McKinley and Sandoval Counties, New Mexico', ' Bureau of Land Management, Albuquerque District, Albuquerque.'); INSERT INTO "work" VALUES (2043, NULL, '1980', 0, 'A. Sofaer, 0; V. Zinser, 1; R. M. Sinclair, 2', 'A Comment on "Anasazi Solar Markers?" Science 209:860', NULL); INSERT INTO "work" VALUES (1994, NULL, '1980', 0, 'Rolf M. Sinclair, 0', 'A Comment on "Megalithic Monuments', ' Scientific American p. 8.'); INSERT INTO "work" VALUES (477, NULL, '1936', 0, 'Betty Didcoct, 0', 'A Comparative Study of the Architectural Elements, Distribution, and History of the Upper-Story Kiva', ' Archives 1861, 1917, 1952, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (451, NULL, '1994', 0, 'Ross Curtis, 0; Roger Wakenhorst, 1', 'A Comparative View of Small House Form and Function in the Chacoan System: Investigations at the Chacoan Outlier of Whirlwind Lakes', ' Paper presented at the 59th Annual Meeting of the Society for American Archaeology, Anaheim.'); INSERT INTO "work" VALUES (1647, NULL, '1981', 0, 'Ann M. Palkovich, 0', 'A Consideration of Disease and Mortality Patterns in Burial Rooms of Pueblo Bonito', ' Paper presented at the 46th Annual Meeting of the Society for American Archaeology, San Diego. Published in 1984.'); INSERT INTO "work" VALUES (2215, NULL, '2000', 0, 'P. J. Tuwaletstiwa, 0', 'A Critique on Extending the 107E 57'' 25" Meridian from Chaco Canyon to Aztec to Paquime', ' Paper presented at the Architecture Conference for the Chaco Synthesis. Ms. on file with author.'); INSERT INTO "work" VALUES (2388, NULL, '1985', 0, 'Melody Webb, 0; James J. Donoghue, 1; Dwight L. Drager, 2; Robert P. Powers, 3; Barry Sulam, 4', 'A Cultural Resources Organizational Task Force Report', ' National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (1424, NULL, '1983', 0, 'Frances Joan Mathien, 0; W. James Judge, 1', 'A Data Base Management System for Cultural Resource Managers', ' The George Wright FORUM 3(3):2-17. Summer. Hancock, MI.'); INSERT INTO "work" VALUES (1804, NULL, '1982', 0, 'Jonathan E. Reyman, 0', 'A Deposit from Pueblo Bonito Having Astronomical Significance', ' Archaeoastronomy (Supplement to the Journal of the History of Astronomy) 5:14-19.'); INSERT INTO "work" VALUES (1700, NULL, '1989', 0, 'Stephen Post, 0', 'A Dual Cylinder Jar from a Pueblo II-III Site near Black Hat, McKinley County, New Mexico', ' Pottery Southwest 16(2):1-3.'); INSERT INTO "work" VALUES (1102, NULL, '1994', 0, 'Joseph J. Kovacik, 0', 'A Faunal Perspective on the Spatial Structure of Anasazi Everyday Life in Chaco Canyon, New Mexico', 'U.S.A. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. To appear in Animal Bones, Human Societies, by Peter Rowley-Conwy. Oxbrow Press, Oxford.'); INSERT INTO "work" VALUES (522, NULL, '1983', 0, 'Dwight L. Drager, 0', 'A Final Statement', ' In Remote Sensing in Cultural Resource Management: The San Juan Basin Project, edited by Dwight L. Drager and Thomas R. Lyons, p. 129. Cultural Resources Management Division, National Park Service, Washington, D.C.'); INSERT INTO "work" VALUES (2001, NULL, '1953', 0, 'Terah L. Smiley, 0; Stanley A. Stubbs, 1; Bryant Bannister, 2', 'A Foundation for the Dating of Some Late Archaeological Sites in the Rio Grande Area, New Mexico: Based on Studies in Tree-Ring Methods and Pottery Analysis', ' University of Arizona Bulletin 24(3). University of Arizona, Tucson.'); INSERT INTO "work" VALUES (1751, NULL, '1918', 0, 'T. Mitchell Prudden, 0', 'A Further Study of Prehistoric Small House Ruins in San Juan Watershed', ' American Anthropological Association Memoirs 5(1):3-50.'); INSERT INTO "work" VALUES (831, NULL, '1905', 0, 'Edgar L. Hewett, 0', 'A General View of the Archaeology of the Pueblo Region', ' In Smithsonian Institution Annual Report 1904, pp. 583-605.'); INSERT INTO "work" VALUES (1520, NULL, '1938', 0, 'James Marshall Miller, 0', 'A Glossary of Terms Applicable to Aboriginal Architecture and Construction in the American Southwest', ' Mimeograph 19, Los Angeles. Second Mimeograph, New York City in1943. Distributed by Books International, New York 1959.'); INSERT INTO "work" VALUES (715, NULL, '1957', 0, 'Harold Sterling Gladwin, 0', 'A History of Ancient Southwest', ' Bond Wheelwright, Portland, MA.'); INSERT INTO "work" VALUES (1692, NULL, '1956', 0, 'Lloyd M. Pierson, 0', 'A History of Chaco Canyon National Monument', ' Ms. on file, Chaco Archive No. 726, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (264, NULL, '2001', 0, 'David M. Brugge, 0', 'A History of Navajo Rock Art Research', ' American Indian Rock Art 27. American Rock Art Research Association.'); INSERT INTO "work" VALUES (1634, NULL, '1980', 0, 'Margaret Senter Obenauf, 0', 'A History of Research on the Chacoan Roadway System', ' In Cultural Resources Remote Sensing, edited by Thomas R. Lyons and Frances Joan Mathien, pp. 123-167. Cultural Resources Management Division, National Park Service, Washington, D.C.'); INSERT INTO "work" VALUES (256, NULL, '1980', 0, 'David M. Brugge, 0', 'A History of the Chaco Navajos', ' Reports of the Chaco Center No. 4. Division of Chaco Research, National Park Service, Albuquerque. '); INSERT INTO "work" VALUES (2512, NULL, '1986', 0, 'Thomas C. Windes, 0', 'A History of the Vivian Archives and Recommendations for Organization', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1497, NULL, '1986', 0, 'Thomas W. And Frances Levine Merlin, 0', 'A Homestead in Ruins: Richard Wetherill''s Homestead in Chaco Canyon', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (647, NULL, '2000', 0, 'Don Fowler, 0', 'A Laboratory for Anthropology: Science and Romanticism in the American Southwest, 1846-1930', ' University of New Mexico Press, Albuquerque.'); INSERT INTO "work" VALUES (1833, NULL, '1928', 0, 'Frank H. H. Roberts, Jr., 0', 'A Late Basketmaker Village of the Southwest', ' In Smithsonian Institution Explorations and Fieldwork for 1927, pp. 165-172.'); INSERT INTO "work" VALUES (2407, NULL, '1979', 0, 'Stanley L. Welsh, 0', 'A List of Charcoal Species from Chaco Site Features', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (716, NULL, '1934', 0, 'Winifred Gladwin, 0; Harold S. Gladwin, 1', 'A Method for Designation of Cultures and their Variations', ' Gila Pueblo, Lancaster Press, Lancaster, PA.'); INSERT INTO "work" VALUES (1995, NULL, '1993', 0, 'Rolf M. Sinclair, 0; Anna Sofaer, 1', 'A Method for Determining Limits on the Accuracy of Naked-Eye Locations of Astronomical Events', ' In Archaeoastronomy in the 1990s, edited by C. L. N. Ruggles, pp. 178-184. Group D Publications Ltd., Loughborough, UK.'); INSERT INTO "work" VALUES (460, NULL, '1988', 0, 'Jeffrey S. Dean, 0', 'A Model of Anasazi Behavioral Adaptation', ' In The Anasazi in a Changing Environment, edited by George J. Gumerman, pp. 25-44. Cambridge University Press, Cambridge.'); INSERT INTO "work" VALUES (896, NULL, '1977', 0, 'Cynthia Irwin-Williams, 0', 'A Model of Chacoan Society', ' Ms. on file, Department of Anthropology, Eastern New Mexico University, Portales.'); INSERT INTO "work" VALUES (924, NULL, '1931', 0, 'Fern Johnson, 0', 'A Month''s Work in Chaco Canyon (June 10 to July 8, 1931)', ' Archive 1860, 1949, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (445, NULL, '1984', 0, 'Jack F. Cully, 0', 'A Multivariate Analysis of Niche Relationships within A Nocturnal Rodent Community in Northwestern New Mexico', ' Unpublished Ph.D. dissertation, Department of Biology, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1269, NULL, '1976', 0, 'Charles K. Lumpken, Jr., 0', 'A Multivariate Craniometric Analysis of Selected Southwestern Archaeological Populations', ' Unpublished Ph.D. dissertation, Department of Anthropology, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1543, NULL, '1906', 0, 'Warren K. Moorehead, 0', 'A Narrative of Explorations in New Mexico, Arizona, etc', ' Department of Archaeology, Bulletin No. 3. Phillips Academy, Andover, MA.'); INSERT INTO "work" VALUES (2454, NULL, '1983', 0, 'Ray A. Williamson, 0', 'A Navajo Astronomical Site in Chaco Canyon National Park, New Mexico', ' Paper presented at the 161st Meeting of the American Astronomical Society, Boston.'); INSERT INTO "work" VALUES (1846, NULL, '1988', 0, 'Thomas R, Rocek, 0', 'A Navajo Ethnoarcheological Perspective on Seasonal Site Artifact Assemblages', ' Paper presented at the 53rd Annual Meeting of the Society for American Archaeology, Phoenix.'); INSERT INTO "work" VALUES (2425, NULL, '1922', 0, 'Lulu Wade Wetherill, 0; Byron Cummings, 1', 'A Navajo Folk Tale of Pueblo Bonito', ' Art and Archaeology 14(3):132-136.'); INSERT INTO "work" VALUES (360, NULL, '1940', 0, 'Gretchen Chapin, 0', 'A Navajo Myth from Chaco Canyon', ' New Mexico Anthropologist 4(4):63-67.'); INSERT INTO "work" VALUES (2189, NULL, '1902', 0, 'Alfred M. Tozzer, 0', 'A Navajo Sand Picture of the Rain Gods and Its Attendant Ceremony', 'International Congress of Americanists XIII. New York.'); INSERT INTO "work" VALUES (937, NULL, '1921', 0, 'Neil Merton Judd, 0', 'A New National Geographic Society Expedition, Ruins of Chaco Canyon, New Mexico, Nature-Made Treasure-Chest of Aboriginal American History to be Excavated and Studied; Work Begins this Month', ' National Geographic Magazine 39(6):637-643.'); INSERT INTO "work" VALUES (917, NULL, '1937', 0, 'Marjorie James, 0', 'A Note on Navajo Pottery Making', ' El Palacio 43(13-15):85-86.'); INSERT INTO "work" VALUES (2190, NULL, '1908', 0, 'Alfred M. Tozzer, 0', 'A Note on Star-Lore among the Navajos', ' Journal of American Folklore XXI(LXX). Boston and New York.'); INSERT INTO "work" VALUES (485, NULL, '1909', 0, 'R. E. Dodge, 0', 'A Paper on Arroyo Formation in the Chaco Area', ' Paper presented at the British Association for the Advancement of Science, Winnipeg.'); INSERT INTO "work" VALUES (539, NULL, '1981', 0, 'Neale Draper, 0', 'A Pattern-Recognition Study of Anasazi Ceramic Distributions in the San Juan Basin, Northern New Mexico', ' Paper for Anthropology 467, University of New Mexico. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2443, NULL, '1999', 0, 'David R. Wilcox, 0', 'A Peregrine View of Macroregional Systems in the North American Southwest', ' In Great Towns and Regional Polities in the Prehistoric American Southwest and Southeast, edited by Jill Neitzel, pp. 115-141. The Amerind Foundation, Inc. and University of New Mexico Press, Albuquerque.'); INSERT INTO "work" VALUES (1331, NULL, '1995', 0, 'Yorgos Marinakis, 0', 'A Phase Transition in a Prehistoric Human Population', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2426, NULL, '1951', 0, 'M. Wetherill, 0', 'A Piano for Pueblo Bonito', ' New Mexico 29(5):27, 39-41.'); INSERT INTO "work" VALUES (519, NULL, '1977', 0, 'Dwight L. Drager, 0', 'A Plan for the Remote Sensing Assessment of the Cultural Resources of the San Juan Basin', ' Proposal submitted to the Bureau of Indian Affairs, San Juan Regional Uranium Study, Albuquerque. Ms. on file, Remote Sensing Office, National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (475, NULL, '1992', 0, 'Stephen D. Dent, 0; Barbara McReynolds Dent, 1', 'A Planners'' Primer: Lessons from Chaco', ' In Proceedings: The Mesa Verde Symposium on Anasazi Architecture and American Design, edited and coordinated by Baker H. Morrow and V. B. Price, pp. 263-277. Morrow and Co. Ltd., Albuquerque.'); INSERT INTO "work" VALUES (474, NULL, '1997', 0, 'Stephen D. Dent, 0; Barbara Coleman, 1', 'A Planning Primer', ' Lessons from Chaco. In Anasazi Architecture and American Design, edited by Baker H. Morrow and V. B. Price, pp. 53-61. University of New Mexico Press, Albuquerque.'); INSERT INTO "work" VALUES (2208, NULL, '1979', 0, 'Gordon C. Tucker, Jr., 0', 'A Postulated Regional Exchange Network in the Southwestern United States, A', '. 900-1150. Prepared for Anthropology 614, University of Colorado, Boulder. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2465, NULL, '1997', 0, 'Wirt H. Wills, 0', 'A Preliminary Analysis of Hammerstones from Chaco Canyon, New Mexico', ' In Ceramics, Lithics, and Ornaments of Chaco Canyon. Analyses of Artifacts from the Chaco Project, 1971-1978, edited by Frances Joan Mathien, pp. 947-976. Publications in Archeology 18G, Chaco Canyon Studies. National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (2542, NULL, '1976', 0, 'Michael D. Windham, 0', 'A Preliminary Analysis of the Ceramics of Una Vida Ruin, Chaco Canyon, New Mexico', ' Prepared for Anthrpology 511. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1573, NULL, '1973', 0, 'Charles Randall Morrison, 0', 'A Preliminary Investigation of Differential Distribution of Status Items at Pueblo Bonito, Chaco Canyon, NM', ' Prepared for Anthropology 399, University of Arizona, Tucson.'); INSERT INTO "work" VALUES (1865, NULL, '1974', 0, 'Joseph R. Ross, 0', 'A Preliminary Report of Chaco Canyon Transect Number 1', ' Ms. on file, NPS Intermountain Region, Santa Fe Office.'); INSERT INTO "work" VALUES (2462, NULL, '1977', 0, 'Wirt H. Wills, 0', 'A Preliminary Report of Hammerstones from Chaco Canyon', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published in 1997.'); INSERT INTO "work" VALUES (208, NULL, '1984', 0, 'James E. Bradford, 0', 'A Preliminary Report on Archeological Testing at the "Employees Quarters," Pueblo del Arroyo, Chaco Culture National Historical Park', ' Ms. on file, NPS Intermountain Region, Santa Fe, and NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2010, NULL, '1947', 0, 'Floyd W. Snyder, 0', 'A Preliminary Survey of Water Supply and Irrigation by Prehistoric Inhabitants of the Chaco Canyon', ' Prepared for Anthropology 199F. Vivian Archive 564, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1136, NULL, '1981', 0, 'Stephen H. Lekson, 0', 'A Preliminary Test of Two Proposed Settlement Patterns', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1112, NULL, '1984', 0, 'Ruth E. Lambert, 0', 'A Quantitative Study of Architectural Attributes from Selected Anasazi Sites', ' Paper presented at the 49th Annual Meeting of the Society for American Archaeology, Portland.'); INSERT INTO "work" VALUES (1087, NULL, '2000', 0, 'Jane Kolber, 0', 'A Quarter Century Later in Chaco Canyon: A Reassessment Recording Project', ' Paper presented at the AURA-IRAC Conference, Alice Springs, Australia.'); INSERT INTO "work" VALUES (1917, NULL, '2002', 0, 'Michael A. Schillaci, 0; Christopher M. Stojanowski, 1', 'A Reassessment of Matrilocality in Chacoan Culture', ' American Antiquity 67(2):343-356.'); INSERT INTO "work" VALUES (2598, NULL, '1985', 0, 'Michael Zeilik, 0', 'A Reassessment of the Fajada Butte Solar Marker', ' Archaeoastronomy (Supplement to the Journal of the History of Astronomy) 9:69-85.'); INSERT INTO "work" VALUES (1807, NULL, '1985', 0, 'Jonathan E. Reyman, 0', 'A Reevaluation of Bi-Wall and Tri-wall Structures in the Anasazi Area', ' In Contributions to the Archaeology and Ethnohistory of Greater Mesoamerica, edited by William J. Folan, pp. 293-334. Center for Archaeological Investigations, Southern Illinois University, Carbondale and Edwardsville.'); INSERT INTO "work" VALUES (316, NULL, '1984', 0, 'Catherine M. Cameron, 0', 'A Regional View of Chipped Stone Raw Material Use in Chaco Canyon, New Mexico', ' In Recent Research on Chaco Prehistory, edited by W. James Judge and John D. Schelberg, pp. 137-152. Reports of the Chaco Center No. 8. Division of Cultural Research, National Park Service, Albuquerque.'); INSERT INTO "work" VALUES (2212, NULL, '1999', 0, 'Christy G. Turner, II, 0', 'A Reign of Terror: Butchered Human Bones Point to Cannibals in Chaco Canyon', ' Discovering Archaeology 1(3). May-June.'); INSERT INTO "work" VALUES (642, NULL, '1913', 0, 'W. Foster, 0', 'A Remarkable Carbonaceous Deposit near Putnam, New Mexico', ' Economic Geology 8:360-368.'); INSERT INTO "work" VALUES (910, NULL, '1979', 0, 'LouAnn Jacobson, 0', 'A Remote Sensing Evaluation of 29SJ633', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (779, NULL, '1963', 0, 'Lyndon L. Hargrave, 0', 'A Report on Bird Bones from Kin Kletso, A Pueblo in Chaco Canyon, New Mexico', ' Ms. on file, National Park Service, Western Archaeological and Conservation Center, Tucson.'); INSERT INTO "work" VALUES (1307, NULL, '1947', 0, 'Robert F. Maher, 0', 'A Report on Excavations in Search of a Burial Ground at Bc 48', ' Archive 393, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2488, NULL, '1980', 0, 'Thomas C. Windes, 0', 'A Review of Extramural Greathouse Middens in Chaco Canyon National Monument', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Revised and published in 1987.'); INSERT INTO "work" VALUES (763, NULL, '1850', 0, 'Hammond J. F., 0', 'A Room among the Ruins of Pueblo Bonito', ' In Journal of a Military Reconnaissance from Santa Fe, New Mexico, to the Navajo Country, by Lt. James H. Simpson. Report of the Secretary of the War to the 31st Congress, 1st Session, Senate Executive Document No. 65. Washington D.C. pp. 55-168.'); INSERT INTO "work" VALUES (1721, NULL, '1976', 0, 'Robert P. Powers, 0', 'A Sample Analysis of Other Shaped Stones from Sites Excavated in Chaco Canyon, 1973-1975', ' Incomplete Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2499, NULL, '1982', 0, 'Thomas C. Windes, 0', 'A Second Look at Population in Chaco Canyon', ' Paper presented at the 47th Annual Meeting of the Society for American Archaeology, Minneapolis.'); INSERT INTO "work" VALUES (1829, NULL, '1954', 0, 'Carroll L. Riley, 0', 'A Skeletal Series from Chaco Canyon', ' El Palacio 61:156.'); INSERT INTO "work" VALUES (1104, NULL, '1996', 0, 'Joseph J. Kovacik, 0', 'A Social/Contextual Archaeology of Chaco Canyon, New Mexico: Collective Memory and Material Culture amongst the Chaco Anasazi', ' Ph.D. dissertation, University of Cambridge, England.'); INSERT INTO "work" VALUES (2513, NULL, '1987', 0, 'Thomas C. Windes, 0', 'A Study in the Use Wear of Plastered Surfaces', ' In Investigations at the Pueblo Alto Complex, Chaco Canyon, New Mexico, 1975-1979. Volume IV, Microfiche, edited by Thomas C. Windes and Frances Joan Mathien, pp. MF-243-MF-244. Publications in Archeology 18F, Chaco Canyon Studies, National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (218, NULL, '1994', 0, 'Ronna J. Bradley, 0; Richard Sullivan, 1', 'A Study of Two Anasazi Communities in the San Juan Basin', ' Volume IX of Across the Colorado Plateau: Anthropological Studies for the Transwestern Pipeline Expansion Project. Office of Contract Archeology and Maxwell Museum of Anthropology, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (610, NULL, '1931', 0, 'Marjorie E. Ferguson, 0', 'A Study of the Architectures of the Chaco Canon Indians, the Province of Tusayan and the Indians of the Seven Cities of Cibola', ' Archive 1882, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (471, NULL, '1971', 0, 'James M. DeAngelis, 0', 'A Summary of Referenced Materials Concerning the Physical Geography of the Chaco Canyon Area', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico Albuquerque.'); INSERT INTO "work" VALUES (2000, NULL, '1951', 0, 'Terah L. Smiley, 0', 'A Summary of Tree-Ring Dates from Some Southwestern Archaeological Sites', ' University of Arizona Bulletin. 22(4), Laboratory Bulletin Tree-Ring Research, No. 5.'); INSERT INTO "work" VALUES (1473, NULL, '1986', 0, 'Peter J. McKenna, 0', 'A Summary of the Chaco Center''s Small Site Excavations: 1973-1978', ' Part I in Small Site Architecture of Chaco Canyon, New Mexico, by Peter J. McKenna and Marcia L. Truell, pp. 5-114. Publications in Archeology 18D, Chaco Canyon Studies. National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (608, NULL, '1954', 0, 'Edwin N. Ferdon, 0', 'A Surface Jacal Site in the Chaco Basin', ' El Palacio 61(2):35-42.'); INSERT INTO "work" VALUES (1260, NULL, '1974', 0, 'Marian F. Love, 0', 'A Survey of the Distribution of T-shaped Doorways in the Greater Southwest', ' In Collected Papers in Honor of Florence Hawley Ellis, edited by Theodore R. Frisbie, pp. 296-311. Papers of the Archaeological Society of New Mexico: 2.'); INSERT INTO "work" VALUES (2383, NULL, '1974', 0, 'Dorothy K. Washburn, 0', 'A Symmetry Classification of Pueblo Ceramic Design', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Submitted for publication in Essays in Southwest Archaeology, edited by Paul Grebinger, Gordon and Brach, New York.'); INSERT INTO "work" VALUES (2197, NULL, '1980', 0, 'Jospeh J. Trott, 0', 'A Test Excavation Across a Prehistoric Anasazi Roadway Segment North of Pueblo Alto, Chaco Canyon National Monument', ' Ms. on file, NPS, SWRO, Santa Fe.'); INSERT INTO "work" VALUES (1866, NULL, '1978', 0, 'Joseph R. Ross, 0', 'A Three-Dimensional Facies Analysis of the Canyon Alluvial Fill Sequence, Chaco Canyon, New Mexico', 'Unpublished M.S. thesis, Geology Department, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (609, NULL, '1955', 0, 'Edwin N. Ferdon, 0', 'A Trial Survey of Mexican-Southwestern Architectural Parallels', ' Monograph No. 21. School of American Research, Santa Fe.'); INSERT INTO "work" VALUES (2041, NULL, '1978', 0, 'A. Sofaer, 0; V. Zinser, 1; R. M. Sinclair, 2', 'A Unique Solar Marking Construct of the Ancient Pueblo Indians', ' Paper presented at the Fifth Annual American Rock Art Research Association Meeting. The Dalles, Oregon.'); INSERT INTO "work" VALUES (2040, NULL, '1978', 0, 'A. Sofaer, 0; V. Zinser, 1; R. M. Sinclair, 2', 'A Unique Solar Marking Construct of the Ancient Pueblo Indians', ' American Indian Rock Art Volume 5, edited by F. G. Bock, K. Hedges, G. Lee, and H. Michaelis, pp. 115-125. American Rock Art Research Association, El Toro, CA.'); INSERT INTO "work" VALUES (2042, NULL, '1979', 0, 'A. Sofaer, 0; V. Zinser, 1; R. M. Sinclair, 2', 'A Unique Solar Marking Construct', ' Science 206(4416):283-291. Summary in Der Speigel 33(53):116-117, Dec. 31, 1979; Science 80(1):56-67 1979; The Wilson Quarterly 4(2):41-47, Spring 1980; The First Stargazers, by James Cornell, pp. 155-161, 244, C. Scribners Sons, 1981; Griffith Observer 47(6), June 1983; and Mesa Message VIII(1), 1983.'); INSERT INTO "work" VALUES (2484, NULL, '1978', 0, 'Thomas C. Windes, 0', 'A View of Cibola Whiteware from Chaco Canyon', ' Prepared for Arizona State Museum Cibola Whiteware Conference at the Museum of Northern Arizona, Flagstaff. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Revised in 1981 and published, in part, in 1984.'); INSERT INTO "work" VALUES (897, NULL, '1980', 0, 'Cynthia Irwin-Williams, 0', 'A View of the Chaco from Salmon Ruins', ' Update 1980. Paper presented at the 53rd Pecos Conference, Mesa Verde National Park, CO.'); INSERT INTO "work" VALUES (1549, NULL, '1977', 0, 'E. Pierre Morenon, 0', 'A View of the Chacoan Phenomenon from the "Backwoods": A Speculative Essay', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2498, NULL, '1981', 0, 'Thomas C. Windes, 0', 'A View of the Cibola White Ware from Chaco Canyon (revised)', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published in 1984.'); INSERT INTO "work" VALUES (2508, NULL, '1984', 0, 'Thomas C. Windes, 0', 'A View of the Cibola Whitewares from Chaco Canyon', ' In Regional Analysis of Prehistoric Ceramic Variation: Contemporary Studies of the Cibola Whitewares, edited by A. P. Sullivan and Jeffrey L. Hantman, pp. 94-119. Anthropological Research Papers No. 31. Arizona State University, Tempe.'); INSERT INTO "work" VALUES (1346, NULL, '1999', 0, 'Anne Lawrason Marshall, 0', 'A Virtual Reality View of Chacoan Pilgrimage Landscapes', ' Paper presented at the Pilgrimage and Complexity Conference, Indira Gandhi National Centre for the Arts, New Delhi, India.'); INSERT INTO "work" VALUES (1266, NULL, '1901', 0, 'Charles F. Lummis, 0', 'A Week of Wonders', ' Land of Sunshine 15:314-331 (Nov.) and 425-437 (Dec.).'); INSERT INTO "work" VALUES (790, NULL, '1994', 0, 'Sharon K. Hatch, 0', 'A Wood Sourcing Study at the Chimney Rock Archaeological Area', ' Unpublished M.A. thesis, Northern Arizona University, Flagstaff.'); INSERT INTO "work" VALUES (646, NULL, '1998', 0, 'Don Fowler, 0', 'AMNH and USNM vs', 'AIA and SAR: The Battle for Control of Chaco Canyon, 1900-1930. Paper presented at the 6erd Annual Meeting of the Society for American Archaeology, Seattle.'); INSERT INTO "work" VALUES (2324, NULL, '1992', 0, 'R. Gwinn Vivian, 0', 'ARPA Permit 91-CHCU-1: Archaeological Testing-Chaco Culture National Historical Park', ' Final Report. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2543, NULL, '1889', 0, 'J. Winsor, 0', 'Aboriginal America', 'In Narrative and Critical History of America, Vol. 1, Pt. 2, pp. 394-397.'); INSERT INTO "work" VALUES (2505, NULL, '1983', 0, 'Thomas C. Windes, 0', 'Absolute Dates from 29SJ626', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2545, NULL, '1994', 0, 'Joseph C. Winter, 0', 'Across the Colorado Plateau, Anthropological Studies for the Transwestern Pipeline Expansion Project', 'Volume 20. Conclusions and Synthesis: Communities, Boundaries, and Cultural Variation. Office of Contract Archeology and Maxwell Museum of Anthropology, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (787, NULL, '1996', 0, 'Robert Hartzler, 0', 'Acrylic-Modified Earthen Mortar', ' A Program of Investigation and Laboratory Research into Acrylic-Modified Earthen Mortar Used at Three Prehistoric Pueblo Sites. Intermountain Cultural Resource Center Professional Paper No. 61. National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (465, NULL, '1994', 0, 'Jeffrey S. Dean, 0; William H. Doelle, 1; Janet D. Orcutt, 2', 'Adaptive Stress, Environment, and Demography', ' In Themes in Southwest Prehistory, edited by George J. Gumerman, pp. 53-86. School of American Research, Santa Fe.'); INSERT INTO "work" VALUES (780, NULL, '1963', 0, 'Lyndon L. Hargrave, 0', 'Additional Bird Bones from Kin Kletso', ' Ms. on file, National Park Service, Western Archaeological and Conservation Center, Tucson.'); INSERT INTO "work" VALUES (603, NULL, '1977', 0, 'Barry Fell, 0', 'Additional Lirian Compass Dial Inscriptions from Spain and New Mexico', ' OPES 6(118). November.'); INSERT INTO "work" VALUES (809, NULL, '1939', 0, 'Florence M. Hawley, 0', 'Additions to Descriptions of Chaco Pottery Types', ' In Preliminary Report on the 1937 Excavations, Bc 50-51, Chaco Canyon, New Mexico, edited by Clyde Kluckhohn and Paul Reiter, pp. 49-53. University of New Mexico Bulletin No. 345, Anthropological Series 3(2). University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (889, NULL, '1987', 0, 'Eric Ingbar, 0', 'Adobe Roof Impressions from Pueblo Alto', ' In Investigations at the Pueblo Alto Complex, Chaco Canyon, New Mexico, 1975-1979. Volume III: Artifactual and Biological Analyses, edited by Frances Joan Mathien and Thomas C. Windes, pp. 429-443. Publications in Archeology 18F, Chaco Canyon Studies. National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (2427, NULL, '1954', 0, 'M. Wetherill, 0', 'Adventures in Anthropology', ' New Mexico Magazine 32(7):22, 41, 56.'); INSERT INTO "work" VALUES (1290, NULL, '1972', 0, 'Thomas R. Lyons, 0; Robert K. Hitchcock, 1', 'Aerial Archaeology: A Progress Report', ' Chaco Archive 1998, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1715, NULL, '1980', 0, 'Loren D. Potter, 0; N. E. Kelley, 1', 'Aerial Photointerpretation of Vegetation of Chaco Canyon National Monument', ' In Cultural Resources Remote Sensing, edited by Thomas R. Lyons and Frances Joan Mathien, pp. 87-104. Cultural Resources Management Division, National Park Service, Washington, D.C.'); INSERT INTO "work" VALUES (1024, NULL, '1992', 0, 'Min Kantrowitz, 0', 'After the End of Occupancy: Learning from Post Occupancy Evaluation of Anasazi Architecture', ' In Proceedings: The Mesa Verde Symposium on Anasazi Architecture and American Design, edited and coordinated by Baker H. Morrow and V. B. Price, pp. 113-121. Morrow and Co. Ltd., Albuquerque.'); INSERT INTO "work" VALUES (2316, NULL, '1984', 0, 'R. Gwinn Vivian, 0', 'Agricultural and Social Adjustments to Changing Environment in the Chaco Basin', ' In Prehistoric Agricultural Strategies in the Southwest, edited by Suzanne K. Fish and Paul R. Fish, pp. 242-257. Anthropological Research Papers No. 33. Arizona State University, Tempe.'); INSERT INTO "work" VALUES (2309, NULL, '1981', 0, 'R. Gwinn Vivian, 0', 'Agricultural and Social Adjustments to Changing Environments in the Chaco Basin', ' Paper presented at the 46th Annual Meeting of the Society for American Archaeology, San Diego.'); INSERT INTO "work" VALUES (2311, NULL, '1981', 0, 'R. Gwinn Vivian, 0', 'Agricultural and Social Adjustments to Changing Environments in the Chaco Basin', ' Expanded version. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (440, NULL, '1982', 0, 'Anne C. Cully, 0; Marcia L. Donaldson, 1; Mollie S. Toll, 2; Klara B. Kelley, 3', 'Agriculture in the Bis sa''ani Community', ' In Bis sa''ani: A Late Bonito Phase Community on Escavada Wash, Northwest New Mexico, edited by Cory D. Breternitz, David E. Doyel, and Michael P. Marshall, pp. 115-166. Navajo Nation Papers in Anthropology No. 14. Navajo Nation Cultural Resources Management Program, Window Rock, AZ.'); INSERT INTO "work" VALUES (1231, NULL, '1976', 0, 'Richard W. Loose, 0', 'Air-Borne TV as an Archeological Remote Sensing Tool', ' In Remote Sensing Experiments in Cultural Resource Studies. Non-destructive Methods of Archeological Exploration, Survey, and Analysis, assembled by Thomas R. Lyons, pp. 77-80. Reports of the Chaco Center No. 1. National Park Service and University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2609, NULL, '1993', 0, 'Michael Zeilik, 0', 'All in Sacred Time', ' Archaeoastronomy in the Pueblo Southwest. Mirage Summer/Fall 3-6.'); INSERT INTO "work" VALUES (2226, NULL, '1994', 0, 'Steadman Upham, 0; Patricia L. Crown, 1; Stephen Plog, 2', 'Alliance Formation and Cultural Identity in the American Southwest', ' In Themes in Southwest Prehistory, edited by George J. Gumerman, pp. 183-210. School of American Research, Santa Fe.'); INSERT INTO "work" VALUES (746, NULL, '1973', 0, 'Stephen A. Hall, 0', 'Alluvial Stratigraphy and Palynology of Chaco Canyon National Monument, New Mexico', ' A Preliminary Report. Ms. on file, Archive No. 2126D, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1527, NULL, '2000', 0, 'Barbara J. Mills, 0', 'Alternative Models, Alternative Strategies: Leadership in the Prehispanic Southwest', ' In Alternative Leadership Strategies in the Prehispanic Southwest, edited by Barbara J. Mills, pp. 3-18. University of Arizona Press, Tucson.'); INSERT INTO "work" VALUES (1463, NULL, '1996', 0, 'Randall H. McGuire, 0; Dean J. Saitta, 1', 'Although They Have Petty Captains They Obey Them Badly: The Dialectics of Prehispanic Western Pueblo Social Organization', ' American Antiquity 61:197-216.'); INSERT INTO "work" VALUES (408, NULL, '1925', 0, 'Robert P. Crawford, 0', 'America''s Mystery Land', ' Mentor 13:1-14.'); INSERT INTO "work" VALUES (745, NULL, '1972', 0, 'Stephen A. Hall, 0', 'Alluvial Stratigraphy and Palynology of Chaco Canyon National Monument, New Mexico', ' A Preliminary Report. Ms. on file, Archive No. 2006, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1370, NULL, '1982', 0, 'Mary Maruca, 0', 'An Administrative History of the Chaco Project', ' Anthropology Division, National Park Service, U.S. Department of the Interior, Washington, D.C.'); INSERT INTO "work" VALUES (1547, NULL, '1981', 0, 'Stanley A. Morain, 0; Thomas K. Budge, 1; Amelia Komarek, 2', 'An Airborne Spectral Analysis of Settlement Sites in Chaco Canyon', ' Part I in Remote Sensing: Multispectral Analysis of Cultural Resources: Chaco Canyon and Bandelier National Monument. Supplement No. 5 to Remote Sensing: A Handbook for Archeologists and Cultural Resource Managers by Thomas R. Lyons and Thomas Eugene Avery, pp. 1-37. Division of Cultural Resource Management, National Park Service, Washington, D.C. '); INSERT INTO "work" VALUES (1032, NULL, '1975', 0, 'J. Charles Kelley, 0; Ellen Abbott Kelley, 1', 'An Alternative Hypothesis for the Explanation of Anasazi Culture History', ' In Collected Papers in Honor of Florence Hawley Ellis, edited by Theodore R. Frisbie, pp. 178-223. Papers of the Archaeological Society of New Mexico: 2. Hooper Publishing Co., Norman, OK.'); INSERT INTO "work" VALUES (2463, NULL, '1977', 0, 'Wirt H. Wills, 0', 'An Alternative Perspective on Core-Veneer Masonry in Chaco Canyon, New Mexico', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2252, NULL, '1988', 0, 'Lonyta Vicklund, 0; Cherie Scheick, 1', 'An Analysis of Ground Stone Assemblages from Kin Nahasbas', ' In Historic Structure Report, Kin Nahasbas Ruin, Chaco Culture National Historical Park, New Mexico, by Frances Joan Mathien and Thomas C. Windes, pp. 241-248. Branch of Cultural Research, National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (297, NULL, '1977', 0, 'Catherine M. Cameron, 0', 'An Analysis of Manos from 10 Sites in Chaco Canyon, New Mexico', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published in 1997.'); INSERT INTO "work" VALUES (318, NULL, '1985', 0, 'Catherine M. Cameron, 0', 'An Analysis of Manos from Chaco Canyon, New Mexico', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published in 1997.'); INSERT INTO "work" VALUES (332, NULL, '1997', 0, 'Catherine M. Cameron, 0', 'An Analysis of Manos from Chaco Canyon, New Mexico', ' In Ceramics, Lithics, and Ornaments of Chaco Canyon. Analyses of Artifacts from the Chaco Project, 1971-1978, edited by Frances Joan Mathien, pp. 997-1012. Publications in Archeology 18G, Chaco Canyon Studies. National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (370, NULL, '1987', 0, 'Karen Husum Clary, 0', 'An Analysis of Pollen from Anasazi Period Mealing Bins from Room 100, Pueblo Alto (29SJ389), Chaco Canyon, New Mexico', ' Castetter Laboratory for Ethnobotanical Studies Technical Series Report No. 201. Contract PX7029-7-0391. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (517, NULL, '1976', 0, 'Dwight L. Drager, 0', 'An Analysis of a Possible Communication System in the San Juan Basin of New Mexico', ' Paper for Anthropology 511, University of New Mexico. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (14, NULL, '1981', 0, 'Nancy J. Akins, 0', 'An Analysis of the Faunal Remains from 29SJ423', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (15, NULL, '1981', 0, 'Nancy J. Akins, 0', 'An Analysis of the Faunal Remains from 29SJ627', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published in 1992.'); INSERT INTO "work" VALUES (2251, NULL, '1985', 0, 'Lonyta Vicklund, 0; Cherie Scheick, 1', 'An Analysis of the Groundstone Assemblages from Sites 29SJ626, 29SJ597, and Kin Nahasbas in Chaco Canyon', ' Contract PX-7029-4-0703. Southwest Archaeological Consultants, Santa Fe.'); INSERT INTO "work" VALUES (2187, NULL, '1937', 0, 'Joseph Harrison Toulouse, III, 0', 'An Analysis of the Meteorological Stations of New Mexico by the Thornthwaite System and the Construction from This of a Climatic Map of the Chaco Basin, New Mexico', ' School of American Research and Museum of New Mexico Fellowship. Ms. on file, School of American Research, Santa Fe.'); INSERT INTO "work" VALUES (820, NULL, '1975', 0, 'Alden C. Hayes, 0; Thomas C. Windes, 1', 'An Anasazi Shrine in Chaco Canyon', ' In Collected Papers in Honor of Florence Hawley Ellis, edited by Theodore R. Frisbie, pp. 143-156. Papers of the Archaeological Society of New Mexico: 2. Hooper Press, Norman, OK.'); INSERT INTO "work" VALUES (1578, NULL, '1921', 0, 'Robert H. Moulton, 0', 'An Ancient Apartment House of a Thousand Rooms', ' Outlook 128:551.'); INSERT INTO "work" VALUES (447, NULL, '1985', 0, 'Jack F. Cully, 0', 'An Annotated List of the Birds of Chaco Canyon National Monument', ' In Environment and Subsistence of Chaco Canyon, New Mexico, edited by Frances Joan Mathien, pp. 459-475. Publications in Archeology 18E, Chaco Canyon Studies. National Park Service, Albuquerque.'); INSERT INTO "work" VALUES (2024, NULL, '1986', 0, 'Anna Sofaer, 0; Rolf Sinclair, 1', 'An Appraisal of Michael Zeilik''s "A Reassessment of the Fajada Butte Solar Marker', ' Archaeoastronomy (Supplement to the Journal for the History of Astronomy) 10:59-66.'); INSERT INTO "work" VALUES (2547, NULL, '1974', 0, 'Regge N. Wiseman, 0', 'An Archaeological Clearance Investigation and Impact Statement Conducted for Dames & Moore in the Vicinity of Smith Lake, New Mexico', ' Museum of New Mexico. Ms. on file, National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (1891, NULL, '1979', 0, 'Cherie Scheick, 0', 'An Archaeological Clearance Survey for a Distribution Line in Gallup, New Mexico', ' Contract Archaeology Progress Report No. 934. School of American Research, Santa Fe.'); INSERT INTO "work" VALUES (870, NULL, '1978', 0, 'L. Jean Hooten, 0; Scott W. Andrae, 1', 'An Archaeological Reconnaissance near Crownpoint, New Mexico,Conducted for Camp Dresser & McKee, Inc', ' Ms. on file, San Juan Campus, New Mexico State University, Farmington.'); INSERT INTO "work" VALUES (645, NULL, '1987', 0, 'Andrew P. Fowler, 0; John R. Stein, 1; Roger Anyon, 2', 'An Archaeological Reconnaissance of West-Central New Mexico: The Anasazi Monuments Program', ' Ms. presented to the Office of Contract Archeology, University of New Mexico, and the Historic Preservation Department, Santa Fe.'); INSERT INTO "work" VALUES (869, NULL, '1979', 0, 'L. Jean Hooten, 0', 'An Archaeological Reconnaissance of the Kin Ya''a Locality near Crownpoint , New Mexico, Conducted for Camp Dresser & McKee, Inc', ' Farmington. Ms. on file, San Juan Campus, New Mexico State University, Farmington.'); INSERT INTO "work" VALUES (1867, NULL, '1980', 0, 'Christine A. Rudecoff, 0', 'An Archaeological Survey in the Shiprock and Chinle Areas, Navajo Nation', ' Navajo Nation Papers in Anthropology No. 3. Window Rock.'); INSERT INTO "work" VALUES (2428, NULL, '1978', 0, 'Jane Whitmore, 0', 'An Archaeological Survey in the Vicinity of the Fort Wingate Military Depot', ' Contract Archaeology Progress Report No. 78. School of American Research, Santa Fe.'); INSERT INTO "work" VALUES (1640, NULL, '1977', 0, 'Thomas C. O''Laughlin, 0', 'An Archaeological Survey near the Confluence of Seven Lakes Wash and Kimmeniola Wash; McKinley County, New Mexico', ' Ms. on file, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (361, NULL, '1980', 0, 'Richard E. Chapman, 0; Jan V. Biella, 1', 'An Archaeological Survey of Four Sections of Land near Black Lake, San Juan County, New Mexico', ' School of American Research Contract Archaeology Project, Santa Fe.'); INSERT INTO "work" VALUES (966, NULL, '1972', 0, 'W. James Judge, 0', 'An Archaeological Survey of the Chaco Canyon Area, San Juan County, New Mexico', ' Final report to the National Park Service for Contract No. 14-10-7:931-51, on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (786, NULL, '1968', 0, 'A. H. Harris, 0; J. Schoenwetter, 1; A. H. Warren, 2', 'An Archaeological Survey of the Chuska Valley and the Chaco Plateau', ' Museum of New Mexico Research Records No. 4. Santa Fe.'); INSERT INTO "work" VALUES (52, NULL, '1978', 0, 'William C. Allan, 0; John B. Broster, 1', 'An Archeological Application of the Christaller Model', ' Paper presented at the 54th Annual Meeting of the Southwestern and Rocky Mountain Division of the American Association for the Advancement of Science, April 28. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2077, NULL, '1988', 0, 'John R. Stein, 0; Peter J. McKenna, 1', 'An Archeological Reconnaissance of a Late Bonito Phase Occupation near Aztec Ruins National Monument, New Mexico', ' Division of Anthropology, Southwest Cultural Resources Center National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (2475, NULL, '1975', 0, 'J. P. Wilson, 0', 'An Archeological Reconnaissance of the Lower Chaco River Basin and Adjacent San Juan River Valley, San Juan County, New Mexico', ' Report No. 23 prepared for VTN by the Cultural Resources Management Division, Department of Sociology and Anthropology, New Mexico State University, Las Cruces.'); INSERT INTO "work" VALUES (2588, NULL, '1981', 0, 'Michael Zeilik, 0', 'An Astronomer''s Guide to Chaco Canyon', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2036, NULL, '1991', 0, 'Anna Sofaer, 0; Rolf M. Sinclair, 1; Joey B. Donehue, 2', 'An Astronomical Regional Pattern Among the Major Buildings of the Chaco Culture of New Mexico', ' In Proceedings of the Third International Conference on Archaeoastronomy (1990). University of St. Andrews, Scotland.'); INSERT INTO "work" VALUES (346, NULL, '1983', 0, 'Eileen Camilli, 0', 'An Ecological Cover-Type Map of the San Juan Basin, Northwestern New Mexico', ' In Remote Sensing in Cultural Resource Management: The San Juan Basin Project, edited by Dwight L. Drager and Thomas R. Lyons, pp. 39-56. Cultural Resources Management Division, National Park Service, Washington, D.C.'); INSERT INTO "work" VALUES (928, NULL, '1970', 0, 'Kirtland Jones, 0', 'An Ecological Survey of the Reptiles and Amphibians of Chaco Canyon National Monument, San Juan County, New Mexico', ' Unpublished M.S. thesis, Department of Biology, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2574, NULL, '1993', 0, 'Frank E. Wozniak, 0; with David M. Brugge and Charles Lange, 1', 'An Ethnohistorical Summary of Ceremonial and Other Traditional Uses of Fajada Butte and Related Sites at Chaco Culture National Historical Park', ' Contract 35-70-NPS-0009.02. Prepared by the New Mexico Historical Preservation Department.'); INSERT INTO "work" VALUES (1211, NULL, '1976', 0, 'Richard Levine, 0; Oswald Werner, 1', 'An Ethnoscience Ethnography of Navajo Land Use in the Chaco Canyon Area', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1014, NULL, '1996', 0, 'John Kantner, 0', 'An Evaluation of Chaco Anasazi Roadways', ' Paper presented at the 61st Annual Meeting of the Society for American Archaeology, New Orleans.'); INSERT INTO "work" VALUES (1130, NULL, '1978', 0, 'Stephen H. Lekson, 0', 'An Evaluation of the Dendrochronology of Chetro Ketl', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (317, NULL, '1984', 0, 'Catherine M. Cameron, 0', 'An Examination of Chipped Stone from Kin Nahasbas', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico. Published in 1988.'); INSERT INTO "work" VALUES (2203, NULL, '1981', 0, 'Marcia L. Truell, 0', 'An Examination of Small Site Diversity in Chaco Canyon in the Late A', '. 1000s and Early to Middle A.D. 1100s. Paper presented at the 46th Annual Meeting of the Society for American Archaeology, San Diego.'); INSERT INTO "work" VALUES (888, NULL, '1979', 0, 'Eric Ingbar, 0', 'An Examinaton of Adobe Roof Impressions from Site 29SJ389: Pueblo Alto, Chaco Canyon, New Mexico', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published in 1987.'); INSERT INTO "work" VALUES (1427, NULL, '1992', 0, 'Frances Joan Mathien, 0; Bart Olinger, 1', 'An Experiment with X-ray Fluorescence to Determine Trace Element Variability in Turquoise Composition', ' In Archaeology, Art, and Anthropology. Papers in Honor of J. J. Brody, edited by Meliha S. Duran and David T. Kirkpatrick, pp. 123-134. Papers of the Archaeological Society of New Mexico: 18.'); INSERT INTO "work" VALUES (541, NULL, '1993', 0, 'Andrew Duff, 0', 'An Exploration of Post-Chacoan Community Organization through Ceramic Sourcing', ' Unpublished Master''s thesis, Department of Anthropology, Arizona State University, Tempe.'); INSERT INTO "work" VALUES (1758, NULL, '1998', 0, 'Gordon F. M. Rakita, 0', 'An Historical Perspective on Bioarchaeological Research in Cibola Region of the American Southwest', ' Paper presented at the 63rd Annual Meeting of the Society for American Archaeology, Seattle.'); INSERT INTO "work" VALUES (1840, NULL, '1989', 0, 'Willow A. Roberts and Frederick F. York', 'An Ethnohistoric Study of Chaco Navajo Sites', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2303, NULL, '1970', 0, 'R. Gwinn Vivian, 0', 'An Inquiry into Prehistoric Social Organization in Chaco Canyon, New Mexico', ' In Reconstructing Prehistoric Pueblo Societies, edited by William A. Longacre, pp. 59-83. School of American Research Advanced Seminar Series. University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1361, NULL, '1981', 0, 'Michael P. Marshall, 0; David E. Doyel, 1', 'An Interim Report on Bis sa''ani Pueblo with Notes on the Chacoan Regional System', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (965, NULL, '1971', 0, 'W. James Judge, 0', 'An Interpretive Framework for Understanding Site Locations', ' In The Distribution of Prehistoric Population Aggregates, edited by George J. Gumerman, pp. 38-44. Anthropological Report No. 1. Prescott College Press, Prescott.'); INSERT INTO "work" VALUES (649, NULL, '1979', 0, 'Dennis Fransted, 0', 'An Introduction to the Navajo Oral History of Anasazi Sites in the San Juan Basin', ' Submitted in fulfillment of Contract PX 7486-8-0224. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (10, NULL, '1976', 0, 'Nancy J. Akins, 0', 'An Inventory of Chaco Canyon Human Remains', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (712, NULL, '1993', 0, 'Ernest S. Gladney, 0; Roger W. Ferenbaugh, 1; Richard G. Bowker, 2; Elizabeth A. Jones, 3; Michael G. Bell, 4; Janet D. Morgan, 5; Laura A. Nelson, 6', 'An Investigation of Sulfur Concentrations in Soils and Pine Needles in Chaco Culture National Historical Park, New Mexico', ' Report No. LA-12419-MS, UC-000. Los Alamos National Laboratory, Los Alamos.'); INSERT INTO "work" VALUES (713, NULL, '1930', 0, 'Harold Sterling Gladwin, 0', 'An Outline of Southwestern Prehistory', ' Arizona Historical Review 3:71-87.'); INSERT INTO "work" VALUES (140, NULL, '1892', 0, 'Adolph F. A. Bandelier, 0', 'An Outline of the Documentary History of the Zuni Tribe', ' Journal of American Ethnology and Archaeology 3(Pt. 1):1-115.'); INSERT INTO "work" VALUES (1786, NULL, '1933', 0, 'Winifred S. Reiter, 0', 'An Unknown City of Ancient America', ' Discoveries at Chetro Ketl, New Mexico. The Illustrated London News, Dec. 2.'); INSERT INTO "work" VALUES (1676, NULL, '1905', 0, 'George H. Pepper, 0', 'An Unusual Navajo Medicine Ceremony', ' The Hampton Institute Press, Hampton, VA. Reprinted from The Southern Workman.'); INSERT INTO "work" VALUES (2430, NULL, '1979', 0, 'Jane Whitmore, 0; Curtis Schaafsma, 1', 'An archaeological Survey near Prewitt, New Mexico', ' Prepared for Plains Electric Cooperative. School of American Research, Santa Fe.'); INSERT INTO "work" VALUES (1908, NULL, '1984', 0, 'John D. Schelberg, 0', 'Analogy, Complexity, and Regionally-Based Perspectives', ' In Recent Research on Chaco Prehistory, edited by W. James Judge and John D. Schelberg, pp. 5-21. Reports of the Chaco Center No. 8. Division of Cultural Research, National Park Service, Albuquerque.'); INSERT INTO "work" VALUES (1901, NULL, '1981', 0, 'John D. Schelberg, 0', 'Analogy, Social Complexity, and Regionally Based Perspectives', ' Paper presented at the 46th Annual Meeting of the Society for American Archaeology, San Diego, April 29-May 2. Published in 1984.'); INSERT INTO "work" VALUES (32, NULL, '1985', 0, 'Nancy J. Akins, 0', 'Analyses of the Faunal Remains from Pueblo Alto, Chaco Canyon, New Mexico', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Revised version, published in 1987.'); INSERT INTO "work" VALUES (1502, NULL, '1982', 0, 'Judith Miles, 0', 'Analysis of Bone Artifacts from 29SJ 627', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Revised in 1985. Published in 1992.'); INSERT INTO "work" VALUES (1515, NULL, '1992', 0, 'Judith Miles, 0', 'Analysis of Bone Artifacts from 29SJ 627', ' In Excavations at 29SJ 627, Chaco Canyon, New Mexico. Volume II. The Artifact Analyses, edited by Frances Joan Mathien, pp. 371-402. Reports of the Chaco Center No. 11. Branch of Cultural Research, National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (1503, NULL, '1983', 0, 'Judith Miles, 0', 'Analysis of Bone Artifacts from 29SJ423', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1504, NULL, '1983', 0, 'Judith Miles, 0', 'Analysis of Bone Artifacts from 29SJ724', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1509, NULL, '1985', 0, 'Judith Miles, 0', 'Analysis of Bone Artifacts from 29SJ627', ' Revised. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Revised and published 1992.'); INSERT INTO "work" VALUES (2247, NULL, '1977', 0, 'Catherine VerEecke, 0', 'Analysis of Chaco Project Projectile Points', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (22, NULL, '1982', 0, 'Nancy J. Akins, 0', 'Analysis of Faunal Remains from Pueblo Alto, Chaco Canyon', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Revised and published in 1987.'); INSERT INTO "work" VALUES (243, NULL, '1987', 0, 'Cory D. Breternitz, 0; Adrian White, 1', 'Analysis of Pigments from Pueblo Alto Murals', ' In Investigations at the Pueblo Alto Complex, Chaco Canyon, New Mexico, 1975-1979, edited by Thomas C. Windes and Frances Joan Mathien, p. MF-242. Publications in Archeology 18F, Chaco Canyon Studies. National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (1959, NULL, '1991', 0, 'Thomas L. Sever and David W. Wagner', 'Analysis of Prehistoric Roadways in Chaco Canyon using Remotely Sensed Digital Data', ' In Ancient Road Networks and Settlement Hierarchies in the New World, edited by Charles D. Trombold, pp. 42-52. Cambridge University Press, Cambridge, Great Britain.'); INSERT INTO "work" VALUES (168, NULL, '1987', 0, 'Connie Bennett, 0; John Weymouth, 1', 'Analysis of Two Magnetic Surveys in Chaco Canyon National Monument: Pueblo Alto and 29SJ 633', ' In Investigations at the Pueblo Alto Complex, Chaco Canyon, New Mexico, 1975-1979. Volume IV. Microfiche, edited by Thomas C. Windes and Frances Joan Mathien, pp. MF-21-MF-27. Publications in Archeology 18F, Chaco Canyon Studies. National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (167, NULL, '1981', 0, 'Connie Bennett, 0; John Weymouth, 1', 'Analysis of Two Magnetic Surveys in Chaco Canyon National Monument: Pueblo Alto and 29SJ633', ' Contract PS-6115-8-0197 to the Nebraska Center for Archaeophysical Research, Department of Physics and Astronomy, University of Nebraska, Lincoln through the Midwest Archeological Center, National Park Service, Lincoln. Ms. on file, NPS Chaco Cullture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (16, NULL, '1981', 0, 'Nancy J. Akins, 0', 'Analysis of the Faunal Remains from 29SJ724', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (23, NULL, '1982', 0, 'Nancy J. Akins, 0', 'Analysis of the Faunal Remains from Recent Excavations at Una Vida', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (170, NULL, '1978', 0, 'Eric E. Bennett, 0', 'Analysis of the Faunal Remains from Site 29SJ724', ' Class paper, Anthropology, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (169, NULL, '1991', 0, 'Connie Bennett, 0; John Weymouth, 1', 'Analysis of the Magnetic Survey at Site 29SJ633', ' In Excavation at 29SJ633: The Eleventh Hour Site, Chaco Canyon, New Mexico, edited by Frances Joan Mathien, pp. 357-360. Reports of the Chaco Center No. 10. Branch of Cultural Research, National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (1379, NULL, '1980', 0, 'Frances Joan Mathien, 0', 'Analytical Studies of Turquoise Recovered from Archeological Investigations in Chaco Canyon', ' Contract PX 7480-6-0208. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2104, NULL, '2000', 0, 'David E. Stuart, 0', 'Anasazi America: Seventeen Centuries on the Road From Center Place', ' University of New Mexico Press, Albuquerque.'); INSERT INTO "work" VALUES (2025, NULL, '1986', 0, 'Anna Sofaer, 0; Rolf Sinclair, 1', 'Anasazi Astronomy', ' Science 231:1057-1058.'); INSERT INTO "work" VALUES (1179, NULL, '1996', 0, 'Stephen H. Lekson, 0', 'Anasazi Communities in Context', ' In Anasazi Architecture and American Design, edited by Baker H. Morrow and V. B. Price pp. 27-35. University of New Mexico Press, Albuquerque.'); INSERT INTO "work" VALUES (1364, NULL, '1979', 0, 'Michael P. Marshall, 0; John R. Stein, 1; Richard W. Loose, 2; Judith E. Novotny, 3', 'Anasazi Communities of the San Juan Basin', ' Public Service Company, Albuquerque, and New Mexico State Historic Preservation Bureau, Santa Fe. Printed by Albuquerque Photo Lab. Inc.'); INSERT INTO "work" VALUES (707, NULL, '1996', 0, 'Dennis Gilpin, 0; Douglas D. Dykeman, 1; Paul F. Reed, 2', 'Anasazi Community Architecture in the Chuska Valley', ' New Mexico Archaeological Council, Albuquerque.'); INSERT INTO "work" VALUES (703, NULL, '1993', 0, 'Dennis Gilpin, 0', 'Anasazi Community Architecture on the Middle Rio Puerco', ' Paper presented at the Fifth Occasional Anasazi Symposium, Farmington.'); INSERT INTO "work" VALUES (704, NULL, '1995', 0, 'Dennis Gilpin, 0', 'Anasazi Community Structure along the Lower Puerco River, Northeastern Arizona', ' Paper presented at the 60th Annual Meeting of the Society for American Archaeology, Minneapolis.'); INSERT INTO "work" VALUES (369, NULL, '1984', 0, 'Karen Husum Clary, 0', 'Anasazi Diet and Subsistence as Revealed by Coprolites from Chaco Canyon', ' In Recent Research on Chaco Prehistory, edited by W. James Judge and John D. Schelberg, pp. 265-279. Reports of the Chaco Center No. 8. Division of Cultural Research, National Park Service, Albuquerque.'); INSERT INTO "work" VALUES (1347, NULL, '1999', 0, 'Anne Lawrason Marshall, 0', 'Anasazi Great Houses Online', ' Presentation at the 72nd Pecos Conference, Pinedale, AZ.'); INSERT INTO "work" VALUES (1099, NULL, '1983', 0, 'Alan Kosse, 0', 'Anasazi Influence on the Environment', ' In Proceedings of the Anasazi Symposium 1981, compiled and edited by Jack E. Smith, pp. 115-118. Mesa Verde Museum Association, Inc.'); INSERT INTO "work" VALUES (875, NULL, '1972', 0, 'Dee T. Hudson, 0', 'Anasazi Measurement Systems at Chaco Canyon, New Mexico', ' The Kiva 38(1):27-42.'); INSERT INTO "work" VALUES (384, NULL, '1992', 0, 'Jeffrey Cook, 0', 'Anasazi Places: The Photographic Vision of William Current', ' University of Texas Press, Austin.'); INSERT INTO "work" VALUES (518, NULL, '1976', 0, 'Dwight L. Drager, 0', 'Anasazi Population Estimates with the Aid of Data Derived from Photogrammetric Maps', ' In Remote Sensing Experiments in Cultural Resource Studies. Non-destructive Methods of Archaeological Exploration, Survey, and Analysis, assembled by Thomas R. Lyons, pp. 157-171. Reports of the Chaco Center No. 1. National Park Service and University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2075, NULL, '1992', 0, 'John R. Stein, 0; Stephen H. Lekson, 1', 'Anasazi Ritual Landscapes', ' In Anasazi Regional Organization and the Chaco System, edited by David E. Doyel, pp. 87-100. Anthropological Papers No. 5. Maxwell Museum of Anthropology, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2076, NULL, '1994', 0, 'John R. Stein, 0; Stephen H. Lekson, 1', 'Anasazi Ritual Landscapes', ' In Chaco Canyon. A Center and Its World, photography by Mary Peck, essays by Stephen H. Lekson, John R. Stein and Simon, J. Ortiz, pp. 45-64. Museum of New Mexico, Santa Fe.'); INSERT INTO "work" VALUES (1072, NULL, '1986', 0, 'David Teal Kirkpatrick, 0', 'Anasazi Settlement Patterns in the Middle San Juan Region, Northwestern New Mexico', ' Unpublished Ph.D. dissertation, Department of Anthropology, Washington State University, Pullman.'); INSERT INTO "work" VALUES (1622, NULL, '1982', 0, 'Evelyn B. Newman, 0; Robert K. Mark, 1; R. Gwinn Vivian, 2', 'Anasazi Solar Marker: The Use of A Natural Rockfall', ' Science 217(4564):1036-1038.'); INSERT INTO "work" VALUES (822, NULL, '1987', 0, 'Robert Hecht, 0', 'Anasazi Trails', ' Archaeology 40(3):22-29.'); INSERT INTO "work" VALUES (2365, NULL, '2001', 0, 'Harry Walters, 0; Hugh C. Rogers, 1', 'Anasazi and Anaasazi: Two Words, Two Cultures', ' Kiva 66(3):317-326.'); INSERT INTO "work" VALUES (2373, NULL, '1982', 0, 'Laurie E. Warner, 0; Mark D. Elson, 1', 'Anasazi and Navajo Occupation of the Red Rock Valley Area of Arizona, Navajo Nation', ' Navajo Nation Papers in Anthropology No. 17. Navajo Nation Cultural Resources Management Program, Window Rock.'); INSERT INTO "work" VALUES (661, NULL, '1983', 0, 'Theodore R. Frisbie, 0', 'Anasazi-Mesoamerican Relationships: From the Bowels of the Earth and Beyond', ' In Proceedings of the Anasazi Symposium 1981, edited by Jack E. Smith, pp. 215-227. Mesa Verde Museum Association, Mesa Verde, CO.'); INSERT INTO "work" VALUES (1558, NULL, '1995', 0, 'William N. Morgan, 0', 'Ancient Architecture of the Southwest', ' University of Texas Press, Austin.'); INSERT INTO "work" VALUES (1197, NULL, '2000', 0, 'Stephen H. Lekson, 0', 'Ancient Chaco''s New History', ' Archaeology Southwest 14(1):1-4.'); INSERT INTO "work" VALUES (840, NULL, '1930', 0, 'Edgar L. Hewett, 0', 'Ancient Life in the American Southwest, with an Introduction on the General History of the American Race', ' Pp. 289-322. Bobbs-Merrill, Indianapolis.'); INSERT INTO "work" VALUES (1697, NULL, '1997', 0, 'Stephen Plog, 0', 'Ancient Peoples of the American Southwest', ' Thames and Hudson, London.'); INSERT INTO "work" VALUES (1591, NULL, '1987', 0, 'Anonymous, 0', 'Ancient Mansions of Chaco Canyon', ' Natural History 96:74-77.'); INSERT INTO "work" VALUES (392, NULL, '1994', 0, 'Linda S. Cordell, 0', 'Ancient Pueblo Peoples', 'St. Remy Press, Montreal.'); INSERT INTO "work" VALUES (1004, NULL, '1933', 0, 'Hurst R. Julian, 0', 'Annual Report on the Investigations of the Cliff Cavities of the Chaco Canyon, New Mexico, 1933', ' Archive No. 2192, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1942, NULL, '1981', 0, 'Lynne Sebastian, 0', 'Anthropology 467, Final Project', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1420, NULL, '2001', 0, 'Frances Joan Mathien, 0', 'Anthropology and Archaeology in Chaco Canyon', ' The Hyde Exploring Expedition. In Following Through: Papers in Honor of Phyllis S. Davis, edited by Regge N. Wiseman, Thomas C. O''Laughlin, and Cordelia T. Snow, pp. 103-114.Anthropological Society of New Mexico: 17. Albuquerque.'); INSERT INTO "work" VALUES (2061, NULL, '1931', 0, 'Winifred Stamm (editor of Digs, School of American Research, 0', 'Another Season on Chettro Ketl', ' Digs 3(1). School of American Research.'); INSERT INTO "work" VALUES (2589, NULL, '1983', 0, 'Michael Zeilik, 0', 'Anticipation in Anasazi Astronomy', ' Paper presented at the 56th Pecos Conference, Bluff.'); INSERT INTO "work" VALUES (2590, NULL, '1983', 0, 'Michael Zeilik, 0', 'Anticipation in Ceremony: The Readiness is All', ' Paper presented at the Symposium on Astronomy and Ceremony in the Prehistoric Southwest, Maxwell Museum of Anthropology, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2573, NULL, '1983', 0, 'Frank E. Wozniak, 0', 'Appendices I-III', ' A Cultural Overview and Predictive Model in the Eastern San Juan Basin for the Continental Divide Pipeline Company''s Route from Thoreau, New Mexico to near Ignacio, Colorado. Office of Contract Archeology, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (467, NULL, '2002', 0, 'Jeffrey S. Dean, 0; Gary Funkhouser, 1', 'Appendix A', ' Dendroclimatology and Fluvial Chronology in Chaco Canyon. In Relation of "Bonito" Paleo-channels and Base-level Variations to Anasazi Occupation, Chaco Canyon, New Mexico, by Eric R. Force, R.Gwinn Vivian, Thomas C. Windes and Jeffrey S. Dean, pp. 39-41. Arizona State Museum Archaeological Series No. 194. The University of Arizona, Tucson.'); INSERT INTO "work" VALUES (2399, NULL, '1983', 0, 'Stephen G. Wells, 0; Devon E. Jercinovic, 1', 'Applications of Geomorphology to Surface Coal-Mining Reclamation, Northwestern New Mexico', ' In Chaco Canyon Country. A Field Guide to the Geomorphology, Quaternary Geology, Paleoecology, and Environmental Geology of Northwestern New Mexico, edited by Stephen G. Wells, David W. Love, and Thomas W. Gardner, pp. 133-148. American Geomorphological Field Group 1983 Field Trip Guidebook. Adobe Press, Albuquerque.'); INSERT INTO "work" VALUES (523, NULL, '1983', 0, 'Dwight L. Drager, 0', 'Approaches to a Remote Sensing Assessment of the Cultural Resources of the San Juan Basin', ' In Remote Sensing in Cultural Resource Management: The San Juan Basin Project, edited by Dwight L. Drager and Thomas R. Lyons, pp. 5-22. Cultural Resources Management Division, National Park Service, Washington, D.C.'); INSERT INTO "work" VALUES (585, NULL, '1969', 0, 'A. Gordon Everett, 0', 'Archaeo-Environmental Analysis of the Upper Chaco Drainage Basin, New Mexico', ' Yearbook of the American Philosophical Society, 1970, pp. 308-310.'); INSERT INTO "work" VALUES (2593, NULL, '1984', 0, 'Michael Zeilik, 0', 'Archaeoastronomy at Chaco Canyon', ' In New Light on Chaco Canyon, edited by David Grant Noble, pp. 65-72. Exploration, School of American Research, Santa Fe.'); INSERT INTO "work" VALUES (2450, NULL, '1977', 0, 'Ray A. Williamson, 0', 'Archaeoastronomy at Pueblo Bonito', ' Science 197(4304):618-619. Aug. 12.'); INSERT INTO "work" VALUES (175, NULL, '1988', 0, 'Jack B. Bertram, 0', 'Archaeofaunal Analysis of Samples from the "Employees Quarters," Pueblo del Arroyo, Chaco Culture National Historical Park', ' Contract PX 7029-7-0785. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (119, NULL, '1987', 0, 'Anthony F. Aveni, 0', 'Archaeoastronomy in the Southwestern United States: A Neighbor''s Eye View', ' In Astronomy and Ceremony in the Prehistoric Southwest, edited by John B. Carlson and W. James Judge, pp. 9-23. Papers of the Maxwell Museum of Anthropology No. 2. University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1285, NULL, '1976', 0, 'Thomas R. Lyons, 0; James I. Ebert, 1', 'Archaeological Analysis of Chaco Canyon Region, New Mexico', ' In ERTS-1 A New Window on Our Planet, edited by Richard W. Williams Sr., and William D. Carter, pp. 304-306. U.S.G.S. Professional Paper 929, Washington, D.C.'); INSERT INTO "work" VALUES (2458, NULL, '1976', 0, 'Ray A. Williamson, 0; Howard J. Fisher, 1; Donnel O''Flynn, 2', 'Anasazi Solar Observations', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published in 1977.'); INSERT INTO "work" VALUES (1289, NULL, '1976', 0, 'Thomas R. Lyons, 0; James I. Ebert, 1; Robert K. Hitchcock, 2', 'Archaeological Analysis of Imagery of Chaco Canyon Region, New Mexico', ' In ERTS-1: A New Window on our Planet, edited by Richard S. William, Jr. and William D. Carter, pp. 304-306. U.S. Geological Survey Professional Papers 929. Government Printing Office, Washington, D.C.'); INSERT INTO "work" VALUES (2546, NULL, '1973', 0, 'Regge N. Wiseman, 0', 'Archaeological Clearance Investigations for the Tucson Gas and Electric Company 345KV San Juan-Vail Transmission Line New Mexico-Arizona: Report of Archaeological Survey of the Original and Realigned Sections Between the Southern Boundary of the Navajo Reservation and the Northern Boundary of the Zuni Reservation, McKinley County, New Mexico', ' Museum of New Mexico.'); INSERT INTO "work" VALUES (1015, NULL, '1996', 0, 'John Kantner, 0', 'Archaeological Inventory and Limited Testing of LA 68896 and LA 12574, Two Sites in the Upper San Jose Valley near Grants, New Mexico', ' Report from the Department of Anthropology, University of California at Santa Barbara. Permit No. AS-910.'); INSERT INTO "work" VALUES (943, NULL, '1924', 0, 'Neil Merton Judd, 0', 'Archaeological Investigations at Pueblo Bonito', ' Smithsonian Miscellaneous Collections 76(10):71-77. Smithsonian Institution, Washington, D.C.'); INSERT INTO "work" VALUES (948, NULL, '1926', 0, 'Neil Merton Judd, 0', 'Archaeological Investigations at Pueblo Bonito and Pueblo del Arroyo, 1925', ' Explorations and Fieldwork of the Smithsonian Institution in 1925. Smithsonian Miscellaneous Collections 78(1):80-88.'); INSERT INTO "work" VALUES (941, NULL, '1923', 0, 'Neil Merton Judd, 0', 'Archaeological Investigations at Pueblo Bonito, New Mexico', ' In Explorations and Field Work of the Smithsonian Institution in 1922. Smithsonian Miscellaneous Collections 74(5):134-143. Smithsonian Institution, Washington, D.C.'); INSERT INTO "work" VALUES (945, NULL, '1925', 0, 'Neil Merton Judd, 0', 'Archaeological Investigations at Pueblo Bonito, New Mexico', ' Smithsonian Miscellaneous Collections 77(2):83-91. Smithsonian Institution, Washington, D.C.'); INSERT INTO "work" VALUES (938, NULL, '1921', 0, 'Neil Merton Judd, 0', 'Archaeological Investigations in Utah, Arizona, and New Mexico', ' Smithsoniam Miscellaneous Contributions 72(6):98-102.'); INSERT INTO "work" VALUES (244, NULL, '1978', 0, 'Douglas P. Brethauer, 0', 'Archaeological Investigations in the Chaco Canyon Vicinity, New Mexico', ' Department of Sociology and Anthropology, Cultural Resources Management Division, Report 270. New Mexico State University, Las Cruces.'); INSERT INTO "work" VALUES (1698, NULL, '1982', 0, 'Linda Popelish, 0; Russell T. Fehr, 1', 'Archaeological Investigations in the Northern Chuska Mountains: The N-13 Road Survey at Red Rock and Lukachukai, Navajo Nation', ' Navajo Nation Papers in Anthropology No. 18, Window Rock.'); INSERT INTO "work" VALUES (705, NULL, '1998', 0, 'Dennis Gilpin, 0', 'Archaeological Investigations in the Peach Springs Chacoan Community: Data Recovery on Navajo Route 9, Segment 5-1, McKinley County, New Mexico', ' SWCA Repot 98-15. SWCA Inc., Environmental Consultants, Flagstaff.'); INSERT INTO "work" VALUES (735, NULL, '1971', 0, 'George J. Gumerman, 0; Thomas R. Lyons, 1', 'Archaeological Methodology and Remote Sensing', ' Science 172:126-132.'); INSERT INTO "work" VALUES (2466, NULL, '1998', 0, 'Wirt H. Wills, 0', 'Archaeological Models for Leadership During the 11th and 12th Centuries A', '., Chaco Canyon, New Mexico. Paper presented at the 63rd Annual Meeting of the Society for American Archaeology, Seattle.'); INSERT INTO "work" VALUES (1747, NULL, '1997', 0, 'G. L. Prouty, 0', 'Archaeological Nature and Extent Testing, HAER Documentation of One Bridge Site, and Identification and Assessment of a Chacoan Linear Feature, Along Navajo Route N5001(1), Toadlena to Newcomb, San Juan County, New Mexico', ' Zuni Cultural Resource Enterprise Report 512, Pueblo of Zuni.'); INSERT INTO "work" VALUES (1893, NULL, '1981', 0, 'Cherie Scheick, 0', 'Archaeological Overview for the Rio San Jose Drainage', ' Contract Archaeology Progress Report No. 005. School of American Research, Santa Fe.'); INSERT INTO "work" VALUES (643, NULL, '1986', 0, 'Andrew P. Fowler, 0', 'Archaeological Reconnaissance of Selected Ruins on the Navajo Indian Reservation', ' Cultural Resources Management Program Report No. 86-123. Navajo Nation, Window Rock, AZ.'); INSERT INTO "work" VALUES (1276, NULL, '1973', 0, 'Thomas R. Lyons, 0', 'Archaeological Research Strategies: The Chaco Canyon Road Survey', ' Summer 1973. Ms. on file, National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (2367, NULL, '1990', 0, 'Miranda Warburton, 0', 'Archaeological Research at the Navajo Springs Greathouse', ' Paper presented at the 55th Annual Meeting of the Society for American Archaeology, Las Vegas.'); INSERT INTO "work" VALUES (1568, NULL, '1939', 0, 'Earl H. Morris, 0', 'Archaeological Sites in the La Plata District, Southwestern Colorado and Northwestern New Mexico', ' Carnegie Institution of Washington Publication 519, Washington, D.C.'); INSERT INTO "work" VALUES (1215, NULL, '1982', 0, 'Laurance D. Linford, 0; Teri Cleeland, 1', 'Archaeological Survey in the Forest Highlands of the Defiance Plateau and Chuska Mountains, Navajo Nation', ' Navajo Nation Papers in Anthropology No. 6. Window Rock, AZ.'); INSERT INTO "work" VALUES (1661, NULL, '1967', 0, 'Stewart Peckham, 0; John P. Wilson, 1', 'Archaeological Survey of the Chuska Valley and the Chaco Plateau, New Mexico, Part 2', ' Ms. on file, Laboratory of Anthropology, Museum of New Mexico, Santa Fe.'); INSERT INTO "work" VALUES (329, NULL, '1996', 0, 'Catherine M. Cameron, 0', 'Archaeological Testing at the Bluff Great House, Southeastern Utah, October 1995', ' Ms. on file, Southwest Heritage Foundation, Bluff, and Department of Anthropology, University of Colorado at Boulder.'); INSERT INTO "work" VALUES (282, NULL, '1947', 0, 'Adelaide Kendall Bullen, 0', 'Archaeological Theory and Anthropological Fact', ' American Antiquity 13(2):128-134.'); INSERT INTO "work" VALUES (995, NULL, '1987', 0, 'W. James Judge, 0', 'Archaeology and Astronomy: A View from the Southwest', ' In Astronomy and Ceremony in the Prehistoric Southwest, edited by John B. Carlson and W. James Judge, pp. 1-8. Papers of the Maxwell Museum of Anthropology No. 2. University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (862, NULL, '1991', 0, 'Patrick Hogan, 0', 'Archaeology of the San Juan Breaks: The Navajo Occupation', ' Office of Contract Archeology, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (395, NULL, '1997', 0, 'Linda S. Cordell, 0', 'Archaeology of the Southwest, 2nd edition', ' Academic Press, San Diego.'); INSERT INTO "work" VALUES (2387, NULL, '1987', 0, 'R. P. Watson, 0', 'Archaeological Investigations at Newcomb, New Mexico', ' Papers in Anthropology No. 2. San Juan College Research, Farmington.'); INSERT INTO "work" VALUES (515, NULL, '1994', 0, 'David E. Doyel, 0; Jeffrey Eighmy, 1', 'Archaeomagnetic Dating and the Bonito Phase Chronology', ' Journal of Archaeological Science 21:651-658.'); INSERT INTO "work" VALUES (1627, NULL, '1975', 0, 'Ronald Franklin Nichols, 0', 'Archaeomagnetic Study of Anasazi-Related Sediments of Chaco Canyon, New Mexico', ' Unpublished M.S. thesis, School of Geology and Geosciences University of Norman, Oklahoma. '); INSERT INTO "work" VALUES (1775, NULL, '1999', 0, 'Paul F. Reed, 0', 'Archaic Structures at LA 16257, NM-6-53-19, South of Counselor, New Mexico', ' Paper presented at the 72nd Pecos Conference, Pinedale, AZ.'); INSERT INTO "work" VALUES (124, NULL, '1981', 0, 'Craig Baker, 0; George J. Gumerman, 1', 'Archeological Applications of Remote Sensing in the North Central Lowlands', ' Supplement No. 6 to Remote Sensing: A Handbook for Archeologists and Cultural Resource Managers by Thomas R. Lyons and Thomas Eugene Avery. Division of Cultural Resource Management, National Park Service, Washington, D.C.'); INSERT INTO "work" VALUES (2250, NULL, '1976', 0, 'Roger Vickers, 0; Lambert Dolphin, 1; David Johnson, 2', 'Archeological Investigations at Chaco Canyon Using a Subsurface Radar', ' In Remote Sensing Experiments in Cultural Resource Studies. Non-destructive Methods of Archeological Exploration, Survey, and Analysis, assembled by Thomas R. Lyons, pp. 81-101. Reports of the Chaco Center No. 1. National Park Service and University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (939, NULL, '1922', 0, 'Neil Merton Judd, 0', 'Archeological Investigations at Pueblo Bonito, New Mexico', ' In Explorations and Fieldwork of the Smithsonian Institution in 1921. Smithsonian Miscellaneous Collections 72(15):106-117.'); INSERT INTO "work" VALUES (949, NULL, '1927', 0, 'Neil Merton Judd, 0', 'Archeological Investigations in Chaco Canyon, New Mexico', ' In Explorations and Fieldwork of the Smithsonian Institution in 1926. Smithsonian Miscellaneous Collections 78(7):158-168. Washington, D.C.'); INSERT INTO "work" VALUES (2476, NULL, '1977', 0, 'J. P. Wilson, 0', 'Archeological Reconnaissance of the Alamito Coal Lease Area, San Juan County, New Mexico', ' Report No. 10. Cultural Resources Management Division, Department of Sociology and Anthropology, New Mexico State University, Las Cruces.'); INSERT INTO "work" VALUES (1836, NULL, '1939', 0, 'Frank H. H. Roberts, Jr., 0', 'Archeological Remains in the Whitewater District, Eastern Arizona, Part I', ' House Types. Bureau of American Ethnology, Bulletin 121. Washington, D.C.'); INSERT INTO "work" VALUES (1837, NULL, '1940', 0, 'Frank H. H. Roberts, Jr., 0', 'Archeological Remains in the Whitewater District, Eastern Arizona, Part II', ' Artifacts and Burials. Bureau of American Ethnology, Bulletin 126. Washington, D.C.'); INSERT INTO "work" VALUES (1318, NULL, '1939', 0, 'Roy L. Malcolm, 0', 'Archeological Remains, Supposedly Navaho, from Chaco Canyon, New Mexico', ' American Antiquity 5(1):4-20.'); INSERT INTO "work" VALUES (2611, NULL, '1976', 0, '*name in CDI Location due to size', 'Archeological Field Procedural Manual (Initial Draft)', 'W. James Judge, 0; Nancy J. Akins, 1; Cory D. Breternitz, 2; Catherine M. Cameron, 3; William B. Gillespie, 4; L. Jean Hooten, 5; Stephen H. Lekson, 6; Peter J. McKenna, 7; Robert P. Powers, 8; John D. Schelberg, 9; H. Wolcott Toll, 10; Marcia L. Truell, 11; Thomas C. Windes, 12 Ms. on file, National Park Service, Intermountain Region, Santa Fe Office.'); INSERT INTO "work" VALUES (980, NULL, '1978/9', 0, 'W. James Judge, 0', 'Archeological Research and Management Needs', ' Second Annual Shenandoah Research Symposium. U.S. Department of the Interior, NPS Natural Resources Report No. 15.'); INSERT INTO "work" VALUES (969, NULL, '1975', 0, 'W. James Judge, 0', 'Archeological Sampling and Cultural Resources Management', ' Paper presented at the 40th Annual Meeting of the Society for American Archaeology, Dallas.'); INSERT INTO "work" VALUES (58, NULL, '1992', 0, 'Charles W. Amsden, 0', 'Archeological Survey of the San Juan Lateral, Chaco Mesa Route', ' Volume III of Across the Colorado Plateau: Anthropological Studies for the Transwestern Pipeline Expansion Project. Office of Contract Archeology and Museum of New Mexico, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (59, NULL, '1992', 0, 'Charles W. Amsden, 0', 'Archeological Survey, Site Testing, and Ethnographic Research along the San Juan Lateral', ' Volume V of Across the Colorado Plateau: Anthropological Studies for the Transwestern Pipeline Expansion Project. Office of Contract Archeology and Museum of New Mexico, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (819, NULL, '1981', 0, 'Alden C. Hayes, 0; David M. Brugge, 1; W. James Judge, 2', 'Archeological Surveys of Chaco Canyon, New Mexico', 'Publications in Archeology 18A, Chaco Canyon Studies. National Park Service, Washington, D.C.'); INSERT INTO "work" VALUES (1354, NULL, '1988', 0, 'Michael P. Marshall, 0', 'Archeological Test Excavations and Survey of Wall Orientations, Tsin Kletzin Pueblo, Chaco Canyon National Park', ' Preliminary notes on the field project prepared by Michael Marshall for the Solstice Project. Ms. on file with author.'); INSERT INTO "work" VALUES (2489, NULL, '1980', 0, 'Thomas C. Windes, 0', 'Archeomagnetic Dating: Lessons from Chaco Canyon, New Mexico', ' Paper presented at the 45th Annual Meeting of the Society for American Archaeology, Philadelphia.'); INSERT INTO "work" VALUES (2485, NULL, '1978', 0, 'Thomas C. Windes, 0', 'Archeomagnetic Sampling: Field Procedures and Equipment', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2126, NULL, '1979', 0, 'James A. Terrell, 0; Stephen R. Durand, 1', 'Architectural Analysis at Guadalupe Ruin, Sandoval County, New Mexico', ' Final Report to the National Endowment for the Humanities.'); INSERT INTO "work" VALUES (543, NULL, '1992', 0, 'Stephen R. Durand, 0', 'Architectural Change and Chaco Prehistory', ' Unpublished Ph.D. dissertation, Department of Anthropology, University of Washington, Seattle.'); INSERT INTO "work" VALUES (682, NULL, '1980', 0, 'William B. Gillespie, 0', 'Architectural Development at Una Vida, Chaco Canyon, N', '. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (683, NULL, '1980', 0, 'William B. Gillespie, 0', 'Architectural Development at Una Vida: A Lexonian Account', ' Paper presented at the 1980 Pecos Conference, Mesa Verde. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (404, NULL, '1947', 0, 'Barbara Cornett, 0', 'Architectural Features of Three "Chaco Small House" Ruins (Bc 50, Bc 58, Bc 59)', ' Chaco Archive No. 2106, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1198, NULL, '2000', 0, 'Stephen H. Lekson, 0', 'Architecture', ' Archaeology Southwest 14(1):12-14.'); INSERT INTO "work" VALUES (1792, NULL, '1975', 0, 'Jonathan E. Reyman, 0', 'Architecture and Adaptation', ' Two Possible Solstitial Alignments at Pueblo Bonito, Chaco Canyon, New Mexico. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1333, NULL, '1994', 0, 'Anne Lawrason Marshall, 0', 'Architecture at Chaco Canyon: Spirituality and Siting', ' Paper presented at the 47th Annual Meeting of the Society of Architectural Historians, Philadelphia, April.'); INSERT INTO "work" VALUES (1137, NULL, '1981', 0, 'Stephen H. Lekson, 0', 'Architecture in Archaeology: A Critical Bibliography of Sources for Theory', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1205, NULL, '1978', 0, 'Stephen H. Lekson, 0; W. James Judge, 1', 'Architecture of the Bonito Phase of Chaco Canyon, New Mexico', ' Paper presented at the 77th Annual Meeting of the American Anthropological Association, Los Angeles, Nov. 1.'); INSERT INTO "work" VALUES (744, NULL, '1967', 0, 'C. A. Hall, 0', 'Architecture in Chaco Canyon', ' M.S. thesis, Pennsylvania State University.'); INSERT INTO "work" VALUES (641, NULL, '1993', 0, 'Dabney A. Ford, 0', 'Architecture on Fajada Butte', ' Appendix H in The Spadefoot Toad Site: Investigations at 29SJ629, Chaco Canyon, New Mexico. Reports of the Chaco Center No. 12. National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (1868, NULL, '1965', 0, 'B. Rudofsky, 0', 'Architecture without Architects', ' Museum of Modern Art, New York. Doubleday and Co., New York.'); INSERT INTO "work" VALUES (1412, NULL, '1994', 0, 'Frances Joan Mathien, 0', 'Argillite: A Locally Available Jewelry Material of the Prehistoric Inhabitants of Chaco Canyon, New Mexico', ' In Papers in Honor of Gordon Page, edited by Meliha S. Duran and David T. Kirkpatrick, pp. 147-158. Papers of the Archaeological Society of New Mexico: 20.'); INSERT INTO "work" VALUES (859, NULL, '1974', 0, 'W. K. Hodges, 0', 'Arroyo and Wash Development in the Chaco Canyon Country and Contiguous Areas of Northwestern New Mexico and Northeastern Arizona', ' Project Report to the National Park Service for Contract CX-7000-3-0101 to the Geography Department of the University of New Mexico. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (483, NULL, '1902', 0, 'R. E. Dodge, 0', 'Arroyo Formation', ' Science 15:746.'); INSERT INTO "work" VALUES (108, NULL, '1952', 0, 'E. Antevs, 0', 'Arroyo-Cutting and Filling', ' Journal of Geology 60:375-385.'); INSERT INTO "work" VALUES (1605, NULL, '2003', 0, 'Jill E. Neitzel, 0', 'Artifact Distributions at Pueblo Bonito', ' In Pueblo Bonito: Center of the Chacoan World, edited by Jill E. Neitzel. Smithsonian Institution Press, Washington, D.C.'); INSERT INTO "work" VALUES (1423, NULL, '2003', 0, 'Frances Joan Mathien, 0', 'Artifacts from Pueblo Bonito: 100 Years of Interpretation', ' In Pueblo Bonito: Center of the Chacoan World, edited by Jill E. Neitzel. Smithsonian Institution Press, Washington, D.C.'); INSERT INTO "work" VALUES (1413, NULL, '1996', 0, 'Frances Joan Mathien, 0', 'Artifacts from Pueblo Bonito: 100 Years of Interpretation', ' Paper presented at the 61st Annual Meeting of the Society for American Archaeology, New Orleans.'); INSERT INTO "work" VALUES (2188, NULL, '1986', 0, 'Lloyd K. Townsend, 0', 'Artist''s Reconstruction of Pueblo Bonito', ' In Mysteries of the Ancient Americas, the New World Before Columbus, pp. 254-255. Readers'' Digest Association, Inc., Pleasantville, NY.'); INSERT INTO "work" VALUES (2304, NULL, '1970', 0, 'R. Gwinn Vivian, 0', 'Aspects of Prehistoric Society in Chaco Canyon, New Mexico', ' Unpublished Ph.D. dissertation, Department of Anthropology, University of Arizona, Tucson.'); INSERT INTO "work" VALUES (1116, NULL, '1983', 0, 'Steven A. LeBlanc, 0', 'Aspects of Southwestern Prehistory: A', '. 900-1450. Paper presented at the 48th Annual Meeting of the Society for American Archaeology, Pittsburgh. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published in 1986.'); INSERT INTO "work" VALUES (1117, NULL, '1986', 0, 'Steven A. LeBlanc, 0', 'Aspects of Southwestern Prehistory: A', '. 900-1450. In Ripples in the Chichimec Sea: New Considerations of Southwestern-Mesoamerican Interactions, edited by Frances Joan Mathien and Randall H. McGuire, pp. 105-134. Southern Illinois University, Carbondale.'); INSERT INTO "work" VALUES (1789, NULL, '1971', 0, 'Jonathan E. Reyman, 0', 'Astro-archaeology in the Anasazi Area', ' Paper presented at the 36th Annual Meeting of the Society for American Archaeology, Norman.'); INSERT INTO "work" VALUES (2026, NULL, '1986', 0, 'Anna Sofaer, 0; Rolf Sinclair, 1', 'Astronomic and Related Patterning in the Architecture of the Prehistoric Chaco Culture of New Mexico', ' Bulletin of the American Astronomical Society18(4):1044-1045.'); INSERT INTO "work" VALUES (2027, NULL, '1987', 0, 'Anna Sofaer, 0; Rolf Sinclair, 1', 'Astronomical Markings at Three Sites on Fajada Butte', ' In Astronomy and Ceremony in the Prehistoric Southwest, edited by John B. Carlson and W. James Judge, pp. 43-70. Papers of the Maxwell Museum of Anthropology No. 2. University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2021, NULL, '1983', 0, 'Anna Sofaer, 0; Rolf Sinclair, 1', 'Astronomical Markings at Three Sites on Fajada Butte', ' Paper presented at the Symposium on Astronomy and Ceremony in the Prehistoric Southwest. Maxwell Museum, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (596, NULL, '2003', 0, 'James D. Farmer, 0', 'Astronomy and Ritual in Chaco Canyon', ' In Pueblo Bonito: Center of the Chacoan World, edited by Jill E. Neitzel, pp. . Smithsonian Institution Press, Washington, D.C.'); INSERT INTO "work" VALUES (2608, NULL, '1988', 0, 'Michael Zeilik, 0', 'Astronomy and Ritual: The Rhythm of the Social Calendar in the U', '. Southwest. In New Directions in American Archaeoastromony (Proceedings of the 46 International Congress of Americanists, Amsterday, Netherlands, 1988), edited by Anthony F. Aveni, pp. 183-198. BAR International Series, No. 454. Oxford.'); INSERT INTO "work" VALUES (1794, NULL, '1976', 0, 'Jonathan E. Reyman, 0', 'Astronomy, Architecture, and Adaptation at Pueblo Bonito', ' Science 193(4257):957-962.'); INSERT INTO "work" VALUES (573, NULL, '1986', 0, 'Michael Lee Elliott, 0', 'Atlatl Cave and the Late Archaic Period in Chaco Canyon, New Mexico', ' Unpublished M.A. Thesis, Department of Anthropology, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1376, NULL, '1979', 0, 'Thomas W. Mathews and Earl Neller', 'Atlatl Cave: Archaic-Basketmaker II Investigations in Chaco Canyon National Monument', ' In Proceedings of the First Conference on Scientific Research in the National Parks. Volume II, edited by R. M. Linn, p. 873. National Park Service Transactions and Proceedings Series No. 5. Washington, D.C.'); INSERT INTO "work" VALUES (354, NULL, '1987', 0, 'John B. Carlson, 0; W. James Judge , 1', 'Astronomy and Ceremony in the Prehistoric Southwest', ' Papers of the Maxwell Museum of Anthropology No. 2. University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1375, NULL, '1979', 0, 'Thomas W. Mathews and Earl Neller', 'Atlatl Cave: Archaic-Basketmaker II Investigations in Chaco Canyon National Monument (Introduction and Site Background)', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1489, NULL, '1971', 0, 'Charmion R. McKusick, 0', 'Avian Remains from Bc 288', ' Archive 2022, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1841, NULL, '1981', 0, 'Ben P. Robertson, 0', 'BLM Chaco Roads Project', ' Research Proposal. Ms. on file, Bureau of Land Management, New Mexico State Office, Santa Fe. Published in 1983 in Kincaid .'); INSERT INTO "work" VALUES (444, NULL, '1981', 0, 'Jack F. Cully, 0', 'Baseline Biology of Birds and Mammals at Chaco Canyon National Monument, New Mexico', ' Communities of Four Habitats. I. Birds. II. Annotated Species List of Birds. III. Small Mammal Communities of Four Habitats. Prepared by Quivira Research Center. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published in 1985.'); INSERT INTO "work" VALUES (448, NULL, '1985', 0, 'Jack F. Cully, 0', 'Baseline Biology of Birds and Mammals at Chaco Canyon National Monument, New Mexico', ' In Environment and Subsistence of Chaco Canyon, New Mexico, edited by Frances Joan Mathien, pp. 279-304. Publications in Archeology 18E, Chaco Canyon Studies. National Park Service, Albuquerque.'); INSERT INTO "work" VALUES (1612, NULL, '1976', 0, 'Earl Neller, 0', 'An Introduction to Archaeological Research at Pueblo Alto', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1569, NULL, '1954', 0, 'Earl H. Morris, 0; R. F. Burgh, 1', 'Basket Maker III Sites near Durango, Colorado', ' Carnegie Institution of Washington, Publication 604, Washington, D.C.'); INSERT INTO "work" VALUES (2331, NULL, '2000', 0, 'R. Gwinn Vivian, 0', 'Basketmaker Archaeology at the Millennium: New Answers to Old Questions', ' In Foundations of Anasazi Culture: The Basketmaker-Pueblo Transition, edited by Paul F. Reed, pp. 251-257. University of Utah Press, Salt Lake City.'); INSERT INTO "work" VALUES (2254, NULL, '1931', 0, 'R. Gordon Vivian, 0', 'Basketry of Chetro Ketl', ' Archive 2107, NPS Chaco Culture NHP Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2339, NULL, '1963', 0, 'Charles B. Voll, 0', 'Bc 236: A Small Farming Village in Chaco Canyon', ' Ms. on file, National Park Service, Globe.'); INSERT INTO "work" VALUES (2, NULL, '1974', 0, 'Leland J. Abel, 0', 'Bc 288: A Late Pueblo Site in Chaco Canyon National Monument, New Mexico', ' Archive 2149, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2346, NULL, '1964', 0, 'Charles B. Voll, 0', 'Bc 362: A Small Late 11th and Early 12th Century Farming Village in Chaco Canyon, New Mexico', ' Archive 505, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (719, NULL, '1937', 0, 'Nan Glenn, 0', 'Bc 50 Substructures', ' In Preliminary Report on the Excavations, Bc 50-Bc 51, Chaco Canyon, New Mexico, edited by Clyde Kluckhohn and Paul Reiter, pp. 166-174. University of New Mexico Press, Albuquerque.'); INSERT INTO "work" VALUES (279, NULL, '1941', 0, 'Theodora Buggeln, 0; Ripley Bullen, 1', 'Bc 52, Kiva II: Report on Removal of Stratigraphic Test Block', ' Vivian Archive No. 394, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1027, NULL, '1977', 0, 'Lawrence Kaplan, 0', 'Beans from Bc 288', ' Report from University of Massachusetts, Harbor Campus, Boston. Archive 2149, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (280, NULL, '1983', 0, 'T. F. Bullard, 0', 'Bedrock Influences on the Late Quaternary Alluvial History and Evolution on the Kim-me-ni-oli Wash Drainage Basin', ' In Chaco Canyon Country. A Field Guide to the Geomorphology, Quaternary Geology, Paleoecology and Environmental Geology of Northwestern New Mexico, edited by S. G. Wells, D. W. Love, and T. W. Gardner, pp. 79-91. 1983 Field Trip Guidebook, American Geomorphological Field Group. Adobe Press, Albuquerque.'); INSERT INTO "work" VALUES (397, NULL, '2000', 0, 'Linda S. Cordell, 0; Stephen R. Durand, 1', 'Better Living through Chemistry in Pueblo Archaeology', ' Paper presented atthe 65thAnnual Meeting of the Society for American Archaeology, Philadelphia.'); INSERT INTO "work" VALUES (1309, NULL, '1998', 0, 'Nancy Mahoney, 0', 'Beyond Bis sa''ani: Rethinking the Scale and Organization of Great House Communities', ' Paper presented at the 63rd Annual Meeting of the Society for American Archaeology, Seattle.'); INSERT INTO "work" VALUES (829, NULL, '2001', 0, 'Sarah A. Herr, 0', 'Beyond Chaco: Great Kiva Communities on the Mogollon Rim Frontier', ' Anthropological Papers of the University of Arizona, No. 66. University of Arizona Press, Tucson.'); INSERT INTO "work" VALUES (2082, NULL, '1989', 0, 'Ann Lucy Wiener Stodder, 0', 'Bioarchaeological Research in the Basin and Range Region', ' In Human Adaptation and Cultural Change in the Greater Southwest, by A. H. Simmons, A. L. W. Stodder, D. D. Dykeman, and P. A. Hicks, pp. 167-190. Arkansas Archaeological Survey Research Series No. 32. Wrightsville.'); INSERT INTO "work" VALUES (2556, NULL, '1982', 0, 'Robert E. Wood, 0', 'Biological Evaluation', ' Damage to Trees II. Chaco Canyon National Culture Park, Bloomfield, New Mexico. Forest Pest Management, State and Pureatae Forestry, Southwest Region, USDA Forest Service, Albuquerque.'); INSERT INTO "work" VALUES (2557, NULL, '1982', 0, 'Robert E. Wood, 0; Phillip M. Wargo, 1', 'Biological Evaluation', ' Rate of Decline of Rio Grande Cottonwoods Subjected to Flood Plain Aggradation and Other Environmental Stresses Chaco Culture National Historical Park, New Mexico. U.S.D.A. Forest Service, Southwest Region, Albuquerque. Ms. on file, Natural Resources Office, National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (204, NULL, '1980', 0, 'W. Kent Boyer, 0', 'Bipod Photogrammetry', ' In Cultural Resources Remote Sensing, edited by Thomas R. Lyons and Frances Joan Mathien, pp. 327-345. National Park Service, Cultural Resources Management Division, Washington, D.C.'); INSERT INTO "work" VALUES (1074, NULL, '1980', 0, 'Stephanie Klausner, 0', 'Bipod Photography: Procedures for Photographic Mapping of Archeological Sites', ' In Cultural Resources Remote Sensing, edited by Thomas R. Lyons and Frances Joan Mathien, pp. 293-325. Cultural Resources Management Division, National Park Service, Washington, D.C.'); INSERT INTO "work" VALUES (1488, NULL, '1938', 0, 'Carolie McKinney, 0', 'Bird Banding at Chaco', ' Southwestern Monuments Reports Supplement for July, p. 70.'); INSERT INTO "work" VALUES (774, NULL, '1960', 0, 'Lyndon L. Hargrave, 0', 'Bird Bone Artifacts from Bc-51', ' Memorandum on file, National Park Service, Western Archaeological and Conservation Center, Tucson..'); INSERT INTO "work" VALUES (782, NULL, '1971', 0, 'Lyndon L. Hargrave, 0', 'Bird Bones', ' In Site Bc 236, Chaco Canyon National Monument, New Mexico, by Zorro A. Bradley, pp.89-93. Division of Archeology, Office of Archeology and Historic Preservation, National Park Service, Washington, D.C.'); INSERT INTO "work" VALUES (770, NULL, '1959', 0, 'Lyndon L. Hargrave, 0', 'Bird Bones from Bc 236, Chaco Canyon National Monument', ' Ms. on file, National Park Service, Western Archaeological and Conservation Center, Tucson.'); INSERT INTO "work" VALUES (771, NULL, '1959', 0, 'Lyndon L. Hargrave, 0', 'Bird Bones from Chaco Canyon National Monument [Talus Unit]', ' Memorandum on file, National Park Service, Western Archaeological and Conservation Center, Tucson.'); INSERT INTO "work" VALUES (776, NULL, '1961', 0, 'Lyndon L. Hargrave, 0', 'Bird Species Identified from Bones from Southwestern Archaeological Sites by Lyndon L', 'Hargrave since 1956. Ms. on file, National Park Service, Western Archaeological and Conservation Center, Tucson.'); INSERT INTO "work" VALUES (930, NULL, '1953', 0, 'Paul Jones, 0', 'Blue Feather, A Story of Prehistoric Indian Life Based on a Navajo Legend', ' Prairie Publishers, Lyons, KS.'); INSERT INTO "work" VALUES (2519, NULL, '1992', 0, 'Thomas C. Windes, 0', 'Blue Notes: The Chacoan Turquoise Industry in the San Juan Basin', ' In Anasazi Regional Organization and the Chaco System, edited by David E. Doyel, pp. 159-168. Anthropological Papers No. 5. Maxwell Museum of Anthropology, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1367, NULL, '2000', 0, 'Debra L. Martin, 0', 'Bodies and Lives: Biological Indicators of Health Differentials and Division of Labor by Sex', ' In Women and Men in the Prehispanic Southwest: Labor, Power, and Prestige, edited by Patricia L. Crown, pp. 167-300. School of American Research Press, Santa Fe.'); INSERT INTO "work" VALUES (1505, NULL, '1983', 0, 'Judith Miles, 0', 'Bone Artifacts Analysis, Site 29SJ299, Chaco Canyon', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1512, NULL, '1987', 0, 'Judith Miles, 0', 'Bone Artifacts from Pueblo Alto', ' In Investigations at the Pueblo Alto Complex, Chaco Canyon, New Mexico, 1975-1979. Volume III. Artifactual and Biological Analyses, edited by Frances Joan Mathien and Thomas C. Windes, pp. 651-677. Publications in Archeology 18F, Chaco Canyon Studies. National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (1506, NULL, '1983', 0, 'Judith Miles, 0', 'Bone Artifacts from Site 29SJ629 at Chaco Culture National Historical Park', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Revised and published 1993.'); INSERT INTO "work" VALUES (1516, NULL, '1993', 0, 'Judith Miles, 0', 'Bone Artifacts from a Chacoan Small Site', ' In The Spadefoot Toad Site: Investigations at 29SJ629, Chaco Canyon, New Mexico. Artifactual and Biological Analyses, Volume II, edited by Thomas C. Windes, pp. 317-341. Reports of the Chaco Center No. 12. Branch of Cultural Research, National Park Service, Santa Fe. '); INSERT INTO "work" VALUES (1510, NULL, '1986', 0, 'Judith Miles, 0', 'Bone Artifacts: Second Draft for Pueblo Alto Volume', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1514, NULL, '1991', 0, 'Judith Miles, 0', 'Bone Tools from 29SJ 633', ' In Excavations at 29SJ 633: The Eleventh Hour Site, Chaco Canyon, New Mexico, edited by Frances Joan Mathien, pp. 317-323. Reports of the Chaco Center No. 10. Branch of Cultural Research, National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (2461, NULL, '1976', 0, 'Wirt H. Wills, 0', 'Bones and Blister: An Exercise in Faunal Identification and Interpretation', ' Prepared for Anthropology 351. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (772, NULL, '1960', 0, 'Lyndon L. Hargrave, 0', 'Bones from Chetro Ketl', ' Ms. on file, National Park Service, Western Archaeological and Conservation Center, Tucson.'); INSERT INTO "work" VALUES (1131, NULL, '1978', 0, 'Stephen H. Lekson, 0', 'Bonito Phase Architecture, Working Notes', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published in 1984.'); INSERT INTO "work" VALUES (1859, NULL, '1993', 0, 'John R. Roney, 0', 'Bonito Style Community Structures: Chimney Rock Pueblo in Regional Context', ' In The Chimney Rock Symposium, October 20-21, 1990, Durango, Colorado, edited by J. McKim Malville and Gary Matlock, pp. 61-64. USDA Forest Service General Technological Report RM-227. Rocky Mountain Forest and Range Experimental Station, Fort Collins.'); INSERT INTO "work" VALUES (2146, NULL, '1985', 0, 'H. Wolcott Toll, III, 0', 'Book Note: Regional Analyses of Prehistoric Ceramic Variation: Contemporary Studies of the Cibola Whitewares', ' ASU Anthropological Papers No. 32. American Antiquity 51(1):204.'); INSERT INTO "work" VALUES (1409, NULL, '1993', 0, 'Frances Joan Mathien, 0', 'Book Review', ' "Roads to Center Place. A Cultural Atlas of Chaco Canyon and the Anasazi, by Kathryn Gabriel, Johnson Books, Boulder, 1991. In Essays and Monographs in Colorado History, pp. 61-64. Colorado Historical Society, Denver.'); INSERT INTO "work" VALUES (1611, NULL, '1975', 0, 'Earl Neller, 0', 'Botanical Analysis in Atlatl Cave, Preliminary Report', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2089, NULL, '1977', 0, 'Mollie Struever, 0', 'Botanical Analysis of Flotation Samples from Chaco Canyon', ' Quarterly reports for the Division of Cultural Research. Part I. Special Features (Trash, Firepits, Heating/Baking Pits, Mealing Bins). Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2096, NULL, '1979', 0, 'Mollie Struever, 0', 'Botanical Analysis of Flotation Samples from Chaco Canyon', ' Part VI: Site 29SJ629 Summary and Synthesis, Also Notes on Experimental Corn Plots. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2095, NULL, '1979', 0, 'Mollie Struever, 0', 'Botanical Analysis of Flotation Samples from Chaco Canyon', ' Part V: Miscellaneous Samples from Site 29SJ629 (Features, Trash, Surface). Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2092, NULL, '1978', 0, 'Mollie Struever, 0', 'Botanical Analysis of Flotation Samples from Chaco Canyon', ' Part II: Tub and Ramada Floors (also Included Three Heating Pits from Pueblo Alto). Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2094, NULL, '1978', 0, 'Mollie Struever, 0', 'Botanical Analysis of Flotation Samples from Chaco Canyon', ' Part IV: Kiva and Pithouses, Site 29SJ629. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2093, NULL, '1978', 0, 'Mollie Struever, 0', 'Botanical Analysis of Flotation Samples from Chaco Canyon', ' Part III: Storage and Living Rooms (Site 29SJ629). Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2184, NULL, '1993', 0, 'Mollie S. Toll, 0', 'Botanical Indicators of Early Life in Chaco Canyon: Flotation Samples and Other Plant Materials from Basketmaker and Early Pueblo Occupations', ' Final Report. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (239, NULL, '1977', 0, 'Cory Dale Breternitz, 0', 'Botanical Remains from Archaeological Sites as a Basis for Determining Cultural Activity in Chaco Canyon', ' Paper for Geosciences 262, University of Arizona, Tucson. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1597, NULL, '1994', 0, 'Jill E. Neitzel, 0', 'Boundary Dynamics in the Chacoan Regional System', ' In The Ancient Southwest Community: Models and Methods for the Study of Prehistoric Social Organization, edited by W. H. Wills and Robert D. Leonard, pp. 209-240. University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (196, NULL, '1936', 0, 'Lansing B. Bloom, 0', 'Bourke on the Southwest', ' New Mexico Historical Review XI(1&3).'); INSERT INTO "work" VALUES (1511, NULL, '1986', 0, 'Judith Miles, 0', 'Branch of Cultural Research, Southwest Cultural Resources Center, Southwest Region, Scope of Collection Management', ' Ms. on file, NPS, SWRO, Santa Fe.'); INSERT INTO "work" VALUES (1059, NULL, '1995', 0, 'Karen A. Kievit, 0', 'Building Relationships: Architecture, Ideology and the Chaco System', ' Paper presented at the 60th Annual Meeting of the Society for American Archeology, Minneapolis. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1652, NULL, '1941', 0, 'Phyllis Palmer, 0', 'Burial Customs in Small House Sites in Chaco Canyon', ' Archive 2103, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2568, NULL, '1934', 0, 'Margaret S. Woods, 0', 'Burial No', '4., Talus Unit No. 1, Chetro Ketl. Southwestern Monuments, pp. 61-62. August.'); INSERT INTO "work" VALUES (1951, NULL, '1937', 0, 'Donovan Senter, 0', 'Burials from Mound 50 and Mound 51', ' In Tseh So, A Small House Ruin, Chaco Canyon, New Mexico, edited by Donald D. Brand, Florence M. Hawley, and Frank C. Hibben, pp. 140-162. University of New Mexico Bulletin 308, Anthropological Series 2(2). University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1025, NULL, '1981', 0, 'Howard M. Kaplan, 0', 'Can We Save This Mystery? Denver Post-Empire Magazine, October 25', NULL); INSERT INTO "work" VALUES (2210, NULL, '1993', 0, 'Christy G. Turner, II, 0', 'Cannibalism in Chaco Canyon: The Charnel Pit Excavated in 1926 at Small House Ruin by Frank H', 'H. Roberts, Jr. American Journal of Physical Anthropology 91:421-439.'); INSERT INTO "work" VALUES (2213, NULL, '1995', 0, 'Christy G. Turner, II, 0; Jacqueline A. Turner, 1', 'Cannibalism in the Prehistoric American Southwest: Occurrence Taphonomy, Explanation, and Suggestions for Standardized World Definition', ' Anthropological Science 103(1):1-22.'); INSERT INTO "work" VALUES (1740, NULL, '1998', 0, 'Douglas Preston, 0', 'Cannibals of the Canyon', ' The New Yorker Magazine, November 30, pp. 76-89.'); INSERT INTO "work" VALUES (2453, NULL, '1982', 0, 'Ray A. Williamson, 0', 'Casa Rinconada, a Twelfth Century Anasazi Kiva', ' In Archaeoastronomy in the New World, American Primitive Astronomy, Proceedings of an International Conference Held at Oxford University, September 1981, edited by Anthony F. Aveni, pp. 205-219. Cambridge University Press, Cambridge, England.'); INSERT INTO "work" VALUES (2255, NULL, '1931', 0, 'R. Gordon Vivian, 0', 'Casa Rinconada Excavation Report', ' Archive 1844, 1947, NPS Chaco Culture NHP Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1581, NULL, '1941', 0, 'William Mulloy, 0', 'Casa Sombreada: Excavation at Bc 52', ' Preliminary Report. Chaco Archive 2101J, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1615, NULL, '1978', 0, 'Earl Neller, 0', 'Casamero Ruin, AR-NM-01-144, LA #8779: Archaeological Report', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (376, NULL, '1967', 0, 'Anne M. Colberg, 0', 'Casamero Site LA 8779', ' Preliminary Report of the Work Completed in 1966. Archive 2027A, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1980, NULL, '1981', 0, 'Anne C. Sigleo, 0', 'Casamero: A Chacoan Site in the Red Mesa Valley, New Mexico, LA 8779', ' Cottonwood Gulch Foundation Report. Archive 2027, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (478, NULL, '1968', 0, 'Charles C. DiPeso, 0', 'Casas Grandes and the Gran Chichimeca', ' El Palacio 75:47-61.'); INSERT INTO "work" VALUES (479, NULL, '1968', 0, 'Charles C. DiPeso, 0', 'Casas Grandes, a Fallen Trading Center of the Gran Chichimeca', ' The Masterkey 42:20-37.'); INSERT INTO "work" VALUES (480, NULL, '1974', 0, 'Charles C. DiPeso, 0', 'Casas Grandes: A Fallen Trading Center of the Gran Chichimeca', ' 8 volumes. The Amerind Foundation and Northland Press, Dragoon and Flagstaff.'); INSERT INTO "work" VALUES (540, NULL, '1981', 0, 'Neale Draper, 0', 'Castles and County Cousins: The San Juan Basin Anasazi in Perspective', ' Paper for Anthropology 356, University of New Mexico. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2053, NULL, '1930', 0, 'W. S. Stallings, 0', 'Catalog of Tree-Ring Material Collected from Chetro Ketl, June and July 1930', ' Ms. on file, Laboratory of Tree-Ring Research, University of Arizona, Tucson.'); INSERT INTO "work" VALUES (2127, NULL, '1888', 0, 'William M. Thayer, 0', 'Cave-dwellers', ' In Marvels of the New West, by William M. Thayer, pp. 137-146. Henry Bell, Norwich, CT.'); INSERT INTO "work" VALUES (1665, NULL, '1898', 0, 'Stephen D. Peet, 0', 'Caves and Cliff-Dwellings Compared', ' American Antiquarian 20:193-211.'); INSERT INTO "work" VALUES (2156, NULL, '1980', 0, 'H. Wolcott Toll, 0; Peter J. McKenna, 1', 'Ceramic Analysis', ' Chaco Center 1980 Pecos Conference Report. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1496, NULL, '1935', 0, 'H. P. Mera, 0', 'Ceramic Clues to the Prehistory of North Central New Mexico', ' Laboratory of Anthropology Technical Series Bulletin No. 8. Santa Fe.'); INSERT INTO "work" VALUES (2140, NULL, '1981', 0, 'H. Wolcott Toll, III, 0', 'Ceramic Comparisons Concerning Redistribution in Chaco Canyon, New Mexico', ' In Production and Distribution: A Ceramic Viewpoint, edited by Howard Hilary and Elaine L. Morris, pp. 83-121. British Archaeological Reports 120, Oxford, England.'); INSERT INTO "work" VALUES (192, NULL, '1993', 0, 'Eric Blinman, 0; C. Dean Wilson, 1', 'Ceramic Perspectives on Northern Anasazi Exchange', ' In The American Southwest and Mesoamerica: Systems of Prehistoric Exchange, edited by Jonathon E. Ericson and Timothy G. Baugh, pp. 65-94. Plenum Press, New York.'); INSERT INTO "work" VALUES (2472, NULL, '1996', 0, 'C. Dean Wilson, 0', 'Ceramic Pigment Distributions and Regional Interaction: A Re-examination of Intrpretations in Shepard''s "Technology of La Plata Pottery', ' Kiva62:83-102.'); INSERT INTO "work" VALUES (1484, NULL, '1991', 0, 'Peter J. McKenna, 0; H. Wolcott Toll, 1', 'Ceramics from 29SJ633, The Eleventh Hour Site', ' In Excavations at 29SJ633: The Eleventh Hour Site, Chaco Canyon, New Mexico, edited by Frances Joan Mathien, pp. 139-205. Reports of the Chaco Center No. 10. Branch of Cultural Research, National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (1464, NULL, '1976', 0, 'Peter J. McKenna, 0', 'Ceramics from Tested Sites in the San Juan Drainage', ' Paper for Independent Study Course, Eastern New Mexico University. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1481, NULL, '1985', 0, 'Peter J. McKenna, 0; H. Wolcott Toll, 1', 'Ceramics from the West Component Tests, 29SJ626', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1671, NULL, '1899', 0, 'George H. Pepper, 0', 'Ceremonial Deposits Found in an Ancient Pueblo Estufa in Northern New Mexico', ' Monumental Records 1(1):1-6.'); INSERT INTO "work" VALUES (1677, NULL, '1905', 0, 'George H. Pepper, 0', 'Ceremonial Objects and Ornaments from Pueblo Bonito, New Mexico', ' American Anthropologist 7(2):183-197.'); INSERT INTO "work" VALUES (2355, NULL, '1995', 0, 'William H. Walker, 0', 'Ceremonial Trash? In Expanding Archaeology, edited by J', 'J. Skibo, W. H. Walker, and A. E. Nielsen, pp. 67-79. University of Utah Press, Salt Lake City.'); INSERT INTO "work" VALUES (2326, NULL, '1993', 0, 'R. Gwinn Vivian, 0', 'Chaco', ' Paper presented at the 58th Annual Meeting of the Society for American Archaeology, St. Louis.'); INSERT INTO "work" VALUES (1405, NULL, '1992', 0, 'Frances Joan Mathien, 0', 'Chaco Anasazi Beads: Material, Manufacture, Consumption, and Social Implications', ' Paper presented at the Bead Trade in the Americas, Santa Fe.'); INSERT INTO "work" VALUES (1752, NULL, '1998', 0, 'David Purcell, 0', 'Chaco Anasazi Economy in a Great House Community, Peach Springs, New Mexico: The Results of Excavations at Site LA 115752 in the Navajo Road 9 Right-of-Way', ' Paper presented at the 63rd Annual Meeting of the Society for American Archaeology, Seattle.'); INSERT INTO "work" VALUES (2071, NULL, '1986', 0, 'John R. Stein, 0; Andrew P. Fowler, 1', 'Chaco Archeological Protection Site System', ' Site Reconnaissance Study. Site No. LA 6541, Kin Hocho''i. Ms. on file with authors.'); INSERT INTO "work" VALUES (1145, NULL, '1983', 0, 'Stephen H. Lekson, 0', 'Chaco Architecture in a Continental Context', ' In Proceedings of the Anasazi Symposium 1981, compiled and edited by Jack E. Smith, pp. 183-194. Mesa Verde Museum Association, Inc., Mesa Verde National Park.'); INSERT INTO "work" VALUES (711, NULL, '1991', 0, 'Kirk Gittings, 0; Vincent B. Price, 1', 'Chaco Body', ' Artspace Press, Albuquerque.'); INSERT INTO "work" VALUES (710, NULL, '1987', 0, 'Kirk Gittings, 0; Vincent B. Price, 1', 'Chaco Body, 1987: A Collection of Photographs', ' Outland Press, Albuquerque.'); INSERT INTO "work" VALUES (2333, NULL, '2002', 0, 'R. Gwinn Vivian, 0; Margaret Anderson, 1', 'Chaco Canyon', ' Oxford University Press, Oxford.'); INSERT INTO "work" VALUES (838, NULL, '1929', 0, 'Edgar L. Hewett, 0', 'Chaco Canyon', ' El Palacio 26:19-25.'); INSERT INTO "work" VALUES (931, NULL, '1932', 0, 'P. A. Jones, 0', 'Chaco Canyon', ' New Mexico Magazine 10(1):4-5.'); INSERT INTO "work" VALUES (62, NULL, '1976', 0, 'Douglas Anderson, 0; Barbara Anderson, 1', 'Chaco Canyon', ' Popular Series No. 17. Southwest Parks and Monuments Association, Globe.'); INSERT INTO "work" VALUES (2361, NULL, '1932', 0, 'Paul A. F. Walter, 0', 'Chaco Canyon', ' Archive 1878, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (635, NULL, '1971', 0, 'Leo L. Flynn, Jr., 0', 'Chaco Canyon 1971 Archaeological Survey Site Sketch Maps', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1221, NULL, '1984', 0, 'Robert H. Lister, 0', 'Chaco Canyon Archaeology through Time', ' In New Light on Chaco Canyon, edited by David Grant Noble, pp. 25-36. Exploration, School of American Research, Santa Fe.'); INSERT INTO "work" VALUES (2055, NULL, '1929', 0, 'Winifred Stamm (editor of Digs, School of American Research, 0', 'Chaco Canyon Closes', ' Digs 4:33-34. El Palacio 27(1-7):15-52.'); INSERT INTO "work" VALUES (372, NULL, '1931', 0, 'Marshall Clinard, 0', 'Chaco Canyon Excavations June 10-July 8, 1931', ' Archive 1883, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (383, NULL, '1931', 0, 'Fletcher Cook, 0', 'Chaco Canyon Excavations of Chetro Ketl and General Observations', ' Archive 1880, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (582, NULL, '1934', 0, 'Albert Grim Ely, 0', 'Chaco Canyon Field Report', ' Archive 1835, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1835, NULL, '1938', 0, 'Frank H. H. Roberts, Jr., 0', 'Chaco Canyon Masonry', ' American Antiquity 4(1):60-61.'); INSERT INTO "work" VALUES (42, NULL, '2001', 0, 'Nancy J. Akins, 0', 'Chaco Canyon Mortuary Practices', ' Archeological Correlates of Complexity. In Ancient Burial Practices in the American Southwest: Archaeology, Physical Anthropology, and Native American Perspectives, edited by Douglas R. Mitchell and Judy L. Brunson-Hadley, pp. 167-190. University of New Mexico Press, Albuquerque.'); INSERT INTO "work" VALUES (2351, NULL, '1938', 0, 'Hazel H. Voth et al., 0', 'Chaco Canyon National Monument', ' In Guide to National Parks and Monuments West of the Mississippi River, pp. 63-64. U.S.D.I. National Park Service, Berkeley, CA.'); INSERT INTO "work" VALUES (1649, NULL, '1929', 0, 'H. F. Palmer, 0', 'Chaco Canyon National Monument', ' New Mexico Highway Journal 7(10):12-13, 25.'); INSERT INTO "work" VALUES (2390, NULL, '1926', 0, 'A. O. Weese, 0', 'Chaco Canyon National Monument', ' In Nature''s Guide to the Americas, edited by Victor E. Shelford, p. 571. Williams and Wilkins, Baltimore.'); INSERT INTO "work" VALUES (51, NULL, '1928', 0, 'Horace M. Albright, 0; Frank J. Taylor, 1', 'Chaco Canyon National Monument', ' In Oh, Ranger!, by Horace M. Albright and Frank J. Taylor, p. 161. Stanford University Press, Stanford.'); INSERT INTO "work" VALUES (2277, NULL, '1948', 0, 'R. Gordon Vivian, 0', 'Chaco Canyon National Monument, Chettro Ketl Emergency Stabilization, 1948', ' Stabilization report on file in NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (1830, NULL, '1967', 0, 'Lynn A. Robbins, 0', 'Chaco Canyon National Monument, New Mexico', ' Ms. prepared for NPS Handbook Series, Washington, D.C.'); INSERT INTO "work" VALUES (358, NULL, '1973', 0, 'George J. Chambers, 0', 'Chaco Canyon National Monument, Pueblo Bonito, July-September 1973, Stabilization Report', ' Ms. on file, Western Archeological Center, Tucson, and NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1054, NULL, '1933', 0, 'John Y. Keur, 0', 'Chaco Canyon National Monument, Threatening Rock', ' Southwestern Monuments Monthly Report, October Supplement, pp. A-K.'); INSERT INTO "work" VALUES (839, NULL, '1929', 0, 'Edgar L. Hewett, 0', 'Chaco Canyon Past and Present', ' El Palacio 26:313-315.'); INSERT INTO "work" VALUES (2132, NULL, '1929', 0, 'Janet Tietjens, 0', 'Chaco Canyon Place Names', ' Archive 1858, 1892, 1921, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1884, NULL, '1973', 0, 'Curtis F. Schaafsma, 0', 'Chaco Canyon Revisited', ' Paper prepared as part of Ph.D. Specials Examination, University of New Mexico Department of Anthropology. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1847, NULL, '1996', 0, 'Karen K. Rodden, 0', 'Chaco Canyon Roads: Monuments to a Theology', ' Paper for Anthropology 394, D. E. Stuart, University of New Mexico.'); INSERT INTO "work" VALUES (201, NULL, '1936', 0, 'Adrey E. Borell, 0', 'Chaco Canyon Rodent Control', ' Southwestern Monuments Monthly Report, Supplement for July, pp. 56-59.'); INSERT INTO "work" VALUES (1855, NULL, '1971', 0, 'Ramona Rollins-Griffin, 0', 'Chaco Canyon Ruins', ' Ancient Spirits Were Our Neighbors. Northland Press, Flagstaff.'); INSERT INTO "work" VALUES (1442, NULL, '1968', 0, 'Martin T. Mayer, 0', 'Chaco Canyon Stabilization Trip', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (816, NULL, '1976', 0, 'Alden C. Hayes, 0', 'Chaco Canyon Survey Report', ' Ms. on file, Archive No. 2071C, Chaco Culture NHP Museum Archive, NPS Chaco Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1592, NULL, '1991', 0, 'John Neary, 0', 'Chaco Canyon Under Siege', ' Archaeology 44(3):50-52.'); INSERT INTO "work" VALUES (667, NULL, '1986', 0, 'John M. Fritz, 0', 'Chaco Canyon and Vijayanagara: Proposing Spatial Meaning in Two Societies', ' Paper presented at the First Chaco Nonconference, Chaco Culture National Historical Park, New Mexico. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published in 1987.'); INSERT INTO "work" VALUES (668, NULL, '1987', 0, 'John M. Fritz, 0', 'Chaco Canyon and Vijayanagra: Proposing Spatial Meaning in Two Societies', ' In Mirror and Metaphor: Material and Social Constructions of Reality, edited by D. W. Ingersoll and G. Bronitsky, pp. 313-348. University Press of America, Lanham.'); INSERT INTO "work" VALUES (1946, NULL, '1992', 0, 'Lynne Sebastian, 0', 'Chaco Canyon and the Anasazi Southwest: Changing Views of Sociopolitical Organization', ' In Anasazi Regional Organization and the Chaco System, edited by David E. Doyel, pp. 23-31. Anthropological Papers No. 5. Maxwell Museum of Anthropology, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1476, NULL, '1991', 0, 'Peter J. McKenna, 0', 'Chaco Canyon''s Mesa Verde Phase', ' In Excavations at 29SJ633: The Eleventh Hour Site, Chaco Canyon, New Mexico, edited by Frances Joan Mathien, pp. 127-137. Reports of the Chaco Center No. 10. Branch of Cultural Research, National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (553, NULL, '1976', 0, 'Frank Lee Early, 0', 'Chaco Canyon, A Study Guide', ' Museum Study Series No. 2. Museum of Anthropology, Arapahoe Community College, Littleton, CO.'); INSERT INTO "work" VALUES (1182, NULL, '1996', 0, 'Stephen H. Lekson, 0', 'Chaco Canyon, Casas Grandes, and the Cognitive Structure of the Ancient Southwest', ' Ms. in possession of the author.'); INSERT INTO "work" VALUES (1931, NULL, '1969', 0, 'Douglas W. Schwartz, 0; supplemented by Thomas R. Lyons and Anne Colberg Sigleo, 1', 'Chaco Canyon, New Mexico, Interdisciplinary Bibliography', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (115, NULL, '1981', 0, 'Ruth W. Armstrong, 0', 'Chaco Canyon-Grandeur and Mystery', ' New Mexico Magazine 59(2):32-41. February.'); INSERT INTO "work" VALUES (996, NULL, '1989', 0, 'W. James Judge, 0', 'Chaco Canyon-San Juan Basin', ' In Dynamics of Southwest Prehistory, edited by Linda S. Cordell and George J. Gumerman, pp. 209-261. Smithsonian Institution Press, Washington, D.C.'); INSERT INTO "work" VALUES (1659, NULL, '1994', 0, 'Mary Peck, 0; Stephen H. Lekson, 1; John R. Stein, 2; Simon J. Ortiz, 3', 'Chaco Canyon: A Center and Its World', ' Museum of New Mexico Press, Santa Fe.'); INSERT INTO "work" VALUES (1115, NULL, '1997', 0, 'Nicky Leach, 0', 'Chaco Canyon: A Legacy in Stone', ' New Mexico Magazine 75(6):32-41. June.'); INSERT INTO "work" VALUES (1222, NULL, '1981', 0, 'Robert H. Lister, 0; Florence C. Lister, 1', 'Chaco Canyon: Archaeology and Archaeologists', ' University of New Mexico Press, Albuquerque.'); INSERT INTO "work" VALUES (1453, NULL, '1969', 0, 'Martin T. Mayer, 0; John K. Weir, 1', 'Chaco Canyon: Interpretive Sites 1969 (Pueblo Bonito, Chettro Kettle, Bc 51)', ' Stabilization report on file in the NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (630, NULL, '198-', 0, 'Stuart Fleming, 0', 'Chaco Canyon: Mystery of the Pueblos', ' Archaeology Magazine '); INSERT INTO "work" VALUES (2297, NULL, '1947', 0, 'R. Gordon Vivian, 0; James A. Lancaster, 1', 'Chaco Canyon: Pueblo Alto 1947', ' Ms. on file, Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (1369, NULL, '1971', 0, 'Larry Martin, 0', 'Chaco Canyon: Relations of Defensive Characteristics', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1899, NULL, '1980', 0, 'John D. Schelberg, 0', 'Chaco Center 1980 Pecos Conference Report: Central Plaza, Pueblo Alto', ' Paper presented at the 53rd Pecos Conference, Mesa Verde National Park, CO.'); INSERT INTO "work" VALUES (970, NULL, '1975', 0, 'W. James Judge, 0', 'Chaco Center; Research Design, Working Draft, January 1975', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2163, NULL, '1997', 0, 'H. Wolcott Toll, 0; Peter J. McKenna, 1', 'Chaco Ceramics', ' In Ceramics, Lithics, and Ornaments of Chaco Canyon. Analyses of Artifacts from the Chaco Project, 1971-1978, edited by Frances Joan Mathien, pp. 17-530. Publications in Archeology 18G, Chaco Canyon Studies. National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (1069, NULL, '1994', 0, 'Keith W. Kintigh, 0', 'Chaco Communal Structure and Cibolan Aggregation', ' In The Ancient Southwestern Community, edited by Wirt H. Wills and Robert P. Leonard, pp. 131-140. University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1061, NULL, '2002', 0, 'Nicole Kilburn, 0', 'Chaco Community Interaction: A Comparative Regional Perspective', ' Paper presented at the 67th Annual Meeting of the Society for American Archaeology, Denver.'); INSERT INTO "work" VALUES (1192, NULL, '1999', 0, 'Stephen H. Lekson, 0', 'Chaco Death Squads', ' Archaeology 52(3):67-73.'); INSERT INTO "work" VALUES (1037, NULL, '1995', 0, 'James W. Kendrick, 0', 'Chaco Era (A', '. 1050-1150) Community Structure at Lowry. Paper presented at the 60th Annual Meeting of the Society for American Archaeology, Minneapolis.'); INSERT INTO "work" VALUES (789, NULL, '1938', 0, 'H. F. Hastings, 0', 'Chaco Flora', ' Southwestern Monuments Report, Supplements for July-October. Coolidge.'); INSERT INTO "work" VALUES (296, NULL, '1976', 0, 'Catherine M. Cameron, 0', 'Chaco Manos', ' An Analysis of a Random Sample. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (674, NULL, '1991', 0, 'Reg Ganer, 0', 'Chaco Night', ' Michigan Quarterly Review 30(4):610-620.'); INSERT INTO "work" VALUES (880, NULL, '2000', 0, 'Winston Hurst, 0', 'Chaco Outlier or Backwoods Pretender? A Provincial Great House at Edge of the Cedars Ruin, Utah', ' In Great House Communities Across the Chacoan Landscape, edited by John Kantner and Nancy M. Mahoney, pp. 63-78. Anthropological Papers of the University of Arizona No. 64. The University of Arizona, Press, Tucson.'); INSERT INTO "work" VALUES (879, NULL, '1998', 0, 'Winston Hurst, 0', 'Chaco Outlier or Wannabe? Comments and Observations on a Provincial Chacoesque Great House at Edge of the Cedars Ruin, Utah', ' Paper presented at the 63rd Annual Meeting of the Society for American Archaeology, Seattle.'); INSERT INTO "work" VALUES (2149, NULL, '1986', 0, 'H. Wolcott Toll, III, 0', 'Chaco Project Ceramic Overview: Technology and Temper', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (982, NULL, '1980', 0, 'W. James Judge, 0', 'Chaco Regional System', ' Paper presented in Symposium on Regional Variation at the 53rd Pecos Conference, Mesa Verde, CO.'); INSERT INTO "work" VALUES (1063, NULL, '1983', 0, 'Chris Kincaid, 0', 'Chaco Roads Project Phase I', ' A Reappraisal of Prehistoric Roads in the San Juan Basin. Bureau of Land Management, New Mexico State Office, Albuquerque District Office, Albuquerque and Santa Fe.'); INSERT INTO "work" VALUES (2371, NULL, '2001', 0, 'John A. Ware, 0', 'Chaco Social Organization: A Peripheral View', ' In Chaco Society and Polity: Papers from the 1999 Conference, edited by Linda S. Cordell, W. James Judge, and June-el Piper, pp. 79-93. NMAC Special Publication No. 4. New Mexico Archeological Council, Albuquerque.'); INSERT INTO "work" VALUES (401, NULL, '2001', 0, 'Linda S. Cordell, 0; W. James Judge, 1; June-el Piper , 2', 'Chaco Society and Polity: Papers from the 1999 Conference', ' New Mexico Archeological Council Special Publication 4. New Mexico Archeological Council, Albuquerque.'); INSERT INTO "work" VALUES (1312, NULL, '2000', 0, 'Nancy Mahoney, 0', 'Chaco World', ' Archaeology Southwest 14(1):15-17.'); INSERT INTO "work" VALUES (1180, NULL, '1996', 0, 'Stephen H. Lekson, 0', 'Chaco and Casas Grandes', ' Poster Session, 61st Annual Meeting of the Society for American Archaeology, New Orleans.'); INSERT INTO "work" VALUES (1181, NULL, '1996', 0, 'Stephen H. Lekson, 0', 'Chaco and Casas Grandes', ' Presentation at Cultural Aspects of Astronomy: An Intersection of Disciplines at St. Johns College, Santa Fe, Aug. 3-9. To appear in Proceedings of the 5th Oxford International Conference on Archaeoastronomy.'); INSERT INTO "work" VALUES (412, NULL, '1991', 0, 'Patricia L. Crown, 0; W. James Judge, 1', 'Chaco and Hohokam', ' Prehistoric Regional Systems in the American Southwest. School of American Research Press, Santa Fe.'); INSERT INTO "work" VALUES (652, NULL, '1979', 0, 'Kendrick Frazier, 0', 'Chaco and the Man', ' Rocky Mountain Magazine -----'); INSERT INTO "work" VALUES (291, NULL, '2000', 0, 'Wendy Bustard, 0', 'Chaco at the New Millenium: Nasty and Brutish', ' Paper presented at the 65th Annual Meeting of the Society for American Archaeology, Philadelphia.'); INSERT INTO "work" VALUES (2155, NULL, '1992', 0, 'H. Wolcott Toll, 0; Eric Blinman, 1; C. Dean Wilson, 2', 'Chaco in the Context of Ceramic Regional Systems', ' In Anasazi Regional Organization and the Chaco System, edited by David E. Doyel, pp. 147-157. Anthropological Papers No. 5. Maxwell Museum of Anthropology, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2167, NULL, '1992', 0, 'H. Wolcott Toll, 0; C. Dean Wilson, 1; Eric Blinman, 2', 'Chaco in the Context of Ceramic Regional Systems', ' In Anasazi Regional Organization and the Chaco System, edited by David E. Doyel, pp. 147-157. Anthropological Papers No 5, Maxwell Museum of Anthropology, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1176, NULL, '1994', 0, 'Stephen H. Lekson, 0', 'Chaco, Cahokia, and Complexity', ' Paper presented at the 59th Annual Meeting of the Society for American Archaeology, Anaheim, CA.'); INSERT INTO "work" VALUES (1171, NULL, '1993', 0, 'Stephen H. Lekson, 0', 'Chaco, Mimbres, and the Hohokam: The 11th and 12th Centuries in the American Southwest', ' In Prehistory of the Southwest, edited by Catherine M. Cameron. Expedition 35(1):44-52. School of American Research, Santa Fe.'); INSERT INTO "work" VALUES (2510, NULL, '1985', 0, 'Thomas C. Windes, 0', 'Chaco-McElmo Black-on-White from Chaco Canyon with an Emphasis on the Pueblo del Arroyo Collection', ' In Prehistory and History in the Southwest. Collected Papers in Honor of Alden C. Hayes, edited by Nancy Fox, pp. 19-42. Papers of the Archaeological Society of New Mexico: 11. Ancient City Press, Inc., Santa Fe.'); INSERT INTO "work" VALUES (160, NULL, '1982', 0, 'Victor Baxter, 0', 'Chaco/Pueblo Bonito: A Computer Analysis Applied to an Ancient Solar Dwelling', ' Landscape Journal 1(2):85-91.'); INSERT INTO "work" VALUES (2100, NULL, '1994', 0, 'Michele Struttin, 0; George H. H. Huey, 1', 'Chaco: A Cultural Legacy', ' Southwest Parks and Monuments Assn., Tucson.'); INSERT INTO "work" VALUES (2124, NULL, '1993', 0, 'Mark A. Taylor, 0', 'Chaco: A Tale of Ancient Lives', ' Sunstone Press, Santa Fe. (Fiction)'); INSERT INTO "work" VALUES (997, NULL, '1991', 0, 'W. James Judge, 0', 'Chaco: Current Views of Prehistory and the Regional System', ' In Chaco and Hohokam: Prehistoric Regional Systems in the American Southwest, edited by Patricia L. Crown and W. James Judge, pp. 11-30. School of American Research Press, Santa Fe.'); INSERT INTO "work" VALUES (1316, NULL, '2000', 0, 'Nancy M. Mahoney, 0; John Kantner, 1', 'Chacoan Archaeology and Great House Communities', ' In In Great House Communities Across the Chacoan Landscape, edited by John Kantner and Nancy M. Mahoney, pp. 1-15. Anthropological Papers of the University of Arizona Nol 64. The University of Arizona Press, Tucson.'); INSERT INTO "work" VALUES (1138, NULL, '1981', 0, 'Stephen H. Lekson, 0', 'Chacoan Architecture in a Continental Context', ' Paper presented at the Anasazi Symposium, Mesa Verde National Park, Oct. 1-3. Revised in 1982 and published in 1983.'); INSERT INTO "work" VALUES (2013, NULL, '1994', 0, 'Anna Sofaer, 0', 'Chacoan Architecture: A Solar-Lunar Geometry', ' In Time and Astronomy at the Meeting of Two Worlds, edited by Stanislaw Iwaniszewski, pp. 265-278. Warsaw U.'); INSERT INTO "work" VALUES (247, NULL, '1984', 0, 'J. J. Brody, 0', 'Chacoan Art and the Chaco Phenomenon', ' In New Light on Chaco Canyon, edited by David Grant Noble, pp. 13-18. Exploration, School of American Research, Santa Fe.'); INSERT INTO "work" VALUES (914, NULL, '1998', 0, 'Peter Jalbert, 0', 'Chacoan Communities in the Northern San Juan Region', 'Paper presented at the 63rd Annual Meeting of the Society for American Archaeology, Seattle.'); INSERT INTO "work" VALUES (513, NULL, '1984', 0, 'David E. Doyel, 0; Cory D. Breternitz, 1; Michael P. Marshall, 2', 'Chacoan Community Structure: Bis sa''ani Pueblo and the Chaco Halo', ' In Recent Research on Chaco Prehistory, edited by W. James Judge and John D. Schelberg, pp. 37-54. Reports of the Chaco Center No. 8. Division of Cultural Research, National Park Service, Albuquerque.'); INSERT INTO "work" VALUES (511, NULL, '1981', 0, 'David E. Doyel, 0; Cory D. Breternitz, 1; Michael P. Marshall, 2', 'Chacoan Community Structure: Bis sa''ani Pueblo and the Chaco Halo', ' Paper presented at the 46th Annual Meeting of the Society for American Archaeology, San Diego. Published in 1983 and 1984.'); INSERT INTO "work" VALUES (971, NULL, '1976', 0, 'W. James Judge, 0', 'Chacoan Outlier Study: Research Prospectus', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (978, NULL, '1978', 0, 'W. James Judge, 0', 'Chacoan Outliers Proposal', ' Ms. on file, National Park Service, Intermountain Region, Santa Fe Office.'); INSERT INTO "work" VALUES (890, NULL, '1979', 0, 'Arthur K. Ireland, 0', 'Chacoan Outliers/San Juan Basin Communities Known and Unknown', ' Paper for Anthropology 597, University of New Mexico. Ms. on file, Branch of Remote Sensing, National Park Service, Intermountain Region, Santa Fe Office.'); INSERT INTO "work" VALUES (734, NULL, '1990', 0, 'George J. Gumerman, 0', 'Chacoan Prehistory in a Regional Social and Environmental Context', ' Paper presented at the Annual Meeting of the American Association for the Advancement of Science, New Orleans.'); INSERT INTO "work" VALUES (983, NULL, '1981', 0, 'W. James Judge, 0', 'Chacoan Prehistory: Implications of a Regional Perspective', ' Summary and Final Comments. Paper presented at the 46th Annual Meeting of the Society for American Archaeology, San Diego.'); INSERT INTO "work" VALUES (2237, NULL, '2000', 0, 'Ruth M. Van Dyke, 0', 'Chacoan Ritual Landscapes: The View from the Red Mesa Valley', ' In Great House Communities Across the Chacoan Landscape, edited by John Kantner and Nancy M. Mahoney, pp. 91-100. Anthropological Papers of the University of Arizona No. 64. University of Arizona Press, Tucson.'); INSERT INTO "work" VALUES (1548, NULL, '1975', 0, 'E. Pierre Morenon, 0', 'Chacoan Roads and Adaptation; How a Prehistoric Population Can Define and Control Its Social and Natural Environment', ' Paper presented at the 40th Annual Meeting of the Society for American Archaeology, Dallas, May 9.'); INSERT INTO "work" VALUES (2133, NULL, '2001', 0, 'Jonathan Dale Till, 0', 'Chacoan Roads and Road-associated Sites in the Lower San Juan Region: Assessing the Role of Chacoan Influences in the Northwestern Periphery', ' M.A. thesis, Department of Anthropology, University of Colorado, Boulder.'); INSERT INTO "work" VALUES (1626, NULL, '1987', 0, 'Fred Nials, 0; John Stein, 1; John Roney, 2', 'Chacoan Roads in the Southern Periphery: Results of Phase II of the BLM Chaco Roads Project', ' Cultural Resources Series No. 1. Bureau of Land Management, New Mexico State Office, Santa Fe.'); INSERT INTO "work" VALUES (2329, NULL, '1997', 0, 'R. Gwinn Vivian, 0', 'Chacoan Roads: Function', ' Kiva 63(1):35-67.'); INSERT INTO "work" VALUES (2328, NULL, '1997', 0, 'R. Gwinn Vivian, 0', 'Chacoan Roads: Morphology', ' Kiva 63(1):7-34.'); INSERT INTO "work" VALUES (2321, NULL, '1991', 0, 'R. Gwinn Vivian, 0', 'Chacoan Subsistence', ' In Chaco and Hohokam. Prehistoric Regional Systems in the American Southwest, edited by Patricia L. Crown and W. James Judge, pp. 57-75. School of American Research, Santa Fe.'); INSERT INTO "work" VALUES (1963, NULL, '1980', 0, 'Phillip H. Shelley, 0', 'Chacoan Tree Felling', ' In Investigations at the Salmon site: The Structure of Chacoan Society in the Northern Southwest, edited by Cynthia Irwin-Williams and Phillip H. Shelley, Vol. 3:115-121. Eastern New Mexico University, Portales.'); INSERT INTO "work" VALUES (2325, NULL, '1992', 0, 'R. Gwinn Vivian, 0', 'Chacoan Water Use and Managerial Decision Making', ' In Anasazi Regional Organization and the Chaco System, edited by David E. Doyel, pp. 45-57. Anthropological Papers No. 5. Maxwell Museum of Anthropology, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (915, NULL, '2000', 0, 'J. Peter Jalbert, 0; Catherine M. Cameron, 1', 'Chacoan and Local Influences in Three Great House Communities in the Northern San Juan Region', ' In Great House Communities Across the Chacoan Landscape, edited by John Kantner and Nancy M. Mahoney, pp. 79-90. Anthropological Papers of the University of Arizona No. 64. University of Arizona Press, Tucson.'); INSERT INTO "work" VALUES (632, NULL, '1989', 0, 'Richard Flint, 0; Shirley Cushing Flint, 1', 'Chacoesque: Chaco-like Great Pueblo Architecture Outside Chaco Canyon', ' Century Graphics/Printing, Albuquerque.'); INSERT INTO "work" VALUES (2306, NULL, '1974', 0, 'R. Gwinn Vivian, 0', 'Chacra Mesa Site Index', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1625, NULL, '1983', 0, 'Fred Nials, 0; John Stein, 1; John Roney, 2', 'Chacoan Roads in the Southern Periphery: Results of Phase II of the BLM Chaco Roads Project', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (912, NULL, '1985', 0, 'LouAnn Jacobson, 0; John Roney, 1', 'Chacra Mesa Site Inventory: National Register Nomination by BLM', ' Ms. on file, Bureau of Land Management, Albuquerque, and NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1377, NULL, '1976', 0, 'Frances Joan Mathien, 0', 'Chalchihuitl and the Chichimec: The Role of Turquoise in Southwest-Mesoamerican Relationships', ' Paper presented at the 49th Pecos Conference, Kino Bay, Sonora.'); INSERT INTO "work" VALUES (1770, NULL, '1992', 0, 'Heidi E. Reed, 0; Susan K. Stratton, 1; Robert D. Leonard, 2', 'Changes in Settlement Distribution and the Concept of the Great House: Preliminary Results from Badger Springs, New Mexico', ' Paper presented at the 57th Annual Meeting of the Society for American Archaeology, Pittsburgh.'); INSERT INTO "work" VALUES (2473, NULL, '1995', 0, 'C. Dean Wilson, 0; Eric Blinman, 1', 'Changing Specialization of White Ware Manufacture in the Northern San Juan Region', ' In Ceramic Production in the American Southwest, edited by Barbara J. Mills and Patricia L. Crown, pp. 63-87. University of Arizona Press, Tucson.'); INSERT INTO "work" VALUES (739, NULL, '1980', 0, 'Alberto A. Gutierrez, 0', 'Channel and Hillslope Geomorphology at Badlands in the San Juan Basin, New Mexico', ' Unpublished M.S. thesis, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (571, NULL, '1995', 0, 'Melinda Elliott, 0', 'Chapter 5', ' Pueblo Bonito, Neil Judd Takes on the Southwest''s Greatest Archaeological Mystery. In Great Expectations, Tales of Early Southwestern Archaeology. School of American Research Press, Santa Fe.'); INSERT INTO "work" VALUES (2406, NULL, '1979', 0, 'Stanley L. Welsh, 0', 'Charcoal Identification from Excavations in Chaco Canyon National Monument', ' Part II. Report from Endangered Plant Studies, Orem, Utah. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2009, NULL, '1981', 0, 'David H. Snow, 0', 'Charles A', 'Lindbergh''s Air Photographs of the Southwest. El Palacio 87(3):'); INSERT INTO "work" VALUES (421, NULL, '1979', 0, 'Anne C. Cully, 0', 'Check-list of Plants: Chaco Canyon National Monument, New Mexico', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (431, NULL, '1985', 0, 'Anne C. Cully, 0', 'Checklist of Plants, Chaco Canyon National Monument', ' Appendix A in Environment and Subsistence of Chaco Canyon, New Mexico, edited by Frances Joan Mathien, pp. 447-457. Publications in Archeology 18E, Chaco Canyon Studies. National Park Service, Albuquerque.'); INSERT INTO "work" VALUES (606, NULL, '1979', 0, 'Dennis B. Fenn, 0; Raymond E. Burge, 1', 'Chemical Methods of Ruins Stabilization', ' In Proceedings of the First Conference on Scientific Research in the National Parks. Volume 2, edited by Robert M. Linn, pp. 929-933. National Park Service Transactions and Proceedings Series No. 5. Washington, D.C.'); INSERT INTO "work" VALUES (604, NULL, '1976', 0, 'Dennis B. Fenn, 0', 'Chemical Stabilization of Prehistoric Structures at Chaco Canyon National Monument: First Annual Report', 'Ms. on file, National Park Service, Intermountain Region, Santa Fe Office.'); INSERT INTO "work" VALUES (605, NULL, '1977', 0, 'Dennis B. Fenn, 0', 'Chemical Stabilization of Prehistoric Structures at Chaco Canyon National Monument: Second Annual Report', ' Ms. on file, National Park Service, Intermountain Region, Santa Fe Office.'); INSERT INTO "work" VALUES (1229, NULL, '1932', 0, 'Barbara Loomis, 0', 'Chetro Ketl Class of July 1932', ' Archive 1889, 1902, 1913, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (622, NULL, '1931', 0, 'Grace Fisher, 0', 'Chetro Ketl Masonry', ' Archive 1867, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (621, NULL, '1931', 0, 'Grace Fisher, 0', 'Chetro Ketl Notes', ' Archive 1865, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1639, NULL, '1940', 0, 'Deric O''Bryan, 0', 'Chetro Ketl Tree-Ring Sample, Collection Notes', ' Archive 0097, Arizona State Museum, Tucson.'); INSERT INTO "work" VALUES (2209, NULL, '1993', 0, 'Gordon C. Tucker, Jr., 0', 'Chimney Rock and Chaco Canyon: A Critical Re-evaluation fo the Outlier Concept', ' In The Chimney Rock Symposium, October 20-21, 1990, Durango, Colorado, edited by J. McKim Malville and Gary Matlock, pp. 65-71. USDA Forest Service, General Technical Report RM-227. Rocky Mountain Forest and Range Experiment Station, Fort Collins.'); INSERT INTO "work" VALUES (1613, NULL, '1976', 0, 'Earl Neller, 0', 'Chipped Stone Analyses in Atlatl Cave, Chaco Canyon, New Mexico', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1159, NULL, '1987', 0, 'Stephen H. Lekson, 0', 'Chipped Stone Tools from Pueblo Alto', ' In Investigations at the Pueblo Alto Complex, Chaco Canyon, New Mexico, 1975-1979. Volume III: Artifactual and Biological Analyses, edited by Frances Joan Mathien and Thomas C. Windes, pp. 279-289. Publications in Archeology 18F, Chaco Canyon Studies. National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (1133, NULL, '1980', 0, 'Stephen H. Lekson, 0', 'Chipped Stone Tools of Chaco Canyon', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2532, NULL, '1981', 0, 'Thomas C. Windes, 0; Catherine M. Cameron, 1', 'Chipped Stone and Ceramics Survey of Greenlee and Upper Kin Klizhin Ruins', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (319, NULL, '1985', 0, 'Catherine M. Cameron, 0', 'Chipped Stone at Pueblo Alto, Chaco Canyon, New Mexico', ' Submitted in fulfillment of Contract PX 7029-5-C020. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published in 1987.'); INSERT INTO "work" VALUES (300, NULL, '1980', 0, 'Catherine M. Cameron, 0', 'Chipped Stone at Site 29SJ391-Una Vida', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (301, NULL, '1980', 0, 'Catherine M. Cameron, 0', 'Chipped Stone at the Spade Foot Toad Site (29SJ629)', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published in 1993.'); INSERT INTO "work" VALUES (325, NULL, '1993', 0, 'Catherine M. Cameron, 0', 'Chipped Stone from 29SJ629', ' In The Spadefoot Toad Site. Investigations at 29SJ629, Chaco Canyon, New Mexico: Artifactual and Biological Analyses. Volume II, edited by Thomas C. Windes, pp. 135-184. Reports of the Chaco Center No. 12. Branch of Cultural Research, National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (321, NULL, '1987', 0, 'Catherine M. Cameron, 0', 'Chipped Stone from Pueblo Alto', ' In Investigations at the Pueblo Alto Complex, Chaco Canyon, New Mexico, 1975-1979. Volume III: Artifactual and Biological Analyses, edited by Frances Joan Mathien and Thomas C. Windes, pp. 231-278. Publications in Archeology 18F, Chaco Canyon Studies. National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (323, NULL, '1991', 0, 'Catherine M. Cameron, 0', 'Chipped Stone from Site 29SJ633', ' In Excavations at 29SJ633: The Eleventh Hour Site, Chaco Canyon, New Mexico, edited by Frances Joan Mathien, pp. 207-219. Reports of the Chaco Center No. 10. Branch of Cultural Research, National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (911, NULL, '1984', 0, 'LouAnn Jacobson, 0', 'Chipped Stone in the San Juan Basin: A Distributional Analysis', ' Unpublished M.A. thesis, Department of Anthropology, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (340, NULL, '1980', 0, 'Catherine M. Cameron, 0; Stephen H. Lekson, 1', 'Chipped Stone of Chaco Canyon', ' Paper presented at the 1980 Pecos Conference, Mesa Verde National Park. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1565, NULL, '1921', 0, 'Earl H. Morris, 0', 'Chronology of the San Juan Area', ' Proceedings of the National Academy of Science 7:18-22.'); INSERT INTO "work" VALUES (2397, NULL, '1983', 0, 'Stephen G. Wells, 0; Thomas F. Bullard, 1; L. N. Smith, 2; Thomas W. Gardner, 3', 'Chronology, Rates, and Magnitudes of Late Quaternary Landscape Changes in the Southeastern Colorado Plateau', ' In Chaco Canyon Country. A Field Guide to the Geomorphology, Quaternary Geology, Paleoecology, and Environmental Geology of Northwestern New Mexico, edited by S. G. Wells, D. W. Love and T. W. Gardner, pp. 177-185. American Geomorphological Field Group 1983 Field Trip Guidebook. Adobe Press, Albuquerque.'); INSERT INTO "work" VALUES (2539, NULL, '1989', 0, 'Thomas C. Windes, 0; Peter J. McKenna, 1', 'Cibola Whiteware and Cibola Grayware: The Chaco Series', ' Presented at the Northwest New Mexico Ceramics Workshop, of the New Mexico Archeological Council, Red Rock State Park, Gallup.'); INSERT INTO "work" VALUES (1876, NULL, '1994', 0, 'Dean J. Saitta, 0', 'Class and Community in the Prehistoric Southwest', ' In The Ancient Southwestern Community: Models and Methods for the Study of Prehistoric Social Organization, edited by W. H. Wills and Robert D. Leonard, pp. 25-43. University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (922, NULL, '1941', 0, 'Kay Johns, 0', 'Cliff Cavities and Marking', ' Archive 235, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1666, NULL, '1898', 0, 'Stephen D. Peet, 0', 'Cliff Fortresses', ' American Antiquarian 20:80-100.'); INSERT INTO "work" VALUES (493, NULL, '1919', 0, 'Andrew E. Douglass, 0', 'Climate Cycles and Tree Growth', ' Carnegie Institute of Washington, Publ. 289, Vol. 1.'); INSERT INTO "work" VALUES (495, NULL, '1928', 0, 'Andrew E. Douglass, 0', 'Climate Cycles and Tree-Growth', ' Carnegie Institution of Washington, Publ. 289. Vol. 2.'); INSERT INTO "work" VALUES (109, NULL, '1954', 0, 'E. Antevs, 0', 'Climate of New Mexico during the Last Glacio-Pluvial', ' Journal of Geology 62(2):182-191.'); INSERT INTO "work" VALUES (156, NULL, '1921', 0, 'C. M. Bauer, 0; J. B. Reeside Jr., 1', 'Coal in the Middle and Eastern Parts of San Juan County, New Mexico', ' U.S.G.S. Bulletin 716C. Washington, D.C.'); INSERT INTO "work" VALUES (1139, NULL, '1981', 0, 'Stephen H. Lekson, 0', 'Cognitive Frameworks and Chacoan Architecture', ' New Mexico Journal of Science 21(1):27-36.'); INSERT INTO "work" VALUES (2538, NULL, '1987', 0, 'Thomas C. Windes, 0; Peter J. McKenna, 1', 'Collection and Accountability of Archaeological Material', ' Volume II. Curation Procedures. Ms. on file, National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (1105, NULL, '1997', 0, 'Joseph J. Kovacik, 0', 'Collective Memory, Patterns, and Chaco Canyon', ' Paper presented at the 62nd Annual Meeting of the Society for American Archaeology, Nashville.'); INSERT INTO "work" VALUES (1057, NULL, '1930', 0, 'Alfred V. Kidder, 0', 'Colonel and Mrs', 'Lindbergh Aid Archaeologists. The Masterkey 3(6):January, pp. 5-17.'); INSERT INTO "work" VALUES (751, NULL, '1981', 0, 'Stephen A. Hall, 0', 'Combined Pollen and Plant Macrofossil Evidence for Holocene Vegetation at Chaco Canyon, New Mexico', ' Paper presented at the XI INQUA Congress, Moscow, USSR.'); INSERT INTO "work" VALUES (2490, NULL, '1980', 0, 'Thomas C. Windes, 0', 'Comments about Ceramics and Lithics from 29SJ597', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1922, NULL, '1956', 0, 'Albert H. Schroeder, 0', 'Comments on "A Trial Survey of Mexican-Southwestern Architectural Parallels', ' El Palacio 63(9-10):229-309.'); INSERT INTO "work" VALUES (568, NULL, '1979', 0, 'James I. Ebert, 0; Thomas R. Lyons, 1; Dwight L. Drager, 2', 'Comments on "Application of Orthophoto Mapping to Archaeological Problems', ' American Antiquity 44(2):341-345.'); INSERT INTO "work" VALUES (1902, NULL, '1981', 0, 'John D. Schelberg, 0', 'Comments on "Cognitive Frameworks and Chacoan Architecture"', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (728, NULL, '1844', 0, 'Josiah Gregg, 0', 'Commerce of the Prairies', ' P. 188. Reprinted in 1933, Dallas.'); INSERT INTO "work" VALUES (2582, NULL, '1999', 0, 'N. Yoffee, 0; S. K. Fish, 1; G. R. Milner, 2', 'Communidades, Ritualities, Chiefdoms: Social Evolution in the American Southwest and Southeast', ' In Great Towns and Regional Polities in the Prehistoric American Southwest and Southeast, edited by Jill E. Neitzel, pp. 261-271. Amerind Foundation and University of New Mexico Press, Albuquerque.'); INSERT INTO "work" VALUES (2245, NULL, '2000', 0, 'Mark D. Varien, 0', 'Communities and the Chacoan Regional System', ' In Great House Communities Across the Chacoan Landscape, edited by John Kantner and Nancy M. Mahoney, pp. 149-156. Anthropological Papers of the University of Arizona No.64. University of Arizona Press, Tucson.'); INSERT INTO "work" VALUES (725, NULL, '1994', 0, 'Michael W. Graves, 0', 'Community Boundaries in Late Prehistoric Puebloan Society: Kalinga Ethnoarchaeology as a Model for the Southwestern Production and Exchange of Pottery', ' In The Ancient Southwest Community: Models and Methods for the Study of Prehistoric Social Organization, edited by W. H. Wills, and R. D. Leonard, pp. 149-169. University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1499, NULL, '1998', 0, 'Mary P. Metcalf, 0', 'Community Building: Civic Construction Labor in the Northern Southwest', ' Paper presented at the 63rd Annual Meeting of the Society for American Archaeology, Seattle.'); INSERT INTO "work" VALUES (2389, NULL, '1987', 0, 'Robert H. Webb, 0', 'Compaction Studies in Plaza 2', ' In Archeological Investigations at the Pueblo Alto Complex, Chaco Canyon, New Mexico, 1975-1979. Volume IV. Microfiche, edited by Thomas C. Windes and Frances Joan Mathien, pp. MF-247-MF-252. Publications in Archeology 18F, Chaco Canyon Studies. National Park Service, Washington, D.C.'); INSERT INTO "work" VALUES (386, NULL, '1997', 0, 'Laurel Martine Cooper, 0', 'Comparative Analysis of Chacoan Great Houses', ' Paper presented at the First International Symposium on Space Syntax, University College, London, April 17.'); INSERT INTO "work" VALUES (382, NULL, '1930', 0, 'Edith Conrad, 0', 'Comparative Study of the Great Sanctuary, Kiva E, and the East Tower According to Masonry at the Great Sanctuary of the Great Kiva', ' Archive 1951, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (865, NULL, '1999', 0, 'George R. Holley, 0; Stephen H. Lekson, 1', 'Comparing Southwestern and Southeastern Great Towns', ' In Great Towns and Regional Polities in the Prehistoric American Southwest and Southeast, edited by Jill E. Neitzel, pp. 39-44. The Amerind Foundation, Dragoon, and University of New Mexico Press, Albuquerque.'); INSERT INTO "work" VALUES (1616, NULL, '1995', 0, 'Ben A. Nelson, 0', 'Complexity, Hierarchy, and Scale: A Controlled Comparison Between Chaco Canyon, New Mexico, and La Quemada, Zacatecas', ' American Antiquity 60(4):597-618.'); INSERT INTO "work" VALUES (1212, NULL, '1992', 0, 'R. Lewin, 0', 'Complexity: Life at the Edge of Chaos', ' Macmillan, New York.'); INSERT INTO "work" VALUES (1824, NULL, '1957', 0, 'Roland Richert, 0', 'Comprehensive Stabilization at Casa Rinconada, a Great Kiva in Chaco Canyon National Monument, 1957', ' Stabilization report on file in the NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (2445, NULL, '1978', 0, 'David H. Williams, 0', 'Computer Detection of Cultural Resources', ' Submitted in fulfillment of Contracts PX 7487-7-0036 and PX 7487-8-0018 by the University of New Mexico Electrical Engineering and Computer Science Department. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2448, NULL, '1981', 0, 'David H. Williams, 0', 'Computer Recognition of Prehistoric Roads', ' Final Report. Submitted in fulfillment of Contracts PX 7487-8-0169 and PX 7487-9-0140 by the Schellenger Research Laboratories, Electrical Engineering Department, University of Texas at El Paso. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2307, NULL, '1974', 0, 'R. Gwinn Vivian, 0', 'Conservation and Diversion', ' Water-Control Systems in the Anasazi Southwest. Chapter 9 in Irrigation''s Impact on Society, edited by Theodore E. Downing and McGuire Gibson, pp. 95-112. Anthropological Papers No. 25. University of Arizona, Tucson.'); INSERT INTO "work" VALUES (1241, NULL, '1994', 0, 'Phillip LoPiccolo, 0', 'Consistency in the Cataloging Process', ' National Catalog/ANCS News 4(1):5.'); INSERT INTO "work" VALUES (1871, NULL, '1929', 0, 'John C. Russell, 0', 'Construction Details of Chetro Ketl', ' Unpublished field report, School of American Research, Santa Fe. Archive 2125J, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1500, NULL, '2003', 0, 'Mary P. Metcalf, 0', 'Construction and Labor at Pueblo Bonito', ' In Pueblo Bonito: Center of the Chacoan World, edited by Jill E. Neitzel. Smithsonian Institution Press, Washington, D.C.'); INSERT INTO "work" VALUES (2491, NULL, '1980', 0, 'Thomas C. Windes, 0', 'Constructional History and Refuse Disposition at Pueblo Alto', ' Paper presented at the Pecos Conference, Mesa Verde. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1075, NULL, '1972', 0, 'Garry Klein, 0', 'Contemporary Answers May Be Bonus of Chaco Canyon Research', 'The UNM Alumnus 44(6):4-8. February.'); INSERT INTO "work" VALUES (968, NULL, '1974/5', 0, 'W. James Judge, 0', 'Contract Archeology as Anthropology', ' Proceedings: 1974, Cultural Resources Management Seminar.'); INSERT INTO "work" VALUES (155, NULL, '1917', 0, 'Clyde Max Bauer, 0', 'Contributions to the Geology and Palentology of San Juan County, New Mexico; Stratigraphy of a Part of the Chaco River Valley', ' U.S.G.S. Reference Paper No. 98, pp. 271-278. Government Printing Office, Washington, D.C.'); INSERT INTO "work" VALUES (139, NULL, '1890', 0, 'Adolph F. A. Bandelier, 0', 'Contributions to the History of the Southwestern Portion of the United States', ' Archaeological Institute of America, American Series No. 5.'); INSERT INTO "work" VALUES (1651, NULL, '1994', 0, 'Jay W. Palmer, 0', 'Copper Bells from Anasazi Sites', ' Blue Mountain Shadows 13:44-45. Summer.'); INSERT INTO "work" VALUES (295, NULL, '1977', 0, 'Eric O. Callen, 0', 'Coprolites from Bc 288', ' Archive 2149, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Possibly at McDonald College of McGill University, Montreal, Quebec 1977.'); INSERT INTO "work" VALUES (371, NULL, '1987', 0, 'Karen Husum Clary, 0', 'Coprolites from Pueblo Alto', ' In Investigations at the Pueblo Alto Complex, Chaco Canyon, New Mexico, 1975-1979. Volume III: Artifactual and Biological Analyses, edited by Frances Joan Mathien and Thomas C. Windes, pp. 785-788. Publications in Archeology 18F, Chaco Canyon Studies. National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (333, NULL, '1997', 0, 'Catherine M. Cameron, 0', 'Cores', ' In Ceramics, Lithics, and Ornaments of Chaco Canyon. Analyses of Artifacts from the Chaco Project, 1971-1978, edited by Frances Joan Mathien, pp. 643-658. Publications in Archeology 18G, Chaco Canyon Studies. National Park Service, Santa Fe. '); INSERT INTO "work" VALUES (284, NULL, '1944', 0, 'Ripley P. Bullen, 0', 'Corn Goddesses or Phalli? American Antiquity 9(4):448-449', NULL); INSERT INTO "work" VALUES (1716, NULL, '1976', 0, 'Loren D. Potter, 0; R. Young, 1', 'Correlation of Indicator Plants and Archeological Sites, Chaco Canyon National Monument', ' Paper presented at the Southwestern Division of the American Association for the Advancement of Science, April.'); INSERT INTO "work" VALUES (2586, NULL, '1975', 0, 'Richard Young, 0; Loren Potter, 1', 'Correlation of Indicator Plants and Archeological Sites, Chaco Canyon National Monument', ' Final report on Contract CX7000-4-0179. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2017, NULL, '1986', 0, 'Anna Sofaer, 0; Michael Marshall, 1; Rolf Sinclair, 2', 'Cosmographic Expression in the Road System of the Chaco Culture of Northwestern New Mexico', ' Paper presented at the Second Oxford Conference on Archaeoastronomy, Merida, Yucatan.'); INSERT INTO "work" VALUES (2030, NULL, '1991', 0, 'Anna Sofaer, 0; Rolf Sinclair, 1', 'Cosmographic Expressions in the Constructions of the Chaco Culture of New Mexico: A Synthesis of the Research of the Solstice Project (1977-1991)', ' Paper presented at the Symposium on Anasazi Architecture and American Design, Mesa Verde National Park, CO.'); INSERT INTO "work" VALUES (2031, NULL, '1992', 0, 'Anna Sofaer, 0; Rolf Sinclair, 1', 'Cosmographic Expressions in the Constructions of the Chaco Culture of New Mexico: A Synthesis of the Research of the Solstice Project (1977-1991)', ' Summary of paper presented. In Proceedings: The Mesa Verde Symposium on Anasazi Architecture and American Design, edited and coordinated by Baker H. Morrow and V. B. Price, pp. 153-154. Morrow and Co. Ltd., Albuquerque.'); INSERT INTO "work" VALUES (891, NULL, '1980', 0, 'Arthur K. Ireland, 0', 'Cost-Effective Mapping', ' In Cultural Resources Remote Sensing, edited by Thomas R. Lyons and Frances Joan Mathien, pp. 371-387. Cultural Resources Management Division, National Park Service, Washington, D.C.'); INSERT INTO "work" VALUES (200, NULL, '1937', 0, 'G. Von Bonin, 0', 'Cranial Deformity in the Pueblo Area', ' American Anthropologist 39:720-721.'); INSERT INTO "work" VALUES (63, NULL, '1960', 0, 'Roger Yates Anderson, 0', 'Cretaceous-Tertiary Palynology, Eastern Side of the San Juan Basin, New Mexico', ' New Mexico Bureau of Mines and Mineral Resources Memoir 6. State Bureau of Mines and Mineral Resources, New Mexico Institute of Mining and Technology, Socorro. '); INSERT INTO "work" VALUES (1166, NULL, '1990', 0, 'Stephen H. Lekson, 0', 'Cross-Cultural Perspectives on the Community', ' In On Vernacular Architecture: Paradigms of Environmental Response, edited by Mete Twan, pp. 122-145. Ethnolandscapes Volume 4. Avebury:Aldeershot.'); INSERT INTO "work" VALUES (1465, NULL, '1980', 0, 'Peter J. McKenna, 0', 'Culinary Ware from Pueblo Alto, Chaco Canyon, New Mexico', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Revised and published in 1987.'); INSERT INTO "work" VALUES (1733, NULL, '1985', 0, 'Robert P. Powers, 0', 'Cultural Adaptive Variability at Chaco Canyon, New Mexico', ' Paper presented at the 50th Annual Meeting of the Society for American Archaeology, Denver.'); INSERT INTO "work" VALUES (1728, NULL, '1984', 0, 'Robert P. Powers, 0', 'Cultural Adaptive Variability at Chaco Canyon, New Mexico', ' Paper presented at the 50th Annual Meeting of the Society for American Archaeology, Denver.'); INSERT INTO "work" VALUES (1028, NULL, '1996', 0, 'Timothy M. Kearns, 0', 'Cultural Development on the Chaco Periphery: Recent Research in the Southern Chuska Valley, Northwest New Mexico', ' Paper presented at the 61st Annual Meeting of the Society for American Archaeology, New Orleans.'); INSERT INTO "work" VALUES (399, NULL, '1989', 0, 'Linda S. Cordell, 0; George J. Gumerman, 1', 'Cultural Interaction in the Prehistoric Southwest', ' In Dynamics of Southwest Prehistory, edited by Linda S. Cordell and George J. Gumerman, pp. 1-17. School of American Archaeology and Smithsonian Institution Press, Washington, D.C.'); INSERT INTO "work" VALUES (490, NULL, '1983', 0, 'Marcia Donaldson, 0', 'Cultural Resource Inventory along the Proposed Continental Divide Pipeline, Southwestern Colorado and Northwestern New Mexico', ' Office of Contract Archeology, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1235, NULL, '1978', 0, 'Richard W. Loose, 0', 'Cultural Resources', ' In Western Survey Area, edited by Michele Ann Tart, pp. 381-403. Public Service Company of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2121, NULL, '1980', 0, 'Joseph A. Tainter, 0; David "A" Gillio, 1', 'Cultural Resources Overview', ' Mt. Taylor Area, New Mexico. U.S.D.A. Forest Service, Southwestern Region, Albuquerque, and Bureau of Land Management, New Mexico State Office, Santa Fe.'); INSERT INTO "work" VALUES (2477, NULL, '1979', 0, 'J. P. Wilson, 0', 'Cultural Resources of the Alamito Coal Lease Area, Northwestern New Mexico', ' Alamito Coal Co., Tucson.'); INSERT INTO "work" VALUES (934, NULL, '1976', 0, 'Lynn B. Jorde, 0; Jack B. Bertram, 1', 'Current and Future Applications of Aerospace Remote Sensing in Archeology: A Feasibility Study', ' Contract CX7000-3-0206 funded by U.S.G.S. Eros Project. Ms. on file, Branch of Remote Sensing, National Park Service, Intermountain Region, Santa Fe Office. Published in 1976.'); INSERT INTO "work" VALUES (953, NULL, '1930', 0, 'Neil Merton Judd, 0', 'Dating Our Prehistoric Pueblo Ruins', ' In Explorations and Field Work of the Smithsonian Institution in 1929. Smithsonian Miscellaneous Collections, pp. 167-176.'); INSERT INTO "work" VALUES (494, NULL, '1921', 0, 'Andrew E. Douglass, 0', 'Dating Our Prehistoric Ruins', ' Natural History 21:27-33.'); INSERT INTO "work" VALUES (2553, NULL, '1921', 0, 'Clark Wissler, 0', 'Dating Our Prehistoric Ruins', ' Natural History 21:13-26.'); INSERT INTO "work" VALUES (2054, NULL, '1949', 0, 'W. S. Stallings, 0', 'Dating Prehistoric Ruins by Tree Rings', ' Bulletin No. 8 of the Laboratory of Anthropology, Santa Fe, NM, 1939, revised and published by the Tree-Ring Society with the cooperation of the Laboratory of Tree-Ring Research, University of Arizona, Tucson.'); INSERT INTO "work" VALUES (499, NULL, '1935', 0, 'Andrew E. Douglass, 0', 'Dating Pueblo Bonito and Other Ruins of the Southwest', ' National Geographic Society, Contributed Technical Papers, Pueblo Bonito Series, No. 1, pp. 45-47. Washington, D.C.'); INSERT INTO "work" VALUES (268, NULL, '1925', 0, 'Kirk Bryan, 0', 'Dating of Channel Trenching (Arroyo Cutting) in the Arid Southwest', ' Science 62:338-344.'); INSERT INTO "work" VALUES (586, NULL, '1978', 0, 'Rosalie Fanale, 0', 'Ethnography, Remote Sensing, and Cultural Resources Management', ' Cultural Resources Management Bulletin 1(3):11-12. National Park Service, Washington.'); INSERT INTO "work" VALUES (935, NULL, '1976', 0, 'Lynn B. Jorde, 0; Jack B. Bertram, 1', 'Current and Future Applications of Aerospace Remote Sensing in Archeology: A Feasibility Study', ' In Remote Sensing Experiments in Cultural Resource Studies. Non-destructive Methods of Archeological Exploration, Survey, and Analysis, assembled by Thomas R. Lyons, pp. 11-67. Reports of the Chaco Center No. 1. National Park Service and University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1146, NULL, '1983', 0, 'Stephen H. Lekson, 0', 'Dating of the Hubbard Tri-Wall and Other Tri-Wall Structures', ' Southwestern Lore 49(4):15-23.'); INSERT INTO "work" VALUES (1141, NULL, '1982', 0, 'Stephen H. Lekson, 0', 'Dating the Hubbard Triwall and Other Triwall Structures', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico. Revised and published 1983.'); INSERT INTO "work" VALUES (1974, NULL, '1964', 0, 'Joel L. Shiner, 0', 'Dating the Occupation of Site Bc-50 in Chaco Canyon National Monument', 'El Palacio 71(30:15-17.'); INSERT INTO "work" VALUES (343, NULL, '2001', 0, 'Catherine M. Cameron, 0; H. Wolcott Toll, 1', 'Deciphering the Organization of Production in Chaco Canyon', ' American Antiquity 66(1):5-13.'); INSERT INTO "work" VALUES (1617, NULL, '1994', 0, 'Ben A. Nelson, 0; Timothy A. Kohler, 1; Keith W. Kintigh, 2', 'Demographic Alternatives: Consequences for Current Models of Southwestern Prehistory', ' In Understanding Complexity in the Prehistoric Southwest, edited by George J. Gumerman and Murray Gill-Mann, pp. 113-146. Proceedings Vol. XVI, Santa Fe Institute. Addison-Wesley Publishing Co. Reading, MA. '); INSERT INTO "work" VALUES (464, NULL, '1996', 0, 'Jeffrey S. Dean, 0', 'Demography, Environment and Subsistence Stress', ' In Evolving Complexity and Environmental Risk in the Prehistoric Southwest, edited by Joseph A. Tainter and Bonnie Bagley Tainter, pp. 25-56. Santa Fe Institute Studies in the Sciences of Complexity. Proceedings Volume XXI. Addison-Wesley, Reading.'); INSERT INTO "work" VALUES (665, NULL, '1990', 0, 'Harold C. Fritts, 0', 'Dendrochronological Modeling: The Effects of Climate Change', ' Paper presented at the Annual Meeting of the American Association for the Advancement of Science, New Orleans.'); INSERT INTO "work" VALUES (150, NULL, '1955', 0, 'Bryant Bannister, 0; T. L. Smiley, 1', 'Dendrochronology', ' In Geochronology with Special Reference to Southwestern United States, edited by T. L. Smiley. University of Arizona Physical Sciences Bulletin No. 2. Tucson.'); INSERT INTO "work" VALUES (470, NULL, '1983', 0, 'Jeffrey S. Dean, 0; Richard L. Warren, 1', 'Dendrochronology', ' Chapter V in The Architecture and Dendrochronology of Chetro Ketl, Chaco Canyon, New Mexico, edited by Stephen H. Lekson, pp. 105-240. Reports of the Chaco Center No. 6. Division of Cultural Research, National Park Service, Albuquerque.'); INSERT INTO "work" VALUES (146, NULL, '1963', 0, 'Bryant Bannister, 0', 'Dendrochronology', ' In ... Edited by E. Wiggs, Basic Books Inc.'); INSERT INTO "work" VALUES (461, NULL, '1988', 0, 'Jeffrey S. Dean, 0', 'Dendrochronology and Paleoenvironmental Reconstruction on the Colorado Plateaus', ' In The Anasazi in a Changing Environment, edited by George J. Gumerman, pp. 119-167. Cambridge University Press, Cambridge.'); INSERT INTO "work" VALUES (1863, NULL, '1982', 0, 'Martin R. Rose, 0; William J. Robinson, 1; Jeffrey S. Dean, 2', 'Dendroclimatic Reconstruction for the Southeastern Colorado Plateau', ' Submitted in fulfillment of Contract PX 7486-7-0121 by the Laboratory of Tree-Ring Research, University of Arizona, Tucson.'); INSERT INTO "work" VALUES (468, NULL, '1977', 0, 'Jeffrey S. Dean, 0; William J. Robinson, 1', 'Dendroclimatic Variability in the American Southwest, A', '. 680 to 1970. Laboratory of Tree-Ring Research, University of Arizona, Tucson. Submitted in fulfillment of Contract CX 1595-5-0241 on Southwest Paleoclimate. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1258, NULL, '1997', 0, 'David W. Love, 0', 'Description of Chaco Project''s Lithic Types Collected by A', 'Helene Warren. In Ceramics, Lithics, and Ornaments of Chaco Canyon. Analyses of Artifacts from the Chaco Project, 1971-1978, edited by Frances Joan Mathien, pp. 634-642. Publications in Archeology 18G, Chaco Canyon Studies. National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (1582, NULL, '1936', 0, 'S. Elizabeth Murphey, 0', 'Description of Sherds Found During Excavations of the Summer of 1935, Chaco Canyon, New Mexico', ' Ms. in partial fulfillment of Archaeology and Anthropology 199, University of Southern California. Chaco Archives 1826 and 1832, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1745, NULL, '1996', 0, 'Heather Pringle, 0', 'Desert Prophets', ' Chaco Canyon, New Mexico. Ch. 6 in Search of Ancient North America: An Archaeological Journey to Forgotten Cultures, by Heather Pringle, pp. 111-130. John Wiley & Sons, Inc., New York.'); INSERT INTO "work" VALUES (752, NULL, '1981', 0, 'Stephen A. Hall, 0', 'Deteriorated Pollen Grains and the Interpretation of Quaternary Pollen Diagrams', ' Review of Paleobotany and Palynology 32(2/3):193-206.'); INSERT INTO "work" VALUES (1426, NULL, '1982', 0, 'Frances Joan Mathien, 0; W. James Judge, 1; Andrew Drager, 2', 'Development of a Data Base Management System for Archeological Resource Conservation', ' New Mexico Archeological Council Newsletter 4(5-6):29-33.'); INSERT INTO "work" VALUES (1425, NULL, '1982', 0, 'Frances Joan Mathien, 0; W. James Judge, 1; Andrew Drager, 2', 'Development of a Data Base Management System for Archeological Resource Conservation', ' Paper presented at the New Mexico Archeological Council Workshop No. 1: Archeological Research in the San Juan Basin. Chaco Culture National Historical Park, NM, May 20-21. Published in 1982.'); INSERT INTO "work" VALUES (1535, NULL, '1980', 0, 'William L. Minear, 0; Stanley Rhine, 1', 'Differential Diagnosis in Paleopathology: The Collapsed Vertebra (Burial 29SJ563)', ' Paper presented at the Annual Meeting of the Southwestern Anthropological Association, San Diego.'); INSERT INTO "work" VALUES (2058, NULL, '1930', 0, 'Winifred Stamm (editor of Digs, School of American Research, 0', 'Digs', ' No. 1. June 30, 1930, pp. 1-12. No. 2, July 15, 1930, pp. 1-27. El Palacio 28(26):198-208.'); INSERT INTO "work" VALUES (2059, NULL, '1930', 0, 'Winifred Stamm (editor of Digs, School of American Research, 0', 'Digs', ' El Palacio 28(10-15):13-27, reprinted in El Palacio 29(1).'); INSERT INTO "work" VALUES (1564, NULL, '1917', 0, 'Earl H. Morris, 0', 'Discoveries at Aztec Ruin', ' American Museum Journal 17(3).'); INSERT INTO "work" VALUES (2312, NULL, '1983', 0, 'R. Gwinn Vivian, 0', 'Discovery and Description: Chacoan Road Field Studies 1963-1980', ' In Chaco Roads Project Phase I, edited by Chris Kincaid, pp. A-1 to A-34. Bureau of Land Management, Albuquerque.'); INSERT INTO "work" VALUES (1633, NULL, '1977', 0, 'Margaret Senter Obenauf, 0', 'Discriminant Analysis of Pueblo II and Pueblo III Utility Sherds', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1076, NULL, '1939', 0, 'Clyde Kluckhohn, 0', 'Discussion', ' In Preliminary Report on the 1937 Excavations, Bc 50-51, Chaco Canyon, New Mexico, edited by Clyde Kluckhohn and Paul Reiter, pp. 151-162. University of New Mexico Bulletin No. 345, Anthropological Series 3(2). University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1648, NULL, '1984', 0, 'Ann M. Palkovich, 0', 'Disease and Mortality Patterns in the Burial Rooms of Pueblo Bonito: Preliminary Considerations', ' In Recent Research on Chaco Prehistory, edited by W. James Judge and John D. Schelberg, pp. 103-113. Reports of the Chaco Center No. 8. Division of Cultural Research, National Park Service, Albuquerque.'); INSERT INTO "work" VALUES (1243, NULL, '1996', 0, 'Joseph G. Lorenz, 0; David G. Smith, 1', 'Distribution of Four Founding mt DNA Haplogroups among Native North Americans', ' American Journal of Physical Anthropology 101:307-323.'); INSERT INTO "work" VALUES (1242, NULL, '1994', 0, 'Joseph G. Lorenz, 0; David G. Smith, 1', 'Distribution of the 9-bp Mitochondrial DNA Region V Deletion among North American Indians', ' Human Biology 66(5).'); INSERT INTO "work" VALUES (481, NULL, '1901', 0, 'R. E. Dodge, 0', 'Diurnal Winds on Faint Gradient in Northwestern New Mexico', ' Monthly Weather Review 29(7):299-300.'); INSERT INTO "work" VALUES (446, NULL, '1984', 0, 'Jack F. Cully, 0', 'Diversity, Stability, and the Deermouse: Implications for the Vegetative Diversity Model', ' In Recent Research on Chaco Prehistory, edited by W. James Judge and John D. Schelberg, pp. 213-224. Reports of the Chaco Center No. 8. Division of Cultural Research, National Park Service, Albuquerque.'); INSERT INTO "work" VALUES (1343, NULL, '1998', 0, 'Anne Lawrason Marshall, 0', 'Documenting Chacoan Sites with QuickTime VR Technology', ' Presentation at the 71st Pecos Conference, Pecos.'); INSERT INTO "work" VALUES (884, NULL, '1996', 0, 'Teresa D. Hurt, 0', 'Dogoszhi Ceramics: A Chaco Elite Style Wanna-be', ' Paper for Anthrop 570, University of New Mexico, December. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (53, NULL, '1920', 0, 'Glover M. Allen, 0', 'Dogs of the American Aborigines', ' Museum of Comparative Zoology Bulletin 63(3):431-515.'); INSERT INTO "work" VALUES (1437, NULL, '1936', 0, 'Wayne Mauzy, 0', 'Dr', 'Hewett''s Book on Chaco Canyon Appears. El Palacio 41:125-136.'); INSERT INTO "work" VALUES (842, NULL, '1932', 0, 'Edgar L. Hewett, 0', 'Dr', 'Hewett Announces Discoveries. El Palacio 32(19-20):255-257.'); INSERT INTO "work" VALUES (1430, NULL, '1984', 0, 'Frances Joan Mathien, 0; Thomas C. Windes, 1', 'Draft Historic Structure Report', ' Kin Nahasbas Ruin, Chaco Culture National Historical Park, New Mexico. Division of Cultural Research, National Park Service, Albuquerque. Published in 1988.'); INSERT INTO "work" VALUES (142, NULL, '1980', 0, 'Philip A. Bandy, 0', 'Draft Report on Archaeological Remote Sensing Research with Refractive Seismology', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (600, NULL, '2000', 0, 'Gary M. Feinman, 0', 'Dual-processual Theory and Social Formations in the Southwest', ' In Alternative Leadership Strategies in the Prehispanic Southwest edited by Barbara J. Mills, pp. 207-224. University of Arizona Press, Tucson.'); INSERT INTO "work" VALUES (1183, NULL, '1996', 0, 'Stephen H. Lekson, 0', 'Dud Meridian: On the Line with Chaco and Casas', ' Ms. on file with author and presentation at 5th Oxford International Conference on Archaeoastronomy, Santa Fe.'); INSERT INTO "work" VALUES (2482, NULL, '1977', 0, 'Thomas C. Windes, 0', 'Dwellers of the Wood ("Say, Who Are Those Turkeys?"): A Preliminary Eggshell Report', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1246, NULL, '1977', 0, 'David W. Love, 0', 'Dynamics of Sedimentation and Geomorphic History of Chaco Canyon National Monument, New Mexico', ' Guidebook of the San Juan Basin III, Northwestern New Mexico, edited by J. E. Fassett, pp. 291-300. New Mexico Geologic Society Guidebook, 28th Field Conference.'); INSERT INTO "work" VALUES (1245, NULL, '1976', 0, 'David W. Love, 0', 'Dynamics of Sedimentation and Geomorphic History of Chaco Canyon National Monument, New Mexico', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published in 1977.'); INSERT INTO "work" VALUES (925, NULL, '1989', 0, 'Gregory A. Johnson, 0', 'Dynamics of Southwestern Prehistory: Far Outside-Looking In', ' In Dynamics of Southwest Prehistory, edited by Linda S. Cordell and George J. Gumerman, pp. 371-389. Smithsonian Institution Press, Washington, D.C.'); INSERT INTO "work" VALUES (1663, NULL, '1896', 0, 'Stephen D. Peet, 0', 'Early American Explorations Among the Pueblos', ' American Antiquarian 18:228-245.'); INSERT INTO "work" VALUES (1537, NULL, '1978', 0, 'Paul Minnis, 0', 'Early Prehistoric Ethnobotany in Chaco Wash: Plant Remains from the Tsaya Project, New Mexico', ' Report prepared for the Laboratory of Anthropology, Museum of New Mexico, Santa Fe.'); INSERT INTO "work" VALUES (2074, NULL, '1986', 0, 'John R. Stein, 0; Stephen H. Lekson, 1', 'Earthen Architecture and Ritual', ' Paper presented at the 3rd Anasazi Symposium, Oljato, Az.'); INSERT INTO "work" VALUES (1890, NULL, '1976', 0, 'Randall F. Schalk, 0; Thomas R. Lyons, 1', 'Ecological Applications of Landsat Imagery in Archeology: An Example from the San Juan Basin, New Mexico', ' In Remote Sensing Experiments in Cultural Resources Studies. Non-destructive Methods in Archeological Exploration, Survey, and Analysis, assembled by Thomas R. Lyons, pp. 173-186. Reports of the Chaco Center No. 1. National Park Service and University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (784, NULL, '1963', 0, 'A. H. Harris, 0', 'Ecological Distribution of Some Vertebrates in the San Juan Basin, New Mexico', ' Musuem of New Mexico, Papers in Anthropology, No. 8, p. 64. Santa Fe.'); INSERT INTO "work" VALUES (684, NULL, '1981', 0, 'William B. Gillespie, 0', 'Ecological Implications of Faunal Remains from Archaeological Sites in Chaco Canyon, New Mexico', ' Paper presented at the 46th Annual Meeting of the Society for American Archaeology, San Diego.'); INSERT INTO "work" VALUES (1714, NULL, '1974', 0, 'Loren D. Potter, 0', 'Ecological Survey of Chaco Canyon', ' Final Report NPS Contract 14-10-3-390-222. Ms. on file, Department of Biology and NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1380, NULL, '1981', 0, 'Frances Joan Mathien, 0', 'Economic Exchange Systems in the San Juan Basin', ' Unpublished Ph.D. dissertation, Department of Anthropology, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (205, NULL, '1921', 0, 'Wesley Bradfield, 0', 'Economic Resources of Chaco Canyon', ' Art and Archaeology 11(1-2):36-38.'); INSERT INTO "work" VALUES (552, NULL, '2001', 0, 'Timothy Earle, 0', 'Economic Support of Chaco Canyon Society', ' American Antiquity 66(1):26-35.'); INSERT INTO "work" VALUES (1903, NULL, '1982', 0, 'John D. Schelberg, 0', 'Economic and Social Development as an Adaptation to a Marginal Environment in Chaco Canyon, New Mexico', ' Ph.D. dissertation, Department of Anthropology, Northwestern University, Evanston.'); INSERT INTO "work" VALUES (2332, NULL, '2000', 0, 'R. Gwinn Vivian, 0', 'Economy and Ecology', ' Archaeology Southwest 14(1):5-7.'); INSERT INTO "work" VALUES (864, NULL, '1982', 0, 'Patrick Hogan, 0; Joseph C. Winter , 1', 'Economy and Interaction along the Lower Chaco River: The Navajo Mine Archaeological Program Mining Area III', ' Office of Contract Archeology, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1941, NULL, '1977', 0, 'Timothy Seaman, 0', 'Ecosystem Stability, Agricultural Production, and the Evolution of Complex Adaptational Systems in the San Juan Basin of New Mexico', ' Paper prepared for Anthropology 467/597, Department of Anthropology, University of New Mexico. Ms. on file, NPS Chaco Culture NHP Museum Archive, National Park Service, Albuquerque.'); INSERT INTO "work" VALUES (1348, NULL, '2000', 0, 'Anne Lawrason Marshall, 0', 'Education through Digital Documentation of Anasazi Architecture', 'Poster presentation at the 64th Annual Meeting of the Society for American Archaeology, Philadelphia.'); INSERT INTO "work" VALUES (1350, NULL, '2000', 0, 'Anne Lawrason Marshall, 0', 'Education through Digital Documentation of Anasazi Architecture', ' Poster Session at the 65th Annual Meeting of the Society for American Archaeology, Philadelphia.'); INSERT INTO "work" VALUES (1525, NULL, '1983', 0, 'Alison M. Mills, 0; Thomas W. Gardner, 1', 'Effects of Aquifer Dewatering on an Ephemeral Stream, San Juan Basin, New Mexico', ' In Chaco Canyon Country. A Field Guide to the Geomorphology, Quaternary Geology, Paleoecology, and Environmental Geology of Northwestern New Mexico, edited by Stephen G. Wells, David W. Love, and Thomas W. Gardner, pp. 57-66. American Geomorphological Field Group, 1983 Field Trip Guidebook. Adobe Press, Albuquerque.'); INSERT INTO "work" VALUES (2520, NULL, '1993', 0, 'Thomas C. Windes, 0', 'Eggshells from 29SJ629', ' In The Spadefoot Toad Site: Investigations at 29SJ 629, Chaco Canyon, New Mexico: Artifactual and Biological Analyses, edited by Thomas C. Windes, pp. 499-501. Reports of the Chaco Center No. 12. Branch of Cultural Research, National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (1358, NULL, '1994', 0, 'Michael P. Marshall, 0', 'El Llano-Escalon Community Study', ' In A Study of Two Anasazi Communities in the San Juan Basin, by R. J. Bradley and R. Sullivan. Across the Colorado Plateau: Anthropological Studies for the Transwestern Pipeline Expansion Project, Volume IX. University of New Mexico Office of Contract Archaeology and Maxwell Museum of Anthropology, Albuquerque.'); INSERT INTO "work" VALUES (1474, NULL, '1988', 0, 'Peter J. McKenna, 0', 'El Malpais Ruin on the San Juan River, New Mexico', ' Ms. on file, National Park Service, Division of Anthropology, Intermountain Region, Santa Fe Office.'); INSERT INTO "work" VALUES (1598, NULL, '1995', 0, 'Jill E. Neitzel, 0', 'Elite Styles In Hierarchically Organized Societies: The Chacoan Regional System', ' In Style, Society, and Person: Archaeological and Ethnological Perspectives, edited by Christopher Carr and Jill E. Neitzel, pp. 393-417. Plenum Press, New York.'); INSERT INTO "work" VALUES (1888, NULL, '2000', 0, 'Polly Schaafsma, 0', 'Emblems of Power: Social Identity and the Role of Visual Symbols in the Cases of Casas Grande and Chaco Canyon', ' Paper presented at the 65th Annual Meeting of the Society for American Archaeology, Philadelphia.'); INSERT INTO "work" VALUES (2068, NULL, '1996', 0, 'John R. Stein, 0', 'Emergency Preservation Work at the Navajo Springs Chaco Protection Site', ' Paper presented at the 61st Pecos Conference, Flagstaff.'); INSERT INTO "work" VALUES (1081, NULL, '1974', 0, 'Ralph L. Knowles, 0', 'Energy and Form: An Ecological Approach to Urban Growth', ' MIT Press, Cambridge.'); INSERT INTO "work" VALUES (1920, NULL, '1992', 0, 'Stephen D. Schreiber, 0', 'Engineering Feats of the Anasazi: Buildings, Roads, and Dams', ' In Proceedings: The Mesa Verde Symposium on Anasazi Architecture and American Design, edited and coordinated by Baker H. Morrow and V. B. Price, pp. 155-175. Morrow and Co. Ltd., Albuquerque.'); INSERT INTO "work" VALUES (1921, NULL, '1997', 0, 'Stephen D. Schreiber, 0', 'Engineering Feats of the Anasazi: Buildings, Roads, and Dams', ' In Anasazi Architecture and American Design, pp. 77-87. University of New Mexico Press, Albuquerque.'); INSERT INTO "work" VALUES (626, NULL, '1932', 0, 'Reginald G. Fisher, 0', 'Engineering in Southwestern Excavation and Research', ' El Palacio 34(15-16):116-120.'); INSERT INTO "work" VALUES (459, NULL, '1984', 0, 'Jeffrey S. Dean, 0', 'Environmental Aspects of Modeling Human Activity-Locating Behavior', ' In Theory and Model Building: Refining Survey Strategies for Locating Prehistoric Heritage Resources: Trial Formulations for Southwestern Forests, edited by Linda S. Cordell and Dee F. Green, pp. 8-20. Cultural Resources Management Report No. 5. U.S.D.A. Forest Service, Southwestern Region, Albuquerque.'); INSERT INTO "work" VALUES (453, NULL, '1997/98', 0, 'Laura Dabbs, 0', 'Environmental Change and Aspects of Human Influence, Chaco Canyon, New Mexico', ' Ms. on file as ES3301, Environmental Science Honours Project 1997/98. University of Wolverhampton, England.'); INSERT INTO "work" VALUES (463, NULL, '1992', 0, 'Jeffrey S. Dean, 0', 'Environmental Factors in the Evolution of the Chacoan Political System', ' In Anasazi Regional Organization and the Chaco System, edited by David E. Doyel, pp. 35-43. Anthropological Papers No. 5. Maxwell Museum of Anthropology, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (524, NULL, '1983', 0, 'Dwight L. Drager, 0', 'Environmental Integration in Archeology', ' Paper presented at the Pecos Conference, Bluff, UT.'); INSERT INTO "work" VALUES (525, NULL, '1983', 0, 'Dwight L. Drager, 0', 'Environmental Integration in Archeology', ' Paper presented at the 49th Annual Meeting of the Society for American Archaeology, Portland, April 10-15.'); INSERT INTO "work" VALUES (591, NULL, '1983', 0, 'Rosalie Fanale, 0; Dwight L. Drager, 1', 'Environmental Mapping for Cultural Resources Management: The Navajo Indian Irrigation Project', ' In Remote Sensing in Cultural Resource Management: The San Juan Basin Project, edited by Dwight L. Drager and Thomas R. Lyons, pp. 57-76. Cultural Resources Management Division, National Park Service, Washington, D.C.'); INSERT INTO "work" VALUES (1743, NULL, '1997', 0, 'V. B. Price, 0', 'Epilogue', ' In Anasazi Architecture and American Design, edited by Baker H. Morrow and V. B. Price, pp. 227-229. University of New Mexico Press, Albuquerque.'); INSERT INTO "work" VALUES (1696, NULL, '1995', 0, 'Stephen Plog, 0', 'Equality and Hierarchy', ' Holistic Approaches to Understanding Social Dynamics in the Pueblo Southwest. In Foundations of Social Inequality, edited by T. Douglass Price and Gary M. Feinman, pp. 189-206. Plenum Press, New York.'); INSERT INTO "work" VALUES (529, NULL, '1984', 0, 'Dwight L. Drager, 0', 'Equipment for Remote Sensing in Cultural Resource Management', ' Presentation at the Second World Conference on Rescue Archeology, Dallas, December.'); INSERT INTO "work" VALUES (364, NULL, '1935', 0, 'William Chauvenet, 0', 'Erosion Control in Chaco Canyon, New Mexico, for the Preservation of Archaeological Sites', ' M. A. thesis, Department of Anthropology, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (580, NULL, '1943', 0, 'Francis H. Elmore, 0', 'Ethnobotany of the Navajo', ' University of New Mexico Bulletin Monograph Series 1(7), Albuquerque, and Monograph No. 8, School of American Research, Santa Fe. University of New Mexico Press, Albuquerque.'); INSERT INTO "work" VALUES (578, NULL, '1936', 0, 'Francis H. Elmore, 0', 'Ethnobotany of the Navajo of the Chaco Canyon', ' Paper for Field Course 199. Ms. on file, Laboratory of Anthropology and School of American Research, Santa Fe, and University of Southern California.'); INSERT INTO "work" VALUES (380, NULL, '1982', 0, 'Carol J. Condie, 0; Frederick F. York, 1', 'Ethnographic Consideration Surrounding Archeological Protection in the San Juan Basin', ' Ms. on file, National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (1088, NULL, '2000', 0, 'Jane Kolber, 0', 'European Influences on the Navajo People and How It Was Depicted in Rock Art', ' Paper presented at the AURA-IRAC Conference, Alice Springs, Australia.'); INSERT INTO "work" VALUES (1636, NULL, '1983', 0, 'Margaret Senter Obenauf, 0', 'Evaluation of Aerial Photography', ' In Chaco Roads Project, Phase I: A Reappraisal of Prehistoric Roads in the San Juan Basin, 1983, edited by Chris Kincaid, pp. 4-1 to 4-21. Bureau of Land Management, New Mexico State Office, Albuquerque and Santa Fe.'); INSERT INTO "work" VALUES (442, NULL, '1987', 0, 'Anne C. Cully, 0; Mollie S. Toll, 1', 'Evaluation of Agricultural Potential on Four Park Additions to Chaco Culture National Historical Park', ' Southwest Ecological Associates, Albuquerque.'); INSERT INTO "work" VALUES (2198, NULL, '1989', 0, 'Joseph E. Trott, 0; Robert K. Mark, 1; Dennis B. Fenn, 2; Cecil Werito, 3', 'Evaluation of Status of Site 29SJ2387', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (946, NULL, '1925', 0, 'Neil Merton Judd, 0', 'Everyday Life in Pueblo Bonito', ' National Geographic Magazine 48(3):227-262. Washington, D.C.'); INSERT INTO "work" VALUES (1796, NULL, '1978', 0, 'Jonathan E. Reyman, 0', 'Evidence for Annual and Circadian Rhythms in Southwestern Pueblo Ceremonial Behavior', ' In Psychological Perspectives on Dances, edited by Ruth E. Priddle, pp. ----. San Francisco Conference-Based Series II, Fall Congress on Research in Dance. New York.'); INSERT INTO "work" VALUES (2469, NULL, '1989', 0, 'Wirt H. Wills, 0; Thomas C. Windes, 1', 'Evidence for Population Aggregation and Dispersal during the Basketmaker III Period in Chaco Canyon, New Mexico', ' American Antiquity 54(2):347-369.'); INSERT INTO "work" VALUES (49, NULL, '1984', 0, 'Nancy J. Akins, 0; John D. Schelberg, 1', 'Evidence of Organizational Complexity as Seen from the Mortuary Practices in Chaco Canyon', ' In Recent Research on Chaco Prehistory, edited by W. James Judge and John D. Schelberg, pp. 89-102. Reports of the Chaco Center No. 8. Division of Cultural Research, National Park Service, Albuquerque.'); INSERT INTO "work" VALUES (498, NULL, '1933', 0, 'Andrew E. Douglass, 0', 'Evidences of Cycles in Tree Ring Records', ' Proceedings of the National Academy of Science 19:350-360.'); INSERT INTO "work" VALUES (2362, NULL, '1932', 0, 'Paul A. F. Walter, 0', 'Evidences of Structures Beneath the Fifth Floor Level of the Great Sanctuary, Chetro Ketl', ' Archive 1916, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2464, NULL, '1994', 0, 'Wirt H. Wills, 0', 'Evolutionary and Ecological Modeling in Southwestern Archaeology', ' In Understanding Complexity in the Prehistoric Southwest, edited by George J. Gumerman and M. Gell-Mann, pp. 287-296. Proceedings Volume XVI, Santa Fe Institute, Addison-Wesley Publishing Co., Reading.'); INSERT INTO "work" VALUES (173, NULL, '1987', 0, 'Scott P. Berger, 0', 'Examination of a Cartridge Casing from Pueblo Alto, Other Structure 13', ' In Investigations at the Pueblo Alto Complex, Chaco Canyon, New Mexico, 1975-1979. Volume IV. Microfiche, edited by Thomas C. Windes and Frances Joan Mathien, pp. MF-2-MF-6. Publications in Archeology 19F, Chaco Canyon Studies. National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (2141, NULL, '1981', 0, 'H. Wolcott Toll, III, 0', 'Examination the Ceramic Evidence for Redistribution in Chaco Canyon', ' Paper presented at the 46th Annual Meeting of the Society for American Archaeology, San Diego.'); INSERT INTO "work" VALUES (1601, NULL, '1999', 0, 'Jill E. Neitzel, 0', 'Examining Societal Organization in the Southwest: An Application of Multiscalar Analysis', ' In Great Towns and Regional Polities in the Prehistoric American Southwest and Southeast, edited by Jill E. Neitzel, pp. 183-213. Amerind Foundation and the University of New Mexico Press, Dragoon and Albuquerque.'); INSERT INTO "work" VALUES (1955, NULL, '1939', 0, 'Donovan Senter, 0', 'Excavation Report, Chaco Canyon, Bc 50, Season 1939', ' Vivian Archive No. 020, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2560, NULL, '1931', 0, 'Janet Mc Woods, 0', 'Excavation Work, The Great Bowl, Chetro Ketl', ' Archive 1937, 1903, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2202, NULL, '1980', 0, 'Marcia L. Truell, 0', 'Excavation at Site 29SJ627, Chaco Canyon, New Mexico', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published in 1992.'); INSERT INTO "work" VALUES (1932, NULL, '1962', 0, 'J. V. Sciscenti, 0', 'Excavation at Site LA 5844', ' In Archaeology of the Four Corners Power Projects, by J. V. Sciscenti and H. C. Greminger. Museum of New Mexico Papers in Anthropology No. 5:92-112.'); INSERT INTO "work" VALUES (2433, NULL, '1980', 0, 'Penelope Whitten, 0; Marilyn Swift, 1; Alan Reed, 2', 'Excavation at Two Pueblo II Sites on the San Juan Mine Coal Lease, Northwestern New Mexico', ' Contributions to Anthropology Series No. 239. Division of Conservation Archaeology, San Juan County Museum Association. Farmington.'); INSERT INTO "work" VALUES (2479, NULL, '1976', 0, 'Thomas C. Windes, 0', 'Excavation of 29SJ299 (P-I Component)', ' Preliminary Report of the Architecture and Stratigraphy. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2478, NULL, '1975', 0, 'Thomas C. Windes, 0', 'Excavation of 29SJ423, an Early Basketmaker III Site in Chaco Canyon', ' Preliminary Report on the Architecture and Stratigraphy. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2480, NULL, '1976', 0, 'Thomas C. Windes, 0', 'Excavation of 29SJ721, an Early Pueblo I Site in Chaco Canyon', ' Preliminary Report of the Architecture and Stratigraphy. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2481, NULL, '1976', 0, 'Thomas C. Windes, 0', 'Excavation of 29SJ724', ' Preliminary Report of the Architecture and Stratigraphy. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2113, NULL, '1994', 0, 'Richard B. Sullivan, 0', 'Excavation of Anasazi Sites in the Upper Rio Puerco River Valley', ' Volume X of Across the Colorado Plateau: Anthropological Studies for the Transwestern Pipeline Expansion Project. Office of Contract Archeology and Maxwell Museum of Anthropology, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2056, NULL, '1929', 0, 'Winifred Stamm (editor of Digs, School of American Research, 0', 'Excavation of East Tower (Chetro Ketl)', ' El Palacio 27(1-7):15-16.'); INSERT INTO "work" VALUES (866, NULL, '1934', 0, 'M. Hollenbach, 0', 'Excavation of Mound No', '21. Ms. on file, School of American Research.'); INSERT INTO "work" VALUES (886, NULL, '1934', 0, 'C. E. Hutchinson, 0', 'Excavation of Small House Unit No', '8. Ms. on file, School of American Research, Santa Fe.'); INSERT INTO "work" VALUES (1049, NULL, '1944', 0, 'Dorothy Keur, 0', 'Excavation of Two Late Basketmaker III Pithouses', ' National Park Service Archaeological Research Series No. 2.'); INSERT INTO "work" VALUES (12, NULL, '1978', 0, 'Nancy J. Akins, 0', 'Excavation of a Burial near Kin Ya''a', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1973, NULL, '1961', 0, 'Joel L. Shiner, 0', 'Excavation of a Chaco-type Kiva, Chaco Canyon, New Mexico', ' Chaco Archive No. 2769, NPS Chaco Archives, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2563, NULL, '1934', 0, 'Janet Mc Woods, 0', 'Excavation of the Court Kiva, Chetro Ketl', ' Archive 1919, 1941, 2125, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2561, NULL, '1932', 0, 'Janet Mc Woods, 0', 'Excavation of the Great Bowl, June, 1931', ' Archive 1903, 1906, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2565, NULL, '1931', 0, 'Margaret S. Woods, 0', 'Excavations', ' Archive 1849, 1904, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2207, NULL, '1992', 0, 'Marcia L. Truell, 0', 'Excavations at 29SJ 627, Chaco Canyon, New Mexico', ' Volume I. The Architecture and Stratigraphy. Reports of the Chaco Center No. 11. Branch of Cultural Research, National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (1469, NULL, '1981', 0, 'Peter J. McKenna, 0', 'Excavations at 29SJ1360, Chaco Canyon, New Mexico', ' Preliminary Report. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published in 1984.'); INSERT INTO "work" VALUES (2486, NULL, '1978', 0, 'Thomas C. Windes, 0', 'Excavations at 29SJ629, Chaco Canyon: The Spade Foot Toad Site', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Revised and published in 1993.'); INSERT INTO "work" VALUES (2201, NULL, '1979', 0, 'Marcia L. Truell, 0', 'Excavations at 29SJ633, the 11th Hour Site, Chaco Canyon, New Mexico', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2432, NULL, '1982', 0, 'Penelope Whitten, 0', 'Excavations at LA 21978', ' Division of Conservation Archaeology, San Juan County Archaeological Research Center and Library, Contributions to Anthropology Series, No. 465.'); INSERT INTO "work" VALUES (2492, NULL, '1980', 0, 'Thomas C. Windes, 0', 'Excavations at Pierre''s Site 27: An Arroyo Hearth near the Main Site Complex', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (692, NULL, '1984', 0, 'William B. Gillespie, 0', 'Excavations at Sheep Camp Shelter (29SJ178)', ' Chapter 4 in Archaic Prehistory and Paleoenvironments in the San Juan Basin, New Mexico: The Chaco Shelters Project, edited by A. H. Simmons, pp. 39-94. Museum of Anthropology Project Report Series No. 53. University of Kansas, Lawrence.'); INSERT INTO "work" VALUES (2431, NULL, '1982', 0, 'Penelope Whitten, 0', 'Excavations at the Crawford Site', ' A Basketmaker III-Pueblo I Site near Crownpoint, New Mexico. Division of Conservation Archaeology, San Juan County Archaeological Research Center and Library, Contributions to Anthropology Series, No. 307.'); INSERT INTO "work" VALUES (629, NULL, '1974', 0, 'Louis Flam, 0', 'Excavations at the Eleanor Site, ENM 883: A Brief Interim Report', ' Ms on file, Agency for Conservation Archaeology, Eastern New Mexico University, Portales.'); INSERT INTO "work" VALUES (1703, NULL, '1932', 0, 'W. W. Postlethwaite, 0', 'Excavations in the Great Sanctuary (Sun Temple) of Chetro Ketl, Chaco Canyon, New Mexico, 1932', ' Vivian Archive, Reiter Papers. Archive 1891, 1905, 2125J NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1704, NULL, '1933', 0, 'W. W. Postlethwaite, 0', 'Excavations of Area Adjoining Sun Sanctuary, Chetro Ketl, Chaco Canyon, New Mexico', ' Vivian Archive 1897, Reiter Volume 4, and 2125J, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1410, NULL, '1993', 0, 'Frances Joan Mathien, 0', 'Exchange Systems and Social Stratification among the Chaco Anasazi', ' In The American Southwest and Mesoamerica: Systems of Prehistoric Exchange, edited by Jonathon E. Ericson and Timothy G. Baugh, pp. 27-63. Plenum Press, New York and London.'); INSERT INTO "work" VALUES (1396, NULL, '1988', 0, 'Frances Joan Mathien, 0', 'Exchange Systems of the Chaco Anasazi', ' Paper presented in Symposium on Understanding Cultural Variability in the Chaco at the 53rd Annual Meeting of the Society for American Archaeology, Phoenix.'); INSERT INTO "work" VALUES (1571, NULL, '1876', 0, 'C. C. Morrison, 0', 'Executive and Descriptive Report of Lieutenant C', 'C. Morrison, Sixth Cavalry, on the Operation of Party No. 2, Colorado Section, Field Session 1875. Appendix E in Annual Report Upon the Geographical Surveys West of the One-Hundredth Meridian, in California, Nevada, Utah, Colorado, Wyoming, New Mexico, Arizona, and Montana by George M. Wheeler, Being Appendix JJ of the Annual Report of the Chief of Engineers for 1876, pp. 136-147. Washington, D.C.'); INSERT INTO "work" VALUES (1126, NULL, '1977', 0, 'Stephen H. Lekson, 0', 'Existing Hypotheses Concerning the Bonito Phase', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2166, NULL, '1985', 0, 'H. Wolcott Toll III, 0; Marcia L. Newren, 1; William B. Gillespie, 2', 'Experimental Corn Plots in Chaco Canyon', ' The Life and Hard Times of Zea Mays L. In Environment and Subsistence of Chaco Canyon, New Mexico, edited by Frances Joan Mathien, pp. 79-133. Publications in Archeology 18E, Chaco Canyon Studies. National Park Service, Albuquerque.'); INSERT INTO "work" VALUES (2165, NULL, '1979', 0, 'H. Wolcott Toll III, 0; Mollie Struever, 1; Marcia L. Truell, 2; William B. Gillespie, 3', 'Experimental Corn Plots in Chaco Canyon: The Life and Hard Times of Zea mays L', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published in 1985.'); INSERT INTO "work" VALUES (947, NULL, '1925', 0, 'Neil Merton Judd, 0', 'Exploration in Prehistoric Pueblo Bonito, Chaco Canyon, New Mexico', ' The Geographical Society of Philadelphia Bulletin 23:82.'); INSERT INTO "work" VALUES (407, NULL, '1899', 0, 'Samuel Woodworth Cozzens, 0', 'Explorations and Adventures in Arizona and New Mexico', ' Castle, Secaucus, NJ.'); INSERT INTO "work" VALUES (959, NULL, '1955', 0, 'Neil Merton Judd, 0', 'Exploring Pueblo Bonito', ' National Geographic on Indians of the Americas, pp. 332-337. National Geographic Society, Washington, D.C.'); INSERT INTO "work" VALUES (1387, NULL, '1983', 0, 'Frances Joan Mathien, 0', 'External Contact and the Chaco Anasazi', ' Paper presented at the 48th Annual Meeting of the Society for American Archaeology, Pittsburgh, April 27-30. Published in 1986.'); INSERT INTO "work" VALUES (1394, NULL, '1986', 0, 'Frances Joan Mathien, 0', 'External Contacts and the Chaco Anasazi', ' In Ripples in the Chichimec Sea. New Considerations of Southwestern-Mesoamerican Interaction, edited by Frances Joan Mathien and Randall H. McGuire, pp. 220-240. Southern Illinois University, Carbondale.'); INSERT INTO "work" VALUES (1374, NULL, '1947', 0, 'Tom W. Mathews, 0', 'Extraction from Student Notes of Bc 59 Excavations', ' Chaco Archive 2060, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1058, NULL, '1980', 0, 'Michael Kiefer, 0; Rosemary Nothwanger, 1', 'Fall of the Garden of Eden', ' International Wildlife 10(4):38-45.'); INSERT INTO "work" VALUES (9, NULL, '1996', 0, 'Mark Adler, 0', 'Fathoming the Scale of Anasazi Communities', ' In Interpreting Southwestern Diversity: Underlying Principles and Overarching Patterns, edited by Paul R. Fish and J. J. Reid, pp. 97-105. Anthropological Research Paper No. 48, Arizona State University, Tempe.'); INSERT INTO "work" VALUES (1458, NULL, '1977', 0, 'J. David E. McBride, 0', 'Faunal Analysis of Remains from SJ299', ' Paper prepared for Anthropology 467. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1850, NULL, '1996', 0, 'Kathy L. Roler, 0', 'Faunal Exploitation at Chacoan Outlier Communities, A View from Guadalupe Ruin', ' Paper presented at the 61st Annual Meeting of the Society for American Archaeology, New Orleans.'); INSERT INTO "work" VALUES (24, NULL, '1982', 0, 'Nancy J. Akins, 0', 'Faunal Exploitation in Chaco Canyon, New Mexico', ' Paper presented at the 47th Annual Meeting of the Society for American Archaeology, Minneapolis.'); INSERT INTO "work" VALUES (685, NULL, '1981', 0, 'William B. Gillespie, 0', 'Faunal Remains from 29SJ629', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published in 1993.'); INSERT INTO "work" VALUES (686, NULL, '1981', 0, 'William B. Gillespie, 0', 'Faunal Remains from 29SJ633', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published in 1991.'); INSERT INTO "work" VALUES (698, NULL, '1991', 0, 'William B. Gillespie, 0', 'Faunal Remains from 29SJ633', ' In Excavations at 29SJ633: The Eleventh Hour Site, Chaco Canyon, New Mexico, edited by Frances Joan Mathien, pp. 243-315. Reports of the Chaco Center No. 10. Branch of Cultural Research, National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (681, NULL, '1979', 0, 'William B. Gillespie, 0', 'Faunal Remains from 29SJ721', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (37, NULL, '1987', 0, 'Nancy J. Akins, 0', 'Faunal Remains from Pueblo Alto', ' In Investigations at the Pueblo Alto Complex, Chaco Canyon, New Mexico 1975-1979. Volume III: Artifactual and Biological Analyses, edited by Frances Joan Mathien and Thomas C. Windes, pp. 445-649. Publications in Archeology 18F, Chaco Canyon Studies. National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (373, NULL, '1999', 0, 'Charles R. Cobb, 0; Jeffrey Maymon, 1; Randall H. McGuire, 2', 'Feathered, Horned, and Antlered Serpents: Mesoamerican Connections with the Southwest and Southeast', ' In Great Towns and Regional Polities in the Prehistoric American Southwest and Southeast, edited by Jill E. Neitzel, pp. 165-181. The Amerind Foundation, Dragoon, and University of New Mexico Press, Albuquerque.'); INSERT INTO "work" VALUES (800, NULL, '1936', 0, 'Florence M. Hawley, 0', 'Field Manual of Prehistoric Southwestern Pottery Types', ' University of New Mexico Bulletin No. 291, Anthropological Series 1(4). University of New Mexico, Albuquerque. Revised Nov. 1, 1950.'); INSERT INTO "work" VALUES (359, NULL, '1940', 0, 'Mary Beth Chandler, 0', 'Field Notes on Excavation at Bc 52', ' Vivian Archive No. 252, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (794, NULL, '1931', 0, 'Florence M. Hawley, 0', 'Field Report', ' Tree-Ring Resarch 1931. Archive 1867, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (597, NULL, '1939', 0, 'Malcolm F. Farmer, 0', 'Field and Laboratory Reports, Archaeological Work Done in the Old Navajo Country, Summer of 1938', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (847, NULL, '1935', 0, 'Edgar L. Hewett, 0', 'Fieldwork in the Chaco during 1934', ' American Antiquity 1(2):120-121.'); INSERT INTO "work" VALUES (742, NULL, '1984', 0, 'E. Hadingham, 0', 'Film Review of "The Sun Dagger" produced by A', 'E. Sofaer, directed by A. Ihde. American Anthropologist 86:232-233.'); INSERT INTO "work" VALUES (351, NULL, '1984', 0, 'John B. Carlson, 0', 'Film Review of "The Sun Dagger" produced by A', 'P. Sofaer, directed by A. Ihde. Archaeology 37(2):78-79.'); INSERT INTO "work" VALUES (2322, NULL, '1991', 0, 'R. Gwinn Vivian, 0', 'Final Report', ' ARPA Permit 91-CHCU-1, Archaeological Testing-Chaco Culture National Historical Park. Report on file, Southwest Regional Office, National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (1045, NULL, '1933', 0, 'Dorothy Keur, 0', 'Final Report and Summary', ' Archive 1873, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2446, NULL, '1978', 0, 'David H. Williams, 0', 'Final Report for Multispectral Digital Image Processing Projects', ' Report for Contract NPS PX7485-8-0018. UNM College of Engineering, Bureau of Engineering Research, No. 256. University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1005, NULL, '1933', 0, 'Hurst R. Julian, 0', 'Final Report for the Chaco Field School-1933', ' Archive 1875, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (418, NULL, '1978', 0, 'Anne C. Cully, 0', 'Final Report on Pollen Analysis from Site 29SJ629, Chaco Canyon, New Mexico', ' Submitted in fulfillment of Contract PX 7000-5-0802, Archive 2069B, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1244, NULL, '1974', 0, 'David W. Love, 0', 'Final Report to the Student Allocations Committee: A 3700-Year Old Radiocarbon Date on a Burn in Chaco Canyon, New Mexico', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2256, NULL, '1934', 0, 'R. Gordon Vivian, 0', 'Final Report, Archeological Reconnaissance under Civil Works to February 15, 1934', ' National Park Service, Washington, D.C., and Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (1009, NULL, '1934', 0, 'Hurst R. Julian, 0', 'Final Report, F-68, Federal CWA Work Project 2003-B, Chaco Canyon, New Mexico', ' Ms.on file, National Park Service.'); INSERT INTO "work" VALUES (2447, NULL, '1979', 0, 'David H. Williams, 0', 'Final Report: Recognition of Natural Resources Using Multispectral Digital Images', ' Bureau of Business Research, College of Engineering, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1815, NULL, '1990', 0, 'Jonathan E. Reyman, 0', 'First 20 Arts and Sciences Lectures', ' College of Arts and Sciences, Illinois State University, Normal.'); INSERT INTO "work" VALUES (2060, NULL, '1930', 0, 'Winifred Stamm (editor of Digs, School of American Research, 0', 'First Month''s Excavation at Chaco Completed', ' Digs 2(2), El Palacio 29(1):46-56.'); INSERT INTO "work" VALUES (2008, NULL, '2002', 0, 'Cordelia Thomas Snow, 0', 'Fish Tales', ' The Use of Freshwater Fish in New Mexico. In Forward Into the Past. Papers in Honor of Teddy Lou and Francis Stickney, edited by Regge N. Wiseman, Thomas C. O''Laughlin, and Cordelia T. Snow, pp. 119-132. Papers of the Archaeological Society of New Mexico: 28. Albuquerque.'); INSERT INTO "work" VALUES (435, NULL, '1988', 0, 'Anne C. Cully, 0', 'Five Pollen Samples from Kin Nahasbas', ' In Historic Structure Report, Kin Nahasbas Ruin, Chaco Culture National Historical Park, New Mexico, by Frances Joan Mathien and Thomas C. Windes, pp. 289-293. Branch of Cultural Research, National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (432, NULL, '1985', 0, 'Anne C. Cully, 0', 'Five Pollen Samples from Kin Nahasbas, Chaco Canyon, New Mexico', ' Castetter Laboratory for Ethnobotanical Studies, Technical Series. Submitted in fulfillment of Contract PX 7029-5-3053. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published in 1988.'); INSERT INTO "work" VALUES (2368, NULL, '1991', 0, 'Miranda Warburton, 0', 'Flaked Stone from the Navajo Springs Great House, Arizona', ' Journal of California and Great Basin Anthropology 13:230-241.'); INSERT INTO "work" VALUES (1200, NULL, '2001', 0, 'Stephen H. Lekson, 0', 'Flight of the Anasazi', ' Archaeology 54(5):44-47.'); INSERT INTO "work" VALUES (1763, NULL, '1947', 0, 'Erik K. Reed, 0', 'Flood Damage to Chetro Ketl', ' El Palacio 54(10):238-240.'); INSERT INTO "work" VALUES (272, NULL, '1929', 0, 'Kirk Bryan, 0', 'Flood Water Farming', ' Geographical Review 19(3).'); INSERT INTO "work" VALUES (1952, NULL, '1937', 0, 'Donovan Senter, 0', 'Floor Deposition and Erosion in Chaco Canyon', ' In Tseh So, A Small House Ruin, Chaco Canyon, New Mexico, edited by Donald D. Brand, Florence M. Hawley, and Frank C. Hibben, pp. 134-139. University of New Mexico Bulletin 308, Anthropological Series 2(2). University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (824, NULL, '1981', 0, 'Ken Heil, 0', 'Floral Survey for Mesa Verde Cactus (Sclerocactus mesae-verdae)', ' Submitted in fulfillment of Contract PX 7029-1-0110. Ms. on file, Natural Resources Office, National Park Service, Intermountain Region, Santa Fe Office.'); INSERT INTO "work" VALUES (2098, NULL, '1980', 0, 'Mollie Struever, 0', 'Flotation Analysis at the Poco Site (29SJ1010), Chaco Canyon, New Mexico', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2185, NULL, '1993', 0, 'Mollie S. Toll, 0', 'Flotation and Macrobotanical Analyses at 29SJ629', ' In The Spadefoot Toad Site: Investigations at 29SJ629, Chaco Canyon, New Mexico: Artifactual and Biological Analyses, Volume II, edited by Thomas C. Windes, pp. 413-497. Reports of the Chaco Center No. 12. Branch of Cultural Research, National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (2172, NULL, '1981', 0, 'Mollie S. Toll, 0', 'Flotation and Macrobotanical Analysis at 29SJ629: A Pueblo I-II Village in Chaco Canyon', ' Castetter Laboratory for Ethnobotanical Studies Technical Series No. 49. Contract CX 7029-9-0203. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2183, NULL, '1988', 0, 'Mollie S. Toll, 0', 'Flotation and Macrobotanical Remains', ' In Historic Structure Report, Kin Nahasbas Ruin, Chaco Culture National Historical Park, New Mexico, by Frances Joan Mathien and Thomas C. Windes, pp. 295-300. Branch of Cultural Research, National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (2180, NULL, '1985', 0, 'Mollie S. Toll, 0', 'Flotation and Macrobotanical Remains at Two Chacoan Greathouses: Una Vida (29SJ391) and Kin Nahasbas (29SJ392)', ' Castetter Laboratory for Ethnobotanical Studies Technical Series No. 157. Department of Biology, University of New Mexico, Albuquerque. Submitted in fulfillment of Contracts No. PX 7029-4-C055 (Una Vida Flotation), PX 7029-4-C054 (Kin Nahasbas Flotation), and PX 7029-4-0688 (Una Vida and Kin Nahasbas Macro-remains). Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2067, NULL, '1990', 0, 'John R. Stein, 0', 'Focal Architectural Elements of the 12th and 13th Century Anasazi Built Environment Known from the San Juan Basin, Totah, Chuska Slope, Chinle Drainage, Defiance Plateau, Rio Puerco of the West and Tusayan Provences', ' Paper presented at the Conference on Pueblo Cultures in Transition: A.D. 1150-1350 in the American Southwest, Crow Canyon Archaeological Center, Cortez.'); INSERT INTO "work" VALUES (349, NULL, '1991', 0, 'Patricia H. Capone, 0; Margaret J. Schoeninger, 1', 'Food or Feathers: Amino Acid Racemization Analysis of Turkey Bone', ' Paper presented at the 56th Annual Meeting of the Society for American Archaeology, New Orleans.'); INSERT INTO "work" VALUES (2552, NULL, '1920', 0, 'Clark Wissler, 0', 'Foreword', ' In Pueblo Bonito, by George H. Pepper, pp. 1-2. American Museum of Natural History Papers Volume 27. New York.'); INSERT INTO "work" VALUES (1202, NULL, '2001', 0, 'Stephen H. Lekson, 0; Karin Burd, 1', 'Foreword', ' In Chaco Society and Polity: Papers from the 1999 Conference, edited by Linda S. Cordell, W. James Judge, and June-el Piper, pp. vii-ix. NMAC Special Publication No 4. New Mexico Archeological Council, Albuquerque.'); INSERT INTO "work" VALUES (2128, NULL, '1932', 0, 'A. B. Thomas, 0', 'Forgotten Frontiers', ' University of Oklahoma, Norman.'); INSERT INTO "work" VALUES (1785, NULL, '1946', 0, 'Paul D. Reiter, 0', 'Form and Function in Some Prehistoric Ceremonial Structures in the Southwest', ' Unpublished Ph.D. dissertation, Department of Anthropology, Harvard University, Cambridge, MA.'); INSERT INTO "work" VALUES (999, NULL, '1973', 0, 'W. James Judge, 0; James I. Ebert, 1; Robert K. Hitchcock, 2', 'Formal Sampling in Regional Archeological Survey', ' Paper presented at the 38th Annual Meeting of the Society for American Archeology, San Francisco. Published in 1975.'); INSERT INTO "work" VALUES (2137, NULL, '1978', 0, 'H. Wolcott Toll, III, 0', 'Formalization and Exchange: The Question of Social Mobilization of Basic Resources in Chaco Canyon', ' Dissertation Propsectus, Department of Anthropology, University of Colorado, Boulder. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1644, NULL, '1895', 0, 'Henry Osborn, 0; F., 1; Charles Earle, 2', 'Fossil Mammals of the Puerco Beds', ' Collection of 1892. American Museum of Natural History Bulletin 7:1-70.'); INSERT INTO "work" VALUES (181, NULL, '1983', 0, 'Julio L. Betancourt, 0; Paul S. Martin, 1; Thomas R. Van Devender, 2', 'Fossil Packrat Middens from Chaco Canyon, New Mexico: Cultural and Ecological Significance', ' In Chaco Canyon Country. A Field Guide to the Geomorphology, Quarternary Geology, Paleoecology, and Environmental Geology of Northwestern New Mexico, edited by Stephen G. Wells, David W. Love, and Thomas W. Gardner, pp. 207-217. American Geomorphological Field Group, 1983 Field Trip Guidebook. Adobe Press, Albuquerque.'); INSERT INTO "work" VALUES (177, NULL, '1984', 0, 'Julio L. Betancourt, 0', 'Fossil Packrat Middens from Sheep Camp Shelter (29SJ178)', ' Chapter 9 in Archaic Prehistory and Paleoenvironments in the San Juan Basin of New Mexico: The Chaco Shelters Project, edited by Alan H. Simmons, pp. 167-185. Museum of Anthropology Project Report Series No. 53. University of Kansas.'); INSERT INTO "work" VALUES (1776, NULL, '2000', 0, 'Paul F. Reed, 0', 'Foundations of Anasazi Culture: The Basketmaker-Pueblo Transition', ' University of Utah Press, Salt Lake City.'); INSERT INTO "work" VALUES (195, NULL, '1933', 0, 'Lansing B. Bloom, 0', 'Fray Estevan de Perea''s Relacion', ' New Mexico Historical Review 8(3):211-235.'); INSERT INTO "work" VALUES (1545, NULL, '1992', 0, 'Michael Moquin, 0', 'From Bis sa''ani to Picuris: Early Pueblo Adobe Technology of New Mexico and the Southwest', ' Traditions: The Adobe Journal 8:10-29.'); INSERT INTO "work" VALUES (759, NULL, '1938', 0, 'J. B. Hamilton, 0', 'Further Data on Threatening Rock', ' Southwestern Monuments Report, Supplement for April, pp. 371-372. Coolidge.'); INSERT INTO "work" VALUES (1073, NULL, '1938', 0, 'F. A. Kittredge, 0', 'Further Discussion on Stabilization of Threatening Rock', ' Southwestern Monuments Report Supplement for April, pp. 372-373. Coolidge.'); INSERT INTO "work" VALUES (1701, NULL, '1931', 0, 'W. W. Postlethwaite, 0', 'Further Excavation of a Small Ruin Southeast of Pueblo del Arroyo, June 19-20, 1931', ' Vivian Archive No. 1879, Reiter Papers 3:220-221. NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1702, NULL, '1931', 0, 'W. W. Postlethwaite, 0', 'Further Excavations of the Great Bowl of Chetro Ketl, Chaco Canyon, New Mexico, June 16-July 8, 1931', ' Vivian Archive, Reiter Papers. Archive 1890, 1899, 2125J NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (760, NULL, '1938', 0, 'J. B. Hamilton, 0', 'Further Studies of Stabilization of Threatening Rock', ' Southwestern Monuments Report, Supplement for April, pp. 366-371. Coolidge.'); INSERT INTO "work" VALUES (2369, NULL, '1996', 0, 'Miranda Warburton, 0; G. Lennis Berlin, 1', 'GIS Applications for Anasazi Site Assessments in the Sanders Rural Community, Arizona', ' Paper presented at the 61st Annual Meeting of the Society for American Archaeology, New Orleans.'); INSERT INTO "work" VALUES (672, NULL, '1996', 0, 'Kathryn Gabriel, 0', 'Gambler Way: Indian Gaming in Mythology, History, and Archaeology in North America', ' Johnson Books, Boulder.'); INSERT INTO "work" VALUES (1603, NULL, '2000', 0, 'Jill E. Neitzel, 0', 'Gender Hierarchies: A Comparative Analysis of Mortuary Data', ' In Women and Men in the Prehispanic Southwest: Labor, Power, and Prestige, edited by Patricia L. Crown, pp. 137-168. School of American Research Press, Santa Fe.'); INSERT INTO "work" VALUES (2118, NULL, '2000', 0, 'Christine R. Szuter, 0', 'Gender and Animals: Hunting Technology, Ritual, and Subsistence in the Greater Southwest', ' In Women and Men in the Prehispanic Southwest: Labor, Power, and Prestige, edited by Patricia L. Crown, pp. 197-220. School of American Research Press, Santa Fe.'); INSERT INTO "work" VALUES (1818, NULL, '1994', 0, 'Jonathan E. Reyman, 0', 'Gender and Class in Archeology: Then and Now', ' In Equity Issues for Women in Archeology, edited by Margaret C. Nelson, Sarah M. Nelson, and Alison Wylie, pp. 83-90. Archeological Papers of the American Anthropological Society, No. 5.'); INSERT INTO "work" VALUES (1528, NULL, '2000', 0, 'Barbara J. Mills, 0', 'Gender, Craft Production, and Inequality', ' In Women and Men in the Prehispanic southwest: Labor, Power, and Prestige, edited by Patricia L. Crown, pp. 301-343. School of American Research Press, Santa Fe.'); INSERT INTO "work" VALUES (619, NULL, '1931', 0, 'Grace Fisher, 0', 'General Observations of the Excavations at Chetro Ketl in 1931', ' Archive 1837, 1865, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (211, NULL, '1979', 0, 'Bruce Bradley, 0', 'General Observations on Chacoan Lithic Technology', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (217, NULL, '1997', 0, 'Bruce Bradley, 0', 'General Observations on Flaked Stone Technology', ' In Ceramics, Lithics, and Ornaments of Chaco Canyon, New Mexico. Analyses of Artifacts from the Chaco Project, 1971-1978, edited by Frances Joan Mathien, pp. 698-99. Publications in Archeology 18G, Chaco Canyon Studies. National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (286, NULL, '1995', 0, 'Wendy Bustard, 0', 'Genotypes of Space: A Spatial Analysis of Domestic Structures in Chaco Canyon', ' Paper presented at the 60th Annual Meeting of the Society for American Archaeology, Minneapolis.'); INSERT INTO "work" VALUES (2403, NULL, '1983', 0, 'Stephen G. Wells, 0; L. N. Smith, 1', 'Geologic Setting of Chaco Canyon Field Conference', ' In Chaco Canyon Country. A Field Guide to the Geomorphology, Quaternary Geology, Paleoecology, and Environmental Geology of Northwestern New Mexico, edited by Stephen G. Wells, David W. Love, and Thomas W. Gardner, pp. 27-31. American Geomorphological Field Group 1983 Field Trip Guidebook. Adobe Press, Albuquerque.'); INSERT INTO "work" VALUES (1247, NULL, '1977', 0, 'David W. Love, 0', 'Geology of Quaternary Deposits of Chaco Canyon, New Mexico', ' Draft of dissertation. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Revised 1980.'); INSERT INTO "work" VALUES (556, NULL, '1981', 0, 'James I. Ebert, 0; Galen N. Brown, 1', 'Geomorphic Processes Affecting the Visibility and Integrity of Cultural Resources at Chaco Culture National Historical Park', ' Field Reconnaissance, March 19-20, 1981. Ms. on file, NPS Chaco Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (740, NULL, '1983', 0, 'Alberto A. Gutierrez, 0', 'Geomorphic Processes and Sediment Transport in Badland Watersheds, San Juan County, New Mexico', ' In Chaco Canyon Country, A Field Guide to the Geomorphology, Quaternary Geology, Paleoecology, and Environmental Geology of Northwestern New Mexico, edited by S. G. Wells, D. W. Love, and F. W. Gardner, pp. 113-120. American Geomorphological Field Group 1983 Field Trip Guide Book. Adobe Press, Albuquerque.'); INSERT INTO "work" VALUES (1109, NULL, '1983', 0, 'Peter F. Lagasse, 0; Kenneth G. Eggert, 1; Keith A. Yarborough, 2', 'Geomorphic and Hydraulic Analyses for Erosion Control Planning at Chaco Culture National Historic Park', ' In Chaco Canyon Country. A Field Guide to the Geomorphology, Quaternary Geology, Paleoecology, and Environmental Geology of Northwestern New Mexico, edited by Stephen G. Wells, David W. Love, and Thomas W. Gardner, pp. 227-236. American Geomorphological Field Group 1983 Field Trip Guidebook. Adobe Press, Albuquerque.'); INSERT INTO "work" VALUES (1925, NULL, '1983', 0, 'Jerold David Schultz, 0', 'Geomorphology and Quaternary History of the Southeastern Chaco Dune Field, Northwestern New Mexico', ' In Chaco Canyon Country. A Field Guide to the Geomorphology, Quaternary Geology, Paleoecology, and Environmental Geology of Northwestern New Mexico, edited by S. G. Wells, D. W. Love, and T. W. Gardner, pp. 159-166. American Geomorphological Field Group, 1983 Field Trip Guidebook. Adobe Press, Albuquerque.'); INSERT INTO "work" VALUES (2395, NULL, '1981', 0, 'Stephen G. Wells, 0', 'Geomorphology and Surface Hydrology Applied to Landscape Reclamation in the Strippable Coal Belts of Northwestern New Mexico', ' Report to New Mexico Energy and Mineral Department and New Mexico Energy Institute, New Mexico Institute of Mining and Technology, Socorro.'); INSERT INTO "work" VALUES (1926, NULL, '1981', 0, 'J. D. Schultz, 0; S. G. Wells, 1', 'Geomorphology of the Chaco Dune Field, Northwestern New Mexico', ' Geological Society of American Abstracts with Programs 13:105.'); INSERT INTO "work" VALUES (1924, NULL, '1980', 0, 'Jerold David Schultz, 0', 'Geomorphology, Sedimentology, and Quaternary History of the Eolian Deposits, West-Central San Juan Basin, Northwest New Mexico', ' Unpublished M.S. thesis, Geology Department, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1748, NULL, '1901', 0, 'T. Mitchell Prudden, 0', 'Glimpses of the Great Plateau', ' Harper''s New Monthly Magazine 113:745-750.'); INSERT INTO "work" VALUES (2540, NULL, '2001', 0, 'Thomas C. Windes, 0; Peter J. McKenna, 1', 'Going Against the Grain', ' Wood Production in Chacoan Society. American Antiquity66(1):119-140.'); INSERT INTO "work" VALUES (166, NULL, '1934', 0, 'A. B. Bender, 0', 'Government Explorations in the Territory of New Mexico, 1846-1859', ' New Mexico Historical Review 9:1-32.'); INSERT INTO "work" VALUES (1193, NULL, '1999', 0, 'Stephen H. Lekson, 0', 'Great', ' In Great House Communities Across the Chacoan Landscape, edited by John Kantner and Nancy M. Mahoney, pp. 157-163. Anthropological Papers of the University of Arizona No. 64. University of Arizona Press, Tucson.'); INSERT INTO "work" VALUES (1160, NULL, '1987', 0, 'Stephen H. Lekson, 0', 'Great House Architecture of Chaco Canyon, New Mexico', ' Archaeology 40(3):22-29.'); INSERT INTO "work" VALUES (1667, NULL, '1898', 0, 'Stephen D. Peet, 0', 'Great Houses and Fortresses', ' American Antiquarian 20:315-338.'); INSERT INTO "work" VALUES (702, NULL, '1989', 0, 'Dennis Gilpin, 0', 'Great Houses and Pueblos in Northeastern Arizona', ' Paper presented at the 62nd Pecos Conference, Bandelier National Monument, Aug. 17-20.'); INSERT INTO "work" VALUES (1142, NULL, '1982', 0, 'Stephen H. Lekson, 0', 'Great Pueblo Architecture of Chaco Canyon', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Revised and published 1984.'); INSERT INTO "work" VALUES (1148, NULL, '1984', 0, 'Stephen H. Lekson, 0', 'Great Pueblo Architecture of Chaco Canyon', ' Publications in Archeology 18B, Chaco Canyon Studies. National Park Service, Albuquerque.'); INSERT INTO "work" VALUES (1158, NULL, '1986', 0, 'Stephen H. Lekson, 0', 'Great Pueblo Architecture of Chaco Canyon, New Mexico', ' University of New Mexico Press, Albuquerque.'); INSERT INTO "work" VALUES (579, NULL, '1942', 0, 'Francis H. Elmore, 0', 'Great Sanctuary', ' Desert Magazine 5:23.'); INSERT INTO "work" VALUES (1194, NULL, '1999', 0, 'Stephen H. Lekson, 0', 'Great Towns in the Southwest', 'In Great Towns and Regional Polities in the Prehistoric Southwest and Southeast, edited by Jill E. Neitzel, pp. 2-22. The Amerind Foundation, Dragoon, and University of New Mexico Press, Albuquerque.'); INSERT INTO "work" VALUES (1172, NULL, '1993', 0, 'Stephen H. Lekson, 0', 'Great Towns in the Southwest', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published 1999.'); INSERT INTO "work" VALUES (1433, NULL, '1989', 0, 'Frances Joan Mathien, 0; Thomas C. Windes, 1', 'Greathouse Revisited: Kin Nahasbas, Chaco Culture National Historical Park', ' In From Chaco to Chaco: Papers in Honor of Robert H. and Florence C. Lister, edited by Meliha S. Duran and David T. Kirkpatrick, pp. 11-34. Papers of the Archaeological Society of New Mexico: 15.'); INSERT INTO "work" VALUES (2521, NULL, '1993', 0, 'Thomas C. Windes, 0', 'Ground Stone, Chopping, and Percussion Tools from 29SJ 629', ' In The Spadefoot Toad Site: Investigations at 29SJ 629, Chaco Canyon, New Mexico: Artifactual and Biological Analyses, Volume II, edited by Thomas C. Windes, pp. 201-268. Reports of the Chaco Center No. 12. Branch of Cultural Research, National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (1271, NULL, '1979', 0, 'Forest P. Lyford, 0', 'Ground Water in the San Juan Basin, New Mexico and Colorado', ' Water-Resources Investigations 79-73. U.S.G.S., Albuquerque.'); INSERT INTO "work" VALUES (2559, NULL, '1939', 0, 'Richard Woodbury, 0', 'Ground and Pecked Stone Artifacts (Other Than Arrow Shaft Tools)', ' In Preliminary Report on the 1937 Excavations, Bc 50-51, Chaco Canyon, New Mexico, edited by Clyde Kluckhohn and Paul Reiter, pp. 58-79. University of New Mexico Bulletin No. 345, Anthropological Series 3(2). University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (136, NULL, '1967', 0, 'Elmer H. Baltz, 0; Samuel W. West, 1', 'Ground-Water Resources of the Southern Part of the Jicarilla Apache Indian Reservation and Adjacent Areas New Mexico', ' U.S.G.S. Water Supply Paper 1576-H. Government Printing Office, Washington, D.C.'); INSERT INTO "work" VALUES (135, NULL, '1959', 0, 'Elmer H. Baltz, 0; James E. Weir, 1', 'Guidebook of West-central New Mexico', ' New Mexico Geological Society, 10th Field Conference. New Mexico Geological Society, Socorro, NM.'); INSERT INTO "work" VALUES (1035, NULL, '1950', 0, 'V. C. Kelley, 0', 'Guidebook of the San Juan Basin, New Mexico and Colorado', ' 1st Field Conference. New Mexico Geological Society, Socorro.'); INSERT INTO "work" VALUES (4, NULL, '1949', 0, 'Richard N. Adams, 0', 'Half House: A Pit House in Chaco Canyon, New Mexico', ' M.A. thesis, Yale University, New Haven. Published in 1951.'); INSERT INTO "work" VALUES (5, NULL, '1951', 0, 'Richard N. Adams, 0', 'Half House: A Pithouse in Chaco Canyon, New Mexico', ' Papers of Michigan Academy of Science, Art and Letters No. 35:273-295. Ann Arbor, MI.'); INSERT INTO "work" VALUES (223, NULL, '1935', 0, 'Donald D. Brand, 0', 'Hawley''s Study of Chetro Ketl', ' El Palacio 38:17-29.'); INSERT INTO "work" VALUES (1909, NULL, '1992', 0, 'John D. Schelberg, 0', 'Hierarchical Organization as a Short-Term Buffering Strategy in Chaco Canyon', ' In Anasazi Regional Organization and the Chaco System, edited by David E. Doyel, pp. 59-71. Anthropological Papers No. 5. Maxwell Museum of Anthropology, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2078, NULL, '1992', 0, 'John R. Stein, 0; Judith E. Suiter, 1; Dabney Ford, 2', 'High Noon in Old Bonito', ' Sun, Shadow and the Geometry of the Chaco Complex. In Proceedings: The Mesa Verde Symposium on Anasazi Architecture and American Design, edited and coordinated by Baker H. Morrow and V. B. Price, pp. 205-231. Morrow and Co. Ltd., Albuquerque.'); INSERT INTO "work" VALUES (2079, NULL, '1997', 0, 'John R. Stein, 0; Judith E. Suiter, 1; Dabney Ford, 2', 'High Noon in Old Bonito', ' Sun, Shadow and the Geometry of the Chaco Complex. In Anasazi Architecture and American Design, edited by Baker H. Morrow and V. B. Price, pp. 133-148. University of New Mexico Press, Albuquerque.'); INSERT INTO "work" VALUES (659, NULL, '1978', 0, 'Theodore R. Frisbie, 0', 'High Status Burials in the Greater Southwest: An Interpretive Synthesis', ' In Across the Chichimec Sea. Papers in Honor of J. Charles Kelley, edited by Carroll L. Riley and Basil C. Hedrick, pp. 202-227. Southern Illinois University, Carbondale.'); INSERT INTO "work" VALUES (1068, NULL, '1980', 0, 'Mary Louise King, 0', 'High on a Butte, Time is a Dagger of the Sun', ' The Santa Fe Reporter 7:26, December 18.'); INSERT INTO "work" VALUES (2366, NULL, '1988', 0, 'Miranda Warburton, 0', 'Historic Artifacts of the Chaco Additions Inventory Survey', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2591, NULL, '1983', 0, 'Michael Zeilik, 0', 'Historic Puebloan Sun Watching', ' Paper presented at the First International Ethnoastronomy Conference, Smithsonian Institution, Washington, D.C.'); INSERT INTO "work" VALUES (1432, NULL, '1988', 0, 'Frances Joan Mathien, 0; Thomas C. Windes, 1', 'Historic Structure Report, Kin Nahasbas Ruin, Chaco Culture National Historical Park, New Mexico', ' Branch of Cultural Research, National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (207, NULL, '1981', 0, 'James E. Bradford, 0', 'Historic Structure Report, Tsin Kletzin Ruin, Chaco Culture National Historical Park, New Mexico', ' Southwest Cultural Resources Center, National Park Service, Intermountain Region, Santa Fe.'); INSERT INTO "work" VALUES (830, NULL, '1904', 0, 'Edgar L. Hewett, 0', 'Historic and Prehistoric Ruins of the Southwest and Their Preservation', ' U.S. Department of Interior. General Land Office Circular. Washington, D.C.'); INSERT INTO "work" VALUES (1664, NULL, '1896', 0, 'Stephen D. Peet, 0', 'History and Architecture of the Tusayans', ' American Antiquarian 18:1-21.'); INSERT INTO "work" VALUES (134, NULL, '1966', 0, 'Elmer H. Baltz, 0; Sidney R. Ash, 1; Roger Y. Anderson, 2', 'History of Nomenclature and Stratigraphy of Rocks Adjacent to the Cretaceous-Tertiary Boundary, Western San Juan Basin, New Mexico', ' U.S.G.S. Geological Survey Professional Paper 524D. Government Printing Office, Washington, D.C.'); INSERT INTO "work" VALUES (1385, NULL, '1982', 0, 'Frances Joan Mathien, 0', 'History of Rock Art Studies in Chaco Canyon as of June 1982', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (693, NULL, '1984', 0, 'William B. Gillespie, 0', 'Holocene Climate and Environment at Chaco Canyon', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published in 1985.'); INSERT INTO "work" VALUES (697, NULL, '1985', 0, 'William B. Gillespie, 0', 'Holocene Climate and Environment of Chaco Canyon', ' In Environment and Subsistence of Chaco Canyon, New Mexico, edited by Frances Joan Mathien, pp. 13-45. Publications in Archeology 18E, Chaco Canyon Studies. National Park Service, Albuquerque.'); INSERT INTO "work" VALUES (182, NULL, '1980', 0, 'Julio L. Betancourt, 0; Thomas R. Van Devender, 1', 'Holocene Environments in Chaco Canyon, New Mexico: The Packrat Midden Record', ' Contract PX 7486-9-0098 to the Department of Geosciences, University of Arizona, and the Arizona-Sonora Desert Museum, Tucson. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1223, NULL, '1914', 0, 'Louise M. Little, 0', 'Homes of the Prehistoric Cliff and Cave Dwellers in New Mexico', ' Overland Monthly 63:221-230.'); INSERT INTO "work" VALUES (758, NULL, '1990', 0, 'Stephen A. Hall, 0', 'Holocene Landscapes of the San Juan Basin, New Mexico; Geomorphic, Climatic, and Cultural Dynamics', ' In Archaeological Geology of North America, Centennial Special Volume No. 4. edited by N. P. Lasca and J. Donahue, pp. 323-334. Geological Society of America, Boulder.'); INSERT INTO "work" VALUES (755, NULL, '1983', 0, 'Stephen A. Hall, 0', 'Holocene Stratigraphy and Paleoecology of Chaco Canyon', ' In Chaco Canyon Country. A Field Guide to the Geomorphology, Quaternary Geology, Paleoecology, and Environmental Geology of Northwestern New Mexico, edited by Stephen G. Wells, David W. Love and Thomas W. Gardner, pp. 219-226. American Geomorphological Field Guide 1983 Field Trip Guidebook. Adobe Press, Albuquerque..'); INSERT INTO "work" VALUES (753, NULL, '1981', 0, 'Stephen A. Hall, 0', 'Holocene Vegetation at Chaco Canyon: Pollen Evidence from Alluviation and Packrat Middens', ' Paper presented at the 46th Annual Meeting of the Society for American Archaeology, San Diego.'); INSERT INTO "work" VALUES (183, NULL, '1981', 0, 'Julio L. Betancourt, 0; Thomas R. Van Devender, 1', 'Holocene Vegetation in Chaco Canyon, New Mexico', ' Science 214(4521):656-658.'); INSERT INTO "work" VALUES (257, NULL, '1981', 0, 'David M. Brugge, 0', 'Horses and Horsemen in Early Native American Art', ' In Collected Papers in Honor of Erik Kellerman Reed, edited by Albert H. Schroeder, pp. 236-250. Papers of the Archaeological Society of New Mexico: 6. Albuquerque.'); INSERT INTO "work" VALUES (1040, NULL, '2000', 0, 'James W. Kendrick, 0; W. James Judge, 1', 'Household Economic Autonomy and Great House Development in the Lowry Area', ' In Great House Communities Across the Chacoan Landscape, edited by John Kantner and Nancy M. Mahoney, pp. 113-129. Anthropological Papers of the University of Arizona No. 64. The University of Arizona Press, Tucson.'); INSERT INTO "work" VALUES (743, NULL, '2001', 0, 'Melissa Hagstrum, 0', 'Household Production in Chaco Canyon Society', ' American Antiquity 66(1):47-55.'); INSERT INTO "work" VALUES (1557, NULL, '1965', 0, 'Lewis H. Morgan, 0', 'Houses and House-Life of the American Aborigines', ' University of Chicago Press, Chicago.'); INSERT INTO "work" VALUES (617, NULL, '1999', 0, 'Suzanne K. Fish, 0', 'How Complex Were the Southwestern Great Towns'' Polities? In Great Towns and Regional Polities in the Prehistoric American Southwest and Southeast, edited by Jill E', 'Neitzel, pp. 45-58. The Amerind Foundation, Dragoon, and University of New Mexico Press, Albuquerque.'); INSERT INTO "work" VALUES (618, NULL, '1999', 0, 'Suzanne K. Fish, 0; J. F. Scarry, 2', 'How Great Were the Polities of the Southwest and Southeast? In Great Towns and Regional Polities in the Prehistoric American Southwest, edited by Jill E', 'Neitzel, pp. 75-80. The Amerind Foundation, Dragoon, and University of New Mexico Press, Albuquerque.'); INSERT INTO "work" VALUES (396, NULL, '1999', 0, 'Linda S. Cordell, 0', 'How Were Precolumbian Southwestern Polities Organized? In Great Towns and Regional Polities in the Prehistoric American Southwest and Southeast, edited by Jill E', 'Neitzel, pp. 81-93. The Amerind Foundation, Dragoon, and the University of New Mexico Press, Albuquerque.'); INSERT INTO "work" VALUES (2544, NULL, '1980', 0, 'Joseph C. Winter, 0', 'Human Adaptations in a Marginal Environment', ' In Human Adaptations in a Marginal Environment: The UII Mitigation Project, edited by James L. Moore and Joseph C. Winter, pp. 483-520. Office of Contract Archeology, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (466, NULL, '1985', 0, 'Jeffrey S. Dean, 0; Robert E. Euler, 1; George J. Gumerman, 2; Fred Plog, 3; Richard H. Hevly, 4; Thor N. V. Karlstrom, 5', 'Human Behavior, Demography, and Paleoenvironment on the Colorado Plateaus', ' American Antiquity 50(3):537-554.'); INSERT INTO "work" VALUES (17, NULL, '1981', 0, 'Nancy J. Akins, 0', 'Human Burial Practices within Chaco Canyon', ' Paper presented at the 46th Annual Meeting of the Society for American Archaeology, San Diego, April 29-May 2.'); INSERT INTO "work" VALUES (48, NULL, '1981', 0, 'Nancy J. Akins, 0; John D. Schelberg, 1', 'Human Burial Practices within Chaco Canyon', ' Paper presented at the 46th Annual Meeting of the Society for American Archaeology, San Diego. Published in 1984.'); INSERT INTO "work" VALUES (1062, NULL, '1972', 0, 'Timothy L. Kimball, 0', 'Human Carrying Capacity, Aboriginal Agriculture, and the Prehistory of Chaco Canyon, New Mexico', ' Anthropology 489 paper. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1678, NULL, '1906', 0, 'George H. Pepper, 0', 'Human Effigy Vases from Chaco Canyon, New Mexico', ' In Boas Anniversary Volume: Anthropological Papers Written in Honor of Franz Boas, pp. 320-334. G. E. Stechert & Co., New York.'); INSERT INTO "work" VALUES (1769, NULL, '1965', 0, 'Erik K. Reed, 0', 'Human Skeletal Material from Kin Kletso', ' In Kin Kletso. A Pueblo III Community in Chaco Canyon, New Mexico, by Gordon Vivian and Tom W. Mathews, pp. 105. Southwest Monuments Association Technical Series 6(1 and 2).'); INSERT INTO "work" VALUES (1768, NULL, '1962', 0, 'Erik K. Reed, 0', 'Human Skeletal Material from Site 59, Chaco Canyon National Monument', ' El Palacio 69(4):240-247.'); INSERT INTO "work" VALUES (38, NULL, '1987', 0, 'Nancy J. Akins, 0', 'Human Skeletal Remains from Pueblo Alto', ' In Investigations at the Pueblo Alto Complex, Chaco Canyon, New Mexico 1975-1979. Volume III: Artifactual and Biological Analyses, edited by Frances Joan Mathien and Thomas C. Windes, pp. 789-792. Publications in Archeology 18F, Chaco Canyon Studies. National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (1450, NULL, '1972', 0, 'Martin T. Mayer, 0', 'Hungo Pavi, Stabilization Report, Chaco Canyon National Monument, 1972', ' Stabilization report on file in the NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (825, NULL, '1971', 0, 'Sam R. Henderson, 0', 'Hungo Pavie Ruin, Chaco Canyon National Monument, Stabilization Report, 1971', ' Ms. on file, Chaco Culture National Historical Park and NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1110, NULL, '1981', 0, 'Peter F. Lagasse, 0; William B. Gillespie, 1; Kenneth G. Eggert, 2', 'Hydraulic Engineering Analysis of Prehistoric Water Controlled Systems at Chaco Canyon, New Mexico', ' Paper presented at the 46th Annual Meeting of the Society for American Archaeology, San Diego. Published in 1984.'); INSERT INTO "work" VALUES (1111, NULL, '1984', 0, 'Peter F. Lagasse, 0; William B. Gillespie, 1; Kenneth G. Eggert, 2', 'Hydraulic Engineering Analysis of Prehistoric Water Controlled Systems at Chaco Canyon, New Mexico', ' In Recent Research on Chaco Prehistory, edited by W. James Judge and John D. Schelberg, pp. 187-211. Reports of the Chaco Center No. 8. Division of Cultural Research, National Park Service, Albuquerque.'); INSERT INTO "work" VALUES (2084, NULL, '1983', 0, 'William G. Stone, 0; Forest P. Lyford, 1; Peter F. Frenzel, 2; Nancy H. Mizell, 3; Elizabeth T. Padgett, 4', 'Hydrogeology and Water Resources of San Juan Basin, New Mexico', ' Hydrologic Report No. 6. New Mexico Bureau of Mines and Mineral Resources, Socorro.'); INSERT INTO "work" VALUES (1044, NULL, '1996', 0, 'John Michael Kernodle, 0', 'Hydrology and Steady-State Simulation of Ground-Water Flow in the San Juan Basin, New Mexico, Colorado, Arizona, and Utah', ' U.S.G.S. Water Resources Investigation Report 95-4187, Albuquerque.'); INSERT INTO "work" VALUES (2578, NULL, '1875', 0, 'H. C. Yarrow, 0', 'I', ' General Itinerary. In Appendix I1. Geological Report, Field Season of 1874, pp. 1059-1068. In Annual Report of the Chief of Engineers to the Secretary of War for the Year 1875. In Two Parts. Part II. 44th Congress, 1st Session Ex. Doc. 1, Part 2, Vol. II. Government Printing Office, Washington, D.C.'); INSERT INTO "work" VALUES (2449, NULL, '2002', 0, 'Jay H. Williams, 0; Taft J. Blackhorse, 1; John R. Stein, 2; Richard Friedman, 3', 'Iakaah: Chaco Sacred Schematics', ' Paper presented at the 67th Annual Meeting of the Society for American Archaeology, Denver.'); INSERT INTO "work" VALUES (1419, NULL, '2000-01', 0, 'Frances Joan Mathien, 0', 'Identifying Sources of Prehispanic Turquoise in North America: Problems and Implications for Interpreting Social Organization', ' Beads, Journal of the Society of Bead Researchers 12-13:17-37.'); INSERT INTO "work" VALUES (1415, NULL, '1996', 0, 'Frances Joan Mathien, 0', 'Identifying Sources of Prehistoric Turquoise in North America: Problems and Implications for Social Organization', ' Paper presented at the Bead Expo ''96, San Antonio.'); INSERT INTO "work" VALUES (2313, NULL, '1983', 0, 'R. Gwinn Vivian, 0', 'Identifying and Interpreting Chacoan Roads: An Historical Perspective', ' In Chaco Roads Project Phase I, edited by Chris Kincaid, pp. 3-1 to 3-32. Bureau of Land Management, Albuquerque.'); INSERT INTO "work" VALUES (615, NULL, '1937', 0, 'Thomas Field, 0', 'Implements of Percussion and Abrasion Found in Bc 51', ' Archive 1731B, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1856, NULL, '1984', 0, 'C. Ronald, 0; Jill E. Sall, 1', 'In Defense of Migration and Culture History Studies: The Chaco-Ancestral Keresan Cultural Continuum', ' Journal of Intermountain Archeology 3:53-71.'); INSERT INTO "work" VALUES (1029, NULL, '1998', 0, 'Timothy M. Kearns, 0', 'In and Out, Up and Down: Basketmaker and Early Pueblo Settlement in Tohatchi Flats, New Mexico', ' Paper presented at the 63rd Annual Meeting of the Society for American Archaeology, Seattle.'); INSERT INTO "work" VALUES (1536, NULL, '1985', 0, 'William L. Minear, 0; Stanley Rhine, 1', 'Increased Radiographic Density in Lumbar Vertebrae from Prehistoric New Mexico', ' In Health and Disease in the Prehistoric Southwest, edited by Charles F. Merbs and Robert J. Miller, pp. 1-8. Anthropological Research Papers No. 34. Arizona State University, Tempe.'); INSERT INTO "work" VALUES (2150, NULL, '1987', 0, 'H. Wolcott Toll, III, 0', 'Independent Observations of the Plaza 2 Stratigraphy by David Love and David Weide', ' In Investigations at the Pueblo Alto Complex, Chaco Canyon, New Mexico, 1975-1979. Volume IV. Microfiche edited by Thomas C. Windes and Frances Joan Mathien, MF245 to MF-246. Publications in Archeology 18F, Chaco Canyon Studies. National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (721, NULL, '1913', 0, 'Pliny E. Goddard, 0', 'Indians of the Southwest', ' Handbook Series No. 2. American Museum of Natural History, New York.'); INSERT INTO "work" VALUES (876, NULL, '1978', 0, 'William C. Hunter, 0', 'Indications from Rabbit Mandible Bones regarding Forestation at Chaco Canyon between A', '. 750 and 1200. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1717, NULL, '1977', 0, 'Loren D. Potter, 0; R. Young, 1', 'Indicator Plants and Archeological Sites, Chaco Canyon National Monument', ' Submitted to American Antiquity. Ms. on file, Biology Department, University of New Mexico, Albuquerque, and NPS, Intermountain Region, Santa Fe Office.'); INSERT INTO "work" VALUES (1718, NULL, '1983', 0, 'Loren D. Potter, 0; R. Young, 1', 'Indicator Plants and Archeological Sites, Chaco Canyon National Monument', ' New Mexico Archaeology and History 1:19-37. COAS, Las Cruces.'); INSERT INTO "work" VALUES (394, NULL, '1996', 0, 'Linda S. Cordell, 0', 'Indigenous Farmers', ' In The Cambridge History of the Native Peoples of the Americas. Volume I, Parts 1 and 2, edited by Bruce G. Trigger and Wilcomb E. Washburn, pp. 201-266. Cambridge University Press, England.'); INSERT INTO "work" VALUES (1977, NULL, '1974', 0, 'Charles T. Siemers, 0; Norman R. King, 1', 'Inoceramus Accumulations in Tidal Channels, Cliff House Sandstone (Upper Cretaceous), Chaco Canyon, New Mexico', ' Ms. in possession of authors.'); INSERT INTO "work" VALUES (1777, NULL, '1996', 0, 'Paul F. Reed, 0; Scott Wilson, 1', 'Intensive and Widespread: The Basketmaker III Occupation of Cove-Redrock Valley, Northeastern Arizona', ' Paper presented at the 61st Annual Meeting of the Society for American Archaeology, New Orleans.'); INSERT INTO "work" VALUES (1022, NULL, '1998', 0, 'John Kantner, 0; Nate Bower, 1; Jeffrey Ladwig, 2; Jacob Perlitz, 3; Steve Hatta, 4', 'Interaction Between Chaco Anasazi Communities: An X-Ray Fluorescence Trace Element Analysis', ' Paper presented at the 63rd Annual Meeting of the Society for American Archaeology, Seattle.'); INSERT INTO "work" VALUES (1023, NULL, '2000', 0, 'John Kantner, 0; Nate Bower, 1; Jeffrey Ladwig, 2; Jacob Perlitz, 3; Steve Hatta, 4; Darren Greve, 5', 'Interaction Between Chaco Anasazi Communities: An X-Ray Fluorescence Trace Element Analysis of Chacoan Ceramics', ' In Great House Communities Across the Chacoan Landscape, edited by John Kantner and Nancy M. Mahoney, pp. 130-146. Anthropological Papers of the University of Arizona No. 64. University of Arizona Press, Tucson.'); INSERT INTO "work" VALUES (1278, NULL, '1976', 0, 'Thomas R. Lyons, 0', 'Interdisciplinary Bibliography, Chaco Canyon Region, New Mexico', ' On file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2119, NULL, '1994', 0, 'Christine Szuter, 0; William B. Gillespie, 1', 'Interpreting Use of Animal Resources at Prehistoric American Southwest Communities', ' In The Ancient Southwestern Community: Models and Methods for the Study of Prehistoric Social Organization, edited by W. H. Wills and Robert D. Leonard, pp. 67-76. University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1583, NULL, '1987', 0, 'J. W. Mytton, 0; G. B. Schneider, 1', 'Interpretive Geology of the Chaco Area, Northwestern New Mexico', ' U.S. Geological Survey Map I-1777. Miscellaneous Investigations Series. Government Printing Office, Washington, D.C.'); INSERT INTO "work" VALUES (1539, NULL, '1993', 0, 'Jeanette S. Mobley-Tanaka, 0', 'Intracommunity Interactions at Chimney Rock: The Inside View of the Outlier Problem', ' In The Chimney Rock Symposium, October 20-21, 1990, Durango, Colorado, edited by J. McKim Malville and Gary Matlock, pp. 37-42. U.S.D.A. Forest Service General Technical Report RM-227. Rocky Mountain Forest and Range Experimental Station, Fort Collins, CO.'); INSERT INTO "work" VALUES (227, NULL, '1937', 0, 'Donald D. Brand, 0', 'Introduction', ' In Tseh So, A Small House Ruin, Chaco Canyon, New Mexico. Preliminary Report, by Donald D. Brand, Florence M. Hawley, and Frank C. Hibben, pp. 17-37. University of New Mexico Bulletin No. 308, Anthropological Series 2(2). University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2102, NULL, '1996', 0, 'David E. Stuart, 0', 'Introduction', ' In Pueblo Bonito, by George H. Pepper. University of New Mexico Press, Albuquerque. '); INSERT INTO "work" VALUES (526, NULL, '1983', 0, 'Dwight L. Drager, 0', 'Introduction', ' In Remote Sensing in Cultural Resource Management: The San Juan Basin Project, edited by Dwight L. Drager and Thomas R. Lyons, pp. 1-3. Cultural Resources Management Division, National Park Service, Washington, D.C.'); INSERT INTO "work" VALUES (1178, NULL, '1995', 0, 'Stephen H. Lekson, 0', 'Introduction (to Special Issue: Migration and the Movement of Southwestern Peoples, guest edited by Catherine M', 'Cameron). Journal of Anthropological Archaeology 14(2):99-103.'); INSERT INTO "work" VALUES (993, NULL, '1984', 0, 'W. James Judge, 0', 'Introduction to Research of the Chaco Center: An Interim Report', ' In Recent Research on Chaco Prehistory, edited by W. James Judge and John D. Schelberg, pp. 1-2. Reports of the Chaco Center No. 8. Division of Cultural Research, National Park Service, Albuquerque.'); INSERT INTO "work" VALUES (1089, NULL, '2001', 0, 'Jane Kolber, 0', 'Introduction: Section Dedicated to Navajo Rock Art', ' In American Indian Rock Art, Volume 27, edited by Steven M. Frees and Alanah Woody, pp. 1-3. American Rock Art Research Association, Tucson.'); INSERT INTO "work" VALUES (176, NULL, '1979', 0, 'Julio L. Betancourt, 0', 'Inventory and Provenience Check', ' Tree-Ring Specimens from Chetro Ketl, Chaco Canyon, New Mexico. Contract with the Laboratory of Tree-Ring Research, University of Arizona, Tucson. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2052, NULL, '1963', 0, 'Roderick Sprague, 0; Aldo Signori, 1', 'Inventory of Prehistoric Southwestern Bells', ' The Kiva 28(4):1-20.'); INSERT INTO "work" VALUES (2051, NULL, '1964', 0, 'Roderick Sprague, 0', 'Inventory of Prehistoric Southwestern Bells: Additions and Corrections I', ' The Kiva 30(1):18-24.'); INSERT INTO "work" VALUES (1656, NULL, '1988', 0, 'Natalie B. Pattison, 0', 'Inventory of Stairways and Trails in Chaco Culture National Historical Park', ' Ms. on file, NPS Chaco Culture NHP Museum Archives, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1918, NULL, '2002', 0, 'Michael A. Schillaci, 0; Christopher M. Stojanowski, 1', 'Investigating Social Organization at Aztec Ruins Using Determinant Ratio Analysis', ' In Forward Into the Past. Papers in Honor of Teddy Lou and Francis Stickney, edited by Regge N. Wiseman, Thomas C. O''Laughlin, and Cordelia T. Snow, pp. 93-104. Archaeological Society of New Mexico: 28. Albuquerque.'); INSERT INTO "work" VALUES (2514, NULL, '1987', 0, 'Thomas C. Windes, 0', 'Investigations at the Pueblo Alto Complex, Chaco Canyon, New Mexico, 1975-1979', ' Volumes I and II. Publications in Archeology 18F, Chaco Canyon Studies. National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (2511, NULL, '1985', 0, 'Thomas C. Windes, 0', 'Investigations at the Pueblo Alto Complex, Chaco Canyon, New Mexico: Tests and Excavations 1975-1979', ' Part I-Architecture and Stratigraphy. Chapter 5. Natural Environment. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Revised and published in 1987.'); INSERT INTO "work" VALUES (1466, NULL, '1980', 0, 'Peter J. McKenna, 0', 'Investigations into Bone Tools from 29SJ1360, Chaco Canyon, New Mexico', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Revised and published in 1984.'); INSERT INTO "work" VALUES (1894, NULL, '1981', 0, 'Cherie Scheick, 0', 'Investigations into Land Patterning in the South Hospah Mine Area, New Mexico', ' Contract Archaeology Progress Report 028. School of American Research, Santa Fe.'); INSERT INTO "work" VALUES (636, NULL, '1973', 0, 'Leo L. Flynn, Jr., 0', 'Investigations of Classic Pueblo Occupation of Chaco Canyon, New Mexico (Part I', ' Classic Pueblo Size and Population Estimates, and Part II. Time Period of Classic Development). Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1455, NULL, '1977', 0, 'Terry Mazany, 0; Juan Carlos Lerman, 1; Austin Long, 2', 'Isotope Dendroclimatology: Natural Stable Carbon Isotope Analysis of Tree Rings from an Archaeological Site', ' Poster Session at the American Association for the Advancement of Science, Washington, D.C. entitled Climatic Sensitivity in 13C/12C Values in Tree Rings from Chaco Canyon.'); INSERT INTO "work" VALUES (2583, NULL, '1987', 0, 'M. Jane Young, 0', 'Issues in the Archaeoastromonical Endeavors in the American Southwest', ' In Astronomy and Ceremony in the Prehistoric Southwest, edited by John B. Carlson and W. James Judge, pp. 218-232. Papers of the Maxwell Museum of Anthropology No. 2. University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (387, NULL, '1875', 0, 'E. D. Cope, 0', 'J1', ' Report on the Remains of Population Observed on and near the Eocene Plateau of Northwestern New Mexico. In Appendix J. Ethnology, Philology, and Ruins, pp. 1086-1093. In Annual Report of the Chief of Engineers of the Secretary of War for the Year 1895. In Two Parts, Part II. 44th Congress, 1st Session, Ex. Doc. 1, Pt. 2, Vol. II. Government Printing Office, Washington, D.C.'); INSERT INTO "work" VALUES (1224, NULL, '1875', 0, 'Oscar von Loew, 0', 'J2', 'Report on the Ruins of New Mexico. In Appendix J. Ethnology, Philology, and Ruins, pp. 1094-1098. In Annual Report of the Chief of Engineers to the Secretary of War for the Year 1875. In Two Parts, Part II. 44th Congress, 1st Session, Ex. Doc. 1, Part 2, Vol. II. Government Printing Office, Washington, D.C.'); INSERT INTO "work" VALUES (1091, NULL, '1999', 0, 'Jane Kolber, 0; Helen Crotty, 1', 'James G', 'Bain-Innovator in Rock Art Field Schools. Poster presented at the 72nd Pecos Conference, Pinedale, AZ.'); INSERT INTO "work" VALUES (1107, NULL, '1992', 0, 'Barry S. Kues, 0', 'James Hervey Simpson and the First Record of San Juan Basin Geology', ' In San Juan Basin IV, edited by Spencer G. Lucas, Barry S. Kues Thomas E. Williamson, and Adrian P. Hunt, pp. 83-101. New Mexico Geological Guidebook, 43rd Field Conference.'); INSERT INTO "work" VALUES (920, NULL, '1978', 0, 'E. Wesley Jernigan, 0', 'Jewelry of the Prehistoric Southwest', ' School of American Research and University of New Mexico Press, Santa Fe and Albuquerque.'); INSERT INTO "work" VALUES (877, NULL, '1911', 0, 'Ellsworth Huntington, 0', 'Journal Notes, April 14-July 15, 1922', ' Original at Yale University, New Haven.'); INSERT INTO "work" VALUES (1990, NULL, '1850', 0, 'James Hervey Simpson, 0', 'Journal of a Military Reconnaissance from Santa Fe, New Mexico, to the Navajo Country', ' In Report of the Secretary of War to the 31st Congress, 1st Session, Senate Executive Document, No. 65 , pp. 55-168. Union Office, Washington, D.C.'); INSERT INTO "work" VALUES (1991, NULL, '1852', 0, 'James Hervey Simpson, 0', 'Journal of a Military Reconnaissance from Santa Fe, New Mexico, to the Navajo Country, made with the Troops under the Command of Brevet Lieutenant Colonel John M', 'Washington, Chief of Ninth Military Department, and Governor of New Mexico, in 1849. Lippincott, Grambo and Co., Philadelphia.'); INSERT INTO "work" VALUES (2602, NULL, '1986', 0, 'Michael Zeilik, 0', 'Keeping a Seasonal Calendar at Pueblo Bonito', ' Archaeoastronomy 8:79-87.'); INSERT INTO "work" VALUES (2603, NULL, '1986', 0, 'Michael Zeilik, 0', 'Keeping the Sacred and Planting Calendar: Archaeoastronomy in the Pueblo Southwest', ' In World Archaeoastronomy. Selected Papers from the 2nd Oxford International Conference on Archaeoastronomy, Held at Merida, Yucatan, Mexico, 13-17 January 1986, edited by Anthony F. Aveni, pp. 143-166. Cambridge University Press, New York.'); INSERT INTO "work" VALUES (2594, NULL, '1984', 0, 'Michael Zeilik, 0', 'Keeping the Seasonal Calendar at Pueblo Bonito', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published in 1986.'); INSERT INTO "work" VALUES (1521, NULL, '2001', 0, 'Jay Miller, 0', 'Keres: Engendered Key to the Pueblo Puzzle', ' Ethnohistory 48(3):495-514.'); INSERT INTO "work" VALUES (2338, NULL, '1962', 0, 'Charles B. Voll, 0', 'Kin Bineola, Chaco Canyon National Monument, New Mexico, Stabilization Report, 1962', ' Stabilization report on file in the NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (2299, NULL, '1965', 0, 'R. Gordon Vivian, 0; Tom W. Mathews, 1', 'Kin Kletso: A Pueblo III Community in Chaco Canyon, New Mexico', ' Technical Series 6(1):1-115. Southwest Parks and Monuments Association, Globe, AZ.'); INSERT INTO "work" VALUES (788, NULL, '1932', 0, 'Katherine Harwood, 0', 'Kiva G [Chetro Ketl]', ' Archive 1877, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1163, NULL, '1989', 0, 'Stephen H. Lekson, 0', 'Kivas? In The Architecture of Social Integration in Prehistoric Pueblos, edited by William D', 'Lipe and Michelle Hegemon, pp. 161-167. Crow Canyon Archaeological Center, Cortez.'); INSERT INTO "work" VALUES (2318, NULL, '1988', 0, 'R. Gwinn Vivian, 0', 'Kluckhohn Reappraised: The Chacoan System as an Egalitarian Enterprise', ' Paper Presented at the 53rd Annual Meeting of the Society for American Archaeology, Phoenix.'); INSERT INTO "work" VALUES (2319, NULL, '1989', 0, 'R. Gwinn Vivian, 0', 'Kluckhohn Reappraised: The Chacoan System as an Egalitarian Enterprise', ' Journal of Anthropological Research 45(1):101-113.'); INSERT INTO "work" VALUES (801, NULL, '1937', 0, 'Florence M. Hawley, 0', 'Kokopelli of the Prehistoric Southwestern Pueblo Pantheon', ' American Anthropologist 39:644-646.'); INSERT INTO "work" VALUES (1143, NULL, '1982', 0, 'Stephen H. Lekson, 0', 'Labor Investment in Chacoan Building', ' Paper presented at the New Mexico Archeological Council Workshop No. 1: Archeological Research in the San Juan Basin. Chaco Culture National Historical Park, NM. Published in 1982.'); INSERT INTO "work" VALUES (1144, NULL, '1982', 0, 'Stephen H. Lekson, 0', 'Labor Investment in Chacoan Building', ' New Mexico Archeological Council Newsletter 4(5-6):21-22.'); INSERT INTO "work" VALUES (2278, NULL, '1948', 0, 'R. Gordon Vivian, 0', 'Labor and Material Estimates for Pueblo del Arroyo, Chaco Canyon National Monument', ' Ms. on file, Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (850, NULL, '1940', 0, 'Edgar L. Hewett, 0; Wayne L. Mauzy, 1', 'Landmarks of New Mexico', ' University of New Mexico Press, Albuquerque.'); INSERT INTO "work" VALUES (531, NULL, '1983', 0, 'Dwight L. Drager, 0; Jerry L. Livingston, 1', 'Large-Area Base Maps for Cultural Resource Studies', ' In Remote Sensing in Cultural Resources Management: The San Juan Basin Project, edited by Dwight L. Drager and Thomas R. Lyons, pp. 27-31. Cultural Resources Management Division, National Park Service, Washington, D.C.'); INSERT INTO "work" VALUES (1153, NULL, '1985', 0, 'Stephen H. Lekson, 0', 'Largest Settlement Size and the Interpretation of Socio-Political Complexity at Chaco Canyon, New Mexico', ' Haliksa''i: UNM Contributions to Anthropology 4:68-75.'); INSERT INTO "work" VALUES (1475, NULL, '1988', 0, 'Peter J. McKenna, 0', 'Late Bonito Phase Developments at the Aztec Ruins, New Mexico', ' Paper presentedat the 53rd Annual Meeting of the Society for American Archaeology, Phoenix.'); INSERT INTO "work" VALUES (2003, NULL, '1983', 0, 'Lawrence Noel Smith, 0', 'Late Cenozoic Fluvial Evolution in the Northern Chaco River Drainage Basin, Northwestern New Mexico', ' Unpublished M.S. thesis, Department of Geology, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2169, NULL, '1980', 0, 'H. Wolcott Toll, 0; Thomas C. Windes, 1; Peter J. McKenna, 2', 'Late Ceramic Patterns in Chaco Canyon: The Pragmatics of Modeling Ceramic Exchange', ' In Models and Methods in Regional Exchange, edited by Robert S. Fry, pp. 95-117. SAA Papers No. 1. Society for American Archaeology, Washington, D.C.'); INSERT INTO "work" VALUES (2168, NULL, '1979', 0, 'H. Wolcott Toll, 0; Thomas C. Windes, 1; Peter J. McKenna, 2', 'Late Ceramic Patterns in Chaco Canyon: The Pragmatics of Modeling Ceramic Exchange', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2227, NULL, '1979', 0, 'Thomas R. Van Devender, 0', 'Late Holocene Environments in Chaco Canyon, New Mexico: The Packrat Midden Record', ' Research proposal submitted to the Chaco Center, University of New Mexico, and National Park Service by the Arizona-Sonora Desert Museum, Tucson.'); INSERT INTO "work" VALUES (749, NULL, '1977', 0, 'Stephen A. Hall, 0', 'Late Quarternary Sedimentation and Paleoecologic History of Chaco Canyon, New Mexico', ' Geological Society of America Bulletin 88(11):1593-1618. Washington.'); INSERT INTO "work" VALUES (178, NULL, '1990', 0, 'Julio L. Betancourt, 0', 'Late Quaternary Biogeography of the Colorado Plateau', ' In Packrat Middens: The Last 40,000 Years of Biotic Changes, edited by Julio L. Betancourt, Thomas R. Van Devender, and Paul S. Martin, pp. 259-292. University of Arizona, Tucson.'); INSERT INTO "work" VALUES (748, NULL, '1976', 0, 'Stephen A. Hall, 0', 'Late Quaternary Sedimentation and Paleoecological History of Chaco Canyon, New Mexico', ' GSA MS-5475. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published in 1977.'); INSERT INTO "work" VALUES (694, NULL, '1984', 0, 'William B. Gillespie, 0', 'Late Quaternary Small Vertebrates from Chaco Canyon, Northwestern New Mexico', ' New Mexico Geology 6:16 (Abstract).'); INSERT INTO "work" VALUES (827, NULL, '1999', 0, 'Kathy Hensler, 0; Dennis Doxtater, 1', 'Laying Out a Non-meridian, Large-scale Alignment and Possibilities of Pre-Chacoan ''Georitual'' Lines Focused at Canyon de Chelly, Kin Bineola, and Hopi Second Mesa', ' Poster presented at the 72nd Pecos Conference, Pinedale, AZ.'); INSERT INTO "work" VALUES (1944, NULL, '1988', 0, 'Lynne Sebastian, 0', 'Leadership, Power, and Productive Potential: A Political Model of the Chaco System', ' Ph.D. dissertation, Department of Anthropology, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1334, NULL, '1994', 0, 'Anne Lawrason Marshall, 0', 'Learning from the Hopi: Spatial Organization at Chaco Canyon', ' Paper presented at the Fourth International Conference of the International Association for the Study of Traditional Environments, Tunis, Dec. Published in 1994 (see below).'); INSERT INTO "work" VALUES (1335, NULL, '1994', 0, 'Anne Lawrason Marshall, 0', 'Learning from the Hopi: Spatial Organization at Chaco Canyon', ' In Traditional Dwellings and Settlements Working Papers Series, edited by Nezar Al Sayyad and Jean-Paul Bourdier, pp. 1-26. International Association for the Study of Traditional Environments, Berkeley.'); INSERT INTO "work" VALUES (833, NULL, '1908', 0, 'Edgar L. Hewett, 0', 'Les Communautes Anciennes dans le Desert Americain', ' Ph.D. dissertation, Sociology, University of Geneva.'); INSERT INTO "work" VALUES (1397, NULL, '1988', 0, 'Frances Joan Mathien, 0', 'Lessons from Preservation Analysis and Stabilization at Kin Nahasbas, Chaco Canyon, New Mexico', ' Ms. on file, National Park Service, Intermountain Region, Santa Fe Office.'); INSERT INTO "work" VALUES (2500, NULL, '1982', 0, 'Thomas C. Windes, 0', 'Lessons from the Chacoan Survey', ' The Patterns of Chacoan Trash Disposal. Paper presented at the New Mexico Archeological Council Workshop No. 1: Archeological Research in the San Juan Basin. Chaco Culture National Historical Park, NM. Published in 1982.'); INSERT INTO "work" VALUES (2501, NULL, '1982', 0, 'Thomas C. Windes, 0', 'Lessons from the Chacoan Survey', ' The Patterns of Trash Disposal. New Mexico Archeological Council Newsletter 4(5-6):5-14'); INSERT INTO "work" VALUES (1802, NULL, '1980', 0, 'Jonathan E. Reyman, 0', 'Letter', ' An Anasazi Solar Marker? Science 209:858, 860.'); INSERT INTO "work" VALUES (2457, NULL, '1987', 0, 'Ray A. Williamson, 0', 'Light and Shadow, Ritual, and Astronomy in Anasazi Structure', ' In Astronomy and Ceremony in the Prehistoric Southwest, edited by John B. Carlson and W. James Judge, pp. 99-119. Papers of the Maxwell Museum of Anthropology No. 2. University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2205, NULL, '1982', 0, 'Marcia L. Truell, 0', 'List of Excavated, Tested and Vandalized Small Sites in Chaco Canyon', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published in 1986.'); INSERT INTO "work" VALUES (2374, NULL, '1967', 0, 'A. Helene Warren, 0', 'Lithic Code 2 Used in Chaco Project', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (344, NULL, '1986', 0, 'Catherine M. Cameron, 0; Lisa C. Young, 1', 'Lithic Procurement and Technology in the Chaco Canyon Area', ' Submitted in fulfillment of Contract PX7029-5-C031. Ms. on file, Branch of Cultural Research, National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (313, NULL, '1981', 0, 'Catherine M. Cameron, 0', 'Lithic analysis for 29SJ 627', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published in 1992.'); INSERT INTO "work" VALUES (2380, NULL, '1979', 0, 'A. Helene Warren, 0', 'Lithics Identification and Quarry Source Workshop', ' Presented at the New Mexico State University, Cultural Resources Management Division Workshop, Las Cruses. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1209, NULL, '1985', 0, 'Curtis Lester, 0', 'Little Known Sites in Anasazi Architecture of the Southwest', ' Paper for Architecture 562, University of New Mexico. Ms. on file, NPS, Intermountain Region, Santa Fe Office.'); INSERT INTO "work" VALUES (2456, NULL, '1984', 0, 'Ray A. Williamson, 0', 'Living the Sky: The Cosmos of the American Indian', ' Houghton Mifflin, Boston.'); INSERT INTO "work" VALUES (1439, NULL, '1963', 0, 'James C. Maxon, 0', 'Lizard House, a Report of a Salvage Excavation at Chaco Canyon National Monument, New Mexico in 1960', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (562, NULL, '1980', 0, 'James I. Ebert, 0; Robert K. Hitchcock, 1', 'Locational Modeling in the Analysis of the Prehistoric Roadway System at and around Chaco Canyon, New Mexico', ' In Cultural Resources Remote Sensing, edited by Thomas R. Lyons and Frances Joan Mathien, pp. 169-207. Cultural Resources Management Division, National Park Service, Washington, D.C.'); INSERT INTO "work" VALUES (2011, NULL, '1998', 0, 'John Snygg, 0; Thomas C. Windes, 1', 'Long, Wide Roads and Great Kiva Roofs', ' Kiva 64(1):7-25.'); INSERT INTO "work" VALUES (1641, NULL, '1990', 0, 'Apollo B. Orodko, 0; M. J. Trlica, 1; C. D. Bonham, 2', 'Long-Term Heavy-Grazing Effects on Soil and Vegetation in the Four Corners Region', ' The Southwestern Naturalist 35(1):9-14.'); INSERT INTO "work" VALUES (1329, NULL, '2001', 0, 'Nancy J. Malville, 0', 'Long-distance Transport of Bulk Goods in the Pre-hispanic American Southwest', 'Journal of Anthropological Archaeology 20:230-243.'); INSERT INTO "work" VALUES (2072, NULL, '1996', 0, 'John R. Stein, 0; Andrew P. Fowler, 1', 'Looking Beyond Chaco in the San Juan Basin and Its Peripheries', ' In The Prehistoric Pueblo World, A.D. 1150-1350, edited by Michael A. Adler, pp. 114-130. University of Arizona, Tucson.'); INSERT INTO "work" VALUES (1199, NULL, '2000', 0, 'Stephen H. Lekson, 0', 'Lords of the Great House: Structures of Power in the Greater Southwest', ' Paper presented at the 65th Annual Meeting of the Society for American Archaeology, Philadelphia.'); INSERT INTO "work" VALUES (2239, NULL, '1953', 0, 'Richard F. Van Valkenburgh, 0', 'Lost Pictographs on Mesa Cabresta', ' Desert Magazine 16(1):17-20.'); INSERT INTO "work" VALUES (2033, NULL, '1982', 0, 'A. Sofaer, 0; K. M. Sinclair, 1; L. E. Doggett, 2', 'Lunar Markings on Fajada Butte, Chaco Canyon, New Mexico', ' In Archaeoastronomy in the New World, Proceedings of an International Conference Held at Oxford University, September 1981, edited by Anthony F. Aveni, pp. 169-181. Cambridge University Press, Cambridge. With summaries in Science News 121(4):59, January 23; Science Digest p. 19, Nov.'); INSERT INTO "work" VALUES (2032, NULL, '1981', 0, 'A. Sofaer, 0; K. M. Sinclair, 1; L. E. Doggett, 2', 'Lunar Markings on Fajada Butte, Chaco Canyon, New Mexico', ' Paper presented at the International Conference on Archaeological Astronomy, Oxford. Published in 1982.'); INSERT INTO "work" VALUES (2173, NULL, '1981', 0, 'Mollie S. Toll, 0', 'Macro-botanical Remains Recovered from Chaco Canyon Coprolites', ' Castetter Laboratory for Ethnobotanical Studies, Department of Biology Technical Series No. 38. Contract PX 1489-9-0124/7486-9-0124. Ms. on file NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1978, NULL, '1974', 0, 'Charles T. Siemers, 0; Norman R. King, 1', 'Macroinvertebrate Paleoecology of a Transgressive Marine Sandstone, Cliff House Sandstone (Upper Cretaceous), Chaco Canyon, Northwestern New Mexico', ' New Mexico Geological Society Guidebook, 25th Field Conference, Ghost Ranch (Central-Northern New Mexico) 1974, edited by Charles T. Siemers, pp. 267-279. New Mexico Geological Society, Albuquerque. Funded by Contract 14-10-3-930-257.'); INSERT INTO "work" VALUES (2410, NULL, '1972', 0, 'Cecil Werito, 0', 'Maintenance Stabilization Projects 1972', ' Stabilization report on file in the NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (2411, NULL, '1973', 0, 'Cecil Werito, 0', 'Maintenance Stabilization Projects 1973', ' Stabilization report on file in the NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (2408, NULL, '1970', 0, 'Cecil Werito, 0', 'Maintenance Stabilization Projects, 1970', ' Stabilization report on file in the NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (2409, NULL, '1971', 0, 'Cecil Werito, 0', 'Maintenance Stabilization Projects, 1971', ' Stabilization report on file in the NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (1968, NULL, '1959', 0, 'Joel L. Shiner, 0', 'Maintenance Stabilization at Casa Rinconada, Chaco Canyon National Monument, 1959', ' Stabilization report on file in the NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (2348, NULL, '1964', 0, 'Charles B. Voll, 0; Martin T. Mayer, 1', 'Maintenance Stabilization at Chettro Kettle Ruin, Chaco Canyon National Monument, New Mexico, 1964', ' Stabilization report on file in the NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (1969, NULL, '1959', 0, 'Joel L. Shiner, 0', 'Maintenance Stabilization at Pueblo Bonito, Chaco Canyon National Monument, 1959', ' Stabilization report on file in the NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (1971, NULL, '1959', 0, 'Joel L. Shiner, 0', 'Maintenance Stabilization at Site Bc 51, Chaco Canyon National Monument, 1959', ' National Park Service Ruins Stabilization Unit, Globe, AZ.'); INSERT INTO "work" VALUES (1965, NULL, '1959', 0, 'Joel L. Shiner, 0', 'Maintenance Stabilization at Site Bc-50, Chaco Canyon National Monument, 1959', ' Stabilization report on file in the NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (1966, NULL, '1959', 0, 'Joel L. Shiner, 0', 'Maintenance Stabilization at Site Bc-51, Chaco Canyon National Monument, 1959', ' Stabilization report on file in the NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (1967, NULL, '1959', 0, 'Joel L. Shiner, 0', 'Maintenance Stabilization at Site Bc-59, Chaco Canyon National Monument, 1959', ' Stabilization report on file in the NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (2350, NULL, '1965', 0, 'Charles B. Voll, 0; Martin T. Mayer, 1', 'Maintenance Stabilization in Pueblo Bonito, Chaco Canyon National Monument, New Mexico, 1965', ' Stabilization report on file in the NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (2344, NULL, '1964', 0, 'Charles B. Voll, 0', 'Maintenance Stabilization, Bc-50, Chaco Canyon National Monument, New Mexico, 1964', ' Stabilization report on file in the NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (2343, NULL, '1963-64', 0, 'Charles B. Voll, 0', 'Maintenance Stabilization, Bc-51, Chaco Canyon National Monument, 1963-64', ' Stabilization report on file in the NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (2342, NULL, '1963', 0, 'Charles B. Voll, 0', 'Maintenance Stabilization, Pueblo Bonito, Chaco Canyon National Monument, 1963', ' Stabilization report on file in the NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (2418, NULL, '1980', 0, 'Cecil Werito, 0', 'Maintenance Stabiliztion Projects 1980', ' Stabilization report on file in the NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (277, NULL, '2000', 0, 'Erika Bsumek, 0', 'Making ''Indian-Mode'': The Production, Consumption, and Construction of Navajo Ethnic Identity, 1880-1935', ' Unpublished Ph.D. dissertation, Rutgers University, New Brunswick, NJ.'); INSERT INTO "work" VALUES (2154, NULL, '2001', 0, 'H. Wolcott Toll, III, 0', 'Making and Breaking Pots in the Chaco World', ' American Antiquity 66(1):56-78.'); INSERT INTO "work" VALUES (1490, NULL, '1971', 0, 'Charmion R. McKusick, 0', 'Mammalian Remains', ' Archive 1011, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (851, NULL, '1937', 0, 'Frank C. Hibben, 0', 'Mammals and Bird Remains', ' In Tseh So, a Small House Ruin, Chaco Canyon, New Mexico, Preliminary Report, by Donald D. Brand, Florence M. Hawley, and Frank C. Hibben, pp. 101-106. University of New Mexico Bulletin No. 308, Anthropological Series 2(2). University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2214, NULL, '1999', 0, 'Christy G. Turner, II, 0; Jacqueline A. Turner, 1', 'Man Corn: Cannibalism and Violence in the Prehistoric American Southwest', ' University of Utah Press, Salt Lake City.'); INSERT INTO "work" VALUES (2280, NULL, '1949', 0, 'R. Gordon Vivian, 0', 'Manual for Ruins Stabilization', ' Region III. Santa Fe and Southwest National Monuments.'); INSERT INTO "work" VALUES (2434, NULL, '1976', 0, 'Julian H. Whittlesey, 0', 'Manual for the 30 Foot Bipod Camera Support', ' Ms. on file, Remote Sensing Unit, National Park Service, Santa Fe. Published in 1980.'); INSERT INTO "work" VALUES (2435, NULL, '1980', 0, 'Julian H. Whittlesey, 0', 'Manual for the 30 Foot Bipod Camera Support', ' Appendix I. In Klausner (1980), in Cultural Resources Remote Sensing, edited by Thomas R. Lyons and Frances Joan Mathien, pp. 320-323. Cultural Resources Management Division, Washington, D.C.'); INSERT INTO "work" VALUES (1873, NULL, '1985', 0, 'David G. Saile, 0', 'Many Dwellings: Views of a Pueblo World', ' In Dwelling, Place and Environmennt, edited by D. Seaman and R. Mugerauer, pp. 159-177. Nijhoff.'); INSERT INTO "work" VALUES (1225, NULL, '1876', 0, 'Oscar von Loew, 0', 'Map No', '12: Originalkarte deer Ur-Wohnsitze der Azteken und verwandtn Pueblos in Neu Mexico. Petermann''s Mittheilungen. Vol. 22.'); INSERT INTO "work" VALUES (657, NULL, '1996', 0, 'Richard A. Friedman, 0; John R. Stein, 1', 'Mapping Ancient Landscapes in the Four Corners Region: Integrating the Use of GIS, GPS and Image-Processing Technology', ' Paper presented at the Southwest ARC/INFO Users Group, on file at McKinley County GIS Center, Gallup and Navajo Nation Chaco Protection Sites Program.'); INSERT INTO "work" VALUES (452, NULL, '1987', 0, 'S. Curry, 0; D. Fair, 1; D. Encinas, 2; A. Sofaer, 3; R. M. Sinclair, 4', 'Mapping the Sun Dagger', ' Proceedings of the American Society of Photogrammetry'); INSERT INTO "work" VALUES (673, NULL, '1997', 0, 'Kathryn Gabriel, 0', 'Marietta Wetherill: Life with the Navajos in Chaco Canyon', ' University of New Mexico Press, Albuquerque.'); INSERT INTO "work" VALUES (671, NULL, '1992', 0, 'Kathryn Gabriel, 0', 'Marietta Wetherill: Reflections on Life with the Navajos in Chaco Canyon', ' Johnson Books, Boulder. Republished in 1997.'); INSERT INTO "work" VALUES (1997, NULL, '1988', 0, 'R. M. Sinclair, 0; A. Sofaer, 1; J. J. McCann, 2; J. J. McCann Jr., 3', 'Marking of Lunar Major Standstill at the Three-Slab Site on Fajada Butte', ' Paper presented at the 17th Annual Meeting of the American Astronomical Society, Austin.'); INSERT INTO "work" VALUES (1996, NULL, '1987', 0, 'R. M. Sinclair, 0; A. Sofaer, 1; J. J. McCann, 2; J. J. McCann, 3; Jr., 4', 'Marking of Lunar Major Standstill at the Three-Slab Site on Fajada Butte', ' Bulletin of the American Astronomical Society 19:1043.'); INSERT INTO "work" VALUES (1864, NULL, '1941', 0, 'Emily Ross, 0', 'Masonry Types in Bc 53', ' Archive 2103, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1501, NULL, '1999', 0, 'D. Meyer, 0', 'Masonry and Social Variability in the Chaco System', 'Unpublished Ph.D. Dissertation, Department of Archaeology, University of Calgary, Calgary.'); INSERT INTO "work" VALUES (1042, NULL, '1931', 0, 'Susan Kent, 0', 'Masonry at Chetro Ketl', ' Archive 1839, NPS Chaco Culture NHP Museum Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2142, NULL, '1984', 0, 'H. Wolcott Toll, III, 0', 'Material Aspects of Pueblo Ritual with Regard to Goods Distribution in Chaco', ' Paper presented at the 49th Annual Meeting of the Society for American Archaeology, Portland.'); INSERT INTO "work" VALUES (2152, NULL, '1991', 0, 'H. Wolcott Toll, III, 0', 'Material Distributions and Exchange in the Chaco System', ' In Chaco and Hohokam Prehistoric Regional Systems in the American Southwest, edited by Patricia L. Crown and W. James Judge, pp. 77-107. School of American Research, Santa Fe.'); INSERT INTO "work" VALUES (527, NULL, '1983', 0, 'Dwight L. Drager, 0', 'Materials Acquired for the Remote Sensing Assessment of the Cultural Resources of the San Juan Basin, New Mexico', ' In Remote Sensing in Cultural Resources Management: The San Juan Basin Project, edited by Dwight L. Drager and Thomas R. Lyons, pp. 23-26. Cultural Resources Management Division, National Park Service, Washington, D.C.'); INSERT INTO "work" VALUES (908, NULL, '1977', 0, 'LouAnn Jacobson, 0', 'Materials Source for the Chaco Survey', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1682, NULL, '2001', 0, 'Peter N. Peregrine, 0', 'Matrilocality, Corporate Strategy, and the Organization of Production in the Chacoan World', ' American Antiquity 66:36-46.'); INSERT INTO "work" VALUES (1149, NULL, '1984', 0, 'Stephen H. Lekson, 0', 'Maximum Settlement Size as an Index of Sociopolitical Complexity', ' Paper presented at the 49th Annual Meeting of the Society for American Archaeology, Portland, April 10-15.'); INSERT INTO "work" VALUES (1911, NULL, '1986', 0, 'John D. Schelberg, 0; Peter J. McKenna, 1; Thomas C. Windes, 2', 'Memories and Lessons from Al Hayes: The Chacoan Chapter', ' In Prehistory and History in the Southwest: Collected Papers in Honor of Alden C. Hayes, edited by Nancy Fox, pp. 154-163. Papers of the Archaeological Society of New Mexico: 10.'); INSERT INTO "work" VALUES (1422, NULL, '2002', 0, 'Frances Joan Mathien, 0', 'Mesa Tierra and the Hyde Exploring Expedition', ' In Forward Into The Past. Papers in Honor of Tddy Lou and Francis Stickney, edited by Regge N. Wiseman, Thomas C. O''Loughlin, and Cordelia T. Snow, pp. 47-57. Archaeological Society of New Mexico: 28. Albuquerque.'); INSERT INTO "work" VALUES (1860, NULL, '1995', 0, 'John R. Roney, 0', 'Mesa Verdean Manifestations South of the San Juan River', ' Journal of Anthropological Archaeology 14(2):170-183.'); INSERT INTO "work" VALUES (1934, NULL, '1964', 0, 'J. V. Sciscenti, 0', 'Mesoamerican Influence in Chaco Canyon', ' In Symposium on Southwest Prehistory. Journal of the Arizona Academy of Science 3(2):104.'); INSERT INTO "work" VALUES (1220, NULL, '1978', 0, 'Robert H. Lister, 0', 'Mesoamerican Influence on Chaco Canyon, New Mexico', ' In Across the Chichimec Sea. Papers in Honor of J. Charles Kelley, edited by Carroll L. Riley and Basil C. Hedrick, pp. 233-241. Southern Illinois University Press, Carbondale.'); INSERT INTO "work" VALUES (241, NULL, '1987', 0, 'Cory D. Breternitz, 0; David E. Doyel, 1', 'Methodological Issues for the Identification of Chacoan Community Structure: Lessons from the Bis sa''ani Community Study', ' American Archaeology 6(3):183-189.'); INSERT INTO "work" VALUES (1790, NULL, '1971', 0, 'Jonathan E. Reyman, 0', 'Mexican Influence on Southwestern Ceremonialism', 'Ph.D. dissertation, Department of Anthropology, Southern Illinois University, Carbondale. University Microfilms, Ann Arbor.'); INSERT INTO "work" VALUES (781, NULL, '1970', 0, 'Lyndon L. Hargrave, 0', 'Mexican Macaws, Comparative Osteology and Survey of Remains from the Southwest', ' Anthropological Papers of the University of Arizona No. 20. University of Arizona Press Tucson.'); INSERT INTO "work" VALUES (191, NULL, '1987', 0, 'Donald J. Blakeslee, 0', 'Microcomputer Simulation of the Radiocarbon Dates from Pueblo Alto', ' In Investigations at the Pueblo Alto Complex, Chaco Canyon, New Mexico, 1975-1979. Volume IV. Microfiche, edited by Thomas C. Windes and Frances Joan Mathien, pp. MF-63 to MF-71. Publications in Archeology 18F, Chaco Canyon Studies. National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (1759, NULL, '1980', 0, 'David J. Rapson, 0', 'Microenvironmental Variability and the Chacoan Outlier System', ' Prepared for Anthropology 420, University of New Mexico. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (328, NULL, '1995', 0, 'Catherine M. Cameron, 0', 'Migration and the Movement of Southwestern Peoples', ' Journal of Anthropological Archaeology 14(2):104-124.'); INSERT INTO "work" VALUES (1880, NULL, '1982', 0, 'Michael L. Samuels, 0; Julio L. Betancourt, 1', 'Modeling the Long-Term Effects of Fuelwood Demands on Pinyon-Juniper Woodlands', ' Environmental Management 6(6):505-515.'); INSERT INTO "work" VALUES (276, NULL, '1996', 0, 'Erika Bsumek, 0', 'Modernism and Primitivism in the American Southwest: Collectors, Railway Tourists, Gender and the Navajos in New Mexico, 1880-1930', ' Dissertation proposal, Rutgers University, New Brunswick, NJ.'); INSERT INTO "work" VALUES (538, NULL, '1948', 0, 'R. J. Drake, 0', 'Mollusks of the Eastern Basin of the Chaco River, New Mexico', ' The Nautilus 62(1):5-8.'); INSERT INTO "work" VALUES (1314, NULL, '2001', 0, 'Nancy Mahoney, 0', 'Monumental Architecture as Conspicuous Display in Chaco Canyon', ' In Chaco Society and Polity: Papers from the 1999 Conference, edited by Linda S. Cordell, W. James Judge, and June-el Piper, pp. 13-29. NMAC Special Publication No. 4. New Mexico Archeological Council, Albuquerque.'); INSERT INTO "work" VALUES (1323, NULL, '1991', 0, 'J. McKim Malville, 0; Frank W. Eddy, 1; Carol Armbruster, 2', 'Moonrise at Chimney Rock', ' Archaeoastronomy (Supplement to the Journal for the History of Astronomy) 1:34-50.'); INSERT INTO "work" VALUES (254, NULL, '1978', 0, 'David M. Brugge, 0', 'Motivation and Function in Navajo Rock Art', ' In American Indian Rock Art, edited by Ernest Snyder, A. J. Bock, and Frank Bock, pp. 141-147. Volume IV of the papers presented at the Fourth Annual ARARA Symposium. American Rock Art Research Association, El Toro, CA.'); INSERT INTO "work" VALUES (293, NULL, '1973', 0, 'Darrel J. Butterbaugh, 0', 'Mud Brick Conservation Project-Field Report #1', ' Museum of Applied Science Center for Archaeology, Report No. 1. University Museum. University of Pennsylvania, Philadelphia.'); INSERT INTO "work" VALUES (1609, NULL, '1999', 0, 'Jill E. Neitzel, 0; David G. Anderson, 1', 'Multiscalar Analyses of Middle-Range Societies: Comparing the Late Prehistoric Southwest and Southeast', ' In Great Towns and Regional Polities in the Prehistoric American Southwest and Southeast, edited by Jill E. Neitzel, pp. 1243-254. Amerind Foundation and the University of New Mexico Press, Dragoon and Albuquerque.'); INSERT INTO "work" VALUES (330, NULL, '1996', 0, 'Catherine M. Cameron, 0', 'Multistory Construction in Southwestern Pueblo Architecture', ' In Interpreting Southwestern Diversity: Underlying Principles and Overarching Patterns, edited by Paul R. Fish and J. Jefferson Reid, pp. 195-199. Arizona State University Anthropological Research Papers No. 48. Arizona State University, Tempe.'); INSERT INTO "work" VALUES (1915, NULL, '2001', 0, 'Michael A. Schillaci, 0; E. G. Ozolins, 1; Thomas C. Windes, 2', 'Multivariate Assessment of Biological Relationships among Prehistoric Southwest Amerindian Populations', ' In Following Through: Papers in Honor of Phyllis S. Davis, edited by Regge N. Wiseman, Thomas C. O''Laughlin, and Cordelia T. Snow, pp. 133-149. Papers of the Archaeological Society of New Mexico: 27. Albuquerque.'); INSERT INTO "work" VALUES (810, NULL, '1939', 0, 'Florence M. Hawley, 0', 'Mummy Dusters, New Nexico Style', ' New Mexico 17:20-24 and 34:37.'); INSERT INTO "work" VALUES (733, NULL, '1998', 0, 'Brenda Z. Guiberson, 0', 'Mummy Mysteries: Tales from North America', ' Henry Holt and Company, New York.'); INSERT INTO "work" VALUES (1852, NULL, '1930', 0, 'R. Rollins, 0', 'My Dead Neighbors', ' New Mexico Highway Journal 8(9):10-11.'); INSERT INTO "work" VALUES (872, NULL, '1955', 0, 'Sherman S. Howe, 0', 'My Story of the Aztec Ruins', ' The Basin Spokesman, Farmington.'); INSERT INTO "work" VALUES (1265, NULL, '1889', 0, 'Charles F. Lummis, 0', 'Mysterious Ruins, A Visit to Pueblo Alto', ' Sunday Chronicle, San Francisco Jan. 27, 1889.'); INSERT INTO "work" VALUES (3, NULL, '1942', 0, 'David F. Aberle, 0', 'Mythology of the Navajo Game Stick Dice', ' Journal of American Folklore 55(217):144-154.'); INSERT INTO "work" VALUES (1435, NULL, '1889', 0, 'Washington Matthews, 0', 'Nagoilpi, the Gambler: A Navajo Myth', ' Journal of American Folk Lore 2:89-94.'); INSERT INTO "work" VALUES (936, NULL, '1920', 0, 'Neil Merton Judd, 0', 'National Geographic Society Reconnaissance of Chaco Canyon, New Mexico: Diary of Neil M', 'Judd. In Papers of Neil M. Judd, Box 6, Smithsonian Institution, National Anthropological Archives, Washington, D.C.'); INSERT INTO "work" VALUES (2360, NULL, '1920', 0, 'Paul A. F. Walter, 0', 'National Monuments in New Mexico', ' Art and Archaeology 10:6-26.'); INSERT INTO "work" VALUES (1675, NULL, '1903', 0, 'George H. Pepper, 0', 'Native Navajo Dyes', ' Reprint from The Papoose, February, pp. 3-12.'); INSERT INTO "work" VALUES (1339, NULL, '1996', 0, 'Anne Lawrason Marshall, 0', 'Natural Features and Frontiers: Viewing the Landscape from Outlying Chacoan Structures', ' Paper presented at the 5th Meeting of the International Association for the Study of Traditional Environments (IASTE). Berkeley. Published in 1996.'); INSERT INTO "work" VALUES (1340, NULL, '1996', 0, 'Anne Lawrason Marshall, 0', 'Natural Features and Frontiers: Viewing the Landscape from Outlying Chacoan Structures', ' In Invocations of Tradition in the Built Environment (Traditional Dwellings and Settlements Working Papers Series), edited by Nezar AlSayyad, pp. 1-10. International Assocoation for the Study of Traditional Environments, Berkeley.'); INSERT INTO "work" VALUES (1993, NULL, '1964', 0, 'James Hervey Simpson, 0', 'Navaho Expedition', ' Journal of a Military Reconnaissance from Santa Fe, New Mexico to the Navaho Country Made in 1849, edited by Frank McNitt. University of Oklahoma Press, Norman.'); INSERT INTO "work" VALUES (388, NULL, '1938', 0, 'John Maxwell Corbett, 0', 'Navaho House Types in the Chaco Canyon and Its Environs', ' Ms. on file, Vivian Archives No. 2157, NPS Chaco Culture NHP Museum Archives, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2575, NULL, '1964', 0, 'Leland C. Wyman, 0; Flora L. Bailey, 1', 'Navaho Indian Ethnoentomology', ' Publications in Anthropology No. 12. University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1436, NULL, '1897', 0, 'Washington Matthews, 0', 'Navaho Legends', ' Houghton, Mifflin, New York.'); INSERT INTO "work" VALUES (2515, NULL, '1987', 0, 'Thomas C. Windes, 0', 'Navajo Agriculture', ' In Investigations at the Pueblo Alto Complex, Chaco Canyon, New Mexico, 1975-1979. Volume IV. Microfiche, pp. MF-8-MF-11. Publications in Archeology 18F, Chaco Canyon Studies. National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (355, NULL, '1939', 0, 'Malcolm Carr, 0; Katherine Spencer, 1; Doriane Woolley, 2', 'Navajo Clans and Marriage at Pueblo Alto', ' American Anthropologist 41(2):245-257.'); INSERT INTO "work" VALUES (2576, NULL, '1942', 0, 'Leland C. Wyman, 0; Willard William Hill, 1; Iva Osinai, 2', 'Navajo Escatology', ' Bulletin No. 377, Anthropology Series Vol. 4, No. 1. University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (121, NULL, '1940', 0, 'Flora L. Bailey, 0', 'Navajo Foods and Cooking Methods', ' American Anthropologist 42:270-290.'); INSERT INTO "work" VALUES (389, NULL, '1940', 0, 'John Maxwell Corbett, 0', 'Navajo House Types', ' El Palacio 47(5):97-107.'); INSERT INTO "work" VALUES (520, NULL, '1980', 0, 'Dwight L. Drager, 0', 'Navajo Indian Irrigation Project', ' CRM Bulletin 3(2):8. Cultural Resources Management Division, National Park Service, Washington, D.C.'); INSERT INTO "work" VALUES (2272, NULL, '1941', 0, 'R. Gordon Vivian, 0', 'Navajo Indian Mobile Unit, Chaco Canyon National Monument, 1941 Annual Report', ' Southwestern Monuments Special Report No. 27. Globe, AZ. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (590, NULL, '1982', 0, 'Rosalie Fanale, 0', 'Navajo Land and Land Management: A Century of Change', 'Unpublished Ph.D. dissertation, Department of Anthropology, The Catholic University of America, Washington, D.C.'); INSERT INTO "work" VALUES (956, NULL, '1938', 0, 'Neil Merton Judd, 0', 'Navajo Name for Chaco Rock', ' Southwestern Monuments Monthly Reports, Supplement for September, p. 270, Coolidge.'); INSERT INTO "work" VALUES (250, NULL, '1976', 0, 'David M. Brugge, 0', 'Navajo Occupation at Chaco Canyon', ' Paper presented at the Small Sites Conference on Limited Activity and Occupation Sites sponsored by the Center for Anthropological Studies, Albuquerque. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published in 1978.'); INSERT INTO "work" VALUES (258, NULL, '1981', 0, 'David M. Brugge, 0', 'Navajo Pottery and Ethnohistory', ' Navajo Nation Papers in Anthropology, No. 4. Navajo Nation Cultural Resources Management Program, Window Rock, AZ.'); INSERT INTO "work" VALUES (263, NULL, '1998', 0, 'David M. Brugge, 0', 'Navajo Religion and the Anasazi Connection', ' Ms. on file, Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (266, NULL, '2001', 0, 'David M. Brugge, 0; Tobi Taylor, 1', 'Navajo Ring Bits', ' American Indian Art Magazine26(4). Autumn.'); INSERT INTO "work" VALUES (265, NULL, '2000', 0, 'David M. Brugge, 0; Dennis Gilpin, 1', 'Navajo Ritual Histories, Organization, and Architecture', ' In The Archaeology of Regional Interaction: Religion, Warfare, and Exchange Across the American Southwest, edited by Michelle Hegmon, pp. 361-379. University Press of Colorado, Boulder.'); INSERT INTO "work" VALUES (2370, NULL, '1992', 0, 'Miranda Warburton, 0; Donna K. Graves, 1', 'Navajo Springs, Arizona: Frontier Outlier or Autonomous Great House? Journal of Field Archaeology 19:51-69', NULL); INSERT INTO "work" VALUES (724, NULL, '1990', 0, 'Donna K. Graves, 0', 'Navajo Springs: An Examination of the Great House and Surrounding Community', ' Unpublished Master''s thesis, Northern Arizona University, Flagstaff.'); INSERT INTO "work" VALUES (717, NULL, '1987', 0, 'Carol Legard Gleickman, 0', 'Navajo and Historic Sites and Settlement of the Chaco Additions Inventory Survey', ' Prepared by Native Culture Resources Services, Boulder, CO, for NPS Contract PX7029-5-C045. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (190, NULL, '1979', 0, 'Ronald L. Bishop, 0', 'Neutron Activation Analysis of Chacoan Turquoises: An Informal Report to the Division of Chaco Research', ' Report from the Department of Chemistry, Brookhaven National Laboratory, Upton, NY, on file in the NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1610, NULL, '1990', 0, 'Jill E. Neitzel, 0; Ronald L. Bishop, 1', 'Neutron Activation of Dogoszhi Style Ceramics: Production and Exchange in the Chacoan Regional System', ' The Kiva 56(1):67-85.'); INSERT INTO "work" VALUES (843, NULL, '1932', 0, 'Edgar L. Hewett, 0', 'New Dates from Chaco Canyon', ' El Palacio 32(13-14):185-186.'); INSERT INTO "work" VALUES (125, NULL, '1998', 0, 'Larry L. Baker, 0; Kurt T. Mantonya, 1', 'New Evidence for the Relationship of Archaeoastronomy to Chaco Anasazi Sociopolitical Complexity', ' Paper presented at the 63rd Annual Meeting of the Society for American Archaeology, Seattle.'); INSERT INTO "work" VALUES (994, NULL, '1984', 0, 'W. James Judge, 0', 'New Light on Chaco Canyon', ' In New Light on Chaco Canyon, edited by David Grant Noble, pp. 1-12. Exploration, School of American Research, Santa Fe.'); INSERT INTO "work" VALUES (1619, NULL, '1916', 0, 'Nels C. Nelson, 0', 'New Mexico Field Work in 1915', ' El Palacio 3:43-55.'); INSERT INTO "work" VALUES (1989, NULL, '1938', 0, 'Frederick Simpich, 0', 'New Mexico Melodrama', ' The National Geographic Magazine 73:529-569.'); INSERT INTO "work" VALUES (1113, NULL, '1991', 0, 'David Laskin, 0', 'New Mexico''s Mysterious Anasazi Ruins', ' The New York Times 141:XX15(n), p. XX15L, col. 1. Dec. 5, Sept. 22.'); INSERT INTO "work" VALUES (1744, NULL, '1912', 0, 'L. Bradford Prince, 0', 'New Mexico, the State', ' Sunset 28:683-695.'); INSERT INTO "work" VALUES (153, NULL, '1948', 0, 'F. C. Barnes, 0', 'New Mexico-Colorado 12,000 Square Mile San Juan Basin, etc', ' The Oil and Gas Journal 27(4):73-77.'); INSERT INTO "work" VALUES (2266, NULL, '1940', 0, 'R. Gordon Vivian, 0', 'New Rooms and Kiva Found in Pueblo Bonito', ' Southwestern Monuments Report, Supplement for February 1940:127-130.'); INSERT INTO "work" VALUES (165, NULL, '1870', 0, 'W. A. Bell, 0', 'New Tracks in North America', ' London.'); INSERT INTO "work" VALUES (2437, NULL, '1991', 0, 'David R. Wilcox, 0', 'New World Prehistory, Chaco Canyon and the Hohokam Ballgame: An Essay on Macro-Regional Analysis', ' Ms. on file, Department of Anthropology, Northern Arizona University, Flagstaff.'); INSERT INTO "work" VALUES (2330, NULL, '1998', 0, 'R. Gwinn Vivian, 0', 'New World Roads: Symbols of Control and Unity', ' Paper presented at the 63rd Annual Meeting of the Society for American Archaeology, Seattle.'); INSERT INTO "work" VALUES (271, NULL, '1928', 0, 'Kirk Bryan, 0', 'Niches and Other Cavities in Sandstone in Chaco Canyon, New Mexico', ' Zeitschr. Geomorphologie Band 3, H3, pp. 125-140.'); INSERT INTO "work" VALUES (1720, NULL, '1892', 0, 'J. W. Powell, 0', 'Ninth Annual Report of the Bureau of American Ethnology to the Secretary of the Smithsonian Institution 1887-1888', ' Government Printing Office, Washington, D.C.'); INSERT INTO "work" VALUES (1382, NULL, '1981', 0, 'Frances Joan Mathien, 0', 'Non-Utilitarian Items of the Chaco Anasazi: Social and Economic Implications', 'Paper presented at the 46th Annual Meeting of the Society for American Archaeology, San Diego.'); INSERT INTO "work" VALUES (1303, NULL, '1978', 0, 'Thomas R. Lyons, 0; Douglas H. Scovill, 1', 'Non-destructive Archeology and Remote Sensing: A Conceptual and Methodological Stance', ' CRM Bulletin 1(2):1, 12.'); INSERT INTO "work" VALUES (2034, NULL, '1982', 0, 'A. Sofaer, 0; K. M. Sinclair, 1; L. E. Doggett, 2', 'Noon Markings on Fajada Butte, Chaco Canyon, New Mexico', ' Bulletin of the American Astronomy Society 14:872.'); INSERT INTO "work" VALUES (2452, NULL, '1981', 0, 'Ray A. Williamson, 0', 'North America: A Multiplicity of Astronomers', ' In Archaeoastronomy in the Americas, edited by Ray A. Williamson, pp. 61-80. Ballina Press, Los Altos, CA.'); INSERT INTO "work" VALUES (320, NULL, '1985', 0, 'Catherine M. Cameron, 0', 'Notes Concerning the Pueblo Alto Chipped Stone File', ' Ms. on file, NPS Chaco Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2564, NULL, '1934', 0, 'Janet Mc Woods, 0', 'Notes Taken on Excavation of the Court Kiva at Chetro Ketl, Chaco Canyon', ' Season of 1934. Archive 1932, 1946, 1950, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (231, NULL, '1938', 0, 'Donald D. Brand, 0', 'Notes and News, Southwest', ' American Antiquity 5(1):70-71.'); INSERT INTO "work" VALUES (544, NULL, '2000', 0, 'Stephen R. Durand, 0; Kathy Roler Durand, 1', 'Notes from the Edge: Settlement Pattern Changes at the Guadalupe Great House Community', ' In Great House Communities Across the Chacoan Landscape, edited by John Kantner and Nancy M. Mahoney, pp. 101-109. University of Arizona Anthropological Papers No. 64. University of Arizona Press, Tucson.'); INSERT INTO "work" VALUES (1766, NULL, '1951', 0, 'Erik K. Reed, 0', 'Notes on Chaco Canyon Skeletal Material', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2242, NULL, '1930', 0, 'R. P. Vann, 0', 'Notes on Masonry of Big Kiva, East Tower, and Kiva E of Chetro Ketl', ' Archive 1907, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1620, NULL, '1920', 0, 'Nels C. Nelson, 0', 'Notes on Pueblo Bonito', ' In Pueblo Bonito by George Pepper, pp. 381-390. Anthropological Papers No. 27. American Museum of Natural History, New York.'); INSERT INTO "work" VALUES (294, NULL, '1934', 0, 'Edgar D. Cahill, 0', 'Notes on Pueblo Ceremonial Chambers', ' Archive 1943, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2191, NULL, '1909', 0, 'Alfred M. Tozzer, 0', 'Notes on Religious Ceremonials of the Navaho', ' In Putnam Anniversary Volume. Anthropological Essays Presented to Frederic Ward Putnam in Honor of his Seventieth Birthday, April 16, 1909, by His Friends and Associates, pp. 299-343. G. E. Stechert & Co., Publishers, New York.'); INSERT INTO "work" VALUES (620, NULL, '1931', 0, 'Grace Fisher, 0', 'Notes on the First Week''s Work on the Great Bowl', ' Archive 1865, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1575, NULL, '1997', 0, 'Baker H. Morrow, 0', 'Notes on the Landscape Architecture of Anasazi Communities', ' In Anasazi Architecture and American Design, edited by Baker H. Morrow and V. B. Price, pp. 159-167. University of New Mexico Press, Albuquerque.'); INSERT INTO "work" VALUES (1574, NULL, '1992', 0, 'Baker H. Morrow, 0', 'Notes on the Landscape Architecture of Anasazi Communities', ' In Proceedings: The Mesa Verde Symposium on Anasazi Architecture and American Design, edited and coordinated by Baker H. Morrow and V. B. Price, pp. 17-185. Morrow and Co. Ltd., Albuquerque.'); INSERT INTO "work" VALUES (2240, NULL, '1929', 0, 'R. P. Vann, 0', 'Notes on the Masonry of Chetro Ketl', ' Archive 1885, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2130, NULL, '1879', 0, 'G. Thompson, 0', 'Notes on the Pueblos and Their Inhabitants', ' In Report Upon United States Geographical Surveys West of the Hundredth Meridian in Charge of First Lieut. Geo. M. Wheeler, Corps of Engineers, U.S. Army, under the Direction of Brig. Gen. A. A. Humphreys, U.S. Army. Published by Authority of Honorable the Secretary of War, in Accordance with Acts of Congress of June 23, 1874, and February 15, 1875. In Seven Volumes, Accompanied by One Topographic and One Geological Atlas. Part II. Vol. VII, Archeology, pp. 319-324. Government Printing Office, Washington, D.C.'); INSERT INTO "work" VALUES (1046, NULL, '1933', 0, 'Dorothy Keur, 0', 'Observations of Excavations of Chetro Ketl', ' Archive 1872, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (768, NULL, '1998', 0, 'Chris Hardaker, 0', 'Observations on Kiva Designs in Chaco Canyon', ' NewsMac 2a:2-3.'); INSERT INTO "work" VALUES (341, NULL, '1984', 0, 'Catherine M. Cameron, 0; Robert Lee Sappington, 1', 'Obsidian Procurement at Chaco Canyon, A', '. 500-1200. In Recent Research on Chaco Prehistory, edited by W. James Judge and John D. Schelberg, pp. 153-171. Reports of the Chaco Center No. 8. Division of Cultural Research, National Park Service, Albuquerque.'); INSERT INTO "work" VALUES (1883, NULL, '1981', 0, ' Robert L. Sappington, 0; Catherine M. Cameron, 1', 'Obsidian Procurement at Chaco Canyon, New Mexico, AD 500-1200', ' Paper presented at the 46th Annual Meeting of the Society for American Archaeology, San Diego, April 29-May 2. Published in 1984.'); INSERT INTO "work" VALUES (1127, NULL, '1977', 0, 'Stephen H. Lekson, 0', 'Odd Observations on Room Sizes at Alto', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (50, NULL, '1921', 0, 'G. Albright, 0', 'Official Explorations for Pacific Railroads', ' Publications in History 11:102-118. University of California at Berkeley.'); INSERT INTO "work" VALUES (796, NULL, '1932', 0, 'Florence M. Hawley, 0', 'Oldest Tree Ring Record of Ancient Pueblos', ' El Palacio 32:108-110.'); INSERT INTO "work" VALUES (2028, NULL, '1987', 0, 'Anna Sofaer, 0; Rolf Sinclair, 1', 'On Astronomy in Prehistoric Chaco Canyon: A Reply to Reyman', ' Current Anthropology 28(5):670-671.'); INSERT INTO "work" VALUES (1808, NULL, '1986', 0, 'Jonathan E. Reyman, 0', 'On Spiral Motifs at Fajada Butte: Perpetuating Misinformation', ' Current Anthropology 27:155.'); INSERT INTO "work" VALUES (1741, NULL, '1994', 0, 'Robert W. Preucel, 0; Joseph J. Kovacik, 1', 'On the Limits of Selectionism: Reevaluating Population Aggregation at Chaco and Zuni', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (164, NULL, '1869', 0, 'W. A. Bell, 0', 'On the Native Races of New Mexico', ' Journal of Ethnological Society of London 1:222-274.'); INSERT INTO "work" VALUES (337, NULL, '1998', 0, 'Catherine M. Cameron, 0', 'On the Northern Frontier: Chacoan Archaeology in the San Juan Region', ' Paper presented at the 63rd Annual Meeting of the Society for American Archaeology, Seattle.'); INSERT INTO "work" VALUES (1555, NULL, '1880', 0, 'Lewis H. Morgan, 0', 'On the Ruins of a Stone Pueblo on the Anasazi River in New Mexico', ' Peabody Museum of American Archaeology and Ethnology 2(3-4).'); INSERT INTO "work" VALUES (2592, NULL, '1983', 0, 'Michael Zeilik, 0', 'One Approach to Archaeoastromony', ' An Astronomer''s View. Archaeoastronomy 6:4-7.'); INSERT INTO "work" VALUES (261, NULL, '1985', 0, 'David M. Brugge, 0', 'One Theory of What Happened to the Early Chaco Indians', ' The Indian Trader, pp. 18-20. April.'); INSERT INTO "work" VALUES (594, NULL, '1996', 0, 'James D. Farmer, 0', 'Opening the Fourth World: The Semiotics of Anasazi Sun Daggers', ' Paper presented at the 61st Annual Meeting of the Society for American Archaeology, New Orleans.'); INSERT INTO "work" VALUES (1010, NULL, '1986', 0, 'Allen E. Kane, 0', 'Organizational Models for Northern Chacoan Outlier Communities', ' Paper presented at the Third Anasazi Conference, Monument Valley, Utah. Ms. on file, National Park Service, Intermountain Region, Santa Fe Office.'); INSERT INTO "work" VALUES (1003, NULL, '1983', 0, 'W. James Judge, 0; John D. Schelberg, 1; R. Efflund, 2', 'Organizational Variability in Selected SARG Project Areas', ' Paper presented at the 48th Annual Meeting of the Society for American Archaeology, Pittsburgh, April 27-30.'); INSERT INTO "work" VALUES (1400, NULL, '1990', 0, 'Frances Joan Mathien, 0', 'Ornaments Report, Site 29SJ 597 (Bc 213)', ' Draft version. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1401, NULL, '1990', 0, 'Frances Joan Mathien, 0', 'Ornaments Report, Site 29SJ 626', ' Draft version. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1936, NULL, '1984', 0, 'Glenn R. Scott, 0; Robert B. O''Sullivan, 1; David L. Weide with a chapter on the Archeology by William B. Gillespie, 2', 'Geologic Map of the Chaco Culture National Historical Park, Northwestern New Mexico', ' U.S. Geological Survey Map I-1571. Miscellaneous Investigations Series, Government Printing Office, Washington, D.C.'); INSERT INTO "work" VALUES (1381, NULL, '1981', 0, 'Frances Joan Mathien, 0', 'Neutron Activation of Turquoise Artifacts from Chaco Canyon, New Mexico', ' CA Research Conclusions. Current Anthropology 22(3):293-294.'); INSERT INTO "work" VALUES (1411, NULL, '1993', 0, 'Frances Joan Mathien, 0', 'Ornaments and Minerals from 29SJ629', ' In The Spadefoot Toad Site: Investigations at 29SJ629, Chaco Canyon, New Mexico: Artifactual and Biological Analyses. Volume II, edited by Thomas C. Windes, pp. 269-316. Reports of the Chaco Center No. 12. Branch of Cultural Research, National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (1403, NULL, '1991', 0, 'Frances Joan Mathien, 0', 'Ornaments and Minerals from 29SJ633', ' In Excavations at 29SJ633: The Eleventh Hour Site, Chaco Canyon, New Mexico, edited by Frances Joan Mathien, pp. 221-241. Reports of the Chaco Center No. 10. Branch of Cultural Research, National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (1393, NULL, '1985', 0, 'Frances Joan Mathien, 0', 'Ornaments and Minerals from Chaco Canyon, National Park Service Project, 1971-1978', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Revised and partially published in 1997.'); INSERT INTO "work" VALUES (1395, NULL, '1987', 0, 'Frances Joan Mathien, 0', 'Ornaments and Minerals from Pueblo Alto', ' In Investigations at the Pueblo Alto Complex, Chaco Canyon, New Mexico, 1975-1979. Volume III. Artifactual and Biological Analyses, edited by Frances Joan Mathien and Thomas C. Windes, pp. 381-428. Publications in Archeology 18F, Chaco Canyon Studies, National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (1407, NULL, '1992', 0, 'Frances Joan Mathien, 0', 'Ornaments and Minerals from Site 29SJ627', ' In Excavations at 29SJ 627, Chaco Canyon, New Mexico. Volume II. The Artifact Analyses, edited by Frances Joan Mathien, pp. 265-318. Reports of the Chaco Center No. 11. Branch of Cultural Research, National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (1383, NULL, '1981', 0, 'Frances Joan Mathien, 0', 'Ornaments and Minerals of Chaco Canyon, National Park Service Project 1971-1978', ' Draft revised in 1985. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published in 1997.'); INSERT INTO "work" VALUES (1417, NULL, '1997', 0, 'Frances Joan Mathien, 0', 'Ornaments of the Chaco Anasazi', ' In Ceramics, Lithics, and Ornaments of Chaco Canyon. Analyses of Artifacts from the Chaco Project, 1971-1978, edited by F. J. Mathien, pp. 1119-1220. Publications in Archeology 18G, Chaco Canyon Studies. National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (151, NULL, '1861', 0, 'J. W. Barber, 0; H. Howe, 1', 'Our Whole Country', ' In The Past and Present of the United States, Vol. 2, pp. 1438-1441. Cincinnati.'); INSERT INTO "work" VALUES (1729, NULL, '1984', 0, 'Robert P. Powers, 0', 'Outliers and Roads in the Chaco System', ' In New Light on Chaco Canyon, edited by David Grant Noble, pp. 45-58. Exploration, School of American Research, Santa Fe.'); INSERT INTO "work" VALUES (1513, NULL, '1989', 0, 'Judith Miles, 0', 'Overview of Bone Artifacts Excavated from Chaco Culture National Historical Park Between 1973 and 1978', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1219, NULL, '1975', 0, 'Robert H. Lister, 0', 'Overview of a Park', ' In Proceedings of the 2nd Resources Management Conference. Southwest Regional Office, National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (1218, NULL, '1974', 0, 'Robert H. Lister, 0', 'Overview of a Park', ' Paper presented at the Second Resources Management Conference, Southwest Region, National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (989, NULL, '1983', 0, 'W. James Judge, 0', 'PARKMAN: A Computer Graphics Program for Cultural Resource Management', ' CRM Bulletin 7(1):14-16.'); INSERT INTO "work" VALUES (2281, NULL, '1949', 0, 'R. Gordon Vivian, 0', 'Painted Wooden Objects from Chettro Ketl', ' Ms. on file. Later published by Vivian et al. 1975.'); INSERT INTO "work" VALUES (1983, NULL, '1987', 0, 'Alan H. Simmons, 0', 'Paleoeconomy and Paleoenvironments in the Chaco Canyon Region During the Archaic: A Preliminary Report on the Chaco Shelters Project', ' American Archaeology 6(3):166-169.'); INSERT INTO "work" VALUES (1984, NULL, '1976', 0, 'Brona J. Simon, 0', 'Paleoenvironment of Chaco Canyon, New Mexico', ' Ms. on file, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2394, NULL, '1976', 0, 'Stephen G. Wells, 0', 'Paleohydrologic Investigation of Holocene (post-Bonito) Stream Channels in Chaco Canyon, New Mexico', ' A Proposal submitted to Chaco Center, National Park Service. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2243, NULL, '1931', 0, 'R. P. Vann, 0', 'Paleontology of the Upper Cretaceous of Chaco Canyon, New Mexico', ' M.S. thesis, Department of Geology University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2244, NULL, '1942', 0, 'R. P. Vann, 0', 'Paleontology of the Upper Cretaceous of Chaco Canyon, New Mexico', ' University of New Mexico Press, Albuquerque.'); INSERT INTO "work" VALUES (666, NULL, '1978', 0, 'John M. Fritz, 0', 'Paleopsychology Today: Ideational Systems and Human Adaptation in Prehistory', ' Chapter 3 in Social Archaeology, Beyond Subsistence and Dating, edited by Charles L. Redman, Mary Jane Berman, Edward V. Curtain, William T. Langhorn, Nina M. Versaggi, and Jeffrey C. Wanser, pp. 37-59. Academic Press, New York.'); INSERT INTO "work" VALUES (764, NULL, '1974', 0, 'Garman Harbottle, 0', 'Paper presented at the Fifth International Congress of Radiation Research, Seattle', NULL); INSERT INTO "work" VALUES (1781, NULL, '1986', 0, 'Karl J. Reinhard, 0; Karen H. Clary, 1', 'Parasite Analysis of Prehistoric Coprolites from Chaco Canyon', ' In A Biocultural Approach to Human Burials from Chaco Canyon, New Mexico, by Nancy J. Akins, pp. 177-186. Reports of the Chaco Center No. 9. Branch of Cultural Research, National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (2153, NULL, '1991', 0, 'H. Wolcott Toll, III, 0', 'Patterns of Basketmaker III Occupation in the LaPlata Valley, New Mexico', ' Paper presented at the 56th Annual Meeting of the Society for American Archaeology, New Orleans.'); INSERT INTO "work" VALUES (1232, NULL, '1976', 0, 'Richard W. Loose, 0', 'Patterns of Chacoan Site Distribution: An Environmental View', ' Ms. on file, National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (314, NULL, '1981', 0, 'Catherine M. Cameron, 0', 'Patterns of Chipped Stone Raw Material Use in Chaco Canyon, N', '. Paper presented at the 46th Annual Meeting of the Society for American Archaeology, San Diego, April 29-May 2.'); INSERT INTO "work" VALUES (1365, NULL, '1994', 0, 'Debra L. Martin, 0', 'Patterns of Diet and Disease: Health Profiles for the Prehistoric Southwest', ' In Themes in Southwest Prehistory, edited by George J. Gumerman, pp. 87-108. School of American Research, Santa Fe.'); INSERT INTO "work" VALUES (708, NULL, '2000', 0, 'Dennis Gilpin, 0; David E. Purcell, 1', 'Peach Springs Revisited: Surface Recording and Excavation on the South Chaco Slope, New Mexico', ' In Great House communities Across the Chacoan Landscape, edited by John Kantner and Nancy M. Mahoney, pp. 28-38. University of Arizona Anthropological Papers No. 64. University of Arizona Press, Tucson.'); INSERT INTO "work" VALUES (706, NULL, '1998', 0, 'Dennis Gilpin, 0', 'Peach Springs Revisited: Surface Recording and Excavations on the South Chaco Slope, New Mexico', ' Paper presented at the 63rd Annual Meeting of the Society for American Archaeology, Seattle.'); INSERT INTO "work" VALUES (984, NULL, '1981', 0, 'W. James Judge, 0', 'Pecos Conference Report', ' Paper presented at the 54th Pecos Conference, Fort Burgwin.'); INSERT INTO "work" VALUES (269, NULL, '1926', 0, 'Kirk Bryan, 0', 'Pedestal Rocks Formed by Differential Erosion', ' U.S. Geological Survey Bulletin 790:1-15. Government Printing Office, Washington, D.C.'); INSERT INTO "work" VALUES (2110, NULL, '1972', 0, 'W. E. Sudderth, 0', 'Penasco Blanco Pueblo, Chaco Canyon National Monument, New Mexico, Stabilization Report, Vol', '2, 1972. Stabilization report on file in the NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (2111, NULL, '1972', 0, 'W. E. Sudderth, 0', 'Penasco Blanco Pueblo, Chaco Canyon National Monument, New Mexico, Stabilization Report, Vol', '3, 1972. Stabilization report on file in the NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (2109, NULL, '1972', 0, 'W. E. Sudderth, 0', 'Penasco Blanco Pueblo, Chaco Canyon National Monument, New Mexico, Stabilization Report, Vol', '1, 1972. Stabilization report on file in the NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (1449, NULL, '1971', 0, 'Martin T. Mayer, 0', 'Penasco Blanco Pueblo, Chaco Canyon National Monument, Stabilization Report, 1971', ' Stabilization report on file in the NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (2112, NULL, '1972', 0, 'W. E. Sudderth, 0', 'Penasco Blanco, Construction Completion Report', 's. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (655, NULL, '1986', 0, 'Kendrick Frazier, 0', 'People of Chaco: A Canyon and Its Culture', ' W. W. Norton, New York.'); INSERT INTO "work" VALUES (656, NULL, '1999', 0, 'Kendrick Frazier, 0', 'People of Chaco: A Canyon and Its Culture, 2nd edition', ' W. W. Norton, New York.'); INSERT INTO "work" VALUES (117, NULL, '1975', 0, 'H. Homer Aschmann, 0; Leonard W. Bawden, 1; Thomas R. Lyons, 2; Ralph S. Solecki, 3', 'People: Past and Present', ' In Manual of Remote Sensing, edited by Robert G. Reeves, pp. 1999-2060. American Society for Photogrammetry, Falls Church, VA.'); INSERT INTO "work" VALUES (1041, NULL, '1977', 0, 'Kate P. Kent, 0; Virginia Loehr, 1', 'Perishable Materials from Bc 288, Chaco Canyon', ' Anthropological Laboratory, University of Denver.'); INSERT INTO "work" VALUES (1787, NULL, '1933', 0, 'Winifred S. Reiter, 0', 'Personal Adornment of the Ancient Pueblo Indians', ' Unpublished M.A. Thesis, Department of Anthropology, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (356, NULL, '1998', 0, 'L. Carver, 0', 'Personal Ritual or Pee Wee''s Playhouse: An Alternative Interpretation of Chacoan Domestic Space', ' Ms. for Anthropology 599, Kelly Hays-Gilpin, Northern Arizona University.'); INSERT INTO "work" VALUES (400, NULL, '2001', 0, 'Linda S. Cordell, 0; W. James Judge, 1', 'Perspectives on Chaco Society and Polity', ' In Chaco Society and Polity: Papers from the 1999 Conference, edited by Linda S. Cordell, W. James Judge, and June-el Piper, pp. 1-12. New Mexico Archeological Council Special Publication 4. New Mexico Archeological Council, Albuquerque.'); INSERT INTO "work" VALUES (26, NULL, '1982', 0, 'Nancy J. Akins, 0', 'Perspectives on Faunal Resource Utilization, Chaco Canyon', ' New Mexico Archeological Council Newsletter 4(5-6):23-29.'); INSERT INTO "work" VALUES (2046, NULL, '1942', 0, 'Ted C. Sowers, 0', 'Petroglyphs of Chaco Canyon Area', ' Southwestern Lore 8(2):24-26.'); INSERT INTO "work" VALUES (1259, NULL, '1997', 0, 'David W. Love, 0', 'Petrographic Description and Sources of Chipped Stone Artifacts in Chaco Canyon', ' In Ceramics, Lithics, and Ornaments of Chaco Canyon. Analyses of Artifacts from the Chaco Project 1971-1978, edited by Frances Joan Mathien, pp. 610-633. Publications in Archeology 18G, Chaco Canyon Studies. National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (1253, NULL, '1982', 0, 'David W. Love, 0', 'Petrographic Description and Sources of Chipped Stone Artifacts in Chaco Canyon', ' Appendices to Chipped Stone of Chaco Canyon, New Mexico, by Catherine M. Cameron. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published in 1997.'); INSERT INTO "work" VALUES (1638, NULL, '1991', 0, 'Margaret Senter Obenauf, 0', 'Photo Interpretation of Chacoan Roads', ' In Ancient Road Networks and Settlement Hierarchies in the New World, edited by Charles D. Trombold, pp. 34-41. Cambridge University Press, Cambridge.'); INSERT INTO "work" VALUES (1106, NULL, '1960', 0, 'A. N. Kover, 0', 'Photogeologic Map of the Chaco Canyon-2 Quandrangles', ' Mc Kinley County, New Mexico. U.S.G.S. Miscellaneous Geological Investigations Map I-315.'); INSERT INTO "work" VALUES (1719, NULL, '1976', 0, 'Basil G. Pouls, 0; Thomas R. Lyons, 1; James I. Ebert, 2', 'Photogrammetric Mapping and Digitization of Prehistoric Architecture: Techniques and Applications in Chaco Canyon National Monument, New Mexico', ' In Remote Sensing Experiments in Cultural Resource Studies. Non-destructive Methods of Archeological Exploration, Survey, and Analysis, assembled by Thomas R. Lyons, pp. 103-114. Reports of the Chaco Center No. 1. National Park Service and University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1756, NULL, '1998', 0, 'Joyce M. Raab, 0', 'Photograph Catalog Record, Ruin Stabilization Reports, Chaco Canyon National Monument and Chaco Culture National Historical Park, 1938-Present', ' 3 volumes on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1623, NULL, '1983', 0, 'Fred L. Nials, 0', 'Physical Characteristics of Chacoan Roads', ' In Chaco Roads Project, Phase I. A Reappraisal of Prehistoric Roads in the San Juan Basin, 1983, edited by Chris Kincaid, pp. 6-1 to 6-51. Bureau of Land Management, Albuquerque and Santa Fe.'); INSERT INTO "work" VALUES (472, NULL, '1972', 0, 'James M. DeAngelis, 0', 'Physical Geography of the Chaco Canyon Country', ' Ms. on file, Geography Department and NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (623, NULL, '1930', 0, 'Reginald G. Fisher, 0', 'Physiographic Changes in the Chaco Canyon', ' Farmington Time-Hustler 41(19).'); INSERT INTO "work" VALUES (1236, NULL, '1978', 0, 'Richard W. Loose, 0', 'Physiography/Geology', ' In Western Survey Area, edited by Michele Ann Tart, pp. 14-34. Public Service Company of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (233, NULL, '1979', 0, 'John C. Brandt, 0', 'Pictographs and Petroglyphs of the Southwest Indians', ' In Astronomy of the Ancients, edited by K. Brecher and M. Fiertag, p. 34. MIT Press, Cambridge.'); INSERT INTO "work" VALUES (738, NULL, '1893', 0, 'Lewis W. Gunckel, 0', 'Pictographs and Rock Paintings of the Southwest', ' American Antiquarian 15:223-229.'); INSERT INTO "work" VALUES (1344, NULL, '1998', 0, 'Anne Lawrason Marshall, 0', 'Pilgrimage along the Prehistoric Great North Road in New Mexico', ' Presentation at the Society for Pilgrimage Studies Conference, Allahabad, India.'); INSERT INTO "work" VALUES (1325, NULL, '1995', 0, 'J. McKim Malville, 0; Nancy J. Malville, 1', 'Pilgrimage and Astronomy at Chaco Canyon, New Mexico', ' Paper presented at the National Seminar on Pilgrimage, Tourism, and Conservation of Cultural Heritage, Allahabad, India. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published in 2000.'); INSERT INTO "work" VALUES (338, NULL, '2001', 0, 'Catherine M. Cameron, 0', 'Pink Chert, Projectile Points, and the Chacoan Regional system', ' American Antiquity 66(1):79-102.'); INSERT INTO "work" VALUES (1327, NULL, '2001', 0, 'J. McKim Malville, 0; Nancy J. Malville, 1', 'Pilgrimage and Periodic Festivals as Processes of Social Integration in Chaco Canyon', ' Kiva 66(3):327-344.'); INSERT INTO "work" VALUES (215, NULL, '1994', 0, 'Bruce Bradley, 0', 'Pitchers to Mugs: Chacoan Revival and the Demise of the Mesa Verde Tradition', ' Paper presented at the 59th Annual Meeting of the Society for American Archaeology, Anaheim, CA. Published in 1996.'); INSERT INTO "work" VALUES (216, NULL, '1996', 0, 'Bruce Bradley, 0', 'Pitchers to Mugs: Chacoan Revival at Sand Canyon Pueblo', ' Kiva 61(3):241-255.'); INSERT INTO "work" VALUES (815, NULL, '1975', 0, 'Alden C. Hayes, 0', 'Pithouse Y at Shabikeschee (29 SJ 1659)', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2069, NULL, '1996', 0, 'John R. Stein, 0', 'Plan of Work', 'Navajo Springs... Navajo National Historic Preservation Department.'); INSERT INTO "work" VALUES (2181, NULL, '1985', 0, 'Mollie S. Toll, 0', 'Plant Utilization at Pueblo Alto, a Chacoan Town Site: Flotation and Macrobotanical Analyses', ' Castetter Laboratory for Ethnobotanical Studies, Department of Biology, University of New Mexico, Albuquerque. Contract CX 7029-9-0023. Published in 1987.'); INSERT INTO "work" VALUES (2182, NULL, '1987', 0, 'Mollie S. Toll, 0', 'Plant Utilization at Pueblo Alto: Flotation and Macrobotanical Analyses', ' In Investigations at the Pueblo Alto Complex, Chaco Canyon, New Mexico, 1975-1979. Volume III. Artifactual and Biological Analyses, edited by Frances Joan Mathien and Thomas C. Windes, pp. 691-784. Publications in Archeology 18F, Chaco Canyon Studies. National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (419, NULL, '1978', 0, 'Anne C. Cully, 0', 'Plants Collected at Chaco Canyon National Monument', ' Interim Report submitted in fulfillment of Contract PX 7000-5-0802. Chaco Archive 2069C, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1797, NULL, '1978', 0, 'Jonathan E. Reyman, 0', 'Pochteca Burials at Anasazi Sites? In Across the Chichimec Sea', ' Papers in Honor of J. Charles Kelley, edited by Carroll L. Riley and Basil C. Hedrick, pp. 242-259. Southern Illinois University, Carbondale and Edwardsville.'); INSERT INTO "work" VALUES (1173, NULL, '1993', 0, 'Stephen H. Lekson, 0', 'Points and Drills of 29SJ629', ' In The Spadefoot Toad Site: Investigations at 29SJ629, Chaco Canyon, New Mexico. Artifactual and Biological Analyses, Volume II, edited by Thomas C. Windes, pp. 185-199. Reports of the Chaco Center No. 12. Branch of Cultural Research, National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (1187, NULL, '1997', 0, 'Stephen H. Lekson, 0', 'Points, Knives and Drills of Chaco Canyon', ' In Ceramics, Lithics, and Ornaments of Chaco Canyon. Analyses of Artifacts from the Chaco Project, 1971-1978, edited by Frances Joan Mathien, pp. 659-697. Publications in Archeology 18G, Chaco Canyon Studies. National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (1154, NULL, '1985', 0, 'Stephen H. Lekson, 0', 'Points, Knives and Drills of Chaco Canyon', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Revised and published in 1997.'); INSERT INTO "work" VALUES (1135, NULL, '1980', 0, 'Stephen H. Lekson, 0', 'Points, Knives, and Drills', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of new Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1016, NULL, '1996', 0, 'John Kantner, 0', 'Political Competition among the Chaco Anasazi of the American Southwest', ' Journal of Anthropological Archaeology 15:41-105.'); INSERT INTO "work" VALUES (1012, NULL, '1994', 0, 'John Kantner, 0', 'Political Competition among the Chaco Anasazi of the Southern San Juan Basin, New Mexico', ' Unpublished M.A. thesis, Department of Anthropology, University of California at Santa Barbara.'); INSERT INTO "work" VALUES (1013, NULL, '1995', 0, 'John Kantner, 0', 'Political Competition among the Chaco Anasazi of the Southwestern San Juan Basin', ' Paper presented at the 60th Annual Meeting of the Society for American Archaeology, Minneapolis.'); INSERT INTO "work" VALUES (601, NULL, '2000', 0, 'Gary M. Feinman, 0; Kent G. Lightfoot, 1; Steadman Upham, 2', 'Political Hierarchies and Organizational Strategies in the Puebloan Southwest', ' American Antiquity 65(3):449-470.'); INSERT INTO "work" VALUES (2467, NULL, '2000', 0, 'Wirt H. Wills, 0', 'Political Leadership in Chaco Canyon, New Mexico, A', '. 1020-1140. In Alternative Leadership Strategies in the Prehispanic Southwest, edited by Barbara J. Mills, pp. 19-44. University of Arizona Press, Tucson.'); INSERT INTO "work" VALUES (1404, NULL, '1991', 0, 'Frances Joan Mathien, 0', 'Political, Economic, and Demographic Implications of the Chaco Road Network', ' In Ancient Road Networks and Settlement Hierarchies in the New World, edited by Charles D. Trombold, pp. 99-110. Cambridge University Press, Cambridge.'); INSERT INTO "work" VALUES (1386, NULL, '1982', 0, 'Frances Joan Mathien, 0', 'Political, Economic, and Demographic Implications of the Chacoan Road Network', ' Paper presented at the 81st Annual Meeting of the American Anthropological Association, Washington, D.C., Dec. 5. Published in 1991.'); INSERT INTO "work" VALUES (436, NULL, '1992', 0, 'Anne C. Cully, 0', 'Pollen Analysis at 29SJ629, Chaco Canyon, New Mexico', ' MS on file, NPS, SWRO, Santa Fe.'); INSERT INTO "work" VALUES (427, NULL, '1983', 0, 'Anne C. Cully, 0', 'Pollen Analysis at 29SJ629, Chaco Canyon, New Mexico', ' Revised version. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (424, NULL, '1981', 0, 'Anne C. Cully, 0', 'Pollen Analysis at 29SJ629: A Comparison of Two Village Sites in Marcia''s Rincon, Chaco Canyon, New Mexico', ' Castetter Laboratory for Ethnobotanical Studies Technical Series No. 48. Department of Biology, University of new Mexico, Albuquerque. Published in 1985.'); INSERT INTO "work" VALUES (433, NULL, '1985', 0, 'Anne C. Cully, 0', 'Pollen Analysis at Una Vida Pueblo, Chaco Canyon, New Mexico', ' Castetter Laboratory for Ethnobotanical Studies Technical Series No. 155. Submitted in fulfillment of Contract PX 7029-4-C056. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (425, NULL, '1982', 0, 'Anne C. Cully, 0', 'Pollen Analysis from Sites on Block VIII-IX, Navajo Indian Irrigation Project, San Juan County, New Mexico', ' Castetter Laboratory for Ethnobotanical Studies Technical Series No. 61. Department of Biology, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (366, NULL, '1981', 0, 'Karen Husum Clary, 0', 'Pollen Analysis of Coprolites from Chaco Canyon, New Mexico', ' Contract. Castetter Laboratory for Ethnobotanical Studies, Technical Series Report No. 52. University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (457, NULL, '1992', 0, 'Glenna Dean, 0', 'Pollen Analysis of Eight Samples from Mealing Catchment Basins at 29SJ629', ' Castetter Laboratory for Ethnobotanical Studies Technical Report No. 328. Published in 1993.'); INSERT INTO "work" VALUES (458, NULL, '1993', 0, 'Glenna Dean, 0', 'Pollen Analysis of Eight Samples from Mealing Catchment Basins at 29SJ629', ' In The Spadefoot Toad Site: Investigations at 29SJ629, Chaco Canyon, New Mexico. Artifactual and Biological Analyses. Volume II, edited by Thomas C. Windes, pp. 403-412. Reports of the Chaco Center No. 12. Branch of Cultural Research, National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (434, NULL, '1985', 0, 'Anne C. Cully, 0', 'Pollen Evidence of Past Subsistence and Environment at Chaco Canyon, New Mexico', ' In Environment and Subsistence of Chaco Canyon, New Mexico, edited by Frances Joan Mathien, pp. 135-245. Publications in Archeology 18E, Chaco Canyon Studies. National Park Service, Albuquerque.'); INSERT INTO "work" VALUES (429, NULL, '1984', 0, 'Anne C. Cully, 0', 'Pollen Evidence of Past Subsistence and Environment at Chaco Canyon, New Mexico', ' Castetter Laboratory for Ethnobotanical Studies, Technical Series No. 113. Submitted in fulfillment of Contract 7029-9-0023. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published in 1985.'); INSERT INTO "work" VALUES (414, NULL, '1975', 0, 'Anne C. Cully, 0', 'Pollen Samples from Chetro Ketl Fields', ' Ms. in site files, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (152, NULL, '1994', 0, 'Ethne Barnes, 0', 'Polydactyly in the Southwest', ' Kiva 59(4):419-431.'); INSERT INTO "work" VALUES (1207, NULL, '1993', 0, 'Robert P. Leonard, 0; Heidi E. Reed, 1', 'Population Aggregation in the Prehistoric American Southwest: A Selectionist Model', ' American Antiquity 58(4):648-661.'); INSERT INTO "work" VALUES (1083, NULL, '1996', 0, 'Timothy A. Kohler, 0; Lynne Sebastian, 1', 'Population Aggregation in the Prehistoric North American Southwest', ' American Antiquity 61(3):597-602.'); INSERT INTO "work" VALUES (1080, NULL, '1982', 0, 'Ron Kneebone, 0', 'Population Estimates of the San Juan Basin', ' Paper prepared for Anthropology 467. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (506, NULL, '1999', 0, 'Dennis Doxtater, 0', 'Possibilities of "Georitual" Chacoan Constructs and Other Foci at Canyon de Chelly, Kin Bineola, and Hopi Second Mesa', ' Unpublished manuscript on file with author.'); INSERT INTO "work" VALUES (2424, NULL, '1957', 0, 'S. W. West, 0', 'Possibility of Developing a Ground-Water Supply at Chaco Canyon National Monument, San Juan County, New Mexico', ' U.S.G.S.-Open File, 36 p.'); INSERT INTO "work" VALUES (234, NULL, '1973', 0, 'J. C. Brandt, 0; S. P. Moran, 1; R. A. Williamson, 2; R. S. Harrington, 3; C. Cochran, 4; M. Kennedy, 5; W. J. Kennedy, 6; V. D. Chamberlain, 7', 'Possible Records of the Crab Nebula Supernova in the Western United States', ' Bulletin of the American Astronomical Society 5:29.'); INSERT INTO "work" VALUES (235, NULL, '1975', 0, 'J. C. Brandt, 0; S. P. Moran, 1; R. A. Williamson, 2; R. S. Harrington, 3; C. Cochran, 4; M. Kennedy, 5; W. J. Kennedy, 6; V. D. Chamberlain, 7', 'Possible Rock Art Records of the Crab Nebula Supernova in the Western United States', ' In Archeoastronomy in Pre-Columbian America, edited by Anthony F. Aveni, p. 56. University of Texas, Austin.'); INSERT INTO "work" VALUES (1071, NULL, '1996', 0, 'Keith Kintigh, 0; Todd Howell, 1; Andrew Duff, 2', 'Post-Chacoan Social Organizational at the Hinkson Site, New Mexico', ' Kiva 61:257-274.'); INSERT INTO "work" VALUES (1919, NULL, '2002', 0, 'Michael A. Schillaci, 0; Christopher M. Stojanowski, 1', 'Postmarital Residence and Biological Variation at Pueblo Bonito', ' American Journal of Physical Anthropology 119:-.'); INSERT INTO "work" VALUES (1916, NULL, '2000', 0, 'Michael A. Schillaci, 0; Christopher M. Stojanowski, 1', 'Postmarital Residence and Population Structure at Pueblo Bonito', ' American Journal of Physical Anthro-ology, Supplement 30:271.'); INSERT INTO "work" VALUES (1217, NULL, '1997', 0, 'Florence C. Lister, 0', 'Pot Luck: Adventures in Archaeology', ' University of New Mexico Press, Albuquerque.'); INSERT INTO "work" VALUES (1713, NULL, '2000', 0, 'James M. Potter, 0', 'Pots, Parties, and Politics: Communal Feasting in the American Southwest', ' American Antiquity 65(3):471-492.'); INSERT INTO "work" VALUES (379, NULL, '1953', 0, 'Harold Sellers Colton, 0', 'Potsherds: An Introduction to the Study of Prehistoric Southwestern Ceramics and Their Use in Historic Reconstruction', ' The Northern Arizona Society of Science and Art, Flagstaff.'); INSERT INTO "work" VALUES (1999, NULL, '1999', 0, 'James M. Skibo and Gary M. Feinman', 'Pottery and People: A Dynamic Interaction', ' University of Utah Press, Salt Lake City.'); INSERT INTO "work" VALUES (722, NULL, '1928', 0, 'Pliny E. Goddard, 0', 'Pottery of the Southwestern Indians', ' Guide Leaflet No. 73. American Museum of Natural History, New York.'); INSERT INTO "work" VALUES (2147, NULL, '1985', 0, 'H. Wolcott Toll, III, 0', 'Pottery, Production, Public Architecture, and the Chaco Anasazi System', ' Unpublished Ph.D. dissertation, Department of Anthropology, University of Colorado, Boulder. University Microfilms, Ann Arbor.'); INSERT INTO "work" VALUES (2103, NULL, '1997', 0, 'David E. Stuart, 0', 'Power and Efficiency in Eastern Anasazi Architecture', ' A Case of Multiple Evolutionary Trajectories. In Anasazi Architecture and American Design, edited by Baker H. Morrow and V. B. Price, pp. 36-52. University of New Mexico Press, Albuquerque.'); INSERT INTO "work" VALUES (2101, NULL, '1992', 0, 'David E. Stuart, 0', 'Power and Efficiency in Eastern Anasazi Architecture: A Case of Multiple Evolutionary Trajectories', ' In Proceedings: The Mesa Verde Symposium on Anasazi Architecture and American Design, edited and coordinated by Baker H. Morrow and V. B. Price, pp. 33-65. Morrow and Co., Ltd., Albuquerque.'); INSERT INTO "work" VALUES (1875, NULL, '1993', 0, 'Dean J. Saitta, 0', 'Power and Labor in Chacoan Political Economy', ' Paper presented at New Mexico Archaeological Council Symposium. Ms. on file, NPS, Intermountain Region , Santa Fe Office.'); INSERT INTO "work" VALUES (1580, NULL, '1999', 0, 'Jon Muller, 0; David R. Wilcox, 1', 'Powhatan''s Mantle as Metaphor: Comparing Macroregional Integration in the Southwest and Southeast', ' In Great Towns and Regional Polities in the Prehistoric American Southwest and Southeast, edited by Jill E. Neitzel, pp. 159-164. The Amerind Foundation, Dragoon, and University of New Mexico Press, Albuquerque.'); INSERT INTO "work" VALUES (273, NULL, '1941', 0, 'Kirk Bryan, 0', 'Pre-Columbian Agriculture in the Southwest as Conditioned by Periods of Alluviation', ' Annals of the Association of American Geographers 31(4):219-242.'); INSERT INTO "work" VALUES (1650, NULL, '1998', 0, 'J. W. Palmer, 0; M. G. Hollander, 1; P. S. Z. Rogers, 2; T. M. Benjamin, 3; C. J. Duffy, 4; J. B. Lambert, 5; J. A. Brown, 6', 'Pre-Columbian Metallurgy: Technology, Manufacture, and Microprobe Analyses of Copper Bells from the Greater Southwest', ' Archaeometry 40(2):361-382.'); INSERT INTO "work" VALUES (2334, NULL, '1973', 0, 'R. Gwinn Vivian, 0; R. C. Buettner, 1', 'Pre-Columbian Roadways in the Chaco Canyon Region, New Mexico', ' Paper presented at the 38th Annual Meeting of the Society for American Archaeology, San Francisco.'); INSERT INTO "work" VALUES (1923, NULL, '1950', 0, 'A. Schulman, 0', 'Pre-Columbian Towers in the Southwest', ' American Antiquity 15:288-297.'); INSERT INTO "work" VALUES (1234, NULL, '1977', 0, 'Richard W. Loose, 0', 'Pre-Pleistocene Geology', ' In Settlement and Subsistence along the Lower Chaco River. The CGP Survey, edited by Charles A. Reher, pp. 139-148. University of New Mexico Press, Albuquerque.'); INSERT INTO "work" VALUES (2282, NULL, '1949', 0, 'R. Gordon Vivian, 0', 'Pre-historic Handy Man', ' New Mexico Magazine 27(6):14, 39-41.'); INSERT INTO "work" VALUES (933, NULL, '1977', 0, 'Lynn B. Jorde, 0', 'Precipitation Cycles and Cultural Buffering in the Prehistoric Southwest', ' In For Theory Building in Archaeology, edited by Lewis R. Binford, pp. 385-396. Academic Press, New York.'); INSERT INTO "work" VALUES (691, NULL, '1983', 0, 'William B. Gillespie, 0', 'Precipitation Trends: 900-1300', ' In The Outlier Survey, A Regional View of Settlement in the San Juan Basin, by Robert P. Powers, William B. Gillespie and Stephen H. Lekson, pp. 279-283. Reports of the Chaco Center No. 3. National Park Service, Albuquerque.'); INSERT INTO "work" VALUES (991, NULL, '1983', 0, 'W. James Judge, 0', 'Predictive Modeling in Regional Archeological Analysis', ' Paper presented at the Research Seminar in Archeology, National Park Service, Ft. Collins, CO., May 22-27.'); INSERT INTO "work" VALUES (1940, NULL, '1981', 0, 'Dan Scurlock, 0', 'Prehistoric Adaptive Use of Passive Energy at Chaco Canyon', ' Contract Abstracts and CRM Archaeology 2:36-41.'); INSERT INTO "work" VALUES (187, NULL, '1890', 0, 'F. T. Bickford, 0', 'Prehistoric Cave Dwellings', ' Century Magazine 40:896-911.'); INSERT INTO "work" VALUES (1538, NULL, '1990', 0, 'Jeanette S. Mobley-Tanaka, 0', 'Prehistoric Community and Community Interaction at Chimney Rock, Colorado', ' Unpublished M.A. thesis, Department of Anthropology, University of Colorado, Boulder.'); INSERT INTO "work" VALUES (367, NULL, '1983', 0, 'Karen Husum Clary, 0', 'Prehistoric Coprolite Remains from Chaco Canyon, New Mexico: Inferences for Anasazi Diet and Subsistence', ' Submitted in fulfillment of Contracts PX 7486-7-0125 and PX 7029-1-1106. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (368, NULL, '1983', 0, 'Karen Husum Clary, 0', 'Prehistoric Coprolite Remains from Chaco Canyon, New Mexico: Inferences for Anasazi Diet and Subsistence', ' Unpublished M.S. thesis, Department of Anthropology, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1055, NULL, '1917', 0, 'Alfred V. Kidder, 0', 'Prehistoric Cultures of the San Juan Drainage', ' Proceedings of the International Congress of Americanists for 1910 19:108-113.'); INSERT INTO "work" VALUES (33, NULL, '1985', 0, 'Nancy J. Akins, 0', 'Prehistoric Faunal Utilization in Chaco Canyon Basketmaker III through Pueblo III', ' In Environment and Subsistence of Chaco Canyon, New Mexico, edited by Frances Joan Mathien, pp. 305-445. Publications in Archeology 18E, Chaco Canyon Studies. National Park Service, Albuquerque.'); INSERT INTO "work" VALUES (29, NULL, '1984', 0, 'Nancy J. Akins, 0', 'Prehistoric Faunal Utilization in Chaco Canyon, Basketmaker III through Pueblo III', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published in 1985.'); INSERT INTO "work" VALUES (832, NULL, '1905', 0, 'Edgar L. Hewett, 0', 'Prehistoric Irrigation in the Navajo Desert', ' Records of the Past 4:323-329.'); INSERT INTO "work" VALUES (180, NULL, '1986', 0, 'Julio L. Betancourt, 0; Jeffrey S. Dean, 1; Herbert M. Hull, 2', 'Prehistoric Long-Distance Transport of Construction Beams, Chaco Canyon, New Mexico', ' American Antiquity 51(2):370-375.'); INSERT INTO "work" VALUES (179, NULL, '1984', 0, 'Julio L. Betancourt, 0; Jeffrey S. Dean, 1; Herbert M. Hull, 2', 'Prehistoric Long-Distance Transport of Spruce and Fir Construction Beams, Chaco Canyon, New Mexico', ' Ms. on file, Department of Geosciences, University of Arizona, Tucson. Revised and published in 1986.'); INSERT INTO "work" VALUES (1214, NULL, '1984', 0, 'Kent G. Lightfoot, 0', 'Prehistoric Political Dynamics: A Case Study from the American Southwest', ' Northern Illinois University Press, DeKalb.'); INSERT INTO "work" VALUES (793, NULL, '1929', 0, 'Florence M. Hawley, 0', 'Prehistoric Pottery Pigments in the Southwest', ' American Anthropologist 31:731-754.'); INSERT INTO "work" VALUES (951, NULL, '1928', 0, 'Neil Merton Judd, 0', 'Prehistoric Pueblo Bonito, New Mexico', ' In Explorations and Field-Work of the Smithsonian Institution in 1927, pp. 141-148. Smithsonian Institution Publication 2957, Washington, D.C.'); INSERT INTO "work" VALUES (1816, NULL, '1990', 0, 'Jonathan E. Reyman, 0', 'Prehistoric Pueblos: Models for the Future', ' First 20 Arts annd Sciences Lectures, College of Arts and Sciences Illinois State University, Normal.'); INSERT INTO "work" VALUES (1858, NULL, '1992', 0, 'John R. Roney, 0', 'Prehistoric Roads and Regional Interaction in the Chacoan System', ' In Anasazi Regional Organization and the Chaco System, edited by David E. Doyel, pp. 123-131. Anthropological Papers No. 5. Maxwell Museum of Anthropology, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1857, NULL, '1990', 0, 'John R. Roney, 0', 'Prehistoric Roads and Regional Interaction in the Chacoan System', ' Paper presented at the 55th Annual Meeting of the Society for American Archaeology. Published in 1992.'); INSERT INTO "work" VALUES (1960, NULL, '1999', 0, 'Owen Severance, 0', 'Prehistoric Roads in Southeastern Utah', ' In La Frontera: Papers in Honor of Patrick H. Beckett, edited by Meliha S. Duran and David T. Kirkpatrick, pp. 185-195. Archaeological Society of New Mexico: 25. Albuquerque.'); INSERT INTO "work" VALUES (1854, NULL, '1928', 0, 'Ramona Rollins-Griffin, 0', 'Prehistoric Ruins of Chaco Canyon', ' Privately printed.'); INSERT INTO "work" VALUES (726, NULL, '1973', 0, 'Paul Grebinger, 0', 'Prehistoric Social Organization in Chaco Canyon, New Mexico: An Alternative Reconstruction', ' The Kiva 39(1):3-23. Tucson.'); INSERT INTO "work" VALUES (727, NULL, '1978', 0, 'Paul Grebinger, 0', 'Prehistoric Social Organization in Chaco Canyon, New Mexico: An Evolutionary Perspective', ' In Discovering Past Behavior, Experiments in the Archaeology of the American Southwest XI, edited by Paul Grebinger, pp. 73-100. Gordon and Breach Science Publishers, New York and London.'); INSERT INTO "work" VALUES (57, NULL, '1949', 0, 'Charles A. Amsden, 0', 'Prehistoric Southwesterners from Basketmaker to Pueblo', ' Southwest Museum, Los Angeles.'); INSERT INTO "work" VALUES (1654, NULL, '1982', 0, 'Natalie B. Pattison, 0', 'Prehistoric Stairways in Chaco Canyon', ' Paper presented at the 81st Annual Meeting of the American Anthropological Association, Washington, D.C.'); INSERT INTO "work" VALUES (426, NULL, '1982', 0, 'Anne C. Cully, 0', 'Prehistoric Subsistence at Bis sa''ani Ruin and Associated Small Sites: Evidence from Pollen Analysis', ' Castetter Laboratory for Ethnobotanical Studies Technical Series No. 65. Department of Biology, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (428, NULL, '1983', 0, 'Anne C. Cully, 0', 'Prehistoric Subsistence at Chaco Canyon: Evidence from Pollen Analysis', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (613, NULL, '1918', 0, 'Jesse W. Fewkes, 0', 'Prehistoric Towers and Castles of the Southwest', ' Art and Archaeology 9:353-366.'); INSERT INTO "work" VALUES (378, NULL, '1941', 0, 'Harold Sellers Colton, 0', 'Prehistoric Trade in the Southwest', ' The Scientific Monthly 52:308-319.'); INSERT INTO "work" VALUES (224, NULL, '1935', 0, 'Donald D. Brand, 0', 'Prehistoric Trade in the Southwest', ' New Mexico Business Review 4(4):202-209.'); INSERT INTO "work" VALUES (757, NULL, '1988', 0, 'Stephen A. Hall, 0', 'Prehistoric Vegetation and Environment at Chaco Canyon', ' American Antiquity 53(3):582-592.'); INSERT INTO "work" VALUES (1118, NULL, '1999', 0, 'Steven A. LeBlanc, 0', 'Prehistoric Warfare in the American Southwest', ' University of Utah Press, Salt Lake City.'); INSERT INTO "work" VALUES (2305, NULL, '1972', 0, 'R. Gwinn Vivian, 0', 'Prehistoric Water Conservation in Chaco Canyon', ' Final Technical Report to the National Science Foundation, Grant No. GS-3100, Washington, D.C.'); INSERT INTO "work" VALUES (2382, NULL, '1984', 0, 'A. Helene Warren, 0; Frances Joan Mathien, 1', 'Prehistoric and Historic Turquoise Mining in the Cerrillos District', ' In Collected Papers in Honor of Albert H. Schroeder, edited by Charles Lange, pp. 93-127. Papers of the Archaeological Society of New Mexico: 10.'); INSERT INTO "work" VALUES (736, NULL, '1968', 0, 'George G. Gumerman, 0; Alan P. Olson, 1', 'Prehistory of the Puerco Valley, Eastern Arizona', ' Plateau 40(40:113-127.'); INSERT INTO "work" VALUES (391, NULL, '1984', 0, 'Linda S. Cordell, 0', 'Prehistory of the Southwest: Systems of Regional Integration A', '. 900-1150. Academic Press, New York.'); INSERT INTO "work" VALUES (679, NULL, '1977', 0, 'William B. Gillespie, 0', 'Preliminary Analysis of Faunal Remains from Site 29SJ1613', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuqerque.'); INSERT INTO "work" VALUES (1128, NULL, '1977', 0, 'Stephen H. Lekson, 0', 'Preliminary Analysis of Materials from Floor Fill, Floor Contact, and Associated Feature Contexts, Floor 2, Room 145, Alto (1976 Season)', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1845, NULL, '1979', 0, 'William J. Robinson and Martin Rose', 'Preliminary Annual and Seasonal Dendroclimatic Reconstruction for the Northwest Plateau, Southwest Colorado, Southwest Mountains and Northern Mountains, Climatic Regions, A', '. 900-1969. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1862, NULL, '1979', 0, 'Martin Rose, 0', 'Preliminary Annual and Seasonal Dendroclimatic Reconstructions for Four Climatic Regions Including and Surrounding Chaco Canyon Canyon', ' Labortory of Tree-Ring Research, University of Arizona, Tucson. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (795, NULL, '1931', 0, 'Florence M. Hawley, 0', 'Preliminary Field Report on Chettro Ketl Dump-1931', ' Archive 1841, 1867, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. '); INSERT INTO "work" VALUES (2483, NULL, '1977', 0, 'Thomas C. Windes, 0', 'Preliminary Investigations at the Pueblo Alto Complex, Chaco Canyon, 1976', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1134, NULL, '1980', 0, 'Stephen H. Lekson, 0', 'Preliminary Notes on BMIII to PIII Projectile Points of Chaco Canyon, New Mexico', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1812, NULL, '1988', 0, 'Jonathan E. Reyman, 0', 'Preliminary Notes on Orientation Fieldwork at Kin Nahasbas, Chaco Canyon', ' In Historic Structure Report, Kin Nahasbas Ruin, Chaco Culture National Historical Park, New Mexico, by Frances Joan Mathien and Thomas C. Windes, pp. 307-308. Branch of Cultural Research, National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (2323, NULL, '1991', 0, 'R. Gwinn Vivian, 0', 'Preliminary Report', ' ARPA Permit 91-CHCU-1, Archaeological Testing-Chaco Culture National Historical Park. Report on file, Southwest Regional Office, National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (283, NULL, '1941', 0, 'Ripley P. Bullen, 0', 'Preliminary Report', ' Bc 54, Chaco Canyon, New Mexico. Archives 2086, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2200, NULL, '1979', 0, 'Marcia L. Truell, 0', 'Preliminary Report 29SJ627', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (210, NULL, '1974', 0, 'Bruce Bradley, 0', 'Preliminary Report of Excavations at Wallace Ruin, 1969-1974', ' Southwestern Lore 40(3-4):63-71.'); INSERT INTO "work" VALUES (640, NULL, '1985', 0, 'Dabney A. Ford, 0', 'Preliminary Report of Investigations at 29SJ1426', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2572, NULL, '1938', 0, 'Margaret S. Woods, 0', 'Preliminary Report of the 1937 Excavations of Talus Unit #1', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1767, NULL, '1951', 0, 'Erik K. Reed, 0', 'Preliminary Report on Human Skeletal Material from Chaco Canyon, New Mexico', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1726, NULL, '1983', 0, 'Robert P. Powers, 0', 'Preliminary Report on Inventory Survey at Chaco Culture National Historical Park', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1730, NULL, '1984', 0, 'Robert P. Powers, 0', 'Preliminary Report on Inventory Survey at Chaco Culture National Historical Park', ' Summer 1983. Ms. on file, Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1739, NULL, '1985', 0, 'Robert P. Powers, 0; Peter J. McKenna, 1', 'Preliminary Report on Inventory Survey at Chaco Culture National Historical Park, Summer, 1984', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1428, NULL, '1983', 0, 'Frances Joan Mathien, 0; Thomas C. Windes, 1', 'Preliminary Report on the 1983 Excavations at Kin Nahasbas, Chaco Canyon', ' Paper presented at the 56th Pecos Conference, Bluff, UT.'); INSERT INTO "work" VALUES (381, NULL, '1977', 0, 'Gary J. Conley, 0', 'Preliminary Report on the Analysis of Coprolites from Kin Kletso', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1684, NULL, '1974', 0, 'Donal C. Phibbs, 0', 'Preliminary Report on the Excavation of CM 156, a Small Unit Pueblo on the Chacra Mesa, New Mexico', ' University of New Mexico Proposal No. 101-42, Maxwell Museum of Anthropology. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque and National Park Service Library, Santa Fe.'); INSERT INTO "work" VALUES (533, NULL, '1979', 0, 'Dwight L. Drager, 0; Thomas R. Lyons, 1', 'Preliminary Report-Site 29SJ1010, the Poco Site', ' Ms. on file, Division of Remote Sensing, National Park Service, Santa Fe and Accession 57, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1250, NULL, '1980', 0, 'David W. Love, 0', 'Preliminary Sedimentologic Analysis of Roof Adobe from Pueblo Alto', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published in 1987.'); INSERT INTO "work" VALUES (1256, NULL, '1987', 0, 'David W. Love, 0', 'Preliminary Sedimentologic Analysis of Roof Adobe from Pueblo Alto', ' In Investigations at the Pueblo Alto Complex Chaco Canyon, New Mexico, 1975-1979. Volume IV, Microfiche, by Thomas C. Windes and Frances Joan Mathien, MF-32-43. Publications in Archeology 18F, Chaco Canyon Studies. National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (532, NULL, '1975', 0, 'Dwight L. Drager, 0; Thomas R. Lyons, 1', 'Preliminary Site Report, Site 29SJ1010, The Poco Site', ' Ms. in site files, Accession 57, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1587, NULL, '1983', 0, 'Thomas H. Nash, III, 0; Milton R. Sommerfeld, 1; Lorene L. Sigal, 2', 'Preliminary Study on Florestins and Elemental Concentrations of Lichens from Chaco Canyon National Monument, New Mexico', ' Journal of the Arizona-Nevada Academy of Science 18:53-59.'); INSERT INTO "work" VALUES (1586, NULL, '1979', 0, 'Thomas H. Nash, III, 0; and Lorene L. Sigal, 1', 'Preliminary Study on the Lichens of Chaco Canyon National Monument', ' Ms. on file, Natural Resources, National Park Service, Intermountain Region, Santa Fe Office.'); INSERT INTO "work" VALUES (1031, NULL, '1974', 0, 'Edmund Kelley, 0; Loren D. Potter, 1', 'Preliminary Vegetation Type Map of Chaco Canyon', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. (Figure appears in Potter 1974.)'); INSERT INTO "work" VALUES (1878, NULL, '1999', 0, 'Dean J. Saitta, 0', 'Prestige, Agency, and Change in Middle-range Societies', ' In Material Symbols: Culture and Economy in Prehistory, edited by J. E. Robb, pp. 135-149. Center for Archaeological Investigations Occasional paper No. 26. Southern Illinois University, Carbondale.'); INSERT INTO "work" VALUES (1809, NULL, '1987', 0, 'Jonathan E. Reyman, 0', 'Priests, Power and Politics: Some Implications of Socioceremonial Control', ' In Astronomy and Ceremony in the Prehistoric Southwest, edited by John B. Carlson and W. James Judge, pp. 121-147. Papers of the Maxwell Museum of Anthropology No. 2. University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (923, NULL, '1998', 0, 'Charles David Johnson, 0', 'Primary Function of Anasazi Towers: A GIS and Remote Sensing Analysis', ' Paper presented at the 63rd Annual Meeting of the Society for American Archaeology, Seattle.'); INSERT INTO "work" VALUES (2114, NULL, '1947', 0, 'T. A. Sullivan, 0', 'Proclamations and Orders Relating to the National Park Service Up to January 1, 1945', ' National Park Service, Government Printing Office, Washington, D.C.'); INSERT INTO "work" VALUES (1788, NULL, '2001', 0, 'Colin Renfrew, 0', 'Production and Consumption in a Sacred Economy: The Material Correlates of High Devotional Expression at Chaco Canyon', ' American Antiquity 66(1):14-25.'); INSERT INTO "work" VALUES (2381, NULL, '1980', 0, 'A. Helene Warren, 0', 'Production and Distribution of Pottery in Chaco Canyon and Northwestern New Mexico', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1950, NULL, '1990', 0, 'Lynne Sebastian, 0; Patrick Hogan, 1', 'Productive Potential and Cultural Complexity in Chaco Canyon', ' Paper presented at the 1990 Annual Meeting of the American Association for the Advancement of Science, New Orleans.'); INSERT INTO "work" VALUES (1122, NULL, '1993', 0, 'Martha Lee, 0; Douglas Stephens, 1', 'Progress Report for the Assessment of Visitor Experiences at Three Cultural Parks', ' Submitted in fulfillment of Cooperative Agreement CA-8000-8-0002, No. 13 by Northern Arizona University. Ms. on file, Natural Resources Office, National Park Service, Intermountain Region, Denver.'); INSERT INTO "work" VALUES (1724, NULL, '1982', 0, 'Robert P. Powers, 0', 'Progress Report on the Draft Joint Management Plan for the Chacoan Archeological Protection Sites', ' Paper presented at the New Mexico Archeological Council Workshop No. 1: Archeological Research in the San Juan Basin. Chaco Culture National Historical Park, NM.'); INSERT INTO "work" VALUES (1725, NULL, '1982', 0, 'Robert P. Powers, 0', 'Progress Report on the Draft Joint Management Plan for the Chacoan Archeological Protection Sites', ' New Mexico Archeological Council Newsletter 4(5-6):'); INSERT INTO "work" VALUES (521, NULL, '1980', 0, 'Dwight L. Drager, 0', 'Projecting Archeological Site Concentration from Cover-Type Maps Developed from Remote Sensing Data', ' In Proceedings of the Conference on Scientific Research in the National Parks (2nd) Held at San Francisco, California on November 26-30, 1979. Volume I, pp. 151-157. National Park Service, Washington, D.C.'); INSERT INTO "work" VALUES (528, NULL, '1983', 0, 'Dwight L. Drager, 0', 'Projecting Archeological Site Concentrations in the San Juan Basin, New Mexico', ' In Remote Sensing in Cultural Resource Management: The San Juan Basin Project, edited by Dwight L. Drager and Thomas R. Lyons, pp. 123-127. Cultural Resources Management Division, National Park Service, Washington, D.C.'); INSERT INTO "work" VALUES (530, NULL, '1983', 0, 'Dwight L. Drager, 0; Arthur K. Ireland, 1', 'Projecting Archeological Site Occurrences in the Navajo Indian Irrigation Project', ' In Remote Sensing in Cultural Resources Management: The San Juan Basin Project, edited by Dwight L. Drager and Thomas R. Lyons, pp. 103-115. Cultural Resources Management Division, National Park Service, Washington, D.C.'); INSERT INTO "work" VALUES (1524, NULL, '1938', 0, 'T. C. Miller, 0', 'Proposed Stabilization of Threatening Rock', ' Southwestern Monuments Report, Supplement for April, p. 361-362. Coolidge.'); INSERT INTO "work" VALUES (222, NULL, '1969', 0, 'Zorro Bradley, 0; Wilfred D. Logan, 1', 'Prospectus: Chaco Canyon Studies', ' National Park Service, Washington, D.C.'); INSERT INTO "work" VALUES (2509, NULL, '1984', 0, 'Thomas C. Windes, 0', 'Pueblo Alto', ' In Great Pueblo Architecture of Chaco Canyon, New Mexico, edited by Stephen H. Lekson, pp. 192-209. Publications in Archeology 18B, Chaco Canyon Studies. National Park Service, Washington, D.C.'); INSERT INTO "work" VALUES (1849, NULL, '1992', 0, 'Arthur H. Rohn, 0', 'Pueblo Architectural Layout as a Reflection of Social Organization', ' In Proceedings: The Mesa Verde Symposium on Anasazi Architecture and American Design, edited and coordinated by Baker H. Morrow and V. B. Price, pp. 85-111. Morrow and Co., Ltd., Albuquerque.'); INSERT INTO "work" VALUES (2050, NULL, '1939', 0, 'H. J. Spinden, 0', 'Pueblo Bonito', ' Region 3 Quarterly. 1(2). National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (1680, NULL, '1920', 0, 'George H. Pepper, 0', 'Pueblo Bonito', ' Anthropological Papers of the American Museum of Natural History Vol. 27. New York.'); INSERT INTO "work" VALUES (1853, NULL, '1933', 0, 'W. E. Rollins, 0', 'Pueblo Bonito', ' New Mexico 11:15-16, 50-52.'); INSERT INTO "work" VALUES (1681, NULL, '1996', 0, 'George H. Pepper, 0', 'Pueblo Bonito', ' Reprint of 1920 with an introduction by David Stuart. University of New Mexico Press, Albuquerque.'); INSERT INTO "work" VALUES (1132, NULL, '1978', 0, 'Stephen H. Lekson, 0', 'Pueblo Bonito Architecture', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2014, NULL, '1994', 0, 'Anna Sofaer, 0', 'Pueblo Bonito Petroglyph on Fajada Butte: Solar Aspects', ' To be published in International Rock Art Conference Papers, edited by E. C. Krupp,'); INSERT INTO "work" VALUES (357, NULL, '1972', 0, 'George J. Chambers, 0', 'Pueblo Bonito Ruin, Chaco Canyon National Monument, New Mexico, Stabilization Report 1972', ' Ms. on file, Chaco Culture National Historical Park and NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (952, NULL, '1928', 0, 'Neil Merton Judd, 0', 'Pueblo Bonito and Its Architectural Development', ' Paper presented at the 23rd International Congress of Americanists. Published in 1930.'); INSERT INTO "work" VALUES (954, NULL, '1930', 0, 'Neil Merton Judd, 0', 'Pueblo Bonito and Its Architectural Development', ' Proceedings of the 23 International Congress of Americanists, September 1928, pp. 70-73. New York.'); INSERT INTO "work" VALUES (2451, NULL, '1978', 0, 'Ray A. Williamson, 0', 'Pueblo Bonito and the Sun', ' Archaeoastronomy (Supplement to the Journal for the History of Astronomy) 1:5-6.'); INSERT INTO "work" VALUES (2554, NULL, '1922', 0, 'Clark Wissler, 0', 'Pueblo Bonito as Made Known by the Hyde Expedition', ' Natural History 22(4):343-354.'); INSERT INTO "work" VALUES (2270, NULL, '1941', 0, 'R. Gordon Vivian, 0', 'Pueblo Bonito, Chaco Canyon National Monument, 1941', ' Stabilization report on file in NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (6, NULL, '1975', 0, 'Stephen E. Adams, 0', 'Pueblo Bonito, Chaco Canyon National Monument, Stabilization Report 1975', ' Ruins Stabilization Unit, Western Archeological Center, Tucson. Stabilization report on file in the NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (2271, NULL, '1941', 0, 'R. Gordon Vivian, 0', 'Pueblo Bonito, Report of Stabilization Made Necessary by Fall of Threatening Rock, April-June, 1946, Chaco Canyon National Monument', ' Stabilization report on file in NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (942, NULL, '1923', 0, 'Neil Merton Judd, 0', 'Pueblo Bonito, The Ancient', ' National Geographic Magazine 43:99-108.'); INSERT INTO "work" VALUES (159, NULL, '1980', 0, 'Victor Baxter, 0', 'Pueblo Bonito: A Case Study in Community Design to Utilize Solar Energy', ' Unpublished M.S. thesis, Department of Landscape Architecture, University of Wisconsin, Madison.'); INSERT INTO "work" VALUES (1606, NULL, '2003', 0, 'Jill E. Neitzel, 0', 'Pueblo Bonito: Center of the Chacoan World, edited by Jill E', 'Neitzel. Smithsonian Institution Press, Washington, D.C.'); INSERT INTO "work" VALUES (287, NULL, '1996', 0, 'Wendy Bustard, 0', 'Pueblo Bonito: When a House Is Not a Home', ' Paper presented at the 61st Annual Meeting of the Society for American Archaeology, New Orleans. Published in 2003.'); INSERT INTO "work" VALUES (292, NULL, '2003', 0, 'Wendy Bustard, 0', 'Pueblo Bonito: When a House is Not a Home', ' In Pueblo Bonito: Center of the Chacoan World, edited by Jill E. Neitzel pp. . Smithsonian Institution Press, Washington, D.C.'); INSERT INTO "work" VALUES (1479, NULL, '1982', 0, 'Peter J. McKenna, 0; H. Wolcott Toll, 1', 'Pueblo II Ceramics at 29SJ1360: Description, Analysis, and Discussion of Ceramics from a Small Site in Chaco Canyon', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published in 1984.'); INSERT INTO "work" VALUES (2528, NULL, '2001', 0, 'Thomas C. Windes, 0', 'Pueblo II-III House Location Patterns in the Chaco Canyon Area: A Short Description', ' In Chaco Society and Polity: Papers from the 1999 Conference, edited by Linda S. Cordell, W. James Judge, and June-el Piper, pp. 31-45. NMAC Special Publication No. 4. New Mexico Archeological Council, Albuquerque.'); INSERT INTO "work" VALUES (2441, NULL, '1996', 0, 'David R. Wilcox, 0', 'Pueblo III People and Polity in a Relational Context', ' In The Prehistoric Pueblo World, A.D. 1150-1350, edited by Michael A. Adler pp, 241-254. The University of Arizona Press, Tucson.'); INSERT INTO "work" VALUES (921, NULL, '1964', 0, 'S. C. Jett, 0', 'Pueblo Indian Migrations: An Evaluation of the Possible Physical and Cultural Determinants', ' American Antiquity 29(3):281-300.'); INSERT INTO "work" VALUES (154, NULL, '1933', 0, 'Katherine Bartlett, 0', 'Pueblo Milling Stones of the Flagstaff Region and Their Relation to Others in the Southwest', ' Museum of Northern Arizona Bulletin 3:3-32. Flagstaff.'); INSERT INTO "work" VALUES (1230, NULL, '1974', 0, 'Richard W. Loose, 0', 'Pueblo Myth and Narrative: A Key to Prehistoric Technology', ' Paper prepared for Anthropology 352, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1540, NULL, '1999', 0, 'Ann Moore, 0; Christian Preston, 1', 'Pueblo Pintado Holds Secrets of Chaco''s Past', ' New Mexico Magazine 77(9).'); INSERT INTO "work" VALUES (826, NULL, '1972', 0, 'Sam R. Henderson, 0; Martin T. Mayer, 1', 'Pueblo Pintado Ruin, Chaco Canyon National Monument, New Mexico, Stabilization Report, 1972', ' Ms. on file, Chaco Culture National Historical Park and NPS Chaco Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1451, NULL, '1967', 0, 'Martin T. Mayer, 0; William M. Waggoner, 1', 'Pueblo Pintado, Chaco Canyon National Monument, 1967', ' Stabilization report on file in the NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (1338, NULL, '1996', 0, 'Anne Lawrason Marshall, 0', 'Pueblo Placement: The Siting of Outlying Chacoan Structures', ' Paper presented at the 49th Annual Meeting of the Society of Architectural Historians, St. Louis, April.'); INSERT INTO "work" VALUES (2116, NULL, '1990', 0, 'Rina Swentzell, 0', 'Pueblo Space, Form, and Mythology', ' In Pueblo Style and Regional Architecture, edited by N. C. Markovich, W. F. E. Preiser, and F. G. Sturm, pp. 23-30. Van Nostrand Reinhold, New York.'); INSERT INTO "work" VALUES (158, NULL, '1902', 0, 'Henry M. Baum, 0', 'Pueblo and Cliff Dwellers of the Southwest', ' Records of the Past 1:356-361.'); INSERT INTO "work" VALUES (960, NULL, '1959', 0, 'Neil Merton Judd, 0', 'Pueblo del Arroyo, Chaco Canyon, New Mexico', ' Smithsonian Miscellaneous Collections 138(1). Smithsonian Institution, Washington, D.C.'); INSERT INTO "work" VALUES (1938, NULL, '1975', 0, 'Vincent Scully, 0', 'Pueblo: Mountain, Village, Dance', ' Thames and Hudson, London.'); INSERT INTO "work" VALUES (2099, NULL, '1980', 0, 'Mollie Struever, 0', 'Quarterly Report on Contract Projects', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2097, NULL, '1979', 0, 'Mollie Struever, 0', 'Quarterly Report: Priorities for Flotation and Macrobotanical Analyses through the End of the Chaco Project (Sept', '1, 1979 to Aug. 31, 1980). Ms. on file, NPS Chaco Culture NHP Museum Archives, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2170, NULL, '1980', 0, 'Mollie S. Toll, 0', 'Quarterly Report on Contract Projects', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2400, NULL, '1983', 0, 'Stephen G. Wells, 0; Devon E. Jercinovic, 1; Larry N. Smith, 2; Alberto A. Gutierrez, 3; John Pickle, 4; David W. Love, 5', 'Instrumented Watersheds in the Coal Fields of Northwestern New Mexico', ' In Chaco Canyon Country. A Field Guide to the Geomorphology, Quaternary Geology, Paleoecology, and Environmental Geology of Northwestern New Mexico, edited by Stephen G. Wells, David W. Love, and Thomas W. Gardner, pp. 99-112. American Geomorphological Field Group 1983 Field Trip Guidebook. Adobe Press, Albuquerque.'); INSERT INTO "work" VALUES (2398, NULL, '1982', 0, 'Stephen G. Wells, 0; Thomas F. Bullard, 1; L. N. Smith, 2; David W. Love, 3; J. W. Schultz, 4', 'Quaternary Deposits and Landscapes of the Chaco River Area, Southeastern Colorado Plateau-An Example of Complex Geomorphic Responses in Large Drainage Systems', ' Geological Society of American Abstracts with Programs 14:244.'); INSERT INTO "work" VALUES (2401, NULL, '1982', 0, 'Stephen G. Wells, 0; Alberto A. Gutierrez, 1', 'Quaternary Evolution of Badlands in the Southeastern Colorado Plateau', ' In Badland Geomorphology and Piping, edited by R. Bryan and A. Yair, pp. 239-258. Geobook (Geoabstracts Ltd.), Norwich, England.'); INSERT INTO "work" VALUES (1254, NULL, '1983', 0, 'David W. Love, 0', 'Quaternary Facies in Chaco Canyon and Their Implications for Geomorphic-Sedimentological Models', ' In Chaco Canyon Country. A Field Guide to the Geomorphology, Quaternary Geology, Paleoecology, and Environmental Geology of Northwestern New Mexico, edited by S. G. Wells, D. W. Love, and T. W. Gardner, pp. 195-206. American Geomorphological Field Group, Field Trip Guidebook 1983 Conference. Adobe Press, Albuquerque.'); INSERT INTO "work" VALUES (1249, NULL, '1979', 0, 'David W. Love, 0', 'Quaternary Fluvial Geomorphic Adjustments in Chaco Canyon, New Mexico', ' In Adjustments of the Fluvial System, edited by Dallas D. Rhodes and Garnett P. Williams, pp. 277-308. Kendall and Hunt, Dubuque, IL.'); INSERT INTO "work" VALUES (1248, NULL, '1977', 0, 'David W. Love, 0', 'Quaternary Geology and Geomorphology', ' In Settlement and Subsistence along the Lower Chaco River. The CGP Survey, edited by Charles A. Reher, pp. 149-164. University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1251, NULL, '1980', 0, 'David W. Love, 0', 'Quaternary Geology of Chaco Canyon, Northwestern New Mexico', ' Unpublished Ph.D. dissertation, Geology Department, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2004, NULL, '1983', 0, 'Lawrence Noel Smith, 0', 'Quaternary History and Fluvial Evolution of Some Tributary Drainage Basins North of the Chaco River', ' In Chaco Canyon Country. A Field Guide to the Geomorphology, Quaternary Geology, Paleoecology, and Environmental Geology of Northwestern New Mexico, edited by Stephen G. Wells, David W. Love, and Thomas W. Gardner, pp. 149-158. American Geomorphological Field Group 1983 Field Trip Guidebook. Adobe Press Albuquerque.'); INSERT INTO "work" VALUES (756, NULL, '1985', 0, 'Stephen A. Hall, 0', 'Quaternary Pollen Analysis and Vegetational History of the Southwest', ' In Pollen Records of Late-Quaternary North American Sediments, edited by V. M. Bryant Jr., and R. G. Holloway, pp. 95-123. American Association of Stratigraphic Palynologists Foundation, Dallas.'); INSERT INTO "work" VALUES (2125, NULL, '1987', 0, 'R. E. Taylor, 0; Louis A. Payden, 1; Peter J. Slota Jr., 2', 'Radio Carbon Determinations on Modern Wood from Chaco Canyon', ' In Investigations at the Pueblo Alto Complex, Chaco Canyon, New Mexico, 1975-1979. Volume IV. Microfiche, edited by Thomas C. Windes and Frances Joan Mathien, pp. MF 57-62. Publications in Archeology, Chaco Canyon Studies 18F. National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (267, NULL, '1934', 0, 'Bruce Bryan, 0', 'Reading History from the Diary of the Trees', ' American Forests 40:10-14, 44-45. January.'); INSERT INTO "work" VALUES (1020, NULL, '2000', 0, 'John Kantner, 0', 'Realism and Reality in the Creation of Virtual Prehistoric Architecture', ' Paper presented at the 65th Annual Meeting of the Society for American Archaeology, Philadelphia.'); INSERT INTO "work" VALUES (514, NULL, '1991', 0, 'David E. Doyel, 0; Jeffrey Eighmy, 1', 'Reanalysis of the Archaeomagnetic Chronology for the Bonito Phase in the Chaco Region, New Mexico', ' Paper presented at the 56th Annual Meeting of the Society for American Archaeology, New Orleans.'); INSERT INTO "work" VALUES (174, NULL, '1999', 0, 'Wesley Bernardini, 0', 'Reassessing the Scale of Social Action at Pueblo Bonito, Chaco Canyon, New Mexico', ' Kiva 64(4):447-470.'); INSERT INTO "work" VALUES (270, NULL, '1926', 0, 'Kirk Bryan, 0', 'Recent Deposits of Chaco Canyon, New Mexico, in Relation to the Life of the Prehistoric Peoples of Pueblo Bonito', ' Abstract. Journal of the Washington Academy of Science 16(3):75-76.'); INSERT INTO "work" VALUES (326, NULL, '1993', 0, 'Catherine M. Cameron, 0', 'Recent Research in the Prehistoric Southwest', ' Expedition Magazine 35(1). The University Museum, Philadelphia.'); INSERT INTO "work" VALUES (1530, NULL, '2002', 0, 'Barbara J. Mills, 0', 'Recent Research on Chaco: Changing Views on Economy, Ritual, and Society', ' Journal of Archaeological Research 10(1):65-117.'); INSERT INTO "work" VALUES (1002, NULL, '1984', 0, 'W. James Judge, 0; John D. Schelberg , 1', 'Recent Research on Chaco Prehistory', ' Reports of the Chaco Center No. 8. Division of Cultural Research, National Park Service, Albuquerque.'); INSERT INTO "work" VALUES (2070, NULL, '2003', 0, 'John R. Stein, 0; Dabney Ford, 1; Richard Friedman, 2', 'Reconstructing Pueblo Bonito', ' In Pueblo Bonito: Center of the Chacoan World, edited by Jill E. Neitzel. Smithsonian Institution Press, Washington, D.C.'); INSERT INTO "work" VALUES (1017, NULL, '1996', 0, 'John Kantner, 0', 'Reconstructing the Chaco Anasazi Road Network Using Geographic Information Systems', ' Poster Session, 61st Annual Meeting of the Society for American Archaeology, New Orleans.'); INSERT INTO "work" VALUES (754, NULL, '1982', 0, 'Stephen A. Hall, 0', 'Reconstruction of Local and Regional Holocene Vegetation in the Arid Southwestern United States Based on Combined Pollen Analytical Results from Neotome Middens and Allivium', ' (Abstract) INQUA Abstracts 1(XI INQUA Congress).'); INSERT INTO "work" VALUES (1090, NULL, '2001', 0, 'Jane Kolber, 0', 'Recording, Protecting, and Studying Navajo Rock Art: A Project in Chaco Canyon', ' In American Indian Rock Art, Volume 27, edited by Steven M. Frees and Alanah Woody, pp. 17-24. American Rock Art Research Association, Tucson.'); INSERT INTO "work" VALUES (55, NULL, '2002', 0, 'James R. Allison, 0', 'Red Knobs: A (non-Chacoan?) Great House in Southeastern Utah', ' Paper presented at the 67th Annual Meeting of the Society for American Archaeology, Denver.'); INSERT INTO "work" VALUES (2164, NULL, '1998', 0, 'H. Wolcott Toll, 0; Sarah Schlanger, 1', 'Redefining and Reifying the Landscape: Re-use of Cultural Locations in the LaPlata Valley, New Mexico', ' Paper presented at the 63rd Annual Meeting of the Society for American Archaeology, Seattle.'); INSERT INTO "work" VALUES (1313, NULL, '2000', 0, 'Nancy Mahoney, 0', 'Redefining the Scale of Chacoan Communities', ' In Great House Communities Across the Chacoan Landscape, edited by John Kantner and Nancy M. Mahoney, pp. 19-27. Anthropological Papers of the University of Arizona Nol 64. The University of Arizona Press, Tucson.'); INSERT INTO "work" VALUES (648, NULL, '1979', 0, 'Hayward H. Franklin, 0', 'Refiring Analysis of Corrugated Sherds from Chaco Canyon', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1270, NULL, '1984', 0, 'William Lumpkins, 0', 'Reflections on Chacoan Architecture', ' In New Light on Chaco Canyon, edited by David Grant Noble, pp. 19-24. Exploration, School of American Research, Santa Fe.'); INSERT INTO "work" VALUES (2396, NULL, '1983', 0, 'Stephen G. Wells, 0', 'Regional Badland Development and a Model of Late Quaternary Evolution of Badland Watersheds, San Juan Basin, New Mexico', ' In Chaco Canyon Country, A Field Guide to the Geomorphology, Quaternary Geology, Paleoecology, and Environmental Geology of Northwestern New Mexico, edited by S. G. Wells, D. W. Love, and T. W. Gardner, pp. 121-132. American Geomorphological Field Group 1983 Field Trip Guide Book. Adobe Press, Albuquerque.'); INSERT INTO "work" VALUES (1596, NULL, '1989', 0, 'Jill E. Neitzel, 0', 'Regional Exchange Networks in the American Southwest: A Comparative Analysis of Long Distance Trade Goods', ' In The Sociopolitical Structure of Prehistoric Southwestern Societies, edited by Steadman Upham, Kent Lightfoot, and Roberta Jewett, pp. 149-198. Westview Press, Boulder.'); INSERT INTO "work" VALUES (932, NULL, '1996', 0, 'Gretchen W. Jordan, 0', 'Regional Integration on the Ground: A Stylistic Analysis of Chacoan Roadways in the San Juan Basin of New Mexico', ' Paper presented at the 61st Annual Meeting of the Society for American Archaeology, New Orleans.'); INSERT INTO "work" VALUES (1120, NULL, '2000', 0, 'Steven A. LeBlanc, 0', 'Regional Interaction and Warfare in the Late Prehistoric Southwest', ' In The Archaeology of Regional Interaction: Religion, Warfare, and Exchange Across the American Southwest, edited by Michelle Hegmon, pp. 41-70. University Press of Colorado, Boulder.'); INSERT INTO "work" VALUES (1723, NULL, '1981', 0, 'Robert P. Powers, 0', 'Regional Interaction in the San Juan Basin: The Chacoan Outlier System', ' Paper presented at the 46th Annual Meeting of the Society for American Archaeology, San Diego, April 29-May 2.'); INSERT INTO "work" VALUES (1731, NULL, '1984', 0, 'Robert P. Powers, 0', 'Regional Interaction in the San Juan Basin: The Chacoan Outlier System', ' In Recent Research on Chaco Prehistory, edited by W. James Judge and John D. Schelberg, pp. 23-36. Reports of the Chaco Center No. 8. Division of Cultural Research, National Park Service, Albuquerque.'); INSERT INTO "work" VALUES (1943, NULL, '1983', 0, 'Lynne Sebastian, 0', 'Regional Interaction: The Puebloan Adaptation', ' In Economy and Interaction along the Lower Chaco River: The Navajo Mine Archaeology Program, edited by Patrick F. Hogan and Joseph C. Winter, pp. 445-452. Office of Contract Archeology and Maxwell Museum of Anthropology, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (516, NULL, '1992', 0, 'David E. Doyel, 0; Stephen H. Lekson, 1', 'Regional Organization in the American Southwest', ' In Anasazi Regional Organization and the Chaco System, edited by David E. Doyel, pp. 15-21. Anthropological Papers No. 5. Maxwell Museum of Anthropology, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1526, NULL, '1986', 0, 'Barbara J. Mills, 0', 'Regional Patterns of Ceramic Variability in the San Juan Basin: Ceramics of the Chaco Additions Inventory Survey', ' Final Report Contract PX 7029-5-C034. Branch of Cultural Research, National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (1485, NULL, '1992', 0, 'Peter J. McKenna, 0; H. Wolcott Toll, 1', 'Regional Patterns of Great House Development among the Totah Anasazi, New Mexico', ' In Anasazi Regional Organization and the Chaco System, edited by David E. Doyel, pp. 133-143. Anthropological Papers No. 5. Maxwell Museum of Anthropology, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1732, NULL, '1984', 0, 'Robert P. Powers, 0', 'Regional Settlement Change and Past Environment in the San Juan Basin', ' Paper presented at the 83rd Annual Meeting of the American Anthropological Association, Chicago.'); INSERT INTO "work" VALUES (700, NULL, '1983', 0, 'William B. Gillespie, 0; Robert P. Powers, 1', 'Regional Settlement Changes and Past Environment in the San Juan Basin, Northwestern New Mexico', ' Paper presented at the Second Anasazi Symposium, Salmon Ruin, Bloomfield, NM, Feb. 10-12.'); INSERT INTO "work" VALUES (823, NULL, '1996', 0, 'Michelle Hegmon, 0; Stephen Plog, 1', 'Regional Social Interaction in the Northern Southwest: Evidence and Issues', ' In Interpreting Southwestern Diversity: Underlying Principles and Overarching Patterns, edited by Paul R. Fish, and J. J. Reed, pp. 23-34. Anthropological Research Papers No. 48. Arizona State University, Tempe.'); INSERT INTO "work" VALUES (1594, NULL, '1985', 0, 'Jill E. Neitzel, 0', 'Regional Styles and Organizational Hierarchies: The View from Chaco Canyon', ' Paper presented at the 50th Annual Meeting of the Society for American Archaeology, Denver.'); INSERT INTO "work" VALUES (718, NULL, '1982', 0, 'James R. Glenn, 0', 'Register to the Papers of Neil Merton Judd', ' National Anthropological Archives, Washington, D.C.'); INSERT INTO "work" VALUES (639, NULL, '2002', 0, 'Eric R. Force, 0; R. Gwinn Vivian, 1; Thomas C. Windes and Jeffrey S. Dean, 2', 'Relation of "Bonito" Paleo-channels and Base-level Variations to Anasazi Occupation, Chaco Canyon, New Mexico', ' Arizona State Museum Archaeological Series No. 194. The University of Arizona, Tucson.'); INSERT INTO "work" VALUES (415, NULL, '1977', 0, 'Anne C. Cully, 0', 'Relation of Pollen Analysis to Archeological Excavation, Chaco Canyon', ' Unpublished M.S. thesis, Department of Biology, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (441, NULL, '1976', 0, 'Anne C. Cully, 0; Loren D. Potter, 1', 'Relation of Pollen and Flotation Analyses to Archeological Excavations, Chaco Canyon', ' Final Report (Pollen Component). Submitted in fulfillment of Contract PX 7000-5-0802. Ms. on file, Department of Biology, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2091, NULL, '1977', 0, 'Mollie Struever, 0', 'Relation of Pollen and Flotation Analyses to Archeological Excavations, Chaco Canyon, New Mexico (Flotation Component)', ' Unpublished M.A. thesis, Department of Biology, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2090, NULL, '1977', 0, 'Mollie Struever, 0', 'Relation of Pollen and Flotation Analysis to Archeological Sites, Chaco Canyon, New Mexico', ' Final Report (Flotation Component). Submitted in fulfillment of Contract PX 7000-5-0802. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (416, NULL, '1977', 0, 'Anne C. Cully, 0', 'Relation of Pollen and Flotation Analysis to Archeological Sites, Chaco Canyon: Pollen Component', ' Final Report, Contract PX7000-5-0802. Archive 2069C, NPS Chaco Culture NHP Museum Archives, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1021, NULL, '2002', 0, 'John Kantner, 0', 'Religious Behavior in the Post-Chaco Years', ' Paper presented at the 67th Annual Meeting of the Society for American Archaeology, Denver.'); INSERT INTO "work" VALUES (811, NULL, '1998', 0, 'Florence M. Hawley, 0', 'Remembering Chaco''s First Digs', ' New Mexico Magazine 76(4). April.'); INSERT INTO "work" VALUES (1296, NULL, '1980', 0, 'Thomas R. Lyons, 0; Robert K. Hitchcock, 1; Wirt H. Wills, 2', 'Remote Sensing Aerial Anthropological Perspectives: A Bibliography of Remote Sensing in Cultural Resource Studies', ' Supplement No. 3 to Remote Sensing: A Handbook for Archeologists and Cultural Resource Managers, by Thomas R. Lyons and T. Eugene Avery. National Park Service, Washington.'); INSERT INTO "work" VALUES (1288, NULL, '1974', 0, 'Thomas R. Lyons, 0; James I. Ebert, 1; Robert K. Hitchcock, 2', 'Remote Sensing Analysis of Prehistoric Human Occupations at Chaco Canyon, New Mexico', ' Interim Report on Progress of Investigations Supported by the National Geographic Society, Grant No. 1177. Ms. on file, National Park Service, Intermountain Region, Santa Fe Office. Part of report published by Lyons and Drager, 1982.'); INSERT INTO "work" VALUES (1282, NULL, '1977', 0, 'Thomas R. Lyons, 0; Dwight L. Drager, 1', 'Remote Sensing Analysis of Prehistoric Human Occupations in the Chaco Canyon Region, New Mexico', ' Final Report of Investigations Supported by the National Geographic Society, Grant No. 1177. Ms. on file, National Park Service, Intermountain Region, Santa Fe Office. Part of published report in 1982.'); INSERT INTO "work" VALUES (894, NULL, '1983', 0, 'Arthur K. Ireland, 0; Dwight L. Drager, 1', 'Remote Sensing Assessment of the Environmental Setting of the Navajo Indian Irrigation Project', ' In Remote Sensing in Cultural Resource Management: The San Juan Basin Project, edited by Dwight L. Drager and Thomas R. Lyons, pp, 77-101. Cultural Resources Management Division, National Park Service, Washington, D.C.'); INSERT INTO "work" VALUES (1291, NULL, '1972', 0, 'Thomas R. Lyons, 0; Robert K. Hitchcock, 1', 'Remote Sensing Interpretation in an Anasazi Land Route System', ' Paper presented at the 37th Annual Meeting of the Society for American Archaeology, Bal Harbour. Chaco Archive 1997, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published in 1977.'); INSERT INTO "work" VALUES (1293, NULL, '1977', 0, 'Thomas R. Lyons, 0; Robert K. Hitchcock, 1', 'Remote Sensing Interpretation in an Anasazi Land Route System', ' In Aerial Remote Sensing Techniques in Archeology, edited by Thomas R. Lyons and Robert K. Hitchcock, pp. 111-134. Reports of the Chaco Center No. 2. National Park Service and University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (592, NULL, '1978', 0, 'Rosalie Fanale, 0; James I. Ebert, 1; Thomas R. Lyons, 2', 'Remote Sensing Measurement of Indicators of Desertification and their Cultural Correlates', ' Proceedings of the American Society of Photogrammetry Fall Technical Meetings, Albuquerque, New Mexico. October 15-20, 1978, p. 193. American Society of Photogrammetry, Falls Church, VA.'); INSERT INTO "work" VALUES (737, NULL, '1972', 0, 'George J. Gumerman, 0; John A. Ware, 1', 'Remote Sensing Methodology and Chaco Canyon Prehistoric Road Systems', ' Submitted in fulfillment of Contract 14-10-3-930-246. Ms. on file, NPS Chaco Culture NHP Museum Archives, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2372, NULL, '1977', 0, 'John A. Ware, 0; George J. Gumerman, 1', 'Remote Sensing Methodology and the Chaco Canyon Prehistoric Road System', ' In Aerial Remote Sensing Techniques in Archeology, edited by Thomas R. Lyons and Robert K. Hitchcock, pp. 135-167. Reports of the Chaco Center No. 2. National Park Service and University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1274, NULL, '1971', 0, 'Thomas R. Lyons, 0', 'Remote Sensing and Archaeology', ' Paper presented at the School of American Research Symposium on Photography in Archaeology, Santa Fe.'); INSERT INTO "work" VALUES (1287, NULL, '1979', 0, 'Thomas R. Lyons, 0; James I. Ebert, 1; Dwight L. Drager, 2; Douglas H. Scovill, 3', 'Remote Sensing and Non-Destructive Archeology: Approaches to Cultural Resources Management', ' Paper presented at the School of American Research Seminar on Significance in the Archaeology of the San Juan Basin. School of American Research, Santa Fe.'); INSERT INTO "work" VALUES (565, NULL, '1980', 0, 'James I. Ebert, 0; Thomas R. Lyons, 1', 'Remote Sensing in Archeology, Cultural Resources Treatment and Anthropology: The United States of America in 1979', ' In Aerial Archaeology 5:1-19.'); INSERT INTO "work" VALUES (1958, NULL, '1986', 0, 'Thomas L. Sever, 0', 'Remote Sensing in Chaco Canyon, Poverty Point, and Costa Rica', ' Paper presented at the 1986 Annual Meeting of the Archaeological Institute of America, San Antonio, Dec. 27-30.'); INSERT INTO "work" VALUES (558, NULL, '1981', 0, 'James I. Ebert, 0; Alberto A. Gutierrez, 1', 'Remote Sensing of Geomorphological Factors Affecting the Visibility of Archaeological Materials', ' In Technical Papers of the American Society for Photogrammetry. 1981 ASP-ACSM Convention, pp. 226-236.'); INSERT INTO "work" VALUES (555, NULL, '1977', 0, 'James I. Ebert, 0', 'Remote Sensing within an Archeological Research Framework: Methods, Economics, and Theory', ' In Aerial Remote Sensing Techniques in Archeology, edited by Thomas R. Lyons and Robert K. Hitchcock, pp. 169-192. Reports of the Chaco Center No. 2. National Park Service and University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1280, NULL, '1977', 0, 'Thomas R. Lyons, 0; Thomas Eugene Avery, 1', 'Remote Sensing: A Handbook for Archeological Cultural Resource Managers', ' National Park Service, Washington, D.C.'); INSERT INTO "work" VALUES (120, NULL, '1981', 0, 'Thomas Eugene Avery, 0; Thomas R. Lyons, 1', 'Remote Sensing: Aerial and Terrestrial Photography for Archeologists', ' Supplement No. 7 to Remote Sensing: A Handbook for Archeologists and Cultural Resource Managers by Thomas R. Lyons and Thomas Eugene Avery. Division of Cultural Resource Management, National Park Service, Washington, D.C.'); INSERT INTO "work" VALUES (347, NULL, '1983', 0, 'Eileen L. Camilli, 0; Linda S. Cordell, 1', 'Remote Sensing: Applications to Cultural Resources in Southwestern North America', ' Supplement No. 8 to Remote Sensing: A Handbook for Archeologists and Cultural Resource Managers, by Thomas R. Lyons and Thomas Eugene Avery. Cultural Resources Management Division, National Park Service, Washington, D.C.'); INSERT INTO "work" VALUES (1284, NULL, '1974', 0, 'Thomas R. Lyons, 0; James I. Ebert, 1', 'Remote Sensing: Document and Data Source for Archaeology and Historic Preservation', ' Archive 2002C, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1546, NULL, '1978', 0, 'Stanley A. Morain, 0; Thomas K. Budge, 1', 'Remote Sensing: Instrumentation for Nondestructive Exploration of Cultural Resources', ' Supplement No. 2 to Remote Sensing: A Handbook for Archeologists and Cultural Resource Managers, by Thomas R. Lyons and T. Eugene Avery. Division of Cultural Resource Management National Park Service, Washington, D.C.'); INSERT INTO "work" VALUES (537, NULL, '1985', 0, 'Dwight L. Drager, 0; Thomas R. Lyons, 1', 'Remote Sensing: Photogrammetry in Archeology: The Chaco Mapping Project', ' Supplement No. 10 to Remote Sensing: A Handbook for Archeologists and Cultural Resource Managers by Thomas R. Lyons and Thomas Eugene Avery. Division of Cultural Resource Management, National Park Service, Washington, D.C.'); INSERT INTO "work" VALUES (1281, NULL, '1978', 0, 'Thomas R. Lyons, 0; Thomas Eugene Avery, 1', 'Remote Sensing: Practical Exercises on Remote Sensing in Archeology', ' Supplement No. 1 to Remote Sensing: A Handbook for Archeologists and Cultural Resource Managers. National Park Service, Washington.'); INSERT INTO "work" VALUES (2558, NULL, '1984', 0, 'W. Raymond Wood, 0; Robert K. Nickel, 1; David E. Griffin, 2', 'Remote Sensing: The American Great Plains', ' Supplement No. 9 to Remote Sensing: A Handbook for Archeologists and Cultural Resource Managers, by Thomas R. Lyons and Thomas Eugene Avery. Cultural Resources Management Division, National Park Service, Washington, D.C.'); INSERT INTO "work" VALUES (1283, NULL, '1982', 0, 'Thomas R. Lyons, 0; Dwight L. Drager, 1', 'Remote-Sensing Analysis of Prehistoric Human Occupation in the Chaco Canyon Region, New Mexico', ' National Geographic Society Research Reports 14:441-450.'); INSERT INTO "work" VALUES (1321, NULL, '2001', 0, 'Harold E. Malde, 0', 'Repeat Photography at Chaco Canyon Based on Photographs Made During the 1896-1899 Hyde Expedition and in the 1970s', ' Report to the Wright Paleohydrological Institute.'); INSERT INTO "work" VALUES (1320, NULL, '2000/2001', 0, 'Harold E. Malde, 0', 'Repeat Photography at Chaco Culture National Historical Park, New Mexico, Based on Photographs Made in the 1930s, 1970s, and the Year 2000', ' Report to the Wright Paleohydrological Institute.'); INSERT INTO "work" VALUES (2253, NULL, '1929', 0, 'R. Gordon Vivian, 0', 'Report for the Chaco Field School on Economic Life of Ancient Chaco', ' Archive 1886, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2405, NULL, '1978', 0, 'Stanley L. Welsh, 0', 'Report of Analysis of Wood and Charcoal Specimens from Excavations in Chaco Canyon National Monument, New Mexico', ' Part I. Report from Endangered Plant Studies, Orem, Utah. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Revised in 1979.'); INSERT INTO "work" VALUES (2057, NULL, '1929', 0, 'Winifred Stamm (editor of Digs, School of American Research, 0', 'Report of Archaeological Work at Chetro Ketl, Chaco Canyon, by the School of American Research and the University of New Mexico, June 10 to August 1929', ' Archive 1831, 1858, and 1896, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. '); INSERT INTO "work" VALUES (487, NULL, '1920', 0, 'R. E. Dodge, 0', 'Report of Field Studies', ' In Pueblo Bonito by George Pepper, pp. 23-25. American Museum of Natural History Anthropological Papers. Vol. 27.'); INSERT INTO "work" VALUES (1689, NULL, '1937', 0, 'Paul Phillips, 0; D. G. Anderson, 1; L. A. Hill, 2; W. W. Morris, 3; Bert Lucas, 4; Bert Coddington, 5', 'Report of Land Management Survey of Chaco Canyon National Monument, November 15-20, 1937', ' Ms. on file, Soil Conservation Service and Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (1688, NULL, '1997', 0, 'David A. Phillips, Jr., 0; Dennis Gilpin, 1; Richard A. Anduze, 2', 'Report on Archaeological Testing and Proposal for Data Recovery along Navajo Route 9(5-1), McKinley County, New Mexico', ' SWAC Report 87-50. Flagstaff.'); INSERT INTO "work" VALUES (1006, NULL, '1933', 0, 'Hurst R. Julian, 0', 'Report on Archaeological Work Done at Chaco Canyon National Monument in the Summer of 1933', ' Southwestern Monuments, Sept. pp. A-K.'); INSERT INTO "work" VALUES (773, NULL, '1960', 0, 'Lyndon L. Hargrave, 0', 'Report on Bird Bones from Tseh So (Bc 50), Chaco Canyon National Monument, New Mexico', ' Ms. on file, National Park Service, Western Archaeological and Conservation Center, Tucson.'); INSERT INTO "work" VALUES (188, NULL, '1875', 0, 'Rogers Birnie, Jr., 0', 'Report on Certain Ruins Visited in New Mexico by Lieutenant Rogers Birnie, Jr', ' Thirteenth United States Infantry. J3 in Appendix J. Ethnology, Archeology, and Ruins, pp. 1098-1100. In Annual Report of the Chief of Engineers to the Secretary of War for the Year 1875. In Two Parts, Part II. 44th Congress, 1st Session, Ex. Doc. 1, Pt. 2, Vol. II. Government Printing Office, Washington, D.C.'); INSERT INTO "work" VALUES (861, NULL, '1878', 0, 'W. J. Hoffman, 0', 'Report on Chaco Cranium', ' In Tenth Annual Report of the United States Geological and Geographical Survey of the Territories, Embracing Colorado and Parts of Adjacent Territories, Being a Report on the Progress of the Exploration for the Year 1876, by F. V. Hayden. Part III. Archeology, pp. 451-457. Government Printing Office, Washington, D.C.'); INSERT INTO "work" VALUES (844, NULL, '1932', 0, 'Edgar L. Hewett, 0', 'Report on Chaco Excavations, 1932', ' Southwest Monuments, December, pp. 9-11, Globe.'); INSERT INTO "work" VALUES (2567, NULL, '1933', 0, 'Margaret S. Woods, 0', 'Report on Excavation Work at Talus Unit No', '1 of Chetro Ketl Ruin, Chaco Canyon, San Juan County, New Mexico, in Summer of 1933. Archive 1828, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1690, NULL, '1932', 0, 'Sarah Louise Pierce, 0', 'Report on Excavation of a Talus Ruin North of Chetro Ketl', ' Ms. on file, Archive 2125J, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2569, NULL, '1934', 0, 'Margaret S. Woods, 0', 'Report on Excavations in 1934 of Talus Unit No', '1, Chetro Ketl, Chaco Canyon. Ms. on file, School of American Research, Santa Fe. Archive 1825, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (278, NULL, '1978', 0, 'Donal B. Buchanan, 0', 'Report on Inscriptions from the Southwest Early Sites', ' Research Society Bulletin 6(1):28-33.'); INSERT INTO "work" VALUES (1066, NULL, '1941', 0, 'Dale S. King, 0', 'Report on Inspection after Fall of Threatening Rock', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (219, NULL, '1958', 0, 'Zorro A. Bradley, 0', 'Report on Need for Salvage Excavation at Ruin Bc 236 in Chaco Canyon National Monument', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (417, NULL, '1977', 0, 'Anne C. Cully, 0', 'Report on Pollen Analysis from 29SJ627 and 29SJ629, Chaco Canyon, New Mexico', ' Interim Report on Check-List of Plants, July 1, 1977-September 30, 1977. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (420, NULL, '1978', 0, 'Anne C. Cully, 0', 'Report on Pollen Analysis from 29SJ629 and 29SJ724, Chaco Canyon, New Mexico', ' Submitted in fulfillment of Contract PX 7000-5-0802, Archive 2069C, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (868, NULL, '1901', 0, 'S. J. Holsinger, 0', 'Report on Prehistoric Ruins of Chaco Canyon, New Mexico', ' Ordered by General Land Office Letter "P," December 18, 1900. General Land Office. Ms. on file, National Anthropological Archive, Washington, D.C.'); INSERT INTO "work" VALUES (189, NULL, '1879', 0, 'Rogers Birnie, Jr., 0', 'Report on Ruins Visited in New Mexico', ' In Report upon United States Geographical Surveys West of the One-Hundredth Meridian, in Charge of First Lieut. Geo. M. Wheeler, Corps of Engineers, U.S. Army, Under the Direction of Brig. Gen. A. A. Humphreys, Chief of Engineers, U.S. Army. Published by the Authority of the Honorable the Secretary of War in Accordance with Acts of Congress of June 23, 1874, and February 15, 1875, In Seven Volumes, Accompanied by One topographical and One Geological Atlas, Volume VII, Archeology, pp. 346-350. Government Printing Office, Washington, D.C.'); INSERT INTO "work" VALUES (2364, NULL, '1933', 0, 'Paul A. F. Walter, 0', 'Report on Talus Unit No', '1 Excavations of 1933. Ms. on file, School of American Research, Santa Fe.'); INSERT INTO "work" VALUES (638, NULL, '1931', 0, 'Margaret Foraker, 0', 'Report on Work in Chaco Canyon, June 10-July 8, 1931', ' Archive 1862, 1931, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2248, NULL, '1974', 0, 'Roger S. Vickers, 0', 'Report on an Archaeological Radar Experiment at Chaco Canyon, New Mexico', ' SRI Internal Report, Stanford Research Institute. Ms. on file, NPS, Intermountain Office, Santa Fe.'); INSERT INTO "work" VALUES (906, NULL, '1878', 0, 'William H. Jackson, 0', 'Report on the Ancient Ruins Examined in 1875 and 1877', ' In Tenth Annual Report of the United States Geological and Geographical Survey of the Territories Embracing Colorado and Parts of Adjacent Territories, Being a Report on the Progress of the Exploration for the Year 1876, by F. V. Hayden, Part III, pp. 411-450. U.S. Government Printing Office, Washington, D.C.'); INSERT INTO "work" VALUES (2566, NULL, '1932', 0, 'Margaret S. Woods, 0', 'Report on the Excavation of the West Tower Kiva, Chetro Ketl, Chaco Canyon, New Mexico', ' Archive 1957, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (637, NULL, '1981', 0, 'Leo L. Flynn, Jr., 0', 'Report on the Mapping of Linearities from 1930s Aerial Photography for the Bisti-Star Lake Coal Lease Area, San Juan Basin, New Mexico', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1226, NULL, '1879', 0, 'Oscar von Loew, 0', 'Report on the Ruins in New Mexico', ' In Report upon United States Geographical Surveys West of the One-Hundredth Meridian, in Charge of First Lieut. Geo. M. Wheeler, Corps of Engineers, U.S. Army, Under the Direction of Brig. Gen. A. A. Humphreys, Chief of Engineers, U.S. Army. Published by the Authority of the Honorable the Secretary of War in Accordance with Acts of Congress of June 23, 1874, and February 15, 1875. In Two Volumes, Accompanied by One Topographical and One Geological Atlas. Volume VII, Archaeology, pp. 337-345. U. S. Army Engineer Department, Government Printing Office, Washington, D.C.'); INSERT INTO "work" VALUES (871, NULL, '1933', 0, 'Gertrude D. Howe, 0', 'Report on the South Wall Enclosing the Plaza at Chetro Ketl', ' Archive 1876, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1735, NULL, '1976', 0, 'Robert P. Powers, 0; William B. Gillespie, 1; Stephen H. Lekson, 2', 'Report on the Survey of the Peach Springs Outlier Community', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (765, NULL, '1987', 0, 'Garman Harbottle, 0; Phil C. Weigand, 1', 'Reports on Neutron Activation Analysis of Turquoise Artifacts and Numerical Taxonomy Based on the Chemical Analytical Profiles', ' In The Archaeology of the San Xavier Bridge Site (Z BB:13:14), Tucson Basin, Southern Arizona, edited by John C. Ravesloot, pp. 437-442. Cultural Resources Management Division, Archaeological Series No. 171. University of Arizona, Tucson.'); INSERT INTO "work" VALUES (27, NULL, '1982', 0, 'Nancy J. Akins, 0', 'Reports on the Faunal Remains from the Proveniences of Pueblo Alto', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Revised and published in 1987.'); INSERT INTO "work" VALUES (729, NULL, '1933', 0, 'Josiah Gregg, 0', 'Reprint Edition of Commerce of the Prairies, the Journal of a Santa Fe Trader', ' Southwest Press Dallas pp. 188-189.'); INSERT INTO "work" VALUES (973, NULL, '1977', 0, 'W. James Judge, 0', 'Research Design', ' The Excavations of Pueblo Alto. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1237, NULL, '1979', 0, 'Richard W. Loose, 0', 'Research Design', ' In Anasazi Communities of the San Juan Basin, by Michael Marshall, John R. Stein, Richard W. Loose, and Judith E. Novotny, pp. 355-363. Historic Preservation Bureau, Santa Fe.'); INSERT INTO "work" VALUES (1727, NULL, '1983', 0, 'Robert P. Powers, 0', 'Research Design for Continuation of Field Studies', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1429, NULL, '1983', 0, 'Frances Joan Mathien, 0; Thomas C. Windes, 1', 'Research Design: Kin Nahasbas Historic Structure Report', ' Ms. on file, NPS Chaco Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1233, NULL, '1976', 0, 'Richard W. Loose, 0', 'Research Design: State Planning Office and Public Service Company of New Mexico Joint Chacoan Research Project', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published in 1979.'); INSERT INTO "work" VALUES (587, NULL, '1978', 0, 'Rosalie Fanale, 0', 'Research Proposal Topic: "Environment, Industry and Economy": The Navajo Livestock Industry in Historical Perspective', ' Ms. on file, NPS, Intermountain Region, Santa Fe Office.'); INSERT INTO "work" VALUES (998, NULL, '1993', 0, 'W. James Judge, 0', 'Resource Distribution and the Chaco Phenomenon', ' In The Chimney Rock Archaeological Symposium, October 20-21, 1990, Durango, Colorado, edited by J. McKim Malville and Gary Matlock, pp. 35-36. USDA Forest Service General Technical Report RM-227. Rocky Mountain Forest and Range Experimental Station, USDA, Fort Collins.'); INSERT INTO "work" VALUES (2605, NULL, '1986', 0, 'Michael Zeilik, 0', 'Response', ' Science 231:1058.'); INSERT INTO "work" VALUES (2604, NULL, '1986', 0, 'Michael Zeilik, 0', 'Response', ' Archaeoastronomy (Supplement to the Journal of the History of Astronomy) 10:66-68.'); INSERT INTO "work" VALUES (1683, NULL, '202', 0, 'Peter N. Peregrine, 0; Melvin Ember, 1', 'Response to Schillaci and Stojanowski', ' American Antiquity 67(2):357-359.'); INSERT INTO "work" VALUES (2258, NULL, '1936', 0, 'R. Gordon Vivian, 0', 'Restoring Rinconada', ' El Palacio 41:89-97.'); INSERT INTO "work" VALUES (1550, NULL, '1977', 0, 'E. Pierre Morenon, 0', 'Results of Energy Studies Approximating Prehistoric Activities', ' Letter to W. James Judge on file in NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (992, NULL, '1983', 0, 'W. James Judge, 0', 'Results of the Chaco Project: 1972-1983', ' Paper presented at the Annual Meeting of the American Anthropological Association, Chicago, Nov.'); INSERT INTO "work" VALUES (1722, NULL, '1980', 0, 'Robert P. Powers, 0', 'Resume of Chaco Center Outlier Investigations', ' Paper presented at the Pecos Conference at Mesa Verde. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1686, NULL, '1996', 0, 'David A. Phillips, Jr., 0', 'Rethinking Chaco', ' In Debating Complexity: Proceedings of the 26th Annual Chacmool Conference, edited by D. A. Meyer, P. C. Dawson, and D. T. Hanna, pp. 333-338. The Archaeological Association of the University of Calgary, Calgary.'); INSERT INTO "work" VALUES (1685, NULL, '1993', 0, 'David A. Phillips, Jr., 0', 'Rethinking Chaco', ' Paper presented at the 26th Chacmool Conference, University of Calgary, Alberta, Canada.'); INSERT INTO "work" VALUES (2471, NULL, '1999', 0, 'Richard H. Wilshusen, 0; Scott G. Ortman, 1', 'Rethinking the Pueblo I Period in the San Juan Drainage: Aggregation, Migration, and Cultural Diversity', ' Kiva 64(3):369-399.'); INSERT INTO "work" VALUES (802, NULL, '1937', 0, 'Florence M. Hawley, 0', 'Reversed Stratigraphy', ' American Antiquity 2(4):297-299.'); INSERT INTO "work" VALUES (2062, NULL, '1956', 0, 'C. E. Stearns, 0', 'Review The Geology of Chaco Canyon by K', 'Bryan. American Antiquity 21(3):324.'); INSERT INTO "work" VALUES (1805, NULL, '1982', 0, 'Jonathan E. Reyman, 0', 'Review of "Archaeoastronomy in the Americas," edited by Ray A', 'Williamson. American Antiquity47:905-907.'); INSERT INTO "work" VALUES (2238, NULL, '1941', 0, 'Richard F. Van Valkenburgh, 0', 'Review of "Dine Bike''yah (Navajo Country)," edited by Lucy Wilcox Adams and John C', 'McPhee. Mimeograph on file, Window Rock, AZ.'); INSERT INTO "work" VALUES (1820, NULL, '1997', 0, 'Jonathan E. Reyman, 0', 'Review of "Pueblo Bonito', ' Bulletin of the History of Archaeology 8(1):15-17.'); INSERT INTO "work" VALUES (1810, NULL, '1987', 0, 'Jonathan E. Reyman, 0', 'Review of "Recent Research on Chaco Prehistory," edited by W', 'James Judge and John D. Schelberg. Kiva52:147-151.'); INSERT INTO "work" VALUES (127, NULL, '1938', 0, 'Gordon C. Baldwin, 0', 'Review of Brand et al''s Tseh So', ' American Antiquity 4:80-84.'); INSERT INTO "work" VALUES (2289, NULL, '1955', 0, 'R. Gordon Vivian, 0', 'Review of Bryan''s Geology of Chaco Canyon', ' American Journal of Archaeology 59:100-101.'); INSERT INTO "work" VALUES (957, NULL, '1938', 0, 'Neil Merton Judd, 0', 'Review of D', 'D. Brand et al.''s Tseh So. American Anthropologist 40:728-729.'); INSERT INTO "work" VALUES (791, NULL, '1936', 0, 'Emil W. Haury, 0', 'Review of Dating Pueblo Bonito and Other Ruins of the Southwest by A', 'E. Douglas. American Antiquity 1(3):248-249.'); INSERT INTO "work" VALUES (858, NULL, '1900', 0, 'Frederick W. Hodge, 0', 'Review of G', 'H. Pepper: Ceremonial Deposits Found in an Ancient Pueblo Estufa in Northern New Mexico. American Anthropologist 2:169-170.'); INSERT INTO "work" VALUES (2291, NULL, '1956', 0, 'R. Gordon Vivian, 0', 'Review of Judd''s Material Culture of Pueblo Bonito', ' American Antiquity 21(3):322-324.'); INSERT INTO "work" VALUES (454, NULL, '1955', 0, 'Edward B. Danson, 0', 'Review of Kirk Bryan''s "The Geology of Chaco Canyon', ' American Antiquity 57:372-373.'); INSERT INTO "work" VALUES (1462, NULL, '1940', 0, 'John C. McGregor, 0', 'Review of Kluckhohn and Reiter: Preliminary Report on the Excavations of Bc 50-51', ' American Antiquity 6(2):192-195.'); INSERT INTO "work" VALUES (1084, NULL, '1999', 0, 'Charles C. Kolb, 0', 'Review of Man Corn, Cannibalism, and Violence in the Prehistoric American Southwest by Christy G', 'Turner and Jacquelyn A. Turner, University of Utah Press. Bulletin of the History of Archaeology 9(2):12-19.'); INSERT INTO "work" VALUES (2526, NULL, '1997', 0, 'Thomas C. Windes, 0', 'Review of Pueblo Bonito, by George Pepper, University of New Mexico Press, 1996', ' Kiva 63(1):87-90.'); INSERT INTO "work" VALUES (1642, NULL, '1997', 0, 'David Ortiz, 0; Robert J. Speakman, 1', 'Review of Stabilization at Site 29SJ2387, Chaco Culture National Historical Park, New Mexico', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (377, NULL, '1936', 0, 'F. Cole, 0', 'Review of The Significance of Dated Prehistory of Chetro Ketl, by F', 'Hawley. American Antiquity 1(4):331-332.'); INSERT INTO "work" VALUES (1188, NULL, '1997', 0, 'Stephen H. Lekson, 0', 'Rewriting Southwestern Prehistory', ' Archaeology 50(1):52-55.'); INSERT INTO "work" VALUES (1494, NULL, '1966', 0, 'Frank McNitt, 0', 'Richard Wetherill: Anasazi', ' Pioneer Explorer of Southwestern Ruins, revised edition. University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1492, NULL, '1957', 0, 'Frank McNitt, 0', 'Richard Wetherill: Anasazi', ' Pioneer Explorer of Southwestern Ruins. University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1495, NULL, '1980', 0, 'Frank McNitt, 0', 'Richard Wetherill: Anasazi', ' Odyssey, pp. 40-42.'); INSERT INTO "work" VALUES (2468, NULL, '2001', 0, 'Wirt H. Wills, 0', 'Ritual and Mound Formation During the Bonito Phase in Chaco Canyon', ' American Antiquity 66(3):433-451.'); INSERT INTO "work" VALUES (203, NULL, '1998', 0, 'Russell Bourne, 0', 'Rivers of America: Birthplaces of Culture, Commerce, and Community', ' Fulcrum Publishing, Golden, CO.'); INSERT INTO "work" VALUES (2065, NULL, '1983', 0, 'John R. Stein, 0', 'Road Corridor Descriptions', ' In Chaco Roads Project: Phase I, edited by Chris Kincaid, pp 8-1-8-15. Bureau of Land Management, Albuquerque District.'); INSERT INTO "work" VALUES (1065, NULL, '1983', 0, 'Chris Kincaid, 0; John R. Stein, 1; Daisy F. Levine, 2', 'Road Verification Summary', ' In Chaco Roads Project Phase I. A Reappraisal of Prehistoric Roads in the San Juan Basin, edited by Chris Kincaid, pp. 9-1-9-77. Bureau of Land Management, New Mexico State Office and Albuquerque District Office, Santa Fe and Albuquerque.'); INSERT INTO "work" VALUES (1261, NULL, '1990', 0, 'Kathryn Gabriel Loving, 0', 'Roads to Center Place', ' Quantum 7(1):2-9. University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (670, NULL, '1991', 0, 'Kathryn Gabriel, 0', 'Roads to Center Place: A Cultural Atlas of Chaco Canyon and the Anasazi', ' Johnson Books, Boulder.'); INSERT INTO "work" VALUES (236, NULL, '1977', 0, 'John C. Brandt, 0; Ray A. Williamson, 1', 'Rock Art Representations of the A', '. 1054 Supernova: A Progress Report. In Native American Astronomy, edited by Anthony F. Aveni, pp. 171-177. University of Texas Press, Austin and London.'); INSERT INTO "work" VALUES (1886, NULL, '1984', 0, 'Polly Schaafsma, 0', 'Rock Art in Chaco Canyon', ' In New Light on Chaco Canyon, edited by David Grant Noble, pp. 59-64. Exploration, School of American Research, Santa Fe.'); INSERT INTO "work" VALUES (2063, NULL, '1980', 0, 'Paul P. Steed, Jr., 0', 'Rock Art in Chaco Canyon', ' The Artifact 18(3):1-146. El Paso Archaeological Society, Inc.'); INSERT INTO "work" VALUES (2064, NULL, '1982', 0, 'Paul P. Steed, Jr., 0', 'Rock Art in Chaco Canyon, San Juan County, New Mexico', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1655, NULL, '1985', 0, 'Natalie B. Pattison, 0', 'Rock Stairways of Chaco Canyon, New Mexico', ' In Prehistory and History in the Southwest. Collected Papers in Honor of Alden C. Hayes, edited by Nancy L. Fox, pp. 61-72. Papers of the Archaeological Society of New Mexico: 11. Ancient City Press, Inc., Santa Fe.'); INSERT INTO "work" VALUES (202, NULL, '1937', 0, 'Adrey E. Borell, 0', 'Rodent Problems', ' Southwestern Monuments Report, September, pp. 233-235.'); INSERT INTO "work" VALUES (352, NULL, '1987', 0, 'John B. Carlson, 0', 'Romancing the Stone, or Moonshine on the Sun Dagger', ' In Astronomy and Ceremony in the Prehistoric Southwest, edited by John B. Carlson and W. James Judge, pp. 71-88. Papers of the Maxwell Museum of Anthropology No. 2. University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1874, NULL, '1991', 0, 'Dean J. Saitta, 0', 'Room Use and Community Organization at the Pettit Site, West Central New Mexico', ' Kiva 56(4):385-.'); INSERT INTO "work" VALUES (551, NULL, '1990', 0, 'Douglas D. Dykeman, 0', 'Room for a View: Chaco Canyon from the Chuska Slope', ' Paper presented at the 55th Annual Meeting of the Society for American Archaeology, Las Vegas.'); INSERT INTO "work" VALUES (2131, NULL, '1996', 0, 'Sharon Elaine Thompson, 0', 'Roots of the Turquoise Trade', ' Lapidary Journal 50(30):57-60.'); INSERT INTO "work" VALUES (2419, NULL, '1981', 0, 'Cecil Werito, 0', 'Ruins Maintenance Projects 1981', ' Stabilization report on file in the NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (1822, NULL, '1956', 0, 'Roland Richert, 0', 'Ruins Stabilization Inventory, Chaco Canyon National Monument', ' Ms. Southwestern National Monuments, Ruins Stabilization Unit, Globe, AZ, now at Western Archaeological Conservation Center, Tucson.'); INSERT INTO "work" VALUES (2412, NULL, '1974', 0, 'Cecil Werito, 0', 'Ruins Stabilization Projects 1974', ' Stabilization report on file in the NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (2413, NULL, '1975', 0, 'Cecil Werito, 0', 'Ruins Stabilization Projects 1975', ' Stabilization report on file in the NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (2414, NULL, '1976', 0, 'Cecil Werito, 0', 'Ruins Stabilization Projects 1976', ' Stabilization report on file in the NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (2416, NULL, '1978', 0, 'Cecil Werito, 0', 'Ruins Stabilization Projects 1978: Chetro Ketl, Pueblo del Arroyo, Pueblo Bonito, Bc 51, Bc 59', ' Stabilization report on file in the NPS Chaco Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (2417, NULL, '1979', 0, 'Cecil Werito, 0', 'Ruins Stabilization Projects 1979 Part I and Part II', ' Stabilization report on file in the NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (2415, NULL, '1977', 0, 'Cecil Werito, 0', 'Ruins Stabilization Projects, 1977: Kin Ya''a, Pueblo Bonito, Site Bc 288, Site Bc 247, Pueblo Alto', ' Stabilization report on file in the NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (2285, NULL, '1951', 0, 'R. Gordon Vivian, 0', 'Ruins Stabilization Report, Bc 59, Chaco Canyon', ' Stabilization report on file in NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (2420, NULL, '1985', 0, 'Cecil Werito, 0', 'Ruins Stabilization Reports, 1985', ' Stabilization report on file in the NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (2421, NULL, '1986', 0, 'Cecil Werito, 0', 'Ruins Stabilization Reports, 1986', ' Stabilization report on file in the NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (1563, NULL, '1966', 0, 'Don Morris, 0; David W. Kayser, 1', 'Ruins Stabilization of New Alto, Chaco Canyon National Monument, New Mexico', ' Ruins Stabilization Unit, National Park Service Arizona Archaeological Center, Globe, AZ. Stabilization report on file in the NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Lculture National Historical Park.'); INSERT INTO "work" VALUES (2298, NULL, '1947', 0, 'R. Gordon Vivian, 0; James A. Lancaster, 1', 'Ruins Stabilization, Chaco Canyon National Monument, Chetro Ketl Ruin, 1947', ' Ms. on file, Chaco Culture National Historical Park, New Mexico.'); INSERT INTO "work" VALUES (2275, NULL, '1947', 0, 'R. Gordon Vivian, 0', 'Ruins Stabilization, Chaco Canyon National Monument, Chettro Kettle Ruin, 1947', ' Stabilization report on file in NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (2276, NULL, '1947', 0, 'R. Gordon Vivian, 0', 'Ruins Stabilization, Chaco Canyon National Monument, Pueblo Alto (New Alto), 1947', ' National Park Service Mobile Unit, Southwestern National Monuments, Globe, AZ.'); INSERT INTO "work" VALUES (2006, NULL, '2001', 0, 'James E. Snead, 0', 'Ruins and Rivals: The Making of Southwest Archaeology', ' University of Arizona Press, Tucson.'); INSERT INTO "work" VALUES (1544, NULL, '1908', 0, 'Warren K. Moorehead, 0', 'Ruins at Aztec and on the Rio LaPlata', ' American Anthropologist 10(2):243-255.'); INSERT INTO "work" VALUES (675, NULL, '1898', 0, 'Henry Gannett, 0', 'Ruins in the South-West', ' In North America, by Henry Gannett, 2:279-283. Stanford, London.'); INSERT INTO "work" VALUES (1556, NULL, '1881', 0, 'Lewis H. Morgan, 0', 'Ruins of Houses of the Sedentary Indians of the San Juan River and Its Tributaries', ' In Houses and House-Life of the American Aborigines. U.S. Geographical and Geological Survey of the Rocky Mountain Region. J. W. Powell in Charge. Contributions to North American Ethnology 4:154-197. Government Printing Office, Washington.'); INSERT INTO "work" VALUES (339, NULL, '2002', 0, 'Catherine M. Cameron, 0', 'Sacred Earthen Architecture in the Northern Southwest: The Bluff Great House Berm', ' American Antiquity 67(4):677-695.'); INSERT INTO "work" VALUES (1341, NULL, '1997', 0, 'Anne Lawrason Marshall, 0', 'Sacred Paths and Places: Chacoan Structures and the Great North Road', ' Paper presented at the Sixth International and Interdisciplinary Built Form and Culture Conference, Cincinnati.'); INSERT INTO "work" VALUES (1170, NULL, '1992', 0, 'Stephen H. Lekson, 0', 'Salado of the East', ' In Proceedings of the Second Salado Conference, edited by Richard C. Lange and Stephen Germick, pp. 17-21. Occasional Paper of the Arizona Archaeological Society, Phoenix.'); INSERT INTO "work" VALUES (1660, NULL, '1958', 0, 'S. Peckham, 0', 'Salvage Archaeology in New Mexico, 1957-58: A Partial Report', ' El Palacio 65(5):161-168.'); INSERT INTO "work" VALUES (1438, NULL, '1960', 0, 'James C. Maxon, 0', 'Salvage Excavation of Bc 192, Chaco Canyon National Monument', ' Ms. on file, (Western Archeological and Conservation Center, Tucson.'); INSERT INTO "work" VALUES (990, NULL, '1983', 0, 'W. James Judge, 0', 'Sampling in Regional Archeological Survey', ' Paper presented at the Research Seminar in Archeology, National Park Service, Ft. Collins, CO., May 22-27.'); INSERT INTO "work" VALUES (1000, NULL, '1975', 0, 'W. James Judge, 0; James I. Ebert, 1; Robert K. Hitchcock, 2', 'Sampling in Regional Archeology', ' In Sampling in Archeology, edited by James W. Mueller, pp. 82-123. The University of Arizona Press, Tucson.'); INSERT INTO "work" VALUES (1353, NULL, '1979', 0, 'Michael P. Marshall, 0', 'San Juan Basin Anasazi Site Aerial Reconnaissance', ' Phase I. Paneling and Acquisition of Horizontal and Vertical Controls. Contract PX7487-8-0215. Ms. on file, Branch of Remote Sensing, National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (589, NULL, '1978', 0, 'Rosalie Fanale, 0', 'San Juan Basin Ethnographic Project Report No', '2: Ethnographic Stratification of the San Juan Basin. MS. on file, NPS, Intermountain Region, Santa Fe Office.'); INSERT INTO "work" VALUES (588, NULL, '1978', 0, 'Rosalie Fanale, 0', 'San Juan Basin Ethnographic Project Report No', '1: Introduction and Sampling Procedures. Ms. on file, NPS, Intermountain Region, Santa Fe Office.'); INSERT INTO "work" VALUES (2579, NULL, '1928', 0, 'Herbert W. Yeo, 0', 'San Juan Basin Investigation', ' State Engineer of New Mexico, Santa Fe 8th Biennial Report. 1926-1928.'); INSERT INTO "work" VALUES (902, NULL, '1977', 0, 'Cynthia Irwin-Williams, 0', 'San Juan Valley Archaeological Resource Development Program, Salmon Ruin Development: 1977', ' Ms. on file, National Park Service, Intermountain Region, Santa Fe Office.'); INSERT INTO "work" VALUES (903, NULL, '1979', 0, 'Cynthia Irwin-Williams, 0', 'San Juan Valley Archaeological Resource Development Program: 1978-9', ' Final Report. Eastern New Mexico University III.'); INSERT INTO "work" VALUES (1123, NULL, '1934', 0, 'Alice Leinau, 0', 'Sanctuaries in the Ancient Pueblo of Chetro Ketl', ' Unpublished M.A. thesis, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (732, NULL, '1933', 0, 'Jean Griffin, 0', 'Sanctuaries of the Sun', ' New Mexico Magazine 11:20-21, 61. July.'); INSERT INTO "work" VALUES (1184, NULL, '1996', 0, 'Stephen H. Lekson, 0', 'Scale and Process in the Anasazi Southwest', ' In Interpreting Southwestern Diversity: Underlying Principles and Overarching Patterns, edited by Paul R. Fish and J. Jefferson Reid, pp. 81-86. Arizona State University Anthropological Research Papers No. 48. Arizona State University, Tempe.'); INSERT INTO "work" VALUES (1174, NULL, '1993', 0, 'Stephen H. Lekson, 0', 'Scale and Process in the Ancient Southwest', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published in 1996.'); INSERT INTO "work" VALUES (2005, NULL, '1999', 0, 'James E. Snead, 0', 'Science, Commerce, and Control: Patronage and the Development of Anthropological Archaeology in the Americas', ' American Anthropologist 101(2):256-271.'); INSERT INTO "work" VALUES (1600, NULL, '1996', 0, 'Jill E. Neitzel, 0', 'Searching for Patterns in Lots of Data: An Overview of Current Research at Pueblo Bonito', ' Paper presented at the 61st Annual Meeting of the Society for American Archaeology, New Orleans.'); INSERT INTO "work" VALUES (723, NULL, '1938', 0, 'C. N. Gould, 0', 'Second Geological Report on Chaco Canyon National Monument', ' Southwestern Monuments Report, Supplement for April, pp. 374-377. Globe.'); INSERT INTO "work" VALUES (185, NULL, '1994', 0, 'Emogene A. Bevitt, 0', 'Second Lives: A Survey of Architectural Artifact Collections in the United States', ' U.S.D.I. Preservation Assistance Division, Washington, D.C.'); INSERT INTO "work" VALUES (1352, NULL, '1982', 0, 'Leslie Marshall, 0', 'Secret of the Sun Dagger', ' The Washington Post Magazine, pp. 12-17, July 18.'); INSERT INTO "work" VALUES (1164, NULL, '1989', 0, 'Stephen H. Lekson, 0', 'Sedentism and Aggregation in Anasazi Archaeology', ' In The Sociopolitical Structure of Prehistoric Southwestern Societies, edited by Steadman Uphan, Kent G. Lightfoot, and Roberta A. Jewell, pp. 333-340. Westview Press, Boulder.'); INSERT INTO "work" VALUES (1060, NULL, '1998', 0, 'Karen A. Kievit, 0', 'Seeing and Reading Chaco Architecture at A', '. 1100. Unpublished Ph.D. dissertation, Department of Anthropology, University of Colorado at Boulder.'); INSERT INTO "work" VALUES (1317, NULL, '1983', 0, 'Kenneth D. Mahrer, 0; Thomas F. Bullard, 1', 'Seismic Refraction Studies of Alluvial-Valley Fills in the San Juan Basin, New Mexico', ' In Chaco Canyon Country. A Field Guide to the Geomorphology, Quarternary Geology, Paleoecology, and Environmental Geology of Northwestern New Mexico, by Stephen G. Wells, David W. Love, and Thomas W. Gardner, pp. 93-97. American Geomorphological Field Group, 1983 Fieldtrip Guidebook. Adobe Press, Albuquerque.'); INSERT INTO "work" VALUES (1067, NULL, '1985', 0, 'Kenneth W. King, 0; S. T. Algermissen, 1; P. J. McDermott, 2', 'Seismic and Vibration Hazard Investigations of Chaco Culture National Historical Park', ' Open-File Report 85-529. U.S. Geological Survey, Denver.'); INSERT INTO "work" VALUES (1011, NULL, '1993', 0, 'Allen E. Kane, 0', 'Settlement Analogies for Chimney Rock: Models of 11th and 12th Century Northern Arizona Society', ' In The Chimney Rock Symmposium, October 20-21, 1990, Durango, Colorado, edited by J. M. Malville and Gary Matlock, pp. 43-60. USDA Forest Service General Technical Report RM-227. Rocky Mountain Forest and Range Experimental Station, Fort Collins.'); INSERT INTO "work" VALUES (1100, NULL, '1983', 0, 'Alan Kosse, 0', 'Settlement Distribution and Agricultural Potential in Eastern San Juan County', ' In Economy and Interaction along the Lower Chaco River, edited by Patrick Hogan and Joseph C. Winter, pp. 609-612. Office of Contract Archeology and Maxwell Museum of Anthropology, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1168, NULL, '1991', 0, 'Stephen H. Lekson, 0', 'Settlement Pattern and the Chaco Region', ' In Chaco and Hohokam: Prehistoric Regional Systems in the American Southwest, edited by Patricia L. Crown and W. James Judge, pp. 31-55. School of American Research, Santa Fe.'); INSERT INTO "work" VALUES (1949, NULL, '1986', 0, 'Lynne Sebastian, 0; Jeffrey H. Altschul, 1', 'Settlement Pattern, Site Typology, and the Demographic Analysis: The Anasazi, Archaic and Unknown Sites', ' Contract PX 7029-5-C041. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1779, NULL, '1977', 0, 'Charles A. Reher, 0', 'Settlement and Subsistence Along the Lower Chaco River: The CGP Survey', ' University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1522, NULL, '1980', 0, 'John Miller, 0', 'Settlement and Subsistence in the UII Area', ' In Human Adaptation in a Marginal Environment: The UII Mitigation Project, edited by James L. Moore and Joseph C. Winter, pp. 437-482. Office of Contract Archeology, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1398, NULL, '1988', 0, 'Frances Joan Mathien, 0', 'Shabik''eshchee Village, Sites Bc 50 and 51', ' Entries in Historical Dictionary of North American Archaeology, edited by Edward B. Jelks, with Julie C. Jelks, Assistant Editor, pp. 446, 453. Greenwood Press, Westport.'); INSERT INTO "work" VALUES (1262, NULL, '1992', 0, 'Spencer G. Lucas, 0; Barry S. Kues, 1; Thomas E. Williamson, 2; Adrian P. Hunt , 3', 'San Juan Basin VI', ' New Mexico Geological Society, Forty-Third Annual Field Conference.'); INSERT INTO "work" VALUES (1834, NULL, '1929', 0, 'Frank H. H. Roberts, Jr., 0', 'Shabik''eshchee Village, a Late Basket Maker Site in Chaco Canyon, New Mexico', ' Bureau of American Ethnology Bulletin 92. Smithsonian Institution, Washington, D.C.'); INSERT INTO "work" VALUES (1811, NULL, '1987', 0, 'Jonathan E. Reyman, 0', 'Shadow Archaeology: Rejoinder to Sofaer and Sinclair', ' Current Anthropology 28(2):205-206.'); INSERT INTO "work" VALUES (1175, NULL, '1993', 0, 'Stephen H. Lekson, 0', 'Shaping the Pueblo World: Southwest after 1150', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published in 1996.'); INSERT INTO "work" VALUES (1928, NULL, '1989', 0, 'Wilhelm Schuster, 0', 'Siedlungsstrukturen im Chaco Canyon, New Mexico, U', '.A.: Allgemeine und vergleichende Untersuchung von Anasazi-Pueblos in der Zeit zwischen 900 und 1150 n. Chr. M.A. thesis, Johann Wolfgang Goethe-Universitat, Frankfurt am Main, Germany.'); INSERT INTO "work" VALUES (2585, NULL, '1946', 0, 'R. W. Young, 0', 'Significance of the Letters R', '.R. in the Chaco Canyon Inscription. Ms. on file. Where.'); INSERT INTO "work" VALUES (1189, NULL, '1997', 0, 'Stephen H. Lekson, 0', 'Singular and Peculiar: Unequity and Local Theory in Archaeological Logic', ' Paper presented at the 62nd Annual Meeting of the Society for American Archaeology, Nashville.'); INSERT INTO "work" VALUES (1238, NULL, '1979', 0, 'Richard W. Loose, 0', 'Site 29SJ299', ' Draft of thesis. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1813, NULL, '1988', 0, 'Jonathan E. Reyman, 0', 'Site 29SJ427, Chaco Canyon, New Mexico: Review and Re-Evaluation', ' In Reflections: Papers on Southwestern Culture History in Honor of Charles H. Lange, edited by Anne V. Poore, pp. 211-226. Papers of the Archaeological Society of New Mexico: 14.'); INSERT INTO "work" VALUES (2199, NULL, '1976', 0, 'Marcia L. Truell, 0', 'Site 628 Summary', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (220, NULL, '1971', 0, 'Zorro A. Bradley, 0', 'Site Bc 236, Chaco Canyon National Monument, New Mexico', ' Division of Archeology, Office of Archeological and Historic Preservation, National Park Service, Washington, D.C.'); INSERT INTO "work" VALUES (248, NULL, '1961', 0, 'William Bromberg, 0', 'Site Bc 364, Chaco Canyon, A Prehistoric Farm System', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Also listed as Ms. 1964. U.S. Department of the Interior.'); INSERT INTO "work" VALUES (1036, NULL, '1982', 0, 'Meade F. Kemrer, 0', 'Site Predictive Models and their Appropriate Use', ' An Example from the San Juan Basin. Newsletter New Mexico Archeological Council 4(5-6):2-5.'); INSERT INTO "work" VALUES (2080, NULL, '1936', 0, 'T. D. Stewart, 0', 'Skeletal Remains from the Chaco Canyon, New Mexico', ' American Journal of Physical Anthropology 21(2):Supplement.'); INSERT INTO "work" VALUES (2455, NULL, '1983', 0, 'Ray A. Williamson, 0', 'Sky Symbolism in a Navajo Rock Art Site, Chaco Canyon', ' Archaeoastronomy VI(1-4):59-65.'); INSERT INTO "work" VALUES (1614, NULL, '1976', 0, 'Earl Neller, 0', 'Sleeping Dune', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2533, NULL, '1985', 0, 'Thomas C. Windes, 0; William Doleman, 1', 'Small House Population Dynamics during the Bonito Phase in Chaco Canyon', ' Paper presented at the 50th Annual Meeting of the Society for American Archaeology, Denver. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (255, NULL, '1978', 0, 'David M. Brugge, 0', 'Small Navajo Sites', ' A Preliminary Report on Historic Archaeology in the Chaco Region. In Small Sites Conference: Limited Activity and Occupation Sites, edited by Albert H. Ward, pp. 41-49. Contributions to Anthropological Studies No. 1. Center for Anthropological Studies, Albuquerque.'); INSERT INTO "work" VALUES (1486, NULL, '1986', 0, 'Peter J. McKenna, 0; L. Truell, 1', 'Small Site Architeccture of Chaco Canyon, New Mexico', ' Publications in Archeology 18D, Chaco Canyon Studies. National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (60, NULL, '1925', 0, 'Monroe Amsden, 0', 'Small Sites of the Chaco', ' Ms. on file, Archive No. 4853:1at the National Anthropological Archive, Smithsonian Institution, Washington, D.C., and Archive No. 2097 at Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (750, NULL, '1980', 0, 'Stephen A. Hall, 0', 'Snails from Quaternary Valley Fill at Chaco Canyon, New Mexico', ' The Nautilus 94(2):60-63.'); INSERT INTO "work" VALUES (1900, NULL, '1980', 0, 'John D. Schelberg, 0', 'Social Complexity in Chaco Canyon', ' In Proceedings of the Second Conference on Scientific Research in the National Parks. Vol. I. edited by Jay Gogue, pp. 414-437. National Park Service, Washington, D.C.'); INSERT INTO "work" VALUES (1898, NULL, '1979', 0, 'John D. Schelberg, 0', 'Social Complexity in Chaco Canyon', ' Paper presented at the Second Conference on Scientific Research in the National Parks, San Francisco.'); INSERT INTO "work" VALUES (570, NULL, '1995', 0, 'Suzanne L. Eckert, 0', 'Social Differentiation at Post-Chacoan Great House Sites: A View from the Hinkson Site, New Mexico', ' Paper presented at the 60th Annual Meeting of the Society for American Archaeology, Minneapolis.'); INSERT INTO "work" VALUES (1780, NULL, '1928', 0, 'Gladys A. Reichard, 0', 'Social Life of the Navajo Indians with some Attention to Minor Ceremonies', ' III. The Clans. Columbia University Press, New York.'); INSERT INTO "work" VALUES (660, NULL, '1980', 0, 'Theodore R. Frisbie, 0', 'Social Ranking in Chaco Canyon, New Mexico: A Mesoamerican Reconstruction', ' Transactions of the Illinois State Academy of Science 72(4):60-69.'); INSERT INTO "work" VALUES (1390, NULL, '1984', 0, 'Frances Joan Mathien, 0', 'Social and Economic Implications of Jewelry Items of the Chaco Anasazi', ' In Recent Research on Chaco Prehistory, edited by W. James Judge and John D. Schelberg, pp. 173-186. Reports of the Chaco Center No. 8. Division of Cultural Research, National Park Service, Albuquerque.'); INSERT INTO "work" VALUES (898, NULL, '1983', 0, 'Cynthia Irwin-Williams, 0', 'Socio-economic Order and Authority Structure in the Chacoan Community at Salmon Ruin', ' Paper presented at the Second Anasazi Symposium, Salmon Ruin, Bloomfield.'); INSERT INTO "work" VALUES (1945, NULL, '1991', 0, 'Lynne Sebastian, 0', 'Sociopolitical Complexity and the Chaco System', ' In Chaco and Hohokam. Prehistoric Regional Systems in the American Southwest, edited by Patricia L. Crown, and W. James Judge, pp. 109-134. School of American Research, Santa Fe.'); INSERT INTO "work" VALUES (1161, NULL, '1988', 0, 'Stephen H. Lekson, 0', 'Sociopolitical Complexity at Chaco Canyon, New Mexico', ' Unpublished Ph.D. dissertation, Department of Anthropology, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1461, NULL, '1983', 0, 'Leslie P. McFadden, 0; Stephen G. Wells, 1; Jerry D. Schultz, 2', 'Soil Development on Late Quaternary Eolian Deposits, San Juan Basin, New Mexico', ' In Chaco Canyon Country. A Field Guide to the Geomorphology, Quaternary Geology Paleoecology, and Environmental Geology of Northwestern New Mexico, edited by Stephen G. Wells, David W. Love, and Thomas W. Gardner, pp. 167-176. American Geomorphological Field Group, 1983 Field Trip Guidebook. Adobe Press, Albuquerque.'); INSERT INTO "work" VALUES (1523, NULL, '1980', 0, 'John Miller, 0', 'Soil Erosion Project (7371-0237-290): Chaco Canyon National Monument', ' Project Date 2 September - 30 September 1980. Ms. on file, Chaco Culture National Historical Park and Natural Resources Office, Intermountain Region, Santa Fe Office.'); INSERT INTO "work" VALUES (1985, NULL, '1982', 0, 'C. Simon, 0', 'Solar Marker: A Natural Rockfall? Science News 122:300', NULL); INSERT INTO "work" VALUES (2035, NULL, '1989', 0, 'Anna Sofaer, 0; Rolf M. Sinclair, 1; Joey B. Donehue, 2', 'Solar and Lunar Orientations of the Major Architecture of the Chaco Culture of New Mexico', ' Paper presented at the "Colloquoia Internazionale Archeologia e Astronomia", Third International Conference on Archaeoastronomy. University of Venice. Published in the 1991.'); INSERT INTO "work" VALUES (2037, NULL, '1991', 0, 'Anna Sofaer, 0; Rolf M. Sinclair, 1; Joey B. Donehue, 2', 'Solar and Lunar Orientations of the Major Architecture of the Chaco Culture of New Mexico', ' In Colloquio Internazionale Archeologia e Astronomia, edited by Giorgio Bretschneider, Rome.'); INSERT INTO "work" VALUES (1964, NULL, '1979', 0, 'John Sherman, 0', 'Solstice Markers at Chaco Canyon', ' New Mexico Craft 2(2): ----, November.'); INSERT INTO "work" VALUES (1363, NULL, '1988', 0, 'Michael P. Marshall, 0; Anna Sofaer, 1', 'Solstice Project Archaeological Investigations in the Chacoan Province, New Mexico', ' Ms. on file with authors.'); INSERT INTO "work" VALUES (1362, NULL, '1986', 0, 'Michael P. Marshall, 0; Anna Sofaer, 1', 'Solstice Project Investigations in the Chaco District 1984 and 1985-The Technical Report', ' Ms. on file with authors.'); INSERT INTO "work" VALUES (651, NULL, '1978', 0, 'Kendrick Frazier, 0', 'Solstice-Watchers of Chaco', ' Science News 114(9):148-151. August.'); INSERT INTO "work" VALUES (1371, NULL, '1892', 0, 'Henry J. Mason, 0', 'Some American Ruins', ' California Illustrated Magazine 1:193-197.'); INSERT INTO "work" VALUES (1275, NULL, '1972', 0, 'Thomas R. Lyons, 0', 'Some Applications of Space and Aerial Remote Sensing Technology to Anthropological Disciplines', ' Paper presented at the Albuquerque Chapter of the New Mexico Geological Society.'); INSERT INTO "work" VALUES (777, NULL, '1961', 0, 'Lyndon L. Hargrave, 0', 'Some Archeological Bird Bones from Pueblo Bonito, Chaco Canyon National Monument, New Mexico', ' Ms. on file, National Park Service, Western Archaeological and Conservation Center, Tucson.'); INSERT INTO "work" VALUES (422, NULL, '1979', 0, 'Anne C. Cully, 0', 'Some Aspects of Pollen analysis in Relation to Archaeology', ' The Kiva 44(2-3):95-100.'); INSERT INTO "work" VALUES (778, NULL, '1962', 0, 'Lyndon L. Hargrave, 0', 'Some Bird Bones from Chaco Canyon (Bc 53)', ' Ms. on file, National Park Service, Western Archaeological and Conservation Center, Tucson.'); INSERT INTO "work" VALUES (628, NULL, '1934', 0, 'Reginald G. Fisher, 0', 'Some Geographic Factors that Influenced the Ancient Population of Chaco Canyon, New Mexico', ' University of New Mexico Bulletin 244, Archaeology Series 3(1). University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2516, NULL, '1987', 0, 'Thomas C. Windes, 0', 'Some Ground Stone Tools and Hammerstones from Pueblo Alto', ' In Investigations at the Pueblo Alto Complex, Chaco Canyon, New Mexico: Tests and Excavations, 1975-1979. Volume III. Artifactual and Biological Analyses, edited by Frances Joan Mathien and Thomas C. Windes, pp. 291-358. Publications in Archeology 18F, Chaco Canyon Studies. National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (36, NULL, '1986', 0, 'Nancy J. Akins, 0', 'Some Methodological Considerations in the Investigation of Faunal Remains from Chaco Canyon, New Mexico', ' Paper presented at the Ninth Annual Ethnobotanical Conference, Albuquerque.'); INSERT INTO "work" VALUES (881, NULL, '2002', 0, 'Winston Hurst, 0', 'Some Observations Regarding the "Chaco Phenomenon" in the Northwestern San Juan Provinces', ' Paper presented at the 67th Annual Meeting of the Society for American Archaeology, Denver.'); INSERT INTO "work" VALUES (883, NULL, '2002', 0, 'Winston Hurst, 0; Jonathan Till, 1', 'Some Observations Regarding the "Chaco Phenomenon" in the Northwestern San Juan Provinces', ' Paper presented at the 67th Annual Meeting of the Society for American Archaeology, Denver.'); INSERT INTO "work" VALUES (1800, NULL, '1979', 0, 'Jonathan E. Reyman, 0', 'Some Observations on Archaeology and Archaeoastronomy', ' Archaeoastronomy (Supplement to the Journal of the History of Astronomy) 2(2):11-13.'); INSERT INTO "work" VALUES (857, NULL, '1956', 0, 'George M. Hocking, 0', 'Some Plant Materials Used Medicinally and Otherwise by the Navaho Indians in the Chaco Canyon, New Mexico', ' El Palacio 63(5-6):146-165.'); INSERT INTO "work" VALUES (2007, NULL, '1977', 0, 'Cordelia Thomas Snow, 0', 'Some Proposals Concerning the Possibility of an Early Exchange Network in the San Juan Basin', ' Ms. on file, NPS Intermountain Region, Santa Fe Office.'); INSERT INTO "work" VALUES (2376, NULL, '1977', 0, 'A. Helene Warren, 0', 'Source Area Studies of Pueblo I-III Pottery of Chaco Canyon 1976-1977', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1210, NULL, '1997', 0, 'Philippe D. LeTourneau, 0', 'Sources and Prehistoric Use of Black-Spotted Yellowish Brown Chert in West-Central New Mexico', ' Paper presented at the 62nd Annual Meeting of the Society for American Archaeology, Nashville.'); INSERT INTO "work" VALUES (1531, NULL, '1997', 0, 'Barbara J. Mills, 0; Andrea Carpenter and William Grimm, 1', 'Sourcing Chuskan Ceramic Production: Petrographic and Experimental Analyses', ' Kiva 62(3):261-282.'); INSERT INTO "work" VALUES (1889, NULL, '1995', 0, 'M. Steven Schackley, 0', 'Sources of Archaeological Obsidian in the Greater American Southwest: An Update and Quantitative Analysis', 'American Antiquity 60(3):531-551.'); INSERT INTO "work" VALUES (2211, NULL, '1993', 0, 'Christy G. Turner, II, 0', 'Southwest Indian Teeth', ' Natural Geological Research and Exploration 9(1):32-53.'); INSERT INTO "work" VALUES (503, NULL, '1938', 0, 'Andrew E. Douglass, 0', 'Southwestern Dated Ruins No', '2. Tree-Ring Bulletin 5(2):10-13.'); INSERT INTO "work" VALUES (145, NULL, '1960', 0, 'Bryant Bannister, 0', 'Southwestern Dated Ruins VII', ' Tree-Ring Bulletin 23(1-4):19-21.'); INSERT INTO "work" VALUES (808, NULL, '1938', 0, 'Florence M. Hawley, 0', 'Southwestern Dated Ruins, Chaco Canyon, New Mexico', ' Tree-Ring Bulletin 5(1):6-7. University of Arizona, Tucson.'); INSERT INTO "work" VALUES (1956, NULL, '1938', 0, 'Florence H. Senter, 0', 'Southwestern Dated Ruins: IV', ' Tree-Ring Bulletin 5(1):6-7.'); INSERT INTO "work" VALUES (663, NULL, '1986', 0, 'Theodore R. Frisbie, 0', 'Southwestern Indians and Cranes', ' The ICF Bugle 12(1):3-5.'); INSERT INTO "work" VALUES (2352, NULL, '1940', 0, 'Hazel H. Voth, 0; H. Gill, 1', 'Southwestern National Monuments, A Bibliography', ' Ms. on file, National Park Service, West Museum Lab, Berkeley.'); INSERT INTO "work" VALUES (1806, NULL, '1982', 0, 'Jonathan E. Reyman, 0', 'Southwestern Pueblo Architecture: Some Implications for Modern Housing Design', ' In Desert Planning: International Lessons, edited by Gideon Golany, pp. 105-112. Architectural Press, London.'); INSERT INTO "work" VALUES (1273, NULL, '1970', 0, 'Thomas R. Lyons, 0', 'Space Imagery, a Multi-discipline Teaching Aid', ' Paper presented at the Earth Science Teachers'' Conference, New Mexico Institute of Technology, Socorro, NM.'); INSERT INTO "work" VALUES (1300, NULL, '1970', 0, 'Thomas R. Lyons, 0; W. Oates, 1', 'Space Imagery: An Investigative Tool in the Earth Sciences', ' Paper presented at the Earth Science Teachers'' Conference, New Mexico Institute of Technology, Socorro, NM.'); INSERT INTO "work" VALUES (2233, NULL, '1999', 0, 'Ruth M. Van Dyke, 0', 'Space Syntax Analysis at the Chacoan Outlier of Guadalupe', ' American Antiquity 64(3):461-473.'); INSERT INTO "work" VALUES (385, NULL, '1995', 0, 'Laurel Martine Cooper, 0', 'Space Syntax Analysis of Chacoan Great Houses', 'Ph.D. dissertation, Department of Anthropology, University of Arizona, Tucson.'); INSERT INTO "work" VALUES (2228, NULL, '1996', 0, 'Ruth M. Van Dyke, 0', 'Space and Power at Chacoan Outlier Communities', ' Paper presented at the 61st Annual Meeting of the Society for American Archaeology, New Orleans.'); INSERT INTO "work" VALUES (288, NULL, '1996', 0, 'Wendy Bustard, 0', 'Space as Place: Small and Great House Spatial Organization in Chaco Canyon, New Mexico, A', '. 1000-1150. Ph.D. dissertation, Department of Anthropology, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (290, NULL, '1999', 0, 'Wendy Bustard, 0', 'Space, Evolution, and Function in the Houses of Chaco Canyon', ' Environment and Planning B: Planning and Design 1999 26:219-240.'); INSERT INTO "work" VALUES (289, NULL, '1997', 0, 'Wendy Bustard, 0', 'Space, Evolution, and Function in the Houses of Chaco Canyon', ' Paper presented at the First International Symposium on Space Syntax, University College, London, April 17. Published in 1999.'); INSERT INTO "work" VALUES (893, NULL, '1984', 0, 'Arthur K. Ireland, 0', 'Space-Age Archeology', ' Presentation for Orientation to National Park Service Operations class, Glorieta, NM. Nov.'); INSERT INTO "work" VALUES (1668, NULL, '1898', 0, 'Stephen D. Peet, 0', 'Spanish and American Explorations', ' The American Antiquarian and Oriental Journal 20(8):143-167.'); INSERT INTO "work" VALUES (559, NULL, '1973', 0, 'James I. Ebert, 0; Robert K. Hitchcock, 1', 'Spatial Inference and the Archeology of Complex Societies', ' Paper presented at the Mathematics in Social Sciences Board Conference on Formal Methods for the Analysis of Regional Social Structure, Santa Fe, Oct.'); INSERT INTO "work" VALUES (1632, NULL, '199?', 0, 'Kurt Novak, 0; Kenneth L. Edmundson, 1; Phillip Johnson, 2', 'Spatial Reconstruction and Modeling of the Sundagger Site in Chaco Canyon', ' WHERE'); INSERT INTO "work" VALUES (439, NULL, '1989', 0, 'Anne C. Cully, 0; Jack F. Cully, Jr., 1', 'Spatial and Temporal Variability in Perennial and Annual Vegetation at Chaco Canyon, New Mexico', ' The Great Basin Naturalist 49(1):113-122.'); INSERT INTO "work" VALUES (1843, NULL, '1979', 0, 'William J. Robinson, 0', 'Species Identification of Wood Submitted for Tree-Ring Dating, 29SJ389', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2436, NULL, '1994', 0, 'John Wicklen, 0', 'Spirit Paths of the Anasazi', ' Archaeology, Jan.-Feb., pp. 36-42.'); INSERT INTO "work" VALUES (1336, NULL, '1994', 0, 'Anne Lawrason Marshall, 0', 'Spiritual Landscapes of Chaco Canyon', ' Paper presented at LABASH, the National Conference of Landscape Architecture Students, Champaign, March.'); INSERT INTO "work" VALUES (2047, NULL, '1945', 0, 'Ted C. Sowers, 0', 'Stabilization Needs at Chaco Canyon National Monument', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque and Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (2296, NULL, '1951', 0, 'R. Gordon Vivian, 0; Leland Abel, 1', 'Stabilization Record-Bc 59, Chaco Canyon', ' Southwestern National Monuments Ruin Stabilization Mobile Unit. Stabilization report on file in NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (1443, NULL, '1968', 0, 'Martin T. Mayer, 0', 'Stabilization Records, Bc 50, Chaco Canyon, New Mexico, 1967', ' Stabilization report on file in the NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (1446, NULL, '1968', 0, 'Martin T. Mayer, 0', 'Stabilization Records, Casa Rinconada, Chaco Canyon National Monument, 1967', ' Stabilization report on file in the NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (1440, NULL, '1967', 0, 'Martin T. Mayer, 0', 'Stabilization Records, Gallo Cliff Dwelling No', '2 (Bc 288), Chaco Canyon National Monument, 1967. Stabilization report on file in the NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (2340, NULL, '1963', 0, 'Charles B. Voll, 0', 'Stabilization Records, Kin Bineola, Chaco Canyon National Monument, New Mexico, 1963', ' Stabilization report on file in the NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (2292, NULL, '1956', 0, 'R. Gordon Vivian, 0', 'Stabilization Records, Kin Kletso, Chaco Canyon National Monument', ' Stabilization report on file in NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (2341, NULL, '1963', 0, 'Charles B. Voll, 0', 'Stabilization Records, Kin Kletso, Chaco Canyon National Monument, 1963', ' Stabilization report on file in the NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (1447, NULL, '1968', 0, 'Martin T. Mayer, 0', 'Stabilization Records, Kin Kletso, Chaco Canyon National Monument, 1967', ' Stabilization report on file in the NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (1441, NULL, '1967', 0, 'Martin T. Mayer, 0', 'Stabilization Records, Kin Kletso, Chaco Canyon National Monument, 1967', ' Stabilization report on file in the NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (1823, NULL, '1956', 0, 'Roland Richert, 0', 'Stabilization Report', ' Kin Ya''a Ruin, Chaco Canyon National Monument, 1956. Stabilization report on file in the NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (1444, NULL, '1968', 0, 'Martin T. Mayer, 0', 'Stabilization Report Bc 51, Chaco Canyon National Monument, 1967', ' Stabilization report on file in the NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (1445, NULL, '1968', 0, 'Martin T. Mayer, 0', 'Stabilization Report, Bc 59, Chaco Canyon National Monument 1967', ' Stabilization report on file in the NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (1452, NULL, '1968', 0, 'Martin T. Mayer, 0; William M. Waggoner, 1', 'Stabilization Report, Pueblo Bonito, Chaco Canyon National Monument 1967', ' Stabilization report on file in the NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (1454, NULL, '1969', 0, 'Martin T. Mayer, 0; John K. Weir, 1', 'Stabilization Report, Pueblo Pintado, Chaco Canyon National Monument, 1969', ' Stabilization report on file in the NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (2286, NULL, '1951', 0, 'R. Gordon Vivian, 0', 'Stabilization Report, Pueblo del Arroyo, 1949-1950, Chaco Canyon National Monument', ' Stabilization report on file in NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (2301, NULL, '1949', 0, 'R. Gordon Vivian, 0; Raymond Rixey, 1', 'Stabilization Report, Site Bc 50, Chaco Canyon National Monument', ' Southwestern National Monuments Ruins Stabilization Mobile Unit. Stabilization report on file in NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (1972, NULL, '1959', 0, 'Joel L. Shiner, 0', 'Stabilization at Wijiji, 1959', ' National Park Service Regional Stabilization Unit, Globe, Az.'); INSERT INTO "work" VALUES (2345, NULL, '1964', 0, 'Charles B. Voll, 0', 'Stabilization of Casa Chiquita Ruin, Chaco Canyon National Monument, New Mexico, 1964', ' Stabilization report on file in the NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (1826, NULL, '1963', 0, 'Roland Richert, 0; Charles B. Voll, 1', 'Stabilization of Chettro Kettle Ruin, Chaco Canyon National Monument, New Mexico, 1963', ' Stabilization report on file in the NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (1562, NULL, '1966', 0, 'Don Morris, 0', 'Stabilization of Kin Bineola Ruin, Chaco Canyon National Monument, New Mexico, 1966', ' Stabilization report on file in the NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (2261, NULL, '1938', 0, 'R. Gordon Vivian, 0', 'Stabilization of Kin Klizhin, Chaco Canyon National Monument, Fiscal Year 1938', ' Stabilization report on file in NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (2267, NULL, '1940', 0, 'R. Gordon Vivian, 0', 'Stabilization of Pueblo Bonito 1940 Vol', '1. Stabilization report on file in NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (2273, NULL, '1941', 0, 'R. Gordon Vivian, 0', 'Stabilization of Pueblo Bonito, 1941', ' Stabilization report on file in NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (1114, NULL, '1966', 0, 'Peter M. Laudeman, 0', 'Stabilization of Pueblo Bonito, Chaco Canyon National Monument, 1966', ' Ms. on file, Chaco Culture National Historical Park and NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2048, NULL, '1945', 0, 'Ted C. Sowers, 0', 'Stabilization of Pueblo Bonito, Chaco Canyon National Monument, 1945-46', ' Stabilization report on file in the NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (2049, NULL, '1946', 0, 'Ted C. Sowers, 0', 'Stabilization of Pueblo Bonito, Chaco Canyon National Monument, 1945-46', ' Stabilization report on file in the NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (2260, NULL, '1938', 0, 'R. Gordon Vivian, 0', 'Stabilization of Pueblo Bonito, Chaco Canyon National Monument, Fiscal Year 1938', ' Stabilization report on file in NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (2262, NULL, '1939', 0, 'R. Gordon Vivian, 0', 'Stabilization of Pueblo Bonito, Chaco Canyon National Monument, Fiscal Year 1939', ' Stabilization report on file in NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (2264, NULL, '1940', 0, 'R. Gordon Vivian, 0', 'Stabilization of Pueblo Bonito, Chaco Canyon National Monument, Fiscal Year 1940', ' Stabilization report on file in NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (112, NULL, '1974', 0, 'John Antieau, 0', 'Stabilization of Pueblo Bonito, Chaco Canyon, Vol', '3. Stabilization report on file in the NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (110, NULL, '1974', 0, 'John Antieau, 0', 'Stabilization of Pueblo Bonito, Chaco Canyon, Vol', '1. Stabilization report on file in the NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (111, NULL, '1974', 0, 'John Antieau, 0', 'Stabilization of Pueblo Bonito, Chaco Canyon, Vol', '2. Stabilization report on file in the NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (2268, NULL, '1940', 0, 'R. Gordon Vivian, 0', 'Stabilization of Pueblo Bonito, chaco Canyon National Monument, Vol', 'II. Stabilization report on file in NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (2274, NULL, '1941', 0, 'R. Gordon Vivian, 0', 'Stabilization of Pueblo Pintado, 1940-1941', ' Stabilization report on file in NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (2265, NULL, '1940', 0, 'R. Gordon Vivian, 0', 'Stabilization of Pueblo Pintado, Chaco Canyon National Monument, 1940', ' Stabilization report on file in NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (2263, NULL, '1939', 0, 'R. Gordon Vivian, 0', 'Stabilization of Pueblo del Arroyo, Chaco Canyon National Monument, Fiscal Year 1939', ' Stabilization report on file in NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (1560, NULL, '1966', 0, 'Don Morris, 0', 'Stabilization of Pueblo del Arroyo, Chaco Canyon National Monument, NewMexico, 1966', ' Stabilization report on file in the NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (1561, NULL, '1966', 0, 'Don Morris, 0', 'Stabilization of Three Sites in Gallo Canyon, Chaco Canyon National Monument, 1966', ' Stabilization report on file in the NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (2283, NULL, '1950', 0, 'R. Gordon Vivian, 0', 'Stabilizing Ruins of Prehistoric Structures: Examples of Early Amerian Craftsmanship', ' Southwest Builder and Contractor 96(3-4):16-17, 28, 30. Los Angeles.'); INSERT INTO "work" VALUES (1140, NULL, '1981', 0, 'Stephen H. Lekson, 0', 'Standing Architecture and the Interpretation of Local and Regional Organization of Chaco Canyon', ' Paper presented at the 46th Annual Meeting of the Society for American Archaeology, San Diego, April 29-May 2.'); INSERT INTO "work" VALUES (1151, NULL, '1984', 0, 'Stephen H. Lekson, 0', 'Standing Architecture at Chaco Canyon and the Interpretation of Local and Regional Organization', ' In Recent Research on Chaco Prehistory, edited by W. James Judge and John D. Schelberg, pp. 55-73. Reports of the Chaco Center No. 8. Division of Cultural Research, National Park Service, Albuquerque.'); INSERT INTO "work" VALUES (1359, NULL, '1994', 0, 'Michael P. Marshall, 0', 'Standing Rock Community Study', ' In A Study of Two Anasazi Communities in the San Juan Basin, by R. J. Bradley and R. Sullivan. Across the Colorado Plateau: Anthropological Studies for the Transwestern Pipeline Expansion Project, Volume IX. University of New Mexico Office of Contract Archaeology and Maxwell Museum of Anthropology, Albuquerque.'); INSERT INTO "work" VALUES (1746, NULL, '1997', 0, 'Michael J. Proper, 0', 'Standing at the Foot of Guadalupe Ruin: Eleanor Sit (ENM 883)', ' Unpublished M.A. thesis, Anthropology Program, Eastern New Mexico University, Portales.'); INSERT INTO "work" VALUES (653, NULL, '1979', 0, 'Kendrick Frazier, 0', 'Stars, Sky and Culture', ' Science News 116(5): August 4.'); INSERT INTO "work" VALUES (1784, NULL, '1939', 0, 'Paul D. Reiter, 0', 'Status Report of the Chaco Canyon Project in Terms of Operation over the Last Year', ' Ms. on file, Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (1150, NULL, '1984', 0, 'Stephen H. Lekson, 0', 'Standing Architecture of Chaco: Local and Regional Organization', ' Paper presented at the 49th Annual Meeting of the Society for American Archaeology, Portland, April 10-15.'); INSERT INTO "work" VALUES (28, NULL, '1982', 0, 'Nancy J. Akins, 0', 'Status from Burial Information', ' Ms. on file NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2174, NULL, '1981', 0, 'Mollie S. Toll, 0', 'Status of Flotation and Macro-Botanical Analyses (Chaco)', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2487, NULL, '1978', 0, 'Thomas C. Windes, 0', 'Stone Circles of Chaco Canyon, Northwestern New Mexico', ' Reports of the Chaco Center No. 5. Division of Chaco Research, National Park Service, Albuquerque.'); INSERT INTO "work" VALUES (852, NULL, '1937', 0, 'Frank C. Hibben, 0', 'Stone and Other Artifacts', ' In Tseh So, a Small House Ruin, Chaco Canyon, New Mexico, Preliminary Report, by Donald D. Brand, Florence M. Hawley, and Frank C. Hibben, pp. 90-100. University of New Mexico Bulletin No. 308, Anthropological Series 2(2). University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (129, NULL, '1953', 0, 'Elmer H. Baltz, 0', 'Stratigraphic Relationships of Cretaceous and Early Tertiary Rocks of a Part of Northwestern San Juan Basin', ' Unpublished M.S. thesis, Geology Department, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (132, NULL, '1962', 0, 'Elmer H. Baltz, 0', 'Stratigraphy and Geologic Structure of Uppermost Cretaceous and Tertiary Rocks of the East-Central Part of the San Juan Basin, New Mexico', ' Unpublished Ph.D. dissertation, Geology Department, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (747, NULL, '1975', 0, 'Stephen A. Hall, 0', 'Stratigraphy and Palynology of Quarternary Alluvium at Chaco Canyon, New Mexico', ' Unpublished Ph.D. dissertation, University of Michigan, Ann Arbor. University Microfilms, Ann Arbor.'); INSERT INTO "work" VALUES (133, NULL, '1967', 0, 'Elmer H. Baltz, 0', 'Stratigraphy and Regional Tectonic Implications of Part of Upper Cretaceous and Tertiary Rocks, East-Central San Juan Basin, New Mexico', ' U.S.G.S. Professional Paper No. 552, p. 101, Washington, D.C.'); INSERT INTO "work" VALUES (2122, NULL, '1994', 0, 'Joseph A. Tainter, 0; Fred Plog, 1', 'Strong and Weak Patterning in Southwestern Prehistory', ' The Formation of Puebloan Archaeology. In Themes in Southwest Prehistory, edited by George J. Gumerman, pp. 165-181. School of American Research, Santa Fe.'); INSERT INTO "work" VALUES (1892, NULL, '1980', 0, 'Cherie Scheick, 0', 'A Cultural Resources Clearance Survey of the Cerrito Colorado Peak Distribution Line near San Rafael, New Mexico', ' Contract Archaeology Progress Report No. 004(1). School of American Research, Santa Fe.'); INSERT INTO "work" VALUES (583, NULL, '2001', 0, 'Nathan B. English, 0; Julio L. Betancourt, 1; Jeffrey S. Dean, 2; Jay Quade, 3', 'Strontium Isotopes Reveal Distant Sources of Architectural Timber in Chaco Canyon, New Mexico', ' Proceedings of the National Academy of Science 98(21):11891-11896.'); INSERT INTO "work" VALUES (2249, NULL, '1975', 0, 'R. S. Vickers, 0; Lambert T. Dolphin, 1', 'A Communication on an Archaeological Radar Experiment at Chaco Canyon, New Mexico', ' In Museum of Applied Science Center for Archeology Newsletter II(1):----. University of Pennsylvania, Philadelphia.'); INSERT INTO "work" VALUES (1618, NULL, '1994', 0, 'Ben A. Nelson, 0; Debra L. Martin, 1; Alan C. Swedlund, 2; Paul R. Fish, 3; George J. Armelagos, 4', 'Studies in Disruption: Demography and Health in the Prehistoric American Southwest', ' In Understanding Complexity in the Prehistoric Southwest, edited by George J. Gumerman and Murray Gill-Mann, pp. 59-112. Proceedings Vol. XVI, Santa Fe Institute. Addison-Wesley Publishing Co. Reading, MA.'); INSERT INTO "work" VALUES (228, NULL, '1937', 0, 'Donald D. Brand, 0', 'Subsistence', ' In Tseh So, A Small House Ruin, Chaco Canyon, New Mexico. Preliminary Report, by Donald D. Brand, Florence M. Hawley, and Frank C. Hibben, pp. 112-114. University of New Mexico Bulletin No. 308, Anthropological Series 2(2). University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1077, NULL, '1939', 0, 'Clyde Kluckhohn, 0', 'Subsistence Remains', ' In Preliminary Report on the 1937 Excavations, Bc 50-51, Chaco Canyon, New Mexico, edited by Clyde Kluckhohn and Paul Reiter, pp. 147-150. University of New Mexico Bulletin No. 345, Anthropological Series 3(2). University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1039, NULL, '1998', 0, 'James W. Kendrick, 0; W. James Judge, 1', 'Success and Failure in the Montezuma Valley: A Discussion of the Lowry Community in Southwestern Colorado', ' Paper presented at the 63rd Annual Meeting of the Society for American Archaeology, Seattle.'); INSERT INTO "work" VALUES (803, NULL, '1937', 0, 'Florence M. Hawley, 0', 'Succession of Chaco Canyon Masonry Styles', ' In Tseh So, a Small House Ruin, Chaco Canyon, New Mexico. Preliminary Report, by Donald Brand, Florence M. Hawley, and Frank C. Hibben et al., pp. 88-89. University of New Mexico Bulletin No. 308, Anthropological Series 2(2). University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1518, NULL, '1937', 0, 'Stanley James Milford, 0', 'Suggestions Derived from Living Pueblos for the Interpretation of Chaco Canyon Kivas', ' Report prepared for the Department of Anthropology and Archaeology, University of Southern California. Archive 1950, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1129, NULL, '1977', 0, 'Stephen H. Lekson, 0', 'Suggestions for the Alto Research Design', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (47, NULL, '1979', 0, 'Nancy J. Akins, 0; William B. Gillespie, 1', 'Summary Report of Archaeological Investigations at Una Vida, Chaco Canyon, New Mexico', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1482, NULL, '1985', 0, 'Peter J. McKenna, 0; H. Wolcott Toll, 1', 'Summary of Ceramic Reports from Chaco Canyon Sites', ' Pottery Southwest 12(2). Albuquerque Archeological Society Press, Albuquerque.'); INSERT INTO "work" VALUES (1480, NULL, '1984', 0, 'Peter J. McKenna, 0; H. Wolcott Toll, 1', 'Summary of Ceramic Reports from Chaco Canyon Sites', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published in 1985.'); INSERT INTO "work" VALUES (1552, NULL, '1977', 0, 'E. Pierre Morenon, 0; Ben Amick, 1', 'Summary of Energy Study Results Conducted in Chaco Canyon National Monument', ' Fort Burgwin Research Center. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1252, NULL, '1980', 0, 'David W. Love, 0', 'Summary of Interpretations of Late Quaternary Geomorphic Conditions in Chaco Canyon', ' Report on Contract to NPS. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2175, NULL, '1981', 0, 'Mollie S. Toll, 0', 'Summary of Macro-botanical Remains Recovered by Dry Sorting of 47 Chaco Coprolites', ' Castetter Laboratory for Ethnobotanical Studies Technical Series No. 38. Department of Biology, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (687, NULL, '1981', 0, 'William B. Gillespie, 0', 'Summary of Osteological Remains from Chaco Coprolites', 'Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (804, NULL, '1937', 0, 'Florence M. Hawley, 0', 'Summary of Pottery from Tseh So', ' In Tseh So, a Small House, Ruin, Chaco Canyon, New Mexico. Preliminary Report, by Donald Brand, Florence M. Hawley, and Frank C. Hibben et al. Pp. 85-87. University of New Mexico Bulletin No. 308, Anthropological Series 2(2). University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1213, NULL, '1972', 0, 'David Lewis, 0; Thomas Shipman, 1', 'Summary of Preliminary Seismic Work at Chaco Canyon', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1043, NULL, '1931', 0, 'Susan Kent, 0', 'Summary of Work at Chaco Canyon Field School-June 10-July 8, 1931', ' Archive 1839, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1255, NULL, '1983', 0, 'David W. Love, 0', 'Summary of the Late Cenozoic Geomorphic and Depositional History of Chaco Canyon', ' In Chaco Canyon Country. A Field Guide to the Geomorphology, Quaternary Geology, Paleoecology, and Environmental Geology of Northwestern New Mexico, edited by S. G. Wells, D. W. Love, and T. W. Gardner, pp. 187-194. American Geomorphological Field Group, Field Trip Guidebook 1983 Conference. Adobe Press, Albuquerque.'); INSERT INTO "work" VALUES (2595, NULL, '1984', 0, 'Michael Zeilik, 0', 'Summer Solstice at Casa Rinconada: Calender, Hierophany, or Nothing? Archaeoastronomy 7(1-4):76-81', NULL); INSERT INTO "work" VALUES (1646, NULL, '1980', 0, 'Joseph Palca, 0', 'Sun Dagger Misses Its Mark', ' Science 244(4012):1538.'); INSERT INTO "work" VALUES (1848, NULL, '1998', 0, 'Angella M. Rogers and Von el Chamberlain, 0', 'Sun Marker: A Light and Shadow Laboratory for Archaeoastronomers', ' Archaeoastronomy and Ethnoastronomy News, The Quarterly Bulletin of the Center for Archaeoastronomy and ISAAC. No. 30, December.'); INSERT INTO "work" VALUES (2601, NULL, '1985', 0, 'Michael Zeilik, 0', 'Sun Shrines and Sun Symbols in the U', '. Southwest. Archaeoastronomy (Supplement to the Journal for the History of Astronomy) 9:86-96.'); INSERT INTO "work" VALUES (2531, NULL, '2000', 0, 'Thomas c. Windes, 0; Rachel Anderson, 1; Brian K. Johnson, 2; Cheryl A. Ford, 3', 'Sunrise, Sunset: Sedentism and Mobility in the Chaco East Community', ' In Great House Communities Across the Chacoan Landscape, edited by John Kantner and Nancy M. Mahoney, pp. 39-59. Anthropological Papers of the University of Arizona No. 64. University of Arizona Press, Tucson.'); INSERT INTO "work" VALUES (2596, NULL, '1984', 0, 'Michael Zeilik, 0', 'Sunwatching and Calendars: A Southwestern-Mesoamerican Contrast in a Distant, Smoky Mirror', ' Paper presented at the Symposium on Archaeoastronomy and Ethnoastronomy in Mesoamerica, Mexico.'); INSERT INTO "work" VALUES (2555, NULL, '1972', 0, 'Daniel Witter, 0', 'Supplemental Report: Environmental Data Recording', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (345, NULL, '1978', 0, 'Eileen Camilli, 0', 'Surface Cover-Type Legends', ' San Juan Basin Ecological Stratification. Phase III Report. Ms. on file, Remote Sensing Office, National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (926, NULL, '1946', 0, 'E. Clark Johnston, 0', 'Survey of Petroglyphs in Chaco Canyon Region: Part I: North Walls of Canyon in Chaco Canyon National Monument', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1319, NULL, '1972', 0, 'Harold E. Malde, 0', 'Surveys in Chaco Canyon National Monument, N', 'M. Archive 2037, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (979, NULL, '1978', 0, 'W. James Judge, 0', 'Synthesis and Comparison of Project Results', ' In Investigations of the Southwestern Anthropological Research Group: An Experiment in Archaeological Cooperation, edited by Robert C. Euler and George J. Gumerman, pp. 95-101. Museum of Northern Arizona, Flagstaff.'); INSERT INTO "work" VALUES (413, NULL, '1991', 0, 'Patricia L. Crown, 0; W. James Judge, 1', 'Synthesis and Conclusions', ' In Chaco and Hohokam. Prehistoric Regional Systems in the American Southwest, edited by Patricia L. Crown and W. James Judge, pp. 293-308. School of American Research Press, Santa Fe.'); INSERT INTO "work" VALUES (1121, NULL, '1996', 0, 'Eugene C. Lee, 0', 'T-shaped Door and the Maya Connection', ' Ms. in possession of author. Copy on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1948, NULL, '1996', 0, 'Lynne Sebastian, 0', 'Taking Charge in Chaco: The Evolution of Political Structure', ' In Debating Complexity: Proceedings of the 26th Annual Chacmool Conference, edited by D. A. Meyer, pp. 339-344. Archaeological Association of the University of Calgary, Calgary.'); INSERT INTO "work" VALUES (2570, NULL, '1935', 0, 'Margaret S. Woods, 0', 'Talus Unit No', '1., Chetro Ketl. Southwestern Monuments Monthly Report Supplement 1:44-46. August supplement, pp. 321-323.'); INSERT INTO "work" VALUES (2571, NULL, '1937', 0, 'Margaret S. Woods, 0', 'Talus Unit No', '1 at Chaco. Southwestern Monuments Monthly Report for October, pp. 321-323.'); INSERT INTO "work" VALUES (2176, NULL, '1981', 0, 'Mollie S. Toll, 0', 'Taxonomic Diversity in Flotation and Macro-Botanical Assemblages from Chaco Canyon Archeological Sites', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2177, NULL, '1984', 0, 'Mollie S. Toll, 0', 'Taxonomic Diversity in Flotation and Macrobotanical Assemblages from Chaco Canyon', ' In Recent Research on Chaco Prehistory, edited by W. James Judge and John D. Schelberg, pp. 241-250. Reports of the Chaco Center No. 8. Division of Cultural Research, National Park Service, Albuqerque.'); INSERT INTO "work" VALUES (2375, NULL, '1976', 0, 'A. Helene Warren, 0', 'Technological Studies of the Pottery of Chaco Canyon', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (30, NULL, '1984', 0, 'Nancy J. Akins, 0', 'Temporal Variation in Faunal Assemblages from Chaco Canyon', ' In Recent Research on Chaco Prehistory, edited by W. James Judge and John D. Schelberg, pp. 225-240. Reports of the Chaco Center No. 8. Division of Cultural Research, National Park Service, Albuquerque.'); INSERT INTO "work" VALUES (1, NULL, '1959', 0, 'James Abarr, 0', 'Tenth Century Apartment House', ' New Mexico 37(4):18-19, 51.'); INSERT INTO "work" VALUES (1001, NULL, '1981', 0, 'W. James Judge, 0; William B. Gillespie, 1; Stephen H. Lekson, 2; H. Wolcott Toll, 3', 'Tenth Century Developments in Chaco Canyon', ' In Collected Papers in Honor of Erik Kellerman Reed, edited by Albert H. Schroeder, pp. 65-98. Papers of the Archaeological Society of New Mexico: 6. Albuquerque Archaeological Society Press.'); INSERT INTO "work" VALUES (171, NULL, '1978', 0, 'Eric E. Bennett, 0', 'Testing of Two Different Ways of Holding a Mano to Produce a Triangular Cross Section', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2279, NULL, '1948', 0, 'R. Gordon Vivian, 0', 'The "General" Carved His Name', ' New Mexico Magazine 26(4):16, 33.'); INSERT INTO "work" VALUES (1554, NULL, '1869', 0, 'Lewis H. Morgan, 0', 'The "Seven Cities of Cibola', ' North American Review 108:457-498. Boston.'); INSERT INTO "work" VALUES (237, NULL, '1979', 0, 'John C. Brandt, 0; Ray A. Williamson, 1', 'The 1054 Supernova and Native American Rock Art', ' Archaeoastronomy, Supplement to the Journal of Historical Astronomy 10:20.'); INSERT INTO "work" VALUES (1764, NULL, '1947', 0, 'Erik K. Reed, 0', 'The 1947 Chaco Conference', ' El Palacio 54(9):217-218.'); INSERT INTO "work" VALUES (2524, NULL, '1993', 0, 'Thomas C. Windes, 0', 'The 1991 and 1992 Room Test Excavations at Pueblo Bonito', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1086, NULL, '1999', 0, 'Jane Kolber, 0', 'The 1998 Chaco Rock Art Reassessment Project', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1203, NULL, '1993', 0, 'Stephen H. Lekson, 0; Catherine M. Cameron, 1', 'The Abandonment of Chaco Canyon and the Reorganization of the Anasazi World', ' Paper presented at the Annual Meeting of the American Anthropological Association, Nov. Published in 1995.'); INSERT INTO "work" VALUES (1204, NULL, '1995', 0, 'Stephen H. Lekson, 0; Catherine M. Cameron, 1', 'The Abandonment of Chaco Canyon, The Mesa Verde Migrations, and the Reorganization of the Pueblo World', ' Journal of Anthropological Archaeology 14:184-202.'); INSERT INTO "work" VALUES (1761, NULL, '1944', 0, 'Erik K. Reed, 0', 'The Abandonment of the San Juan Region', ' El Palacio 51(4):61-73'); INSERT INTO "work" VALUES (13, NULL, '1980', 0, 'Nancy J. Akins, 0', 'The Abraders of Chaco Canyon: An Analysis of Their Form and Function', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Revised and published in 1997.'); INSERT INTO "work" VALUES (41, NULL, '1997', 0, 'Nancy J. Akins, 0', 'The Abraders of Chaco Canyon: An Analysis of Their Form and Function', ' In Ceramics, Lithics, and Ornaments of Chaco Canyon. Analyses of Artifacts from the Chaco Project, 1971-1978, edited by Frances Joan Mathien, pp. 701-946. Publications in Archeology 18G, Chaco Canyon Studies. National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (39, NULL, '1987', 0, 'Nancy J. Akins, 0', 'The Abraders of Pueblo Alto', ' In Investigations at the Pueblo Alto Complex, Chaco Canyon, New Mexico 1975-1979. Volume III: Artifactual and Biological Analyses, edited by Frances Joan Mathien and Thomas C. Windes, pp. 351-380. Publications in Archeology 18F, Chaco Canyon Studies. National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (2502, NULL, '1982', 0, 'Thomas C. Windes, 0', 'The Absolute Boar: Test and Excavations at the Pueblo Alto Complex 1974-1979', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Revised and published in 1987.'); INSERT INTO "work" VALUES (199, NULL, '1912', 0, 'Frank Bond, 0', 'The Administration of National Monuments', ' In Proceedings of the National Park Service Conference 1911. National Park Service, Department of the Interior, Washington, D.C.'); INSERT INTO "work" VALUES (1935, NULL, '1922', 0, 'Carl S. Scofield, 0', 'The Alkali Problem and Irrigation', ' In Annual Report of the Board of Regents of the Smithsonian Institution for the Year Ending June 30, 1921. Government Printing Office, Washington, D.C.'); INSERT INTO "work" VALUES (157, NULL, '1990', 0, 'Timothy G. Baugh, 0', 'The Ambrosia Lake Project', ' Archaeological Investigations of Three Small Sites Associated with the Southern Chacoan Outlier of Kin Nizhoni, McKinley County, New Mexico. UMTRA Archaeological Report No. 53. CASA, Cortez.'); INSERT INTO "work" VALUES (11, NULL, '1976', 0, 'Nancy J. Akins, 0', 'The Analysis of a Random Sample of Chaco Canyon Abraders', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1879, NULL, '1987', 0, 'M. G. Salvador, 0', 'The Anasazi Cribbed Domes', ' Building and Environment 22(3):133-135.'); INSERT INTO "work" VALUES (644, NULL, '1992', 0, 'Andrew P. Fowler, 0; John R. Stein, 1', 'The Anasazi Great House in Space, Time, and Paradigm', ' In Anasazi Regional Organization and the Chaco System, edited by David E. Doyel, pp. 101-122. Anthropological Papers No. 5. Maxwell Museum of Anthropology, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2019, NULL, '1981', 0, 'Anna Sofaer, 0; Sheila Rotner, 1', 'The Anasazi Presence in Chaco Canyon', ' Solstice Project Inc., Washington, D.C.'); INSERT INTO "work" VALUES (1742, NULL, '1997', 0, 'V. B. Price, 0', 'The Anasazi Revival', ' In Anasazi Architecture and American Design, edited by Baker H. Morrow and V. B. Price, pp. 190-203. University of New Mexico Press, Albuquerque.'); INSERT INTO "work" VALUES (2580, NULL, '2001', 0, 'Donna Yoder, 0; Jane Kolber, 1', 'The Anasazi Rock Art of Chaco Canyon', ' A Preliminary Report of the Findings. Paper presented at the ARARA Conference, Pendleton, Oregon.'); INSERT INTO "work" VALUES (654, NULL, '1979', 0, 'Kendrick Frazier, 0', 'The Anasazi Sun Dagger', ' Science 80 1(1):57-67. November.'); INSERT INTO "work" VALUES (569, NULL, '1994', 0, 'David C. Eck, 0', 'The Anasazi of Wide Ruin Wash and the Hopi Buttes', ' Volume XI in Across the Colorado Plateau. Anthropological Studies for the Transwestern Pipeline Expansion Project. Office of Contract Archeology and the Maxwell Museum of Anthropology, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (574, NULL, '1967', 0, 'Florence H. Ellis, 0', 'The Anasazi: Mother to the Pueblos', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1356, NULL, '1991', 0, 'Michael P. Marshall, 0', 'The Ancient Cosmography of Chaco Canyon', ' In Chaco Body by Kirk Giddings and V. B. Price. Artspace Press, Albuquerque.'); INSERT INTO "work" VALUES (449, NULL, '1910', 0, 'Byron Cummings, 0', 'The Ancient Inhabitants of the San Juan Valley', ' Bulletin of the University of Utah 3(3):Pt. II.'); INSERT INTO "work" VALUES (1783, NULL, '1933', 0, 'Paul D. Reiter, 0', 'The Ancient Pueblo of Chetro Ketl', ' Unpublished M.A. thesis, Department of Anthropology, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2234, NULL, '1999', 0, 'Ruth M. Van Dyke, 0', 'The Andrews Community: A Chacoan Outlier in the Red Mesa Valley, New Mexico', ' Journal of Field Archaeology 26:55-67.'); INSERT INTO "work" VALUES (2229, NULL, '1997', 0, 'Ruth M. Van Dyke, 0', 'The Andrews Great House Community: A Ceramic Chronometric Perspective', ' Kiva 63(2):137-154.'); INSERT INTO "work" VALUES (1297, NULL, '1972', 0, 'Thomas R. Lyons, 0; Michael Inglis, 1; Robert K. Hitchcock, 2', 'The Application of Space Imagery to Anthropology', ' Paper presented at the International Conference on Remote Sensing in Arid Lands. Chaco Archive 2000, NPS Chaco Culture NHP Museum Archives, University of New Mexico, Albuquerque. Published in 1972.'); INSERT INTO "work" VALUES (1298, NULL, '1972', 0, 'Thomas R. Lyons, 0; Michael Inglis, 1; Robert K. Hitchcock, 2', 'The Application of Space Imagery to Anthropology', ' Proceedings: Third Annual Conference on Remote Sensing in Arid Lands, pp. 244-264. Office of Arid Lands Studies, College of Earth Sciences, The University of Arizona, Tucson.'); INSERT INTO "work" VALUES (1953, NULL, '1937', 0, 'Donovan Senter, 0', 'The Application of Tree-Ring Analysis to Deposition Problems in Chaco Canyon, New Mexico', ' Tree-Ring Bulletin 3(3):19-20.'); INSERT INTO "work" VALUES (44, NULL, '1985', 0, 'Nancy J. Akins, 0; Jack B. Bertram, 1', 'The Archaeofaunal Remains from 29SJ626', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1459, NULL, '1939', 0, 'M. B. McCall, 0', 'The Archaeological Station at Chaco Canyon, New Mexico', ' Unpublished Masters thesis, University of Pittsburgh, Pittsburgh.'); INSERT INTO "work" VALUES (676, NULL, '1979', 0, 'Michael Gardner, 0', 'The Archaeological Wonders of Chaco Canyon', ' Sierra Club Bulletin 64(6):10-15. November 6.'); INSERT INTO "work" VALUES (1529, NULL, '2001', 0, 'Barbara J. Mills, 0', 'The Archaeology of Inalienable Possessions: Social Valuables and the Formation of Collective Prestige Structures in the Greater Southwest', ' Paper presented at the 66th Annual Meeting of the Society for American Archaeology, New Orleans.'); INSERT INTO "work" VALUES (2002, NULL, '1965', 0, 'Jack E. Smith, 0', 'The Archaeology of the Upper San Jose Valley, Northwestern New Mexico, and Its Relation to the Developmental Stage of the Chaco Branch of the Anasazi Tradition', ' Unpublished Ph.D. dissertation, University of California at Los Angeles.'); INSERT INTO "work" VALUES (624, NULL, '1930', 0, 'Reginald G. Fisher, 0', 'The Archeological Survey of the Pueblo Plateau', ' UNM Bulletin Archeological Series Vol. I, No. 1. University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2259, NULL, '1936', 0, 'R. Gordon Vivian, 0', 'The Archeologists Build', ' New Mexico 14:12-13, 36.'); INSERT INTO "work" VALUES (2493, NULL, '1980', 0, 'Thomas C. Windes, 0', 'The Architectural Development of Pueblo Alto', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Revised and published in 1987.'); INSERT INTO "work" VALUES (950, NULL, '1927', 0, 'Neil Merton Judd, 0', 'The Architectural Evolution of Pueblo Bonito', ' In Proceedings of the National Academy of Science 13(7):561-563.'); INSERT INTO "work" VALUES (1472, NULL, '1984', 0, 'Peter J. McKenna, 0', 'The Architecture and Material Culture of 29SJ1360, Chaco Canyon, New Mexico', ' Reports of the Chaco Center No. 7. Division of Cultural Research, National Park Service, Albuquerque.'); INSERT INTO "work" VALUES (962, NULL, '1964', 0, 'Neil Merton Judd, 0', 'The Architecture of Pueblo Bonito', ' Smithsonian Miscellaneous Collections 147(1). Smithsonian Institution, Washington, D.C.'); INSERT INTO "work" VALUES (1155, NULL, '1985', 0, 'Stephen H. Lekson, 0', 'The Architecture of Talus Unit, Chaco Canyon, New Mexico', ' In Prehistory and History in the Southwest. Collected Papers in Honor of Alden C. Hayes, edited by Nancy Fox. pp. 43-59. Papers of the Archaeological Society of New Mexico: 11. Ancient City Press, Inc., Santa Fe.'); INSERT INTO "work" VALUES (1152, NULL, '1984', 0, 'Stephen H. Lekson, 0', 'The Architecture of the Talus Unit', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published in 1985.'); INSERT INTO "work" VALUES (2460, NULL, '1975', 0, 'R. A. Williamson, 0; H. J. Fisher, 1; A. F. Williamson, 2; C. Cochrane, 3', 'The Astronomical Record in Chaco Canyon, New Mexico', ' In Archaeoastronomy in Pre-Columbian America, edited by Anthony F. Aveni, pp. 33-43. University of Texas Press, Austin.'); INSERT INTO "work" VALUES (2022, NULL, '1984', 0, 'Anna Sofaer, 0; Rolf Sinclair, 1', 'The Astronomy of Prehistoric Chaco Canyon', ' Bulletin of the American Astronomical Association 16:924.'); INSERT INTO "work" VALUES (1567, NULL, '1928', 0, 'Earl H. Morris, 0', 'The Aztec Ruin', ' Anthropological Papers No. 26. American Museum of Natural History, New York.'); INSERT INTO "work" VALUES (1566, NULL, '1927', 0, 'Earl H. Morris, 0', 'The Beginnings of Pottery Making in the San Juan Area: Unfired Prototypes and the Wares of the Earliest Ceramic Period', ' American Museum of Natural History Anthropological Papers No. 28, Part II, pp. 125-198.'); INSERT INTO "work" VALUES (2562, NULL, '1932', 0, 'Janet Mc Woods, 0', 'The Benches of the Great Bowl', ' Archive 1830, 1946, 1914 1955, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (443, NULL, '1979', 0, 'Jack F. Cully, 0', 'The Birds and Mammals of Chaco Canyon National Monument: Summary Report of the Period October 1978 to August 1979', ' Prepared by Quivira Research Center. Ms. on file, Office of Natural Resources, National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (885, NULL, '1978', 0, 'H. Huse, 0; B. A. Noisat, 1; J. A. Halasi, 2', 'The Bisti-Star Lake Project-A Sample Survey of Cultural Resources in Northwestern New Mexico', 'Bureau of Land Management, Albuquerque District No. 1.'); INSERT INTO "work" VALUES (334, NULL, '1997', 0, 'Catherine M. Cameron, 0', 'The Bluff Great House and the Chacoan Regional System', ' Paper presented at the 62nd Annual Meeting of the Society for American Archaeology, Nashville.'); INSERT INTO "work" VALUES (1507, NULL, '1983', 0, 'Judith Miles, 0', 'The Bone Artifacts from 29SJ633', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Revised and published 1991.'); INSERT INTO "work" VALUES (927, NULL, '1992', 0, 'Carol Joiner, 0', 'The Boys and Girls of Summer: The University of New Mexico Archaeological Field School in Chaco Canyon', ' Journal of Anthropological Research 48(1):49-66.'); INSERT INTO "work" VALUES (961, NULL, '1959', 0, 'Neil Merton Judd, 0', 'The Braced-Up Cliff at Pueblo Bonito', ' In Smithsonian Report for 1958, pp. 501-511. Smithsonian Institution, Washington, D.C.'); INSERT INTO "work" VALUES (963, NULL, '1967', 0, 'Neil Merton Judd, 0', 'The Bureau of American Ethnology: A Partial History', ' University of Oklahoma Press, Norman.'); INSERT INTO "work" VALUES (1064, NULL, '1982', 0, 'Chris Kincaid, 0; John Stein, 1', 'The Bureau of Land Management Chaco Roads Project: Managing the Invisible', ' Paper presented at the 81st Annual Meeting of the American Anthropological Association, Washington, D.C.'); INSERT INTO "work" VALUES (1624, NULL, '1982', 0, 'Fred Nials, 0; John Stein, 1', 'The Bureau of Land Management Chaco Roads Project: Road Verification Studies', ' Paper presented at the 81st Annual Meeting of the American Anthropological Association, Washington, D.C.'); INSERT INTO "work" VALUES (43, NULL, '2003', 0, 'Nancy J. Akins, 0', 'The Burials of Pueblo Bonito', ' In Pueblo Bonito: Center of the Chacoan World, edited by Jill E. Neitzel, pp. . Smithsonian Institution Press, Washington, D.C.'); INSERT INTO "work" VALUES (1322, NULL, '1999', 0, 'J. McKim Malville, 0', 'The Calendars of Chimney Rock and the Origins of Chacoan Astronomy', ' Southwestern Lore 65:4-18.'); INSERT INTO "work" VALUES (783, NULL, '1988', 0, 'Randy Harper, 0; Marilyn K. Swift, 1; Barbara J. Mills, 2; James Brandi, 3; Joseph C. Winter, 4', 'The Casamero and Pierre''s Outliers Survey: An Archaeological Class III Inventory of the BLM Lands Surrounding the Outliers', ' Office of Contract Archeology, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1599, NULL, '1995', 0, 'Jill E. Neitzel, 0', 'The Case of the Missing Outliers', ' Paper presented at the 60th Annual Meeting of the Society for American Archaeology, Minneapolis.'); INSERT INTO "work" VALUES (500, NULL, '1936', 0, 'Andrew E. Douglass, 0', 'The Central Pueblo Chronology', ' Tree-Ring Bulletin 2(4):29-34. University of Arizona, Tucson.'); INSERT INTO "work" VALUES (1838, NULL, '1991', 0, 'Frank H. H. Roberts, Jr., 0', 'The Ceramic Sequence in the Chaco Canyon, New Mexico, and Its Relation to the Cultures of the San Juan Basin', ' Garland Press, New York.'); INSERT INTO "work" VALUES (1832, NULL, '1927', 0, 'Frank H. H. Roberts, Jr., 0', 'The Ceramic Sequence in the Chaco Canyon, New Mexico, and Its Relation to the Cultures of the San Juan Basin', ' Unpublished Ph.D. dissertation, Harvard University, Cambridge, MA.'); INSERT INTO "work" VALUES (2139, NULL, '1980', 0, 'H. Wolcott Toll, III, 0', 'The Ceramics of 628', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2160, NULL, '1987', 0, 'H. Wolcott Toll, 0; Peter J. McKenna, 1', 'The Ceramography of Pueblo Alto', ' In Investigations at the Pueblo Alto Complex, Chaco Canyon, New Mexico, 1975-1979. Volume III. Artifactual and Biological Analyses, edited by Frances Joan Mathien and Thomas C. Windes, pp. 19-230. Publications in Archeology 18F, Chaco Canyon Studies. National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (2158, NULL, '1983', 0, 'H. Wolcott Toll, 0; Peter J. McKenna, 1', 'The Ceramography of Pueblo Alto or Aria (Alto): Kyrie Keramikos', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published in 1987.'); INSERT INTO "work" VALUES (281, NULL, '1962', 0, 'William R. Bullard, Jr., 0', 'The Cerro Colorado Site and Pithouse Architecture in the Southwestern United States Prior to A', '. 900. Papers of the Peabody Museum of American Archaeology and Ethnology 44(2). Harvard University, Cambridge, MA.'); INSERT INTO "work" VALUES (2581, NULL, '2001', 0, 'Norman Yoffee, 0', 'The Chaco "Rituality" Revisited', ' In Chaco Society and Polity: Papers from the 1999 Conference, edited by Linda S. Cordell, W. James Judge, and June-el Piper, pp. 63-78. NMAC Special Publication No. 4. New Mexico Archeological Council, Albuquerque.'); INSERT INTO "work" VALUES (1947, NULL, '1992', 0, 'Lynne Sebastian, 0', 'The Chaco Anasazi', ' Sociopolitical Evolution in the Prehistoric Southwest. Cambridge University Press, Cambridge.'); INSERT INTO "work" VALUES (2105, NULL, '2002', 0, 'David E. Stuart, 0', 'The Chaco Anasazi: A Legacy of Innovation', ' Quantum 18:34-36. University of New Mexico.'); INSERT INTO "work" VALUES (714, NULL, '1945', 0, 'Harold Sterling Gladwin, 0', 'The Chaco Branch: Excavations at White Mound and in the Red Mesa Valley', ' Medallion Papers No. 33. Gila Pueblo, Globe, AZ.'); INSERT INTO "work" VALUES (967, NULL, '1972', 0, 'W. James Judge, 0', 'The Chaco Canyon Archeological Survey, 1971', ' Paper presented at the 37th Annual Meeting of the Society for American Archaeology.'); INSERT INTO "work" VALUES (1206, NULL, '1988', 0, 'Stephen H. Lekson, 0; Thomas C. Windes, 1; John R. Stein, 2; and W. James Judge, 3', 'The Chaco Canyon Community', ' Scientific American 256(7):100-109. Printed in German as Die Anasazi-Ruinen vom Chaco Canyon. Spektrum der Wissenschaft 9:94-103, Sept. 9, 1988.'); INSERT INTO "work" VALUES (64, NULL, '1970', 0, 'Anthony Andrews, 0', 'The Chaco Canyon Project: The Tozzer-Farabee Expedition, 1901', ' Archive 2128J, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1033, NULL, '1982', 0, 'Klara B. Kelley, 0', 'The Chaco Canyon Ranch: Ethnohistory and Ethnoarchaeology', ' Navajo Nation Papers in Anthropology No. 8. Window Rock, AZ.'); INSERT INTO "work" VALUES (848, NULL, '1936', 0, 'Edgar L. Hewett, 0', 'The Chaco Canyon and Its Monuments', ' Handbooks of Archaeological History. University of New Mexico and School of American Research, Albuquerque.'); INSERT INTO "work" VALUES (834, NULL, '1921', 0, 'Edgar L. Hewett, 0', 'The Chaco Canyon and Its Monuments', ' Art and Archaeology 11(1-2):3-28.'); INSERT INTO "work" VALUES (1828, NULL, '1929', 0, 'D. Ricketts, 0', 'The Chaco Canyon and Pueblo Bonito', ' New Mexico 7:17-18.'); INSERT INTO "work" VALUES (836, NULL, '1922', 0, 'Edgar L. Hewett, 0', 'The Chaco Canyon in 1921', ' Art and Archaeology 14(3):115-131.'); INSERT INTO "work" VALUES (627, NULL, '1934', 0, 'Reginald G. Fisher, 0', 'The Chaco Canyon in 1934', ' El Palacio 37(15-16):117-132. Santa Fe.'); INSERT INTO "work" VALUES (1757, NULL, '1986', 0, 'Jeff Radford, 0', 'The Chaco Coal Scandal: The People''s Victory over James Watt', ' Rhombus, Corrales, NM.'); INSERT INTO "work" VALUES (2232, NULL, '1998', 0, 'Ruth M. Van Dyke, 0', 'The Chaco Connection: Bonito Style Architecture in Outlier Communities', ' Unpublished Ph.D. dissertation, Department of Anthropology, University of Arizona, Tucson.'); INSERT INTO "work" VALUES (2236, NULL, '1999', 0, 'Ruth M. Van Dyke, 0', 'The Chaco Connection: Evaluating Bonito Style Architecture in Outlier Communities', ' Journal of Anthropological Archaeology 18:471-506.'); INSERT INTO "work" VALUES (2337, NULL, '2002', 0, 'R. Gwinn Vivian, 0; Bruce Hilpert, 1', 'The Chaco Handbook', ' An Encyclopedic Guide. University of Utah Press, Salt Lake City.'); INSERT INTO "work" VALUES (1195, NULL, '1999', 0, 'Stephen H. Lekson, 0', 'The Chaco Meridian', ' Centers of Political Power in the Ancient Southwest. Altamira Press, Walnut Creek, CA.'); INSERT INTO "work" VALUES (1687, NULL, '2000', 0, 'David A. Phillips, Jr., 0', 'The Chaco Meridian: A Skeptical Analysis', ' Poster presented at the 65th Annual Meeting of the Society for American Archaeology, Philadelphia. See http://www.unm.edu/~dap.'); INSERT INTO "work" VALUES (260, NULL, '1984', 0, 'David M. Brugge, 0', 'The Chaco Navajos', ' In New Light on Chaco Canyon, edited by David Grant Noble, pp. 73-90. Exploration, School of American Research, Santa Fe.'); INSERT INTO "work" VALUES (342, NULL, '1999', 0, 'Catherine M. Cameron, 0; H. Wolcott Toll, 1', 'The Chaco Organization of Production Conference', ' SAA Bulletin 17(4):24, 29.'); INSERT INTO "work" VALUES (2129, NULL, '1987', 0, 'David Hurst Thomas, 0', 'The Chaco Phenomenon', ' Archaeology 40(3):52-55.'); INSERT INTO "work" VALUES (1026, NULL, '1982', 0, 'Howard M. Kaplan, 0', 'The Chaco Phenomenon', ' Denver Post-Empire Magazine, March 7.'); INSERT INTO "work" VALUES (245, NULL, '1983', 0, 'J. J. Brody, 0', 'The Chaco Phenomenon', ' Archaeology Magazine 36(4):57-61. July-Aug.'); INSERT INTO "work" VALUES (246, NULL, '1983', 0, 'J. J. Brody, 0', 'The Chaco Phenomenon', ' Maxwell Museum of Anthropology and University of New Mexico Press, Albuquerque.'); INSERT INTO "work" VALUES (662, NULL, '1985', 0, 'Theodore R. Frisbie, 0', 'The Chaco Phenomenon and Spanish Colonial Missions: Commonality through Paucity', ' In Prehistory and History in the Southwest. Collected Papers in Honor of Alden C. Hayes, edited by Nancy L. Fox, pp. 73-90. Papers of the Archaeological Society of New Mexico: 11. Ancient City Press, Santa Fe.'); INSERT INTO "work" VALUES (1851, NULL, '1999', 0, 'Kathy L. Roler, 0', 'The Chaco Phenomenon: A Faunal Perspective from the Peripheries', ' Unpublished Ph.D. dissertation, Department of Anthropology, Arizona State University, Tempe.'); INSERT INTO "work" VALUES (2314, NULL, '1983', 0, 'R. Gwinn Vivian, 0', 'The Chaco Phenomenon: Cultural Growth in the San Juan Basin', ' Paper presented at the 2nd Anasazi Symposium, Salmon Ruins, Bloomfield, NM.'); INSERT INTO "work" VALUES (2315, NULL, '1983', 0, 'R. Gwinn Vivian, 0', 'The Chaco Phenomenon: Cultural Growth in the San Juan Basin', ' Paper presented at the 82nd Annual Meeting of the American Anthropological Association, Chicago.'); INSERT INTO "work" VALUES (488, NULL, '1981', 0, 'William Doleman, 0', 'The Chaco Phenomenon: One Role of Lithics in the Study of Trade', ' Paper prepared for Anthropology 420 at the University of New Mexico. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (986, NULL, '1982', 0, 'W. James Judge, 0', 'The Chaco Project', ' Early Man 4(1):22-25.'); INSERT INTO "work" VALUES (974, NULL, '1977', 0, 'W. James Judge, 0', 'The Chaco Project: A Brief Progress Report', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2066, NULL, '1989', 0, 'John R. Stein, 0', 'The Chaco Roads-Clues to an Ancient Riddle? El Palacio 94(3):4-17', NULL); INSERT INTO "work" VALUES (1092, NULL, '1999', 0, 'Jane Kolber, 0; Donna Yoder, 1', 'The Chaco Rock Art Reassessment Project-Gallo Wash', ' Paper presented at the 72nd Pecos Conference, Pinedale, AZ.'); INSERT INTO "work" VALUES (1098, NULL, '2002', 0, 'Jane Kolber, 0; Donna Yoder, 1', 'The Chaco Rock-Art Reassessment Project September 2001 and April 2002, Wijiji Trail', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1094, NULL, '2001', 0, 'Jane Kolber, 0; Donna Yoder, 1', 'The Chaco Rock-Art Reassessment Project, March 2001, East of Kin Kletso', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1095, NULL, '2001', 0, 'Jane Kolber, 0; Donna Yoder, 1', 'The Chaco Rock-Art Reassessment Project, March 2001, Kin Kletso to Clys Canyon', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1096, NULL, '2001', 0, 'Jane Kolber, 0; Donna Yoder, 1', 'The Chaco Rock-Art Reassessment Project, March 2001, The Painted Hunting Scene, Flute Player Rock, Behind Casa Rinconada', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1093, NULL, '2000', 0, 'Jane Kolber, 0; Donna Yoder, 1', 'The Chaco Rock-Art Reassessment Project, October 2000, West of Pueblo Bonito to West of the Wetherill Cemetery', 'Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2535, NULL, '1994', 0, 'Thomas C. Windes, 0; Cheryl A. Ford, 1; Dabney Ford, 2', 'The Chaco Wood Project: Reanalysis of Pueblo del Arroyo', ' Paper submitted to Southwest Parks and Monuments Association, Tucson.'); INSERT INTO "work" VALUES (2537, NULL, '1996', 0, 'Thomas C. Windes, 0; Dabney Ford, 1', 'The Chaco Wood Project: The Chronometric Reappraisal of Pueblo Bonito', ' American Antiquity 61(2):295-310.'); INSERT INTO "work" VALUES (2086, NULL, '1996', 0, 'James B. Stoltman, 0', 'The Chaco-Chuska Connection: In Defense of Anna Shepard', ' Paper presented in Pottery and Pueblo Conference organized by James M. Skibo. Illinois State University, Normal. Oct 19-19. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2087, NULL, '1999', 0, 'James B. Stoltman, 0', 'The Chaco-Chuska Connection: In Defense of Anna Shepard', 'In Pottery and People: A Dynamic Interaction, edited by James M. Skibo and Gary M. Feinman, pp. 9-24. University of Utah Press, Salt Lake City.'); INSERT INTO "work" VALUES (1907, NULL, '1983', 0, 'John D. Schelberg, 0', 'The Chacoan Anasazi: A Stratified Society in the San Juan Basin', ' Paper presented at the Second Anasazi Symposium, Farmington, NM, Feb. 10-12. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1272, NULL, '1988', 0, 'Albert R. Lyman, 0', 'The Chacoan Community', ' Scientific American 256(7):100-109.'); INSERT INTO "work" VALUES (2235, NULL, '1999', 0, 'Ruth M. Van Dyke, 0', 'The Chacoan Connection in the Red Mesa Valley: The Andrews Community Archaeological Research Project, 1999', ' Paper presented at the 72nd Pecos Conference, Pinedale, AZ.'); INSERT INTO "work" VALUES (335, NULL, '1997', 0, 'Catherine M. Cameron, 0', 'The Chacoan Era in the Northern Southwest: 1996 Excavations at the Bluff Great House', ' Ms. o n file, Southwest Heritage Foundation, Bluff, and Department of Anthropology, University of Colorado at Boulder.'); INSERT INTO "work" VALUES (1349, NULL, '2001', 0, 'Anne Lawrason Marshall, 0', 'The Chacoan Great Houses Display at the Salmon Ruin Museum', 'Paper presented at the 74th Pecos Conference, Flagstaff.'); INSERT INTO "work" VALUES (658, NULL, '1972', 0, 'Theodore R. Frisbie, 0', 'The Chacoan Interaction Sphere: A Verification of the ''Pochteca'' Concept within the Southwestern United States', ' Paper presented at the 37th Annual Meeting of the Society for American Archaeology, Miami Beach.'); INSERT INTO "work" VALUES (2320, NULL, '1990', 0, 'R. Gwinn Vivian, 0', 'The Chacoan Prehistory of the San Juan Basin', ' Academic Press, San Diego.'); INSERT INTO "work" VALUES (462, NULL, '1989', 0, 'Jeffrey S. Dean, 0', 'The Chacoan Regional System', ' In The Interpretation of Prehistory. Essays from the Pages of the Quarterly Review of Archaeology 10(1). The Review of Archaeology, Salem, MA.'); INSERT INTO "work" VALUES (1595, NULL, '1989', 0, 'Jill E. Neitzel, 0', 'The Chacoan Regional System: Interpreting the Evidence for Sociopolitical Complexity', ' In The Sociopolitical Structure of Prehistoric Southwestern Societies, edited by Steadman Upham, Kent Lightfoot, and Roberta Jewett, pp. 509-556. Westview Press, Boulder.'); INSERT INTO "work" VALUES (1355, NULL, '1991', 0, 'Michael P. Marshall, 0', 'The Chacoan Roads-A Cosmological Interpretation', ' Ms. on file with author. Published in 1992.'); INSERT INTO "work" VALUES (1357, NULL, '1992', 0, 'Michael P. Marshall, 0', 'The Chacoan Roads-A Cosmological Interpretation', ' In Proceedings: The Mesa Verde Symposium on Anasazi Architecture and American Design, edited and coordinated by Baker H. Morrow and V. B. Price, pp. 123-137. Morrow and Co. Ltd., Albuquerque.'); INSERT INTO "work" VALUES (1360, NULL, '1997', 0, 'Michael P. Marshall, 0', 'The Chacoan Roads-A Cosmological Interpretation', ' In Anasazi Architecture and American Design, edited by Baker H. Morrow and V. B. Price, pp. 62-74. University of New Mexico Press, Albuquerque.'); INSERT INTO "work" VALUES (1635, NULL, '1980', 0, 'Margaret Senter Obenauf, 0', 'The Chacoan Roadway System', ' Unpublished M.A. thesis, Department of Anthropology, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1372, NULL, '1995', 0, 'Paula Ann Massouh, 0', 'The Chacoan Tower Kiva Sites of Kin Klizhin and Kin Ya''a', ' Unpublished M.A. thesis, Applied Anthropology, The American University, Washington, D.C.'); INSERT INTO "work" VALUES (1373, NULL, '1998', 0, 'Paula Ann Massouh, 0', 'The Chacoan Tower Kiva Sites of Kin Klizhin and Kin Ya''a', ' Paper presented at the 63rd Annual Meeting of the Society for American Archaeology, Seattle.'); INSERT INTO "work" VALUES (577, NULL, '1997', 0, 'Richard Ellis, 0', 'The Changing Image of the Anasazi World in the American Imagination', ' In Anasazi Architecture and American Design, edited by Baker H. Morrow and V. B. Price, pp. 16-23. University of New Mexico Press, Albuquerque.'); INSERT INTO "work" VALUES (1498, NULL, '1996', 0, 'Mary P. Metcalf, 0', 'The Changing Relationships of Rooms and Kivas at Pueblo Bonito', ' Paper presented at the 61st Annual Meeting of the Society for American Archaeology, New Orleans.'); INSERT INTO "work" VALUES (1239, NULL, '1976', 0, 'Richard W. Loose, 0; Thomas R. Lyons, 1', 'The Chetro Ketl Field: A Planned Water Control System in Chaco Canyon', ' In Remote Sensing Experiments in Cultural Resources Studies. Non-destructive Methods of Archeological Exploration, Survey, and Analysis, assembled by Thomas R. Lyons, pp. 133-156. Reports of the Chaco Center No. 1. National Park Service and University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (306, NULL, '1980', 0, 'Catherine M. Cameron, 0', 'The Chipped Stone of 29JS630', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (302, NULL, '1980', 0, 'Catherine M. Cameron, 0', 'The Chipped Stone of 29MC184', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (310, NULL, '1980', 0, 'Catherine M. Cameron, 0', 'The Chipped Stone of 29SJ1360', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (311, NULL, '1980', 0, 'Catherine M. Cameron, 0', 'The Chipped Stone of 29SJ1659', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (303, NULL, '1980', 0, 'Catherine M. Cameron, 0', 'The Chipped Stone of 29SJ299', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (304, NULL, '1980', 0, 'Catherine M. Cameron, 0', 'The Chipped Stone of 29SJ626', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (305, NULL, '1980', 0, 'Catherine M. Cameron, 0', 'The Chipped Stone of 29SJ628', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (307, NULL, '1980', 0, 'Catherine M. Cameron, 0', 'The Chipped Stone of 29SJ633', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published in 1991. '); INSERT INTO "work" VALUES (308, NULL, '1980', 0, 'Catherine M. Cameron, 0', 'The Chipped Stone of 29SJ721', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (309, NULL, '1980', 0, 'Catherine M. Cameron, 0', 'The Chipped Stone of 29SJ724', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (299, NULL, '1979', 0, 'Catherine M. Cameron, 0', 'The Chipped Stone of 423', ' Ms. on file, NPS Chaco Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (336, NULL, '1997', 0, 'Catherine M. Cameron, 0', 'The Chipped Stone of Chaco Canyon, New Mexico', ' In Ceramics, Lithics, and Ornaments of Chaco Canyon. Analyses of Artifacts from the Chaco Project, 1971-1978, edited by Frances Joan Mathien, pp, 531-609. Publications in Archeology 18G, Chaco Canyon Studies. National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (1070, NULL, '1996', 0, 'Keith W. Kintigh, 0', 'The Cibola Region in the Post-Chacoan Era', ' In The Prehistoric Pueblo World A.D. 1150-1350, edited by Michael A. Adler, pp. 131-144. The University of Arizona Press, Tucson.'); INSERT INTO "work" VALUES (584, NULL, '1912', 0, 'C. Reginald Enock, 0', 'The Cliff Dwellers', ' In The Secret of the Pacific by C. Reginald Enock, pp. 77-92. Scribner''s, New York.'); INSERT INTO "work" VALUES (1669, NULL, '1899', 0, 'Stephen D. Peet, 0', 'The Cliff Dwellers and Pueblos', ' Office of the American Antiquarian, Chicago.'); INSERT INTO "work" VALUES (1998, NULL, '1879', 0, 'Sydney B. J. Skertchly, 0', 'The Cliff Dwellers of the Far West', ' Good Words 1879:486-492. London.'); INSERT INTO "work" VALUES (491, NULL, '1989', 0, 'M. E. Donselaar, 0', 'The Cliff House Sandstone, San Juan Basin, New Mexico: Model for the Stacking of ''Transgressive'' Barrier Complexes', ' Journal of Sedimentary Petrology 59(1):13-27.'); INSERT INTO "work" VALUES (2136, NULL, '1924', 0, 'W. A. Titus, 0', 'The Cliff Ruins of the Southwest', ' Wisconsin Archaeology 3:82-86.'); INSERT INTO "work" VALUES (767, NULL, '1878', 0, 'Emma C. Hardacre, 0', 'The Cliff-Dwellers', ' Scribner''s Magazine 17:266-276.'); INSERT INTO "work" VALUES (878, NULL, '1914', 0, 'Ellsworth Huntington, 0', 'The Climatic Factor as Illustrated in Arid America', ' Carnegie Institute of Washington Publication No. 192, pp. 75-82.'); INSERT INTO "work" VALUES (2120, NULL, '1988', 0, 'Joseph A. Tainter, 0', 'The Collapse of Complex Societies', ' Cambridge University Press, Cambridge.'); INSERT INTO "work" VALUES (327, NULL, '1993', 0, 'Catherine M. Cameron, 0', 'The Collapse of the Chacoan System: Fragmentation and Social Reorganization in the American Southwest', ' Paper presented at the 58th Annual Meeting of the Society for American Archaeology, St. Louis.'); INSERT INTO "work" VALUES (1165, NULL, '1989', 0, 'Stephen H. Lekson, 0', 'The Community in Anasazi Archeology', ' In Households and Communities, Proceedings of the 21st Annual Chacmool Conference, edited by Scott MacEachern, David J. W. Archer, and Richard D. Garvin, pp. 181-185. The Archaeological Association of the University of Calgary.'); INSERT INTO "work" VALUES (1760, NULL, '1991', 0, 'Charles L. Redman, 0', 'The Comparative Context of Social Complexity', ' In Chaco and Hohokam: Prehistoric Regional Systems in the American Southwest, edited by Patricia L. Crown and W. James Judge, pp. 277-292. School of American Research, Santa Fe.'); INSERT INTO "work" VALUES (1308, NULL, '1997', 0, 'Nancy Mahoney, 0', 'The Cottonwood Wash Survey Project: A Start at Identifying the Organization and Variability of Chaco-Era Great House Communities', ' Paper presented at the 62nd Annual Meeting of the Society for American Archaeology, Nashville.'); INSERT INTO "work" VALUES (1773, NULL, '1994', 0, 'Paul F. Reed, 0', 'The Cove Anasazi Community: A Pueblo I-II Period Settlement in Red Rock Valley, Northwestern Arizona', ' Paper presented at the 59th Annual Meeting of the Society for American Archaeology, Anaheim.'); INSERT INTO "work" VALUES (1477, NULL, '1998', 0, 'Peter J. McKenna, 0', 'The Cultural Landscape of the Aztec Ruins, New Mexico', ' Paper presented at the 63rd Annual Meeting of the Society for American Archaeology, Seattle.'); INSERT INTO "work" VALUES (2534, NULL, '1996', 0, 'Thomas C. Windes, 0; Cheryl A. Ford, 1', 'The Dating Game at Pueblo Bonito: Chronology and Wood Use at Chacoan Great House', ' Paper presented at the 61st Annual Meeting of the Society for American Archaeology, New Orleans.'); INSERT INTO "work" VALUES (1156, NULL, '1985', 0, 'Stephen H. Lekson, 0', 'The Dating of Casas Grandes', ' The Kiva 50(1):55-60.'); INSERT INTO "work" VALUES (469, NULL, '1982', 0, 'Jeffrey S. Dean, 0; Richard L. Warren, 1', 'The Dendrochronology of Chetro Ketl, Chaco Culture National Historical Park', ' Submitted in fulfillment of Contract PX 7486-8-0225. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published in 1983.'); INSERT INTO "work" VALUES (148, NULL, '1978', 0, 'Bryant Bannister, 0; William J. Robinson, 1', 'The Dendrochronology of Room 93, Chetro Ketl', ' Appendix C in Wooden Ritual Artifacts from Chaco Canyon, New Mexico: The Chetro Ketl Collection, by R. Gwinn Vivian, Dulce N. Dodgen, and Gayle H. Hartman, pp. 133-134. Anthropological Papers No. 22. University of Arizona, Tucson.'); INSERT INTO "work" VALUES (1216, NULL, '1995', 0, 'William D. Lipe, 0', 'The Depopulation of the Northern San Juan: Conditions in the Turbulent 1200s', ' Journal of Anthropological Archaeology 14(2):143-169.'); INSERT INTO "work" VALUES (2358, NULL, '2000', 0, 'W. H. Walker, 0; L. Lucero, 1', 'The Depositional History of Ritual and Power', ' In Agency in Archaeology, edited by M. Dobres and J. Robb, pp. 139-147. Routledge, London.'); INSERT INTO "work" VALUES (566, NULL, '1980', 0, 'James I. Ebert, 0; Thomas R. Lyons, 1', 'The Detection, Mitigation and Analysis of Remotely-Sensed, "Ephemeral" Archeological Evidence', ' In Cultural Resources Remote Sensing, edited by Thomas R. Lyons and Frances Joan Mathien, pp. 119-122. Cultural Resources Management Division, National Park Service, Washington, D.C.'); INSERT INTO "work" VALUES (2353, NULL, '1982', 0, 'Walter K. Wait, 0', 'The Development and Application of a Computerized Data Base for the San Juan Basin, New Mexico', ' In The San Juan Basin Tomorrow: Planning for the Conservation of Cultural Resources in the San Juan Basin, edited by Fred Plog and Walter Wait, pp. 171-208. National Park Service, Southwest Region, and School of American Research, Santa Fe.'); INSERT INTO "work" VALUES (1913, NULL, '2002', 0, 'Michael A. Schillaci, 0', 'The Development of Population Diversity at Chaco Canyon', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1906, NULL, '1982', 0, 'John D. Schelberg, 0', 'The Development of Social Complexity in Chaco Canyon', ' New Mexico Archeological Council Newsletter 4(5-6):15-20.'); INSERT INTO "work" VALUES (1905, NULL, '1982', 0, 'John D. Schelberg, 0', 'The Development of Social Complexity in Chaco Canyon', ' Paper presented at the New Mexico Archeological Council Workshop No. 1: Archeological Research in the San Juan Basin. Chaco Culture National Historical Park, NM, May 20-21. Published in 1982.'); INSERT INTO "work" VALUES (1904, NULL, '1982', 0, 'John D. Schelberg, 0', 'The Development of Social Complexity in Chaco Canyon', ' Paper presented at the 47th Annual Meeting of the Society for American Archaeology, Minneapolis.'); INSERT INTO "work" VALUES (972, NULL, '1976', 0, 'W. James Judge, 0', 'The Development of a Complex Cultural Ecosystem in the Chaco Basin, New Mexico', ' Paper presented at the First Confernce on Scientific Research in the National Parks, New Orleans, Nov. 9-13. Published in 1979.'); INSERT INTO "work" VALUES (981, NULL, '1979', 0, 'W. James Judge, 0', 'The Development of a Complex Cultural Ecosystem in the Chaco Basin, New Mexico', ' In Proceedings of the First Conference on Scientific Research in the National Parks, Volume II, edited by Robert M. Linn, pp. 901-906. National Park Service Transactions and Proceedings Series No. 5. Washington, D.C.'); INSERT INTO "work" VALUES (56, NULL, '1978', 0, 'Jeffrey H. Altschul, 0', 'The Development of the Chacoan Interaction Sphere', ' Journal of Anthropological Research 34(1):109-146.'); INSERT INTO "work" VALUES (1762, NULL, '1946', 0, 'Erik K. Reed, 0', 'The Distinctive Features and Distribution of San Juan Anasazi Culture', ' Southwestern Journal of Anthropology 2(3):295-305.'); INSERT INTO "work" VALUES (1470, NULL, '1981', 0, 'Peter J. McKenna, 0', 'The Distribution of Chaco Canyon''s Survey Ceramics', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (430, NULL, '1984', 0, 'Anne C. Cully, 0', 'The Distribution of Corn Pollen at Three Sites in Chaco Canyon, New Mexico', ' In Recent Research on Chaco Prehistory, edited by W. James Judge and John D. Schelberg, pp. 251-264. Reports of the Chaco Center No. 8. Division of Cultural Research, National Park Service, Albuquerque.'); INSERT INTO "work" VALUES (2442, NULL, '1996', 0, 'David R. Wilcox, 0', 'The Diversity of Regional and Macroregional Systems in the American Southwest', 'In Debating Complexity: Proceedings of the 26th Annual Chacmool Conference, edited by D. A. Meyer, P. C. Dawson, and D. T. Hanna, pp. 375-390. Archaeological Association of the University of Calgary.'); INSERT INTO "work" VALUES (2438, NULL, '1993', 0, 'David R. Wilcox, 0', 'The Diversity of Regional and Macroregional Systems in the American Southwest', ' Paper presented at the 26th Chacmool Conference, Department of Archaeology, University of Calgary.'); INSERT INTO "work" VALUES (1517, NULL, '1983', 0, 'Elizabeth Miles-Neeley, 0', 'The Duck in the Anasazi World', ' Prepared for Anthropology 520. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1821, NULL, '1893', 0, 'George N. Richardson, 0', 'The Early Americans', ' California Illustrated Magazine 4:774-783.'); INSERT INTO "work" VALUES (2107, NULL, '1929', 0, 'Stanley Stubbs, 0', 'The East Tower of Chetro Ketl, 1929', ' Ms. on file, School of American Research, Laboratory of Anthropology, Museum of New Mexico, Santa Fe, and NPS Chaco Culture NHP Museum Archive No. 2125J, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (929, NULL, '1972', 0, 'Kirtland Jones, 0', 'The Ecology of Chaco Canyon', ' Preliminary Survey. Submitted in fulfillment of Contract 14-10-7:931-47. Ms. on file, NPS Chaco Culture NHP Museum Archives, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1937, NULL, '1980', 0, 'Norman J. Scott, 0', 'The Ecology of Seeds and their Predators on Three Arid Sites in Arizona and New Mexico', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (194, NULL, '1921', 0, 'Lansing B. Bloom, 0', 'The Emergence of Chaco Canyon in History', ' Art and Archaeology 11(1-2):29-35.'); INSERT INTO "work" VALUES (975, NULL, '1977', 0, 'W. James Judge, 0', 'The Emergence of Complexity in Chaco Canyon, New Mexico', ' Paper presented at the 76th Annual Meeting of the American Anthropological Association, Houston.'); INSERT INTO "work" VALUES (1795, NULL, '1976', 0, 'Jonathan E. Reyman, 0', 'The Emics and Etics of Kiva Wall Niche Location', ' Journal of the Steward Anthropological Society 7(1):107-129.'); INSERT INTO "work" VALUES (695, NULL, '1984', 0, 'William B. Gillespie, 0', 'The Environment of the Chaco Anasazis', ' In New Light on Chaco Canyon, edited by David Grant Noble, pp. 37-44. Exploration, School of American Research, Santa Fe.'); INSERT INTO "work" VALUES (2606, NULL, '1986', 0, 'Michael Zeilik, 0', 'The Ethnoastronomy of the Historic Pueblos', ' II. Moon Watching. Archaeoastronomy (Supplement to the Journal of the History of Astronomy) 10:1-22.'); INSERT INTO "work" VALUES (2599, NULL, '1985', 0, 'Michael Zeilik, 0', 'The Ethnoastronomy of the Historic Pueblos I', ' Calendrical Sun Watching. Archaeoastronomy (Supplement to the Journal for the History of Astronomy) 8:1-26.'); INSERT INTO "work" VALUES (2597, NULL, '1984', 0, 'Michael Zeilik, 0', 'The Ethnoastronomy of the Historical Pueblos', ' I. Calendrical Sun Watching. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published in 1985.'); INSERT INTO "work" VALUES (650, NULL, '1974', 0, 'Dennis Fransted, 0; Oscar Werner, 1', 'The Ethnogeography of the Chaco Canyon Area Navajo', ' Ms. on file, Department of Anthropology, Northwestern University, and Archive No. 1986C, NPS Chaco Culture NHP Museum, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2143, NULL, '1984', 0, 'H. Wolcott Toll, III, 0', 'The Ethnography and Archeology of Large Gatherings with Regard to Chaco Canyon', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1277, NULL, '1973', 0, 'Thomas R. Lyons, 0', 'The Evaluation of ERTS-2 Imagery for Archaeological Resource Inventory and Management Potential in Chaco Canyon National Monument', ' Ms. on file, National Park Service, Intermountain Region, Santa Fe Office.'); INSERT INTO "work" VALUES (2439, NULL, '1993', 0, 'David R. Wilcox, 0', 'The Evolution of the Chacoan Polity', ' In The Chimney Rock Archaeological Symposium, October 20-21, Durango, Colorado, edited by J. McKim Malville and Gary Matlock, pp. 76-90. U.S.D.A. Forest Service General Technical Report RM-227. Rocky Mountain Forest and Range Experiment Station, U.S.D.A. Fort Collins, CO.'); INSERT INTO "work" VALUES (221, NULL, '1977', 0, 'Zorro A. Bradley, 0', 'The Excavation of Bc 236', ' In Excavations in Three Small House Sites, Chaco Canyon National Monument, New Mexico, edited by Charles B. Voll, pp. 3-55. Archive 529, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1078, NULL, '1939', 0, 'Clyde Kluckhohn, 0', 'The Excavation of Bc 51 Rooms and Kivas', ' In Preliminary Report on the 1937 Excavations, Bc 50-51, Chaco Canyon, New Mexico, edited by Clyde Kluckhohn and Paul Reiter, pp. 30-53. University of New Mexico Bulletin 345, Anthropological Series 3(2). University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (846, NULL, '1934', 0, 'Edgar L. Hewett, 0', 'The Excavation of Chetro Ketl, Chaco Canyon, 1932-33', ' Art and Archaeology 35(2):51-58, 68.'); INSERT INTO "work" VALUES (835, NULL, '1921', 0, 'Edgar L. Hewett, 0', 'The Excavation of Chetro Kettle, Chaco Canyon, 1920', ' Art and Archaeology 11(1-2):45-62.'); INSERT INTO "work" VALUES (1263, NULL, '1935', 0, 'Dorothy L. Luhrs, 0', 'The Excavation of Kin Nahazbas, Chaco Canyon, New Mexico, Summer Session 1935', ' Prepared for Anthropology 199. Archive 1010, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2347, NULL, '1978', 0, 'Charles B. Voll, 0', 'The Excavation of Room 92, Chetro Ketl Ruin', ' In Wooden Ritual Artifacts from Chaco Canyon, New Mexico. The Chetro Ketl Collection, by R. Gwinn Vivian, Dulce N. Dodgen, and Gayle H. Hartmann, pp. 137-148. Anthropological Papers No. 32. University of Arizona, Tucson.'); INSERT INTO "work" VALUES (1047, NULL, '1933', 0, 'Dorothy Keur, 0', 'The Excavation of a Cliff Cavity, Chaco Canyon, New Mexico', ' Southwestern Monuments Monthly Report, Supplement pp. K-L.'); INSERT INTO "work" VALUES (1825, NULL, '1964', 0, 'Roland Richert, 0', 'The Excavation of a Portion of the East Ruin, Aztec Ruins National Monument, New Mexico', ' Southwestern Museum Association Technical Series No. 4.'); INSERT INTO "work" VALUES (2108, NULL, '1930', 0, 'Stanley Stubbs, 0', 'The Excavation of the East Tower of Chetro Ketl, 1929', ' Bulletin of the State University of New Mexico, No. 180, Educational Series 4(2), 6, 17-19.'); INSERT INTO "work" VALUES (348, NULL, '1977', 0, 'Brian Cannon, 0', 'The Excavations of Elkins "F" 1977 Report # 1', ' Cottonwood Gulch Foundation, Vol. 1.'); INSERT INTO "work" VALUES (1679, NULL, '1909', 0, 'George H. Pepper, 0', 'The Exploration of a Burial Room in Pueblo Bonito, New Mexico', ' In Putnam Anniversary Volume: Anthropological Essays, presented to Frederic Ward Putnam in Honor of his Seventieth Birthday, April 16, 1909, by his Friends and Associates, pp. 196-252. G. E. Steckhert & Co., New York. '); INSERT INTO "work" VALUES (2600, NULL, '1985', 0, 'Michael Zeilik, 0', 'The Fajada Butte Solar Marker: A Reevaluation', ' Science 228:1311-1313.'); INSERT INTO "work" VALUES (1927, NULL, '1964', 0, 'S. A. Schumm, 0; R. J. Chorley, 1', 'The Fall of Threatening Rock', ' American Journal of Science 262(9):1041-1054.'); INSERT INTO "work" VALUES (807, NULL, '1938', 0, 'Florence M. Hawley, 0', 'The Family Tree of Chaco Canyon Masonry', ' American Antiquity 3(3):247-255.'); INSERT INTO "work" VALUES (20, NULL, '1981', 0, 'Nancy J. Akins, 0', 'The Faunal Remains from 29SJ1360', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (18, NULL, '1981', 0, 'Nancy J. Akins, 0', 'The Faunal Remains from 29SJ299', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (19, NULL, '1981', 0, 'Nancy J. Akins, 0', 'The Faunal Remains from 29SJ628', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (21, NULL, '1981', 0, 'Nancy J. Akins, 0', 'The Faunal Remains from Shabikeschee Village (29SJ1659)', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1101, NULL, '1993', 0, 'Joseph J. Kovacik, 0', 'The Faunal Structuring of Anasazi Place: A Social Perspective from Chaco Canyon, New Mexico', ' Paper presented at the 15th Annual Meeting of the Theoretical Archaeological Group, Durham, England.'); INSERT INTO "work" VALUES (486, NULL, '1910', 0, 'R. E. Dodge, 0', 'The Formation of Arroyos in Adobe-Filled Valleys in Southwestern United States', ' Paper presented at the British Association for the Advancement of Science. Abstracts Vol. 79.'); INSERT INTO "work" VALUES (1708, NULL, '1938', 0, 'W. W. Postlethwaite, 0', 'The Frontal Walls of Chetro Ketl', ' Paper presented at the AAAS Meeting, Albuquerque. Ms. on file, Archive 21125J, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1710, NULL, '1939', 0, 'W. W. Postlethwaite, 0', 'The Frontal Walls of Chetro Ketl', ' Paper presented at the Colorado-Wyoming Academy of Science Meeting, Fort Collins. Archive 1908, 2125J, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1707, NULL, '1937', 0, 'W. W. Postlethwaite, 0', 'The Frontal Walls of Chetro Ketl', ' Paper presented at the Southwest Division of the American Association for the Advancement of Science, Albuquerque. Archive 2125, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1519, NULL, '1937', 0, 'James Marshall Miller, 0', 'The G Kivas of Chetro Ketl', ' Unpublished M.A. thesis, University of Southern California, Los Angeles. '); INSERT INTO "work" VALUES (1912, NULL, '2001', 0, 'Michael A. Schillaci, 0', 'The Genetic Diversity of Chaco Canyon Populations', ' Paper presented at the 74th Pecos Conference, Flagstaff. '); INSERT INTO "work" VALUES (677, NULL, '1983', 0, 'Elizabeth M. Garrett, 0', 'The Geological Setting of Kin Nahasbas, Chaco Canyon and Petrographic Analysis of Construction Material', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published in 1988.'); INSERT INTO "work" VALUES (678, NULL, '1988', 0, 'Elizabeth M. Garrett, 0', 'The Geological Setting of Kin Nahasbas, Chaco Canyon, and Petrographic Analysis of Construction Material', ' In Historic Structure Report, Kin Nahasbas Ruin, Chaco Culture National Historical Park, New Mexico, by Frances Joan Mathien and Thomas C. Windes, pp. 301-305. Branch of Cultural Research, National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (274, NULL, '1954', 0, 'Kirk Bryan, 0', 'The Geology of Chaco Canyon, New Mexico, in Relation to the Life and Remains of the Prehistoric People of Pueblo Bonito', ' Smithsonian Miscellaneous Collections, Vol. 122(7):1-65. Smithsonian Institution Publication 4140, Washington, D.C.'); INSERT INTO "work" VALUES (1097, NULL, '2001', 0, 'Jane Kolber, 0; Donna Yoder, 1', 'The Great Anasazi Rock Art of Chaco Canyon: Possible and Probable Implications', ' Paper presented at the American Rock Art Research Association Conference, Pendleton, OR.'); INSERT INTO "work" VALUES (2300, NULL, '1960', 0, 'R. Gordon Vivian, 0; Paul Reiter, 1', 'The Great Kivas of Chaco Canyon and Their Relationships', ' School of American Research and the Museum of New Mexico Monographs No. 22. Santa Fe.'); INSERT INTO "work" VALUES (1705, NULL, '1933', 0, 'W. W. Postlethwaite, 0', 'The Great Kivas of the Chaco', ' Paper presented at the Colorado-Wyoming Academy of Sciences at Colorado Springs. Ms. on file in Archive 2125J, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerqu.'); INSERT INTO "work" VALUES (2018, NULL, '1989', 0, 'Anna Sofaer, 0; Michael Marshall, 1; Rolf Sinclair, 2', 'The Great North Road: A Cosmographic Expression of Chaco Culture of New Mexico', ' In World Archaeoastronomy. Selected Papers from the 2nd Oxford International Conference on Archaeoastronomy, edited by A. I. Aveni, pp. 365-376. Cambridge University Press, Cambridge.'); INSERT INTO "work" VALUES (1167, NULL, '1990', 0, 'Stephen H. Lekson, 0', 'The Great Pueblo Period in Southwestern Archaeology', ' In Pueblo Style and Regional Architecture, edited by N. C. Markovich, W.F.E. Preiser, and F. G. Sturm, pp. 64-77. Van Nostrand Reinhold, New York.'); INSERT INTO "work" VALUES (1738, NULL, '1983', 0, 'Robert P. Powers, 0; Peter J. McKenna, 1', 'The Guidebook', ' Procedures, Guidelines and Terminology for Completing Inventory Survey Forms. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (374, NULL, '1996', 0, 'MaryBeth Coffee, 0', 'The Hierarchy of Power: The Anasazi Religion of Science', ' Paper for Anthropology 394, D. E. Stuart, University of New Mexico.'); INSERT INTO "work" VALUES (259, NULL, '1981', 0, 'David M. Brugge, 0', 'The Historical Archeology of Chaco Canyon', ' In Archeological Surveys of Chaco Canyon, New Mexico, by Alden C. Hayes, David M. Brugge, and W. James Judge, pp. 69-106. Publications in Archeology 18A, Chaco Canyon Studies. National Park Service, U.S.D.I., Washington, D.C.'); INSERT INTO "work" VALUES (2494, NULL, '1980', 0, 'Thomas C. Windes, 0', 'The Historical Perspective of Pueblo Alto', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Revised and published in 1987.'); INSERT INTO "work" VALUES (1814, NULL, '1989', 0, 'Jonathan E. Reyman, 0', 'The History of Archaeology and the Archaeological History of Chaco Canyon, New Mexico', ' In Tracing Archaeology''s Past, The Historiography of Archaeology, edited by Andrew L. Christenson, pp. 41-51. Southern Illinois University, Carbondale and Edwardsville.'); INSERT INTO "work" VALUES (1457, NULL, '1979', 0, 'Dennis McAuliffe, 0', 'The History of Habitat Research Proposed in 1978 and Funded January 1979 under Purchase Order PX 7400-9-0017', ' Ms. on file, Naatural Resources Office, National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (251, NULL, '1976', 0, 'David M. Brugge, 0', 'The Horse in Navajo Rock Art at Chaco Canyon', ' AWANYU 4(4):34-46. Archaeological Society of New Mexico, Las Cruces.'); INSERT INTO "work" VALUES (2294, NULL, '1959', 0, 'R. Gordon Vivian, 0', 'The Hubbard Site and Other Tri-wall Structures in New Mexico and Colorado', ' National Park Service Archaeological Research Series No. 5. Washington, D.C.'); INSERT INTO "work" VALUES (2522, NULL, '1993', 0, 'Thomas C. Windes, 0', 'The Human Remains at 29SJ 629', ' In The Spadefoot Toad Site: Investigations at 29SJ629, Chaco Canyon, New Mexico: Artifactual and Biological Analyses, Volume II, edited by Thomas C. Windes, pp. 397-401. Reports of the Chaco Center No. 12. Branch of Cultural Research, National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (34, NULL, '1985', 0, 'Nancy J. Akins, 0', 'The Human Remains from Pueblo Alto', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published in 1987.'); INSERT INTO "work" VALUES (1190, NULL, '1998', 0, 'Stephen H. Lekson, 0', 'The Idea of the Kiva in Anasazi Archaeology', 'Kiva 53(3):213-234.'); INSERT INTO "work" VALUES (1162, NULL, '1988', 0, 'Stephen H. Lekson, 0', 'The Idea of the Kiva in Anasazi Archaeology', ' The Kiva 53(3):213-234.'); INSERT INTO "work" VALUES (1157, NULL, '1985', 0, 'Stephen H. Lekson, 0', 'The Idea of the Kiva in Anasazi Archaeology', ' Paper presented at the 50th Annual Meeting of the Society for American Archaeology, Denver. Published in 1988.'); INSERT INTO "work" VALUES (2386, NULL, '1937', 0, 'Frances E. Watkins, 0', 'The Indo-European Names of the Navaho of the Chaco and Their Origins', ' Prepared for Research 290, University of Southern California. Ms. on file, Museum of New Mexico, Santa Fe, and NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1019, NULL, '1999', 0, 'John Kantner, 0', 'The Influence of Self-Interested Behavior on Socio-Political Change: The Evolution of the Chaco Anasazi in the Prehistoric American Southwest', ' Unpublished Ph.D. dissertation, Department of Anthropology, University of California at Santa Barbara.'); INSERT INTO "work" VALUES (1302, NULL, '1972', 0, 'Thomas R. Lyons, 0; Basil G. Pouls, 1; Robert K. Hitchcock, 2', 'The Kin Bineola Irrigation Study', ' An Experiment in the Use of Aerial Remote Sensing Techniques in Archeology. In Proceedings: Third Annual Conference on Remote Sensing in Arid Lands, pp. 266-283. Office of Arid Land Studies, College of Earth Sciences, University of Arizona, Tucson.'); INSERT INTO "work" VALUES (1301, NULL, '1972', 0, 'Thomas R. Lyons, 0; Basil G. Pouls, 1; Robert K. Hitchcock, 2', 'The Kin Bineola Irrigation Study', ' An Experiment in the Use of Aerial Remote Sensing Techniques in Archeology. Paper presented at the International Conference on Remote Sensing in Arid Lands, Tucson. Chaco Archive 1999, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published in 1972.'); INSERT INTO "work" VALUES (1295, NULL, '1976', 0, 'Thomas R. Lyons, 0; Robert K. Hitchcock, 1; Basil G. Pouls, 2', 'The Kin Bineola Irrigation Study', ' An Experiment in the Use of Aerial Remote Sensing Techniques in Archeology. In Remote Sensing Experiments in Cultural Resource Studies. Non-destructive Methods of Archeological Exploration, Survey, and Analysis, assembled by Thomas R. Lyons, pp. 115-131. Reports of the Chaco Center No. 1. National Park Service and University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (46, NULL, '1988', 0, 'Nancy J. Akins, 0; Jack B. Bertram, 1', 'The Kin Nahasbas Faunal Remains', ' In Historic Structure Report, Kin Nahasbas, Chaco Culture National Historical Park, by Frances Joan Mathien and Thomas C. Windes, pp. 275-288. Branch of Cultural Research, National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (45, NULL, '1985', 0, 'Nancy J. Akins, 0; Jack B. Bertram, 1', 'The Kin Nahasbas Faunal Remains', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published in 1988.'); INSERT INTO "work" VALUES (1895, NULL, '1982', 0, 'Cherie Scheick, 0', 'The Lee Ranch Mine Site: Additional Survey of Two Railroad Corridors', 'Contract Archaeology Progress Report No. 077. School of American Research, Santa Fe.'); INSERT INTO "work" VALUES (554, NULL, '1995', 0, 'Robert Eaton, 0', 'The Lightning Field: Travels In and Around New Mexico', 'Johnson Books, Boulder.'); INSERT INTO "work" VALUES (1332, NULL, '1989', 0, 'Anne Lawrason Marshall, 0', 'The Location of Great Houses at Chaco Canyon', ' Unpublished Masters thesis, University of California, Berkeley.'); INSERT INTO "work" VALUES (1038, NULL, '1996', 0, 'James W. Kendrick, 0; W. James Judge, 1', 'The Lowry Community: Testing Great House Models on the Chaco Frontier', ' Paper presented at the 61st Annual Meeting of the Society for American Archaeology, New Orleans.'); INSERT INTO "work" VALUES (2391, NULL, '1992', 0, 'Phil C. Weigand, 0', 'The Macroeconomic Role of Turquoise within the Chaco Canyon System', ' In, Anasazi Regional Organization and the Chaco System, edited by David D. Doyel, pp. 169-173. Anthropological Papers No. 5. Maxwell Museum of Anthropology, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1673, NULL, '1902', 0, 'George H. Pepper, 0', 'The Making of a Navajo Blanket', ' Everybody''s Magazine, pp. 33-43. January.'); INSERT INTO "work" VALUES (1933, NULL, '1962', 0, 'J. V. Sciscenti, 0', 'The Manuelito Project: Archaeological Excavations on Interstate 40', ' Laboratory of Anthropology Note 14. Santa Fe.'); INSERT INTO "work" VALUES (792, NULL, '1953', 0, 'F. G. Hawley, 0', 'The Manufacture of Copper Bells Found in Southwestern Sites', ' Southwestern Journal of Anthropology 9(1):99-111.'); INSERT INTO "work" VALUES (406, NULL, '1876', 0, 'Samuel Woodworth Cozzens, 0', 'The Marvelous Country: Or Three Years in Arizona and New Mexico, the Apaches'' Home', ' Lee and Company, Boston.'); INSERT INTO "work" VALUES (958, NULL, '1954', 0, 'Neil Merton Judd, 0', 'The Material Culture of Pueblo Bonito', ' Smithsonian Miscellaneous Collections 124. Smithsonian Institution, Washington, D.C.'); INSERT INTO "work" VALUES (1910, NULL, '1997', 0, 'John D. Schelberg, 0', 'The Metates of Chaco Canyon, New Mexico', ' In Ceramics, Lithics, and Ornaments of Chaco Canyon. Analyses of Artifacts from the Chaco Project, 1971-1978, edited by Frances Joan Mathien, pp. 1013-1118. Publications in Archeology 18G, Chaco Canyon Studies. National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (2384, NULL, '1980', 0, 'Dorothy K. Washburn, 0', 'The Mexican Connection: Cylinder Jars from the Valley of Oaxaca', ' In New Frontiers in the Archaeology and Ethnohistory of the Greater Southwest, edited by Carroll L. Riley and Basil C. Hendrick. Transactions of the Illinois Academy of Science 72(4):70-85.'); INSERT INTO "work" VALUES (1388, NULL, '1983', 0, 'Frances Joan Mathien, 0', 'The Mobile Trader and the Chaco Anasazi', ' In Proceedings of the Anasazi Symposium 1981, compiled and edited by J. E. Smith, pp. 197-206. Mesa Verde Museum Association, Inc., Mesa Verde National Park.'); INSERT INTO "work" VALUES (1384, NULL, '1981', 0, 'Frances Joan Mathien, 0', 'The Mobile Trader and the Chaco Anasazi', ' Paper presented at the Anasazi Symposium, Mesa Verde National Park, Oct. 1-3. Published in 1983.'); INSERT INTO "work" VALUES (2284, NULL, '1950', 0, 'R. Gordon Vivian, 0', 'The Mobile Unit Southwestern National Monuments Stabilization Report, Bc 51, Chaco Canyon', ' Stabilization report on file in NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (114, NULL, '1980', 0, 'Ruth W. Armstrong, 0', 'The Mystery of Chaco Canyon', ' National Parks & Conservation Magazine 54(8): . August.'); INSERT INTO "work" VALUES (2550, NULL, '1980', 0, 'Regge N. Wiseman, 0', 'The Naschitti-North Project: The Excavation of Two Small Pueblo II Sites near Sheep Springs, San Juan County, New Mexico', ' Laboratory of Anthropology Notes 143. Museum of New Mexico Contract Archaeology Section, Santa Fe.'); INSERT INTO "work" VALUES (2106, NULL, '1994', 0, 'Brian Stubbs, 0', 'The Native Languages of San Juan County', ' Blue Mountain Shadows 13:63-67.'); INSERT INTO "work" VALUES (138, NULL, '1883', 0, 'Hubert H. Bancroft, 0', 'The Native Races', ' Antiquities 4:650-663. San Francisco.'); INSERT INTO "work" VALUES (2144, NULL, '1984', 0, 'H. Wolcott Toll, III, 0', 'The Nature and Implications of Ceramic Specialization in the Chaco Anasazi System', ' Paper presented at the 50th Annual Meeting of the Society for American Archaeology, Denver.'); INSERT INTO "work" VALUES (1793, NULL, '1975', 0, 'Jonathan E. Reyman, 0', 'The Nature and Nuture of Archaeoastronomical Studies', ' In Archaeoastronomy in Precolumbian America, edited by Anthony F. Aveni, pp. 205-215. University of Texas, Austin.'); INSERT INTO "work" VALUES (2536, NULL, '1992', 0, 'Thomas C. Windes, 0; Dabney Ford, 1', 'The Nature of the Early Bonito Phase', ' In Anasazi Regional Organization and the Chaco System, edited by David E. Doyel, pp. 75-85. Anthropological Papers No. 5. Maxwell Museum of Anthropology, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2584, NULL, '1987', 0, 'M. Jane Young, 0', 'The Nature of the Evidence: Archaeoastronomy in the Prehistoric Southwest', ' In Astronomy and Ceremony in the Prehistoric Southwest, edited by John B. Carlson and W. James Judge, pp. 169-189. Papers of the Maxwell Museum of Anthropology No. 2. University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2302, NULL, '1960', 0, 'R. Gwinn Vivian, 0', 'The Navajo Archaeology of the Chacra Mesa, New Mexico', ' Unpublished M.A. thesis, Department of Anthropology, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (730, NULL, '1916', 0, 'Herbert E. Gregory, 0', 'The Navajo Country', ' U.S. Geological Survey Water Supply Paper No. 390. Government Printing Office, Washington, D.C.'); INSERT INTO "work" VALUES (249, NULL, '1972', 0, 'David M. Brugge, 0', 'The Navajo Exodus', ' AWANYU, Archaeological Society of New Mexico Newsletter, 2(4). Supplement No. 5.'); INSERT INTO "work" VALUES (1674, NULL, '1902', 0, 'George H. Pepper, 0', 'The Navajo Indians', 'An Ethnological Study. The Papoose 1(1):3-9. Hyde Exploring Expedition, New York.'); INSERT INTO "work" VALUES (1672, NULL, '1900', 0, 'George H. Pepper, 0', 'The Navajo Indians', ' An Ethnological Study. Southern Workman, November.'); INSERT INTO "work" VALUES (163, NULL, '1993', 0, 'Richard M. Begay, 0; Alexandra Roberts, 1; Klara B. Kelley, 2; Alfred Yazzi, 3', 'The Navajo Nation''s Concerns and Recommendations for the Management of Fajada Butte, Chaco Culture National Historical Park, New Mexico', ' Prepared for Richard W. Stoffle, Bureau of Applied Research in Anthropology, University of Arizona, Tucson, by the Navajo Historic Preservation Department, Window Rock, AZ.'); INSERT INTO "work" VALUES (2587, NULL, '1961', 0, 'Robert W. Young, 0', 'The Navajo Yearbook', ' Navajo Agency, Bureau of Indian Affairs, Window Rock, AZ.'); INSERT INTO "work" VALUES (1508, NULL, '1983', 0, 'Judith Miles, 0', 'The Navajo on Chacra Mesa: 1983 Survey Data (Preliminary Report)', ' Ms. on file, NPS, SWRO, Santa Fe.'); INSERT INTO "work" VALUES (473, NULL, '1900', 0, 'F. S. Dellenbaugh, 0', 'The North Americans of Yesterday, pp', '230-232, New York.'); INSERT INTO "work" VALUES (1831, NULL, '1996', 0, 'David Roberts, 0', 'The Old Ones of the Southwest', ' National Geographic 189(4):86-109.'); INSERT INTO "work" VALUES (1782, NULL, '1929', 0, 'Paul D. Reiter, 0', 'The Opening of the Tunnel under the East Tower of Chettro Ketl', ' Archive 1938, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (403, NULL, '1999', 0, 'Linda S. Cordell, 0; George R. Milner, 1', 'The Organization of Late Precolumbian Societies in the Southwest and Southeast', ' In Great Towns and Regional Polities in the Prehistoric American Southwest and Southeast, edited by Jill E. Neitzel, pp. 109-113. The Amerind Foundation, Dragoon, and University of New Mexico Press, Albuquerque.'); INSERT INTO "work" VALUES (828, NULL, '1997', 0, 'Sarah A. Herr, 0', 'The Organization of Migrant Communities on the Chacoan Frontier', ' Paper presented at the 62nd Annual Meeting of the Society for American Archaeology, Nashville.'); INSERT INTO "work" VALUES (1607, NULL, '2003', 0, 'Jill E. Neitzel, 0', 'The Organization of function and Population of Pueblo Bonito', ' In Pueblo Bonito: Center of the Chacoan World, edited by Jill E. Neitzel. Smithsonian Institution Press, Washington, D.C.'); INSERT INTO "work" VALUES (785, NULL, '1965', 0, 'A. H. Harris, 0', 'The Origin of the Grassland Amphibian, Reptilian, and Mammalian Faunas of the San Juan Chaco River Drainage', ' Unpublished Ph.D. dissertation, Department of Biology, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1491, NULL, '1969', 0, 'George E. McLellan, 0', 'The Origin, Development, and Typology of Anasazi Kivas and Great Kivas', ' Unpublished Ph.D. dissertation, University of Colorado, Boulder.'); INSERT INTO "work" VALUES (1257, NULL, '1987', 0, 'David W. Love, 0', 'The Origins of Thinly Laminated Sand Layers Beneath the Stairs in Room 112, Pueblo Alto', ' In Investigations at the Pueblo Alto Complex, Chaco Canyon, New Mexico 1975-1979, Volume IV, Microfiche, by Thomas C. Windes and Frances Joan Mathien, pp. MF-47-MF-49. Publications in Archeology 18F, Chaco Canyon Studies. National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (1709, NULL, '1938', 0, 'W. W. Postlethwaite, 0', 'The Outer Walls at Chetro Ketl', ' New Mexico Anthropologist 2(4-5):81.'); INSERT INTO "work" VALUES (1736, NULL, '1981', 0, 'Robert P. Powers, 0; William B. Gillespie, 1; Stephen H. Lekson, 2', 'The Outlier Survey: A Regional View of Settlement Pattern in the San Juan Basin', ' Ms. on file, NPS Chaco Archive, University of New Mexico. Revised and published in 1983.'); INSERT INTO "work" VALUES (1737, NULL, '1983', 0, 'Robert P. Powers, 0; William B. Gillespie, 1; Stephen H. Lekson, 2', 'The Outlier Survey: A Regional View of Settlement in the San Juan Basin', ' Reports of the Chaco Center No. 3. Division of Cultural Research, National Park Service, Albuquerque.'); INSERT INTO "work" VALUES (1421, NULL, '2001', 0, 'Frances Joan Mathien, 0', 'The Organization of Turquoise Production and Consumption by the Prehistoric Chacoans', ' American Antiquity 66:103-118.'); INSERT INTO "work" VALUES (987, NULL, '1982', 0, 'W. James Judge, 0', 'The Paleo-Indian and Basketmaker Periods: An Overview and Some Research Problems', ' In The San Juan Tomorrow, edited by Fred Plog and Walter Wait, pp. 5-57. National Park Service Southwest Regional Office in cooperation with the School of American Research, Santa Fe.'); INSERT INTO "work" VALUES (964, NULL, '1967', 0, 'Neil Merton Judd, 0', 'The Passing of a Small PIII Ruin', ' Plateau 39(3):131-133.'); INSERT INTO "work" VALUES (598, NULL, '1980', 0, 'Robin E. Farwell, 0', 'The Peach Springs Survey: A Cultural Resources Survey and Inventory along New Mexico State Road 566, McKinley County, for the New Mexico State Highway Department', ' Laboratory of Anthropology Notes 160. Museum of New Mexico, Santa Fe.'); INSERT INTO "work" VALUES (2088, NULL, '1983', 0, 'Al Stotts, 0', 'The Phenomenon of Chaco Canyon', ' UNM Alumnus 55(8): ---.'); INSERT INTO "work" VALUES (805, NULL, '1937', 0, 'Florence M. Hawley, 0', 'The Place of Tseh So in Chaco Culture Pattern', ' In Tseh So, a Small House Ruin in Chaco Canyon, New Mexico. Preliminary Report, by Donald D. Brand, Florence M. Hawley, and Frank C. Hibben et al., pp. 115-119. University of New Mexico Bulletin No. 308, Anthropological Series 2(2). University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1103, NULL, '1994', 0, 'Joseph J. Kovacik, 0', 'The Possibility of a Moiety System in Chaco Canyon, New Mexico', ' Paper presented to the Humanities and Social Sciences Group, Darwin College, Cambridge.'); INSERT INTO "work" VALUES (1711, NULL, '1948', 0, 'W. W. Postlethwaite, 0', 'The Post-Hole Vaults and the "Moat" at Chetro Ketl', ' Paper presented at the Southwest Division of the American Association for the Advancement of Science, Las Vegas. Archive 2125J, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2379, NULL, '1979', 0, 'A. Helene Warren, 0', 'The Pottery of the Alamito Coal Lease Survey, San Juan County, New Mexico', ' In Cultural Resources of the Alamito Coal Lease Area, Northwestern New Mexico, by John P. Wilson. Alamito Coal Co., Tucson.'); INSERT INTO "work" VALUES (2378, NULL, '1978', 0, 'A. Helene Warren, 0', 'The Pottery of the Alamito Coal Lease Survey, San Juan County, New Mexico', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published in 1979.'); INSERT INTO "work" VALUES (1803, NULL, '1980', 0, 'Jonathan E. Reyman, 0', 'The Predictive Dimension of Priestly Power: With a Note on Solar and Lunar Cycles', ' In New Frontiers in the Archaeology and Ethnohistory of the Greater Southwest, edited by Carroll L. Riley and Basil C. Hedrick, pp. 40-59. Transactions of the Illinois Academy of Science, Vol. 72(4).'); INSERT INTO "work" VALUES (1593, NULL, '1983', 0, 'Robert B. Neily, 0', 'The Prehistoric Community on the Colorado Plateau: An Approach to the Study of Change and Survival in the Northern San Juan Ara of the American Southwest', ' Unpublished Ph.D. dissertation, Southern Illinois University, Carbondale.'); INSERT INTO "work" VALUES (1691, NULL, '1949', 0, 'Lloyd M. Pierson, 0', 'The Prehistoric Population of Chaco Canyon, New Mexico: A Study in Methods and Techniques of Prehistoric Population Estimation', ' Unpublished M.A. thesis, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2518, NULL, '1991', 0, 'Thomas C. Windes, 0', 'The Prehistoric Road Network at Pueblo Alto, Chaco Canyon, New Mexico', ' In Ancient Road Networks and Settlement Hierarchies in the New World, edited by Charles D. Trombold, pp. 111-131. Cambridge University, Cambridge.'); INSERT INTO "work" VALUES (2503, NULL, '1982', 0, 'Thomas C. Windes, 0', 'The Prehistoric Road Network at Pueblo Alto, Chaco Canyon, New Mexico', ' Paper presented at the 81st Annual Meeting of the American Anthropological Association, Washington, D.C., Dec. 5. Published in 1991.'); INSERT INTO "work" VALUES (855, NULL, '1990', 0, 'Roger A. Hill, 0', 'The Prehistoric Road System of the Chacoan Culture', ' The Artifact 28(2):43-54.'); INSERT INTO "work" VALUES (1637, NULL, '1983', 0, 'Margaret Senter Obenauf, 0', 'The Prehistoric Roadway Network in the San Juan Basin', ' In Remote Sensing in Cultural Resource Management. The San Juan Basin Project, edited by Dwight L. Drager and Thomas R. Lyons, pp. 117-122. Cultural Resources Management Division, National Park Service, Washington, D.C.'); INSERT INTO "work" VALUES (1749, NULL, '1903', 0, 'T. Mitchell Prudden, 0', 'The Prehistoric Ruins of the San Juan Watershed in Utah, Arizona, Colorado, and New Mexico', ' American Anthropologist 5:224-288.'); INSERT INTO "work" VALUES (867, NULL, '1923', 0, 'Adela C. Holmquist, 0', 'The Prehistoric Southwest', ' El Palacio 15:35-39.'); INSERT INTO "work" VALUES (2015, NULL, '1997', 0, 'Anna Sofaer, 0', 'The Primary Architecture of the Chacoan Culture', ' A Cosmological Expression. In Anasazi Architecture and American Design, edited by Baker H. Morrow and V. B. Price, pp. 88-130. University of New Mexico Press, Albuquerque.'); INSERT INTO "work" VALUES (2012, NULL, '1991', 0, 'Anna Sofaer, 0', 'The Primary Architecture of the Chacoan Culture: An Integrated Cosmological Expression', ' Paper presented at the Symposium on Anasazi Architecture and American Design, Mesa Verde National Park, CO.'); INSERT INTO "work" VALUES (572, NULL, '1980', 0, 'Michael Lee Elliott, 0', 'The Probable Geological Sources of Some Obsidian Artifacts from Chaco Canyon', ' Paper for Anthropology 420, University of New Mexico. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2504, NULL, '1982', 0, 'Thomas C. Windes, 0', 'The Pueblo Alto Trash Mound', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Revised and published in 1987.'); INSERT INTO "work" VALUES (2497, NULL, '1981', 0, 'Thomas C. Windes, 0', 'The Pueblo Alto Trash Mound', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Revised and published in 1987.'); INSERT INTO "work" VALUES (940, NULL, '1922', 0, 'Neil Merton Judd, 0', 'The Pueblo Bonito Expedition of the National Geographic Society', ' National Geographic Magazine 41:323-331.'); INSERT INTO "work" VALUES (1861, NULL, '1996', 0, 'John R. Roney, 0', 'The Pueblo III Period in the Eastern San Juan Basin and Acoma-Laguna Areas', ' In The Prehistoric Pueblo World, A.D. 1150-1350, edited by Michael A. Adler, pp. 145-169. The University of Arizona Press, Tucson.'); INSERT INTO "work" VALUES (849, NULL, '1945', 0, 'Edgar L. Hewett, 0; Bertha P. Dutton, 1', 'The Pueblo Indian World', ' University of New Mexico Press, Albuquerque.'); INSERT INTO "work" VALUES (390, NULL, '198-', 0, 'Linda S. Cordell, 0', 'The Pueblo Period in the San Jan Basin: Overview and Research Problem', ' Ms. on file, NPS Chaco Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1753, NULL, '1879', 0, 'Frederic W. Putnam, 0', 'The Pueblo Ruins and the Interior Tribes', ' In Report Upon United States Geographical Surveys West of the One Hundredth Meridian in Charge of First Lieut. Geo. M. Wheeler, Corps of Engineers, U.S. Army, under the Direction of Brig. Gen. A. A. Humphreys, Chief of Engineers, U. S. Army. Published by the Authority of the Honorable the Secretary of War, in Accordance with Acts of Congress of June 23, 1874, and February 15, 1875. In Seven Volumes, Accompanied by One Topographical and One Geological Atlas. Volume 7, Archaeology, pp. 1-31. Government Printing Office, Washington, D.C.'); INSERT INTO "work" VALUES (1185, NULL, '1996', 0, 'Stephen H. Lekson, 0', 'The Pueblo Southwest After 1150', ' In Interpreting Southwestern Diversity: Underlying Principles and Overarching Patterns, edited by Paul R. Fish and J. Jefferson Reid, pp. 41-44. Arizona State University Anthropological Research Papers No. 48. Arizona State University, Tempe.'); INSERT INTO "work" VALUES (126, NULL, '1994', 0, 'Shane A. Baker, 0', 'The Question of Cannibalism and Violence in the Anasazi Culture: A Case Study from San Juan County, Utah', ' Blue Mountain Shadows 13:30-41.'); INSERT INTO "work" VALUES (2385, NULL, '1969', 0, 'Frank Waters, 0', 'The Race Tracks at Chaco Canyon', ' In Book of the Hopi, by Frank Waters, pp. 50-53. Ballentine Books Inc., New York.'); INSERT INTO "work" VALUES (1456, NULL, '1978', 0, 'Dennis McAuliffe, 0', 'The Rationale for Research to Recover and Develop the Record of Information on the Monument Area Habitat', ' Submitted in partial fulfillment of Contract PX 7400-9-0017. Ms. on file, Natural Resources Office, National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (375, NULL, '1934', 0, 'Robert M. Coffin, 0', 'The Reconstruction of the Major Ruins in the Chaco Canyon, New Mexico', ' Archive 1836, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2363, NULL, '1933', 0, 'Paul A. F. Walter, 0', 'The Record of a Summer Camp and Field School 1933', ' El Palacio 35(5-6):35-63.'); INSERT INTO "work" VALUES (806, NULL, '1937', 0, 'Florence M. Hawley, 0', 'The Refuse Dump at Mound 50', ' In Tseh So, a Small House Ruin in Chaco Canyon, New Mexico. Preliminary Report, by Donald D. Brand, Florence M. Hawley, and Frank C. Hibben et al., pp. 163-172. University of New Mexico Bulletin No. 308, Anthropological Series 2(2). University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1897, NULL, '1976', 0, 'John D. Schelberg, 0', 'The Relationship of Trade and Environmental Stability', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (229, NULL, '1937', 0, 'Donald D. Brand, 0', 'The Report, Part I', ' The Natural Landscape. In Tseh So, A Small House Ruin, Chaco Canyon, New Mexico. Preliminary Report, by Donald D. Brand, Florence M. Hawley, and Frank C. Hibben, pp. 39-65. University of New Mexico Bulletin No. 308, Anthropological Series 2(2). University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (976, NULL, '1977', 0, 'W. James Judge, 0', 'The Research Program of the Chaco Project: A Brief Summary', ' Paper presented at the 50th Pecos Conference, Pecos.'); INSERT INTO "work" VALUES (2161, NULL, '1992', 0, 'H. Wolcott Toll, 0; Peter J. McKenna, 1', 'The Rhetoric and the Ceramics: Discussion of Types, Function, Distribution, and Sources of the Ceramics of 29SJ627', ' In Excavations at 29SJ627, Chaco Canyon, New Mexico. Volume II. The Artifact Analyses, edited by Frances Joan Mathien, pp. 37-248. Reports of the Chaco Center No. 11. Branch of Cultural Research, National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (2159, NULL, '1985', 0, 'H. Wolcott Toll, 0; Peter J. McKenna, 1', 'The Rhetoric and the Ceramics: Discussion of Types, Functions, Distribution, and Sources of the Ceramics of 29SJ627', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published in 1992.'); INSERT INTO "work" VALUES (977, NULL, '1977', 0, 'W. James Judge, 0', 'The Rio Grande from the Perspective of the Chaco Basin', ' Paper presented in a symposium at the 50th Pecos Conference, Pecos.'); INSERT INTO "work" VALUES (409, NULL, '2000', 0, 'Helen K. Crotty, 0', 'The Rock Art Recording Field School of the Archaeological Society of New Mexico', ' In The First 100 Years: Papers in Honor of the State and Local Archaeological Societies of New Mexico, edited by Frances Joan Mathien, David T. Kirkpatrick, and Meliha S. Duran, pp. 107-132. Archaeological Society of New Mexico: 26. Albuquerque.'); INSERT INTO "work" VALUES (1315, NULL, '1995', 0, 'Nancy M. Mahoney, 0; Andrew I. Duff, 1; Keith W. Kintigh, 2', 'The Role of Chacoan Outliers in Local Organization', ' Paper presented at the 60th Annual Meeting of the Society for American Archaeology, Minneapolis.'); INSERT INTO "work" VALUES (561, NULL, '1977', 0, 'James I. Ebert, 0; Robert K. Hitchcock, 1', 'The Role of Remote Sensing', ' In Settlement and Subsistence Along the Lower Chaco River: The CGP Survey, edited by Charles A. Reher, pp. 191-216. University of New Mexico Press, Albuquerque.'); INSERT INTO "work" VALUES (563, NULL, '1974', 0, 'James I. Ebert, 0; Robert K. Hitchcock, 1; Thomas R. Lyons, 2', 'The Role of Remote Sensing in a Regional Archaeological Research Design: A Case Study', ' Paper presented at the 39th Annual Meeting of the Society for American Archaeology, Washington, D.C. Published in 1976 by Ebert and Lyons.'); INSERT INTO "work" VALUES (564, NULL, '1976', 0, 'James I. Ebert, 0; Thomas R. Lyons, 1', 'The Role of Remote Sensing in a Regional Archeological Research Design: A Case Study', ' In Remote Sensing Experiments in Cultural Resources Studies: Non-destructive Methods of Archeological Exploration, Survey, and Analysis, assembled by Thomas R. Lyons, pp. 5-9. Reports of the Chaco Center No. 1. National Park Service and University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2392, NULL, '1993', 0, 'Phil C. Weigand, 0; Garman Harbottle, 1', 'The Role of Turquoise in the Ancient Mesoamerican Trade Structure', ' In The American Southwest and Mesoamerica. Systems of Prehistoric Exchange, edited by Jonathan E. Ericson and Timothy G. Baugh, pp. 159-177. Plenum Press, New York.'); INSERT INTO "work" VALUES (741, NULL, '1996', 0, 'Jonathan Haas, 0; Winifred Creamer, 1', 'The Role of Warfare in the Pueblo III Period', ' In The Prehistoric Pueblo World A.D. 1150-1350, edited by Michael A. Adler, pp. 205-213. The University of Arizona Press, Tucson.'); INSERT INTO "work" VALUES (1992, NULL, '1874', 0, 'James Hervey Simpson, 0', 'The Ruins to be Found in New Mexico and the Explorations of Francisco Vasquez de Coronado in Search of the Seven Cities of Cibola', ' Journal of the American Geographical Society 5:194-216.'); INSERT INTO "work" VALUES (1694, NULL, '1938', 0, 'Frank Pinkley, 0', 'The Saga of Threatening Rock', ' Southwestern Monuments, Supplement for April, pp. 347-379.'); INSERT INTO "work" VALUES (901, NULL, '1976', 0, 'Cynthia Irwin-Williams, 0', 'The San Juan Valley Archaeological Program, 1976', ' Ms. on file, National Park Service, Intermountain Region, Santa Fe Office.'); INSERT INTO "work" VALUES (899, NULL, '1973', 0, 'Cynthia Irwin-Williams, 0', 'The San Juan Valley Archaeological Program: Investigations at the Salmon Site, 1973', ' Ms. on file, National Park Service, Intermountain Region, Santa Fe Office.'); INSERT INTO "work" VALUES (1896, NULL, '1985', 0, 'Cherie Scheick, 0', 'The Santa Fe Coal Rail Corridor Project: A Study in the Internal Dynamics of Easter Red Mesa Valley Communities', ' Southwest Archaeological Consultants, Santa Fe.'); INSERT INTO "work" VALUES (2444, NULL, '1994', 0, 'David R. Wilcox, 0; Jonathan Haas, 1', 'The Scream of the Butterfly, Competition and Conflict in the Prehistoric Southwest', ' In Themes in Southwest Prehistory, edited by George J. Gumerman, pp. 211-238. School of American Research, Santa Fe.'); INSERT INTO "work" VALUES (581, NULL, '1963', 0, 'Mary Elting, 0; Michael Folson, 1', 'The Secret Story of Pueblo Bonito', ' Scholastic Book Services, New York.'); INSERT INTO "work" VALUES (496, NULL, '1929', 0, 'Andrew E. Douglass, 0', 'The Secret of the Southwest Solved by Talkative Tree Rings', ' The National Geographic Magazine 56:737-770. December. Washington, D.C.'); INSERT INTO "work" VALUES (350, NULL, '1983', 0, 'John B. Carlson, 0', 'The Selling of Fajada Butte: An Anacalypsis', ' Archaeoastronomy (Supplement to the Journal of the History of Astronomy) 6:156-160.'); INSERT INTO "work" VALUES (1765, NULL, '1949', 0, 'Erik K. Reed, 0', 'The Significance of Skull Deformation in the Southwest', ' El Palacio 56(4):106-119.'); INSERT INTO "work" VALUES (798, NULL, '1934', 0, 'Florence M. Hawley, 0', 'The Significance of the Dated Prehistory of Chetro Ketl', ' Ph.D. Dissertation, University of Chicago.'); INSERT INTO "work" VALUES (799, NULL, '1934', 0, 'Florence M. Hawley, 0', 'The Significance of the Dated Prehistory of Chetro Ketl', 'University of New Mexico Bulletin 246, Monograph Series 1(1). University of New Mexico and School of American Research, Santa Fe. University of New Mexico Press, Albuquerque.'); INSERT INTO "work" VALUES (841, NULL, '1931', 0, 'Edgar L. Hewett, 0', 'The Significance of the Deeper Excavations at Chetro Ketl', ' American Journal of Archaeology 35:58.'); INSERT INTO "work" VALUES (853, NULL, '1937', 0, 'Frank C. Hibben, 0', 'The Site and Excavations', ' In Tseh So, a Small House Ruin, Chaco Canyon, New Mexico. Preliminary Report, by Donald D. Brand, Florence M. Hawley, and Frank C. Hibben et al, pp. 67-84. University of New Mexico Bulletin No. 308, Anthropological Series 2(2). University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1342, NULL, '1997', 0, 'Anne Lawrason Marshall, 0', 'The Siting of Kin Bineola', 'Paper presented at the 70th Pecos Conference, Chaco Canyon, NM.'); INSERT INTO "work" VALUES (1351, NULL, '2003', 0, 'Anne Lawrason Marshall, 0', 'The Siting of Pueblo Bonito in Chaco Canyon', ' In Pueblo Bonito: Center of the Chacoan World, edited by Jill E. Neitzel. Smithsonian Institution Press, Washington, D.C. In press Landscape and Architecture at Chaco Canyon: Spirituality and Siting. Landscape Journal'); INSERT INTO "work" VALUES (312, NULL, '1980', 0, 'Catherine M. Cameron, 0', 'The Sources of Chaco Canyon Obsidian', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (874, NULL, '1971', 0, 'Dee T. Hudson, 0', 'The Spacing of Chaco Canyon Towns', ' Paper for Anthropology 544, Arizona State University. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1337, NULL, '1996', 0, 'Anne Lawrason Marshall, 0', 'The Siting of Pueblo Bonito in Chaco Canyon', ' Paper presented at the 61st Annual Meeting of the Society for American Archaeology, New Orleans.'); INSERT INTO "work" VALUES (2523, NULL, '1993', 0, 'Thomas C. Windes, 0', 'The Spadefoot Toad Site: Investigations at 29SJ629, Chaco Canyon, New Mexico', ' Reports of the Chaco Center No. 12. Branch of Cultural Research, National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (1191, NULL, '1998', 0, 'Stephen H. Lekson, 0', 'The Spatial Structure of the Ancient Southwest', ' Poster Session at the 63rd Annual Meeting of the Society for American Archaeology, Seattle.'); INSERT INTO "work" VALUES (576, NULL, '1980', 0, 'Florence H. Ellis, 0; Andrea Ellis Dodge, 1', 'The Spread of Chaco/Mesa Verde/McElmo Black-on-white Pottery and the Possible Simultaneous Introduction of Irrigation into the Rio Grande Drainage', ' Journal of Anthropological Research 45:47-53.'); INSERT INTO "work" VALUES (1970, NULL, '1959', 0, 'Joel L. Shiner, 0', 'The Stabilization of Talus Unit, Chaco Canyon National Monument, 1959', ' Stabilization report on file in the NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (625, NULL, '1931', 0, 'Reginald G. Fisher, 0', 'The State Archaeological Survey of New Mexico', ' El Palacio 31(21-25):390-391.'); INSERT INTO "work" VALUES (186, NULL, '1983', 0, 'Richard A. Bice, 0', 'The Sterling Site: An Initial Report', ' In Collected Papers in Honor of Charlie R. Steen, Jr. edited by Nancy L. Fox, pp. 49-86. Archaeological Society of New Mexico Papers: 8.'); INSERT INTO "work" VALUES (2219, NULL, '1983', 0, 'James Udall, 0', 'The Stonemasons of Pueblo Bonito: The Masonry and Myserty of a Vanished Indian Culture', ' Fine Homebuilding 18:----- December.'); INSERT INTO "work" VALUES (900, NULL, '1975', 0, 'Cynthia Irwin-Williams, 0', 'The Structure of Chacoan Society in the Northern Southwest: Investigations at the Salmon Site, 1974-1975', ' Ms. on file, National Park Service, Intermountain Region, Santa Fe Office.'); INSERT INTO "work" VALUES (2016, NULL, '1982', 0, 'A. P. Sofaer, 0; A. Ihde, 1', 'The Sun Dagger', ' The Solstice Project Bullfrog Films.'); INSERT INTO "work" VALUES (1827, NULL, '1982', 0, 'Michael Richie, 0', 'The Sun Dagger of Chaco Canyon', ' New Mexico Magazine 60(11):34-41. November.'); INSERT INTO "work" VALUES (892, NULL, '1983', 0, 'Arthur K. Ireland, 0', 'The Surface Geology and Precipitation Contours of the San Juan Basin', ' In Remote Sensing in Cultural Resource Management: The San Juan Basin Project, edited by Dwight L. Drager and Thomas R. Lyons, pp. 33-37. Cultural Resources Management Division, National Park Service, Washington, D.C.'); INSERT INTO "work" VALUES (1551, NULL, '2002', 0, 'E. Pierre Morenon, 0', 'The Systematics of Regional Stability and Change: Chacoan Roads and Narragansett History', ' Paper presented at the 67th Annual Meeting of the Society for American Archaeology, Denver.'); INSERT INTO "work" VALUES (1653, NULL, '1937', 0, 'J. L. Patterson, 0', 'The Temple of Rinconada', ' Southwestern Lore II(4):80-83.'); INSERT INTO "work" VALUES (2157, NULL, '1981', 0, 'H. Wolcott Toll, 0; Peter J. McKenna, 1', 'The Testimony of the Spadefoot Toad Ceramics', ' Description and Analyses of the 29SJ629 Sherds. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published 1993.'); INSERT INTO "work" VALUES (2162, NULL, '1993', 0, 'H. Wolcott Toll, 0; Peter J. McKenna, 1', 'The Testimony of the Spadefoot Toad Ceramics', ' In The Spadefoot Toad Site: Investigations at 29SJ 629, Chaco Canyon, New Mexico: Artifactual and Biological Analyses, Volume II, edited by Thomas C. Windes, pp. 15-134. Reports of the Chaco Center No. 12. Branch of Cultural Research, National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (1483, NULL, '1985', 0, 'Peter J. McKenna, 0; H. Wolcott Toll, 1', 'The Three Little Digs: Ceramic Clues to Intermittent Activity at 29SJ721', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2295, NULL, '1965', 0, 'R. Gordon Vivian, 0', 'The Three-C Site, an Early Pueblo II Ruin in Chaco Canyon, New Mexico', ' University of New Mexico Publications in Anthropology No. 13. University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2288, NULL, '1951', 0, 'R. Gordon Vivian, 0', 'The Three-C Site, an Early Pueblo II ruin in Chaco Canyon, New Mexico', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published in 1965.'); INSERT INTO "work" VALUES (1774, NULL, '1998', 0, 'Paul F. Reed, 0', 'The Tocito Community: Anasazi Settlement along the Chuska Slope, Two Grey Hills, New Mexico', ' Paper presented at the 63rd Annual Meeting of the Society for American Archaeology, Seattle.'); INSERT INTO "work" VALUES (1839, NULL, '1979', 0, 'Willow A. Roberts, 0', 'The Trader Project', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2287, NULL, '1951', 0, 'R. Gordon Vivian, 0', 'The Tri-Walled Structure at Pueblo Del Arroyo, Chaco Canyon National Monument', ' Stabilization report on file in NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (2290, NULL, '1955', 0, 'R. Gordon Vivian, 0', 'The TriWalled Structure at Pueblo del Arroyo, Chaco Canyon National Monument, New Mexico', ' Southwestern Monuments Association Technical Series 5(3). Globe, AZ.'); INSERT INTO "work" VALUES (2548, NULL, '1978', 0, 'Regge N. Wiseman, 0', 'The Tsaya Project: A Preliminary Report of Archaeological Investigations at Several Sites West of Chaco Canyon National Monument, New Mexico', ' Ms. on file, Laboratory of Anthropology, Museum of New Mexico, Santa Fe.'); INSERT INTO "work" VALUES (2549, NULL, '1979', 0, 'Regge N. Wiseman, 0', 'The Tsaya Project: Archaeological Excavations near Lake Valley, San Juan County, New Mexico', ' Draft ms. on file, Laboratory of Anthropology, Museum of New Mexico, and National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (1628, NULL, '1996', 0, 'Melissa S. Nimbungco, 0', 'The Two Anasazi Worlds', ' Paper for Anthropology 394, D. E. Stuart, University of New Mexico.'); INSERT INTO "work" VALUES (1034, NULL, '1998', 0, 'Klara Kelley, 0; Harris Francis, 1; John Stein, 2', 'The Two Grey Hills Cultural Landscape Study: An Interdisciplinary Discussion of Objectives, Methods, Discoveries and Issues', ' Part 2: Navajo Oral Tradition and Management Issues. Paper presented at the 63rd Annual Meeting of the Society for American Archeology, Seattle.'); INSERT INTO "work" VALUES (2073, NULL, '1998', 0, 'John Stein, 0; Richard Friedman, 1; Taft Blackhorse, 2', 'The Two Grey Hills Cultural Landscape Study: An Interdisciplinary Discussion of Objectives, Methods, Discoveries, and Issues', ' Part I: Identifying Large-scale Pre-Columbian Landscape Structures Using GIS, GPS, and RST. Paper presented at the 63rd Annual Meeting of the Society for American Archaeology, Seattle.'); INSERT INTO "work" VALUES (1294, NULL, '1973', 0, 'Thomas R. Lyons, 0; Robert K. Hitchcock, 1; James I. Ebert, 2', 'The Use of Remote Sensing in the Mapping and Analysis of a Prehistoric Irrigation System', ' Paper presented at the 38th Annual Meeting of the Society for American Archaeology, San Francisco.'); INSERT INTO "work" VALUES (2517, NULL, '1987', 0, 'Thomas C. Windes, 0', 'The Use of Turkeys at Pueblo alto Based on Eggshells and Faunal Remains', ' In Investigations at the Pueblo Alto Complex, Chaco Canyon, New Mexico: Tests and Excavations, 1975-1979. Volume III. Artifactual and Biological Analyses, edited by Frances Joan Mathien and Thomas C. Windes, pp. 679-690. Publications in Archeology 18F, Chaco Canyon Studies. National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (1324, NULL, '1993', 0, 'J. M. Malville, 0; W. J. Judge, 1', 'The Uses of Esoteric Astronomical Knowledge in the Chaco Regional System', ' Paper presented at the Proceedings of the Fourth Oxford International Conference on Archaeoastronomy. Stara Zagora, Bulgaria.'); INSERT INTO "work" VALUES (1434, NULL, '1989', 0, 'Frances Joan Mathien, 0; Thomas C. Windes, 1', 'The Value of Photographic Documentation in Archeological Research: A Case Study', ' CRM Bulletin 12(5):1-5.'); INSERT INTO "work" VALUES (1734, NULL, '1987', 0, 'Robert P. Powers, 0', 'The View from the Outside: Archaeological Survey on the Peripheries of Chaco Canyon', ' Paper presented at the 52nd Annual Meeting of the Society for American Archaeology, Toronto.'); INSERT INTO "work" VALUES (761, NULL, '1938', 0, 'J. B. Hamilton, 0', 'The Weight and Stability of Threatening Rock', ' Southwestern Monuments Reports, Supplement for April, pp. 347-352. Coolidge.'); INSERT INTO "work" VALUES (1799, NULL, '1979', 0, 'Jonathan E. Reyman, 0', 'The Winter Solstice at Pueblo Bonito', ' Part 2. Griffith Observer 43(10):2-9. January.'); INSERT INTO "work" VALUES (1798, NULL, '1978', 0, 'Jonathan E. Reyman, 0', 'The Winter Solstice at Pueblo Bonito', ' Part 1. Griffith Observer 42(12):16-19. December.'); INSERT INTO "work" VALUES (252, NULL, '1977', 0, 'David M. Brugge, 0', 'The Ye''i or Holy People in Navajo Rock Art', ' AWANYU 5(3):8-16. Archaeological Society of New Mexico, Las Cruces.'); INSERT INTO "work" VALUES (1208, NULL, '1996', 0, 'Robert P. Leonard, 0; Heidi E. Reed, 1', 'Theory, Models, Explanation, and the Record: Response to Kohler and Sebastian', ' American Antiquity 61(3):603-608.'); INSERT INTO "work" VALUES (1657, NULL, '1977', 0, 'Peter D. Paul, 0', 'Thermal Characteristics of Pueblo Bonito', ' Investigation of a Low Energy Thermal Environment in the Classic Pueblo Community of the 11th Century New Mexico. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2217, NULL, '2000', 0, 'Marianne R. Tyndall, 0', 'Thermal Conductivity and Chaco Cooling Vessels: An Examination of Technological Change as a Response to Fuel Shortage in Chaco Canyon', ' Paper presented at the 65th Annual Meeting of the Society for American Archaeology, Philadelphia.'); INSERT INTO "work" VALUES (2115, NULL, '1987', 0, 'Stephen R. Sutton, 0', 'Thermoluminescence Dating Study of Potsherds from Pueblo Alto, New Mexico', ' In Investigations at the Pueblo Alto Complex, Chaco Canyon, New Mexico, 1975-1979. Volume IV. Microfiche, edited by Thomas C. Windes and Frances Joan Mathien, MF 72-76. Publications in Archeology, Chaco Canyon Studies 18F. National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (1177, NULL, '1994', 0, 'Stephen H. Lekson, 0', 'Thinking About Chaco', ' In Chaco Canyon. A Center and Its World, photos by Mary Peck; essays by Stephen H. Lekson, John R. Stein, and Simon J. Ortiz, pp. 11-45. Museum of New Mexico, Santa Fe.'); INSERT INTO "work" VALUES (607, NULL, '1978', 0, 'Dennis B. Fenn, 0; John R. Deck, 1', 'Third Annual Report, Chemical Stabilization of Prehistoric Structures at Chaco Canyon National Monument', ' Ms. on file, National Park Service, Intermountain Region, Santa Fe Office.'); INSERT INTO "work" VALUES (2529, NULL, '2003', 0, 'Thomas C. Windes, 0', 'This Old House: Construction and Abandonment of Pueblo Bonito', ' In Pueblo Bonito: Center of the Chacoan World, edited by Jill E. Neitzel. Smithsonian Institution Press, Washington, D.C.'); INSERT INTO "work" VALUES (1585, NULL, '1995', 0, 'T. Naranjo, 0', 'Thoughts on Migration by Santa Clara Pueblo', ' Journal of Anthropological Archaeology 14:247-250.'); INSERT INTO "work" VALUES (365, NULL, '1936', 0, 'A. E. Clark, 0', 'Threatening Rock', ' Southwestern Monuments, September, p. 209.'); INSERT INTO "work" VALUES (1050, NULL, '1935', 0, 'Dorothy Keur, 0; John Keur, 1', 'Threatening Rock', ' Southwestern Monuments Monthly Reports, July, pp. 16-17; and November, pp. 389-390.'); INSERT INTO "work" VALUES (410, NULL, '1950', 0, 'F. Crowder, 0', 'Threatening Rock and the Wisdom Tooth', ' Westways 42(1):16-17.'); INSERT INTO "work" VALUES (2440, NULL, '1994', 0, 'David R. Wilcox, 0', 'Three Macroregional Systems in the North American Southwest and Their Relationships', ' Paper presented at a seminar, the Amerind Foundation.'); INSERT INTO "work" VALUES (1608, NULL, '2003', 0, 'Jill E. Neitzel, 0', 'Three Questions about Pueblo Bonito', ' In Pueblo Bonito: Center of the Chacoan World, edited by Jill E. Neitzel. Smithsonian Institution Press, Washington, D.C.'); INSERT INTO "work" VALUES (1887, NULL, '1999', 0, 'Polly Schaafsma, 0', 'Tlalocs, Katchinas, Sacred Bundles, and Related Symbolism in the Southwest and Mesoamerica', ' In The Casas Grandes World, edited by Curtis F. Schaafsma and Carroll L. Riley. University of Utah Press, Salt Lake City.'); INSERT INTO "work" VALUES (1030, NULL, '1933', 0, 'R. A. Keech, 0', 'To Chaco Canyon (By Way of Laguna, Enchanted Mesa and Acoma)', ' El Palacio 35:161-181.'); INSERT INTO "work" VALUES (602, NULL, '1984', 0, 'Gary Feinman, 0; Jill Neitzel, 1', 'Too Many Types: An Overview of Sedentary Pre-State Societies in the Americas', ' In Advances in Archaeological Method and Theory, Vol. 7, edited by Michael B. Schiffer, pp. 39-102. Academic Press, New York.'); INSERT INTO "work" VALUES (402, NULL, '1994', 0, 'Linda S. Cordell, 0; J. Kelley, 1; K. Kintigh, 2; S. Lekson, 3; R. Sinclair, 4', 'Toward Increasing Our Knowledge of the Past: A Discussion', ' In Understanding Complexity in the Prehistoric Southwest, edited by George J. Gumerman and Murray Gill-Mann, pp. 163-191. Addisson Wesley, Reading, MA.'); INSERT INTO "work" VALUES (398, NULL, '2001', 0, 'Linda S. Cordell, 0; Stephen R. Durand, 1; Ronald C. Antweiler, 2; Howard E. Taylor, 3', 'Toward Linking Maize Chemistry to Archaeological Agricultural Sites in the North American Southwest', ' Journal of Archaeological Science 28(501-513.'); INSERT INTO "work" VALUES (2541, NULL, '1987', 0, 'Thomas C. Windes, 0; Robert Vaughn, 1', 'Trace Elements Analysis of Ponderosa Pine: A Preliminary Report', ' In Investigations at the Pueblo Alto Complex, Chaco Canyon, New Mexico, 1975-1979. Volume IV. Microfiche, edited by Thomas C. Windes and Frances Joan Mathien, pp. MF-50-MF-57. Publications in Archeology 18F, Chaco Canyon Studies. National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (1979, NULL, '1970', 0, 'Anne C. Sigleo, 0', 'Trace-Element Geochemistry of Southwestern Turquoise', ' Unpublished M.S. thesis, Geology Department, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (393, NULL, '1995', 0, 'Linda S. Cordell, 0', 'Tracing Migration Pathways from the Receiving End', ' Journal of Anthropological Archaeology 14(2):203-211.'); INSERT INTO "work" VALUES (2230, NULL, '1997', 0, 'Ruth M. Van Dyke, 0', 'Tracking the Trachyte Boundary: A Southern Perspective on Exchange and Interaction among Chacoan Communities', ' Paper presented at the 62nd Annual Meeting of the Society for American Archaeology, Nashville.'); INSERT INTO "work" VALUES (2134, NULL, '2002', 0, 'Jonathan Till, 0; Winston Hurst, 1', 'Trail of the Ancients: A Network of Ancient Roads and Great Houses in Southeastern Utah', ' Paper presented at the 67th Annual Meeting of the Society for American Archaeology, Denver.'); INSERT INTO "work" VALUES (985, NULL, '1981', 0, 'W. James Judge, 0', 'Transect Sampling in Chaco Canyon-Evaluation of a Survey Technique', ' Part Three in Archeological Surveys of Chaco Canyon, New Mexico, by Alden C.Hayes, David M. Brugge, and W. James Judge, pp. 107-137. Publications in Archeology 18A, Chaco Canyon Studies. National Park Service, Washington, D.C.'); INSERT INTO "work" VALUES (1391, NULL, '1984', 0, 'Frances Joan Mathien, 0', 'Travertine Versus Shell: A Problem in Identification of Materials Found in Archaeological Sites', ' In Collected Papers in Honor of Harry L. Hadlock, edited by Nancy L. Fox, pp. 93-112. Papers of the Archaeological Society of New Mexico: 9. Albuquerque Archaeological Society Press.'); INSERT INTO "work" VALUES (797, NULL, '1933', 0, 'Florence M. Hawley, 0', 'Tree Ring Chronology in Chaco Canyon', ' El Palacio 34:204.'); INSERT INTO "work" VALUES (501, NULL, '1937', 0, 'Andrew E. Douglass, 0', 'Tree Rings and Chronology', ' University of Arizona Physical Sciences Bulletin No. 1. University of Arizona Bulletin 8(4).'); INSERT INTO "work" VALUES (497, NULL, '1932', 0, 'Andrew E. Douglass, 0', 'Tree Rings and Their Relation to Solar Variations and Chronology', ' In Annual Report of the Smithsonian Institution for 1931, p. 304-312. Government Printing Office, Washington, D.C.'); INSERT INTO "work" VALUES (1954, NULL, '1937', 0, 'Donovan Senter, 0', 'Tree Rings, Valley Floor Deposition, and Erosion in Chaco Canyon', ' American Antiquity 3:68-75.'); INSERT INTO "work" VALUES (476, NULL, '2001', 0, 'Jared Diamond, 0', 'Tree Trail to Chaco Canyon', ' Nature 413:687-690. October 20.'); INSERT INTO "work" VALUES (504, NULL, '1955', 0, 'Andrew E. Douglass, 0', 'Tree ring Calendars', ' In National Geographic on Indians of the Americas pp. 338-339. National Geographic Society, Washington, D.C.'); INSERT INTO "work" VALUES (143, NULL, '1953', 0, 'Bryant Bannister, 0', 'Tree-Ring Analysis as Applied to the Dating of Kin Kletso Ruin, Chaco Canyon, New Mexico', ' Unpublished M.A. thesis, Department of Anthropology, University of Arizona, Tucson.'); INSERT INTO "work" VALUES (149, NULL, '1970', 0, 'Bryant Bannister, 0; William J. Robinson, 1; Richard L. Warren, 2', 'Tree-Ring Dates from New Mexico A, G-H, Shiprock-Zuni-Mt', 'Taylor Area. Laboratory of Tree-Ring Research, University of Arizona, Tucson.'); INSERT INTO "work" VALUES (812, NULL, '1940', 0, 'Florence M. Hawley, 0; Neil M. Clark, 1', 'Trees Do Not Lie', ' American Forests 46(1):66-68, 95-96.'); INSERT INTO "work" VALUES (545, NULL, '1999', 0, 'Stehpen H. Durand, 0; Phillip H. Shelley, 1; Ronald C. Antweiler, 2; Howard E. Taylor, 3', 'Trees, Chemistry, and Prehistory in the American Southwest', ' Journal of Archaeological Science 26:185-203.'); INSERT INTO "work" VALUES (2145, NULL, '1984', 0, 'H. Wolcott Toll, III, 0', 'Trends in Ceramic Import and Distribution in Chaco Canyon', ' In Recent Research on Chaco Prehistory, edited by W. James Judge and John D. Schelberg, pp. 115-135. Reports of the Chaco Center No. 8. Division of Cultural Research, National Park Service, Albuquerque.'); INSERT INTO "work" VALUES (1418, NULL, '1998', 0, 'Frances Joan Mathien, 0', 'Tri-Cultural Use of the Cerrillos Mines', ' CRM Cultural Resource Management 21(7):49-52.'); INSERT INTO "work" VALUES (1414, NULL, '1996', 0, 'Frances Joan Mathien, 0', 'Trials and Troubles with Turquoise Tests', ' Paper presented at the Bead Expo ''96, San Antonio.'); INSERT INTO "work" VALUES (253, NULL, '1977', 0, 'David M. Brugge, 0', 'Tsegai: An Archeological Ethnohistory of the Chaco Region', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published in 1986.'); INSERT INTO "work" VALUES (262, NULL, '1986', 0, 'David M. Brugge, 0', 'Tsegai: An Archeological Ethnohistory of the Chaco Region', ' National Park Service, Washington, D.C.'); INSERT INTO "work" VALUES (232, NULL, '1937', 0, 'Donald D. Brand, 0; Florence M. Hawley, 1; Frank C. Hibben, 2', 'Tseh So, A Small House Ruin, Chaco Canyon, New Mexico', ' Preliminary Report. University of New Mexico Bulletin No. 308, Anthropological Series 2(2). University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1448, NULL, '1971', 0, 'Martin T. Mayer, 0', 'Tsin Kletzin and Pueblo Bonito, Stabilization Report, Chaco Canyon National Monument, 1971', ' Stabilization report on file in the NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (209, NULL, '1983', 0, 'James E. Bradford, 0; Judy L. Miles, 1', 'Turkey House Burials #8 and #9', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2393, NULL, '1977', 0, 'Phil C. Weigand, 0; Garman Harbottle, 1; Edward V. Sayre, 2', 'Turquoise Sources and Source Analysis: Mesoamerica and the Southwestern U', '.A. In Exchange Systems in Prehistory, edited by Timothy Earle and Jonathan Ericson, pp. 15-34. Academic Press, New York.'); INSERT INTO "work" VALUES (766, NULL, '1992', 0, 'Garman Harbottle, 0; Phil C. Weigand, 1', 'Turquoise in Pre-Columbian America', ' Scientific American 266(2):78-85.'); INSERT INTO "work" VALUES (944, NULL, '1924', 0, 'Neil Merton Judd, 0', 'Two Chaco Canyon Pithouses', ' In Annual Report for 1922, Smithsonian Institution, pp. 399-413. Washington, D.C.'); INSERT INTO "work" VALUES (502, NULL, '1937', 0, 'Andrew E. Douglass, 0', 'Typical Tree Ring Record from Chaco Canyon 700-850', ' CK-31. Tree-Ring Bulletin 3(3):20-21. University of Arizona, Tucson.'); INSERT INTO "work" VALUES (696, NULL, '1984', 0, 'William B. Gillespie, 0', 'Una Vida', ' In Great Pueblo Architecture of Chaco Canyon, New Mexico, edited by Stephen H. Lekson, pp. 79-94. Publications in Archeology 19B, Chaco Canyon Studies, National Park Service, Washington, D.C.'); INSERT INTO "work" VALUES (2195, NULL, '1979', 0, 'Jospeh J. Trott, 0', 'Una Vida Ruin, Chaco Canyon National Monument, New Mexico', ' Stabilization Report on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (882, NULL, '1993', 0, 'Winston Hurst, 0; Owen Severance, 1; Dale Davidson, 2', 'Uncle Albert''s Ancient Roads', ' Blue Mountain Shadows 12.'); INSERT INTO "work" VALUES (860, NULL, '1953', 0, 'E. A. Hoebel, 0', 'Underground Kiva Passages', ' American Anthropologist 29:76.'); INSERT INTO "work" VALUES (1579, NULL, '1922', 0, 'Robert H. Moulton, 0', 'Unearthing a Prehistoric Apartment House', ' Travel 39:21-22, 40.'); INSERT INTO "work" VALUES (1368, NULL, '2001', 0, 'Debra L. Martin, 0; Nancy J. Akins, 1', 'Unequal Treatment in the Life as in Death: Trauma and Mortuary Behavioral La Plata (A', '. 1000-1300. In Ancient Burial Practices in the American Southwest: Archaeology, Physical Anthropology, and Native American Perspectives, edited by Douglas R. Mitchell and Judy L. Brunson-Hadley, pp. 223-248. University of New Mexico Press, Albuquerque.'); INSERT INTO "work" VALUES (225, NULL, '1936', 0, 'Donald D. Brand, 0', 'University of New Mexico Activities in the Canyon, 1935', ' American Antiquity 2(1):48.'); INSERT INTO "work" VALUES (230, NULL, '1937', 0, 'Donald D. Brand, 0', 'University of New Mexico Field Parties, 1936', ' American Antiquity 2(4):308-309.'); INSERT INTO "work" VALUES (206, NULL, '1980/1', 0, 'James E. Bradford, 0', 'Unpublished Notes and Maps on the Excavation at 29SJ597', ' Ms. on file, NPS Intermountain Region, Santa Fe.'); INSERT INTO "work" VALUES (2308, NULL, '1977', 0, 'R. Gwinn Vivian, 0', 'Untitled', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2377, NULL, '1977', 0, 'A. Helene Warren, 0', 'Unworked Stone from Bc 288', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1378, NULL, '1977', 0, 'Frances Joan Mathien, 0', 'Updated Report on Turquoise Analysis Project at Chaco Canyon', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1778, NULL, '1924', 0, 'J. B. Reeside, Jr., 0', 'Upper Cretaceous and Tertiary Formations of the Western Part of the San Juan Basin of Colorado and New Mexico', ' U.S. Geological Survey, Professional Paper 134. Washington, D.C.'); INSERT INTO "work" VALUES (1240, NULL, '1976', 0, 'Richard W. Loose, 0; Thomas R. Lyons, 1', 'Use of Aerial Photos in Archeological Survey along the Lower Chaco River Drainage', ' In Remote Sensing Experiments in Cultural Resources Studies. Non-destructive Methods of Archeological Exploration, Survey, and Analysis, assembled by Thomas R. Lyons, pp. 69-71. Reports of the Chaco Center No. 1. National Park Service and University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1460, NULL, '1979', 0, 'Joe W. McCharen, 0', 'Users Manual for CHACO MESH', ' Ms. on file, New Mexico Engineering Research Institute, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1645, NULL, '1939', 0, 'Douglas Osborne, 0', 'Utilized Minerals and Rocks and Their Sources', ' In Preliminary Report on the 1937 Excavations, Bc 50-51, Chaco Canyon, New Mexico, edited by Clyde Kluckhohn and Paul Reiter, pp. 54-57. University of New Mexico Bulletin No. 345, Volume 3, No. 2. University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1007, NULL, '1933', 0, 'Hurst R. Julian, 0', 'Valley of the Ancient Pueblos-The Chaco Canyon-El Pueblo Bonito', ' New Mexico Magazine 11(10):7-9, 49-50.'); INSERT INTO "work" VALUES (1819, NULL, '1995', 0, 'Jonathan E. Reyman, 0', 'Value in Mesoamerican-Southwestern Trade', ' In The Gran Chichimeca: Essays on the Archaeology and Ethnohistory of Northern Mesoamerica, edited by Jonathan E. Reyman, pp. 271-280. Avebury-Ashgate Worldwide Archaeology Series No. 12. Alldershat and Brookfield, VT.'); INSERT INTO "work" VALUES (1801, NULL, '1979', 0, 'Jonathan E. Reyman, 0', 'Vandalism and Site Destruction at Some National Parks and Monuments: A Call for Action', ' American Association for Conservation Archaeology 6(4):4-9.'); INSERT INTO "work" VALUES (854, NULL, '1937', 0, 'Frank C. Hibben, 0', 'Vegetal Remains', ' In Tseh So, a Small House Ruin, Chaco Canyon, New Mexico. Preliminary Report, by Donald D. Brand, Florence M. Hawley, and Frank C. Hibben et al., pp. 107-111. University of New Mexico Bulletin No. 308, Anthropological Series 2(2). University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (634, NULL, '1993', 0, 'Lisa Floyd-Hanna, 0; David D. Hanna, 1; Frank Hays, 2; Ken Heil, 3', 'Vegetation Inventory of Chaco Culture National Historic Park', ' Final Report. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (633, NULL, '1995', 0, 'Lisa Floyd-Hanna and David Hanna', 'Vegetation Studies at Chaco Culture National Historical Park', ' Ms. Final report to SPMA and Environmental Studies Program, Prescott College.'); INSERT INTO "work" VALUES (437, NULL, '1985', 0, 'Anne C. Cully, 0; Jack F. Cully Jr. , 1', 'Vegetative Cover Diversity and Annual Plant Productivity, Chaco Canyon, New Mexico', ' Castetter Laboratory for Ethnobotanical Studies Technical Series No. 134. Department of Biology, University of New Mexico, Albuquerque. Published in 1985.'); INSERT INTO "work" VALUES (438, NULL, '1985', 0, 'Anne C. Cully, 0; Jack F. Cully, Jr., 1', 'Vegetative Cover Diversity and Annual Plant Productivity, Chaco Canyon, New Mexico', ' In Environment and Subsistence of Chaco Canyon, New Mexico, edited by Frances Joan Mathien, pp. 47-78. Publications in Archeology 18E, Chaco Canyon Studies. National Park Service, Albuquerque.'); INSERT INTO "work" VALUES (2020, NULL, '1981', 0, 'Anna Sofaer, 0; Sheila Rotner, 1', 'Vernal Equinox 1981', ' Solstice Project Inc., Washington, D.C.'); INSERT INTO "work" VALUES (699, NULL, '1993', 0, 'William B. Gillespie, 0', 'Vertebrate Remains from 29SJ629', ' In The Spadefoot Toad Site: Investigations at 29SJ629, Chaco Canyon, New Mexico. Artifactual and Biological Analyses. Volume II, edited by Thomas C. Windes, pp. 343-395. Report s of the Chaco Center No. 12. Branch of Cultural Research, National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (688, NULL, '1982', 0, 'William B. Gillespie, 0', 'Vertebrate Remains from Atlatl Cave, Chaco Canyon, New Mexico', ' Preliminary Draft. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (689, NULL, '1982', 0, 'William B. Gillespie, 0', 'Vertebrate Remains, Macrobotanical Remains, Pottery, and Unfired Clay from the 1981 Test Excavation of 29SJ178, Northwestern New Mexico', ' Ms. on file, NPS Library, Santa Fe. Published, in part, in 1984.'); INSERT INTO "work" VALUES (1345, NULL, '1998', 0, 'Anne Lawrason Marshall, 0', 'Viewing the Chacoan Landscape with QuickTime VR Panoramas', ' Presentation at the J. B.Jackson and the American Landscape Conference, Albuquerque.'); INSERT INTO "work" VALUES (1662, NULL, '1883', 0, 'Stephen D. Peet, 0', 'Village Habitations', ' American Antiquarian 5:150-172.'); INSERT INTO "work" VALUES (1366, NULL, '1997', 0, 'Debra L. Martin, 0', 'Violence Against Women in the La Plata River Valley (A', '. 1000-1300). In Troubled Times: Violence and Warfare in the Past, edited byD. L. Martin and D. W. Frayer, pp. 45-76. Gordon and Breach Publishers, Amsterdam.'); INSERT INTO "work" VALUES (1119, NULL, '1999', 0, 'Steven A. LeBlanc, 0', 'Violence in the Prehistoric Southwest', ' Discovering Archaeology 1. May-June. Leach Publishing Co., El Paso.'); INSERT INTO "work" VALUES (113, NULL, '1957', 0, 'C. R. Appledorn, 0; H. E. Wright, 1', 'Volcanic Structures in the Chuska Mountains, Arizona-New Mexico', ' Geological Society of America Bulletin 68(Pt. 1):445-467.'); INSERT INTO "work" VALUES (2257, NULL, '1934', 0, 'R. Gordon Vivian, 0', 'Wall Preservation of Pueblo Bonito', ' Ms. on file, Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (214, NULL, '1993', 0, 'Bruce Bradley, 0', 'Wallace Ruin', ' Implications for Outlier Studies. In The Chimney Rock Symposium, October 20-21, 1980, Durango, Colorado, edited by J. McKim Malville and Gary Matlock, pp. 72-75. USDA Forest Service General Technical Report RM-227. Rocky Mountain Forest Research and Experimental Station. Fort Collins.'); INSERT INTO "work" VALUES (212, NULL, '1984', 0, 'Bruce Bradley, 0', 'Wallace Ruin and the Chaco Phenomenon', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (213, NULL, '1988', 0, 'Bruce Bradley, 0', 'Wallace Ruin, Interim Report', ' Southwestern Lore 54(2):8-33.'); INSERT INTO "work" VALUES (1196, NULL, '1999', 0, 'Stephen H. Lekson, 0', 'War and Peach in the Southwest-Special Report: Wars, Witches, and Cannibals', ' Discovering Archaeology 1(3). May-June. Leach Publications, El Paso.'); INSERT INTO "work" VALUES (1201, NULL, '2002', 0, 'Stephen H. Lekson, 0', 'War in the Southwest, War in the World', ' American Antiquity 67(4):607-624.'); INSERT INTO "work" VALUES (411, NULL, '1987', 0, 'Patricia L. Crown, 0; W. James Judge, 1', 'Water Storage in the Prehistoric Southwest', ' The Kiva 52(3):209-228'); INSERT INTO "work" VALUES (2246, NULL, '2001', 0, 'Mark D. Varien, 0', 'We Have Learned a Lot, But We Still Have More to Learn', ' In Chaco Society and Polity: Papers from the 1999 Conference, edited by Linda S. Cordell, W. James Judge, and June-el Piper, pp. 47-61. NMAC Special Publication No. 4. New Mexico Archeological Council, Albuquerque.'); INSERT INTO "work" VALUES (1048, NULL, '1933', 0, 'Dorothy Keur, 0', 'Weekly Report', ' Archive 1869, 1870, 1871, 1872, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1008, NULL, '1933', 0, 'Hurst R. Julian, 0', 'Weekly Report, June 15-22, and July 8-15, 1933', ' Archives 1887 and 1888, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1553, NULL, '1977', 0, 'James R. Morgan, 0', 'Were Chaco''s Great Kivas Ancient Computers of Astronomy? El Palacio 83(1)28-39', 'March.'); INSERT INTO "work" VALUES (1643, NULL, '1994', 0, 'Simon J. Ortiz, 0', 'What We See: A Perspective on Chaco Canyon and Its Ancestry', ' In Chaco Canyon: A Center and Its World, by Mary Peck, Stephen H. Lekson, John R. Stein, and Simon J. Ortiz, pp. 65-72. Museum of New Mexico Press, Santa Fe.'); INSERT INTO "work" VALUES (1604, NULL, '2000', 0, 'Jill E. Neitzel, 0', 'What is a Regional System? Issues of Scale and Interaction in the Prehistoric Southwest', ' In The Archaeology of Regional Interaction: Religion, Warfare, and Exchange Across the American Southwest, edited by Michelle Hegmon, pp. 25-40. University Press of Colorado, Boulder.'); INSERT INTO "work" VALUES (2359, NULL, '1934', 0, 'Eagle Walking, 0', 'What of Chaco Canyon', ' El Palacio 37:114-116.'); INSERT INTO "work" VALUES (363, NULL, '1921', 0, 'Kenneth M. Chapman, 0', 'What the Potsherds Tell', ' Art and Archaeology 11(1-2):39-44.'); INSERT INTO "work" VALUES (2356, NULL, '1998', 0, 'William H. Walker, 0', 'Where Are the Witches in Prehistory? Journal of Archaeological Method and Theory 5(3):245-308', NULL); INSERT INTO "work" VALUES (362, NULL, '1940', 0, 'H. H. Chapman, 0', 'Why Aborigines Left Chaco Canyon', ' Forests 46(98):73.'); INSERT INTO "work" VALUES (1631, NULL, '1975', 0, 'Larry Nordby, 0', 'Wijiji Ruin Stabilization and Support Data for Emergency and Comprehensive Estimates', ' Ms. on file, Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (7, NULL, '1976', 0, 'Stephen E. Adams, 0', 'Wijiji Ruin, Chaco Canyon National Monument, New Mexico', ' Western Archeological Center, Tucson. Stabilization report on file in the NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (2610, NULL, '1983', 0, 'Michael Zeilik, 0; Richard Elston, 1', 'Wijiji at Chaco Canyon: A Winter Solstice Sunrise and Sunset Location', ' Archaeoastronomy VI(1-4):66-73'); INSERT INTO "work" VALUES (2269, NULL, '1940', 0, 'R. Gordon Vivian, 0', 'Wijiji, Chaco Canyon National Monument', ' Stabilization report on file in NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (2196, NULL, '1979', 0, 'Jospeh J. Trott, 0', 'Wijiji, Chaco Culture National Historical Park, New Mexico', ' 2 volumes. Stabilization Report on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (775, NULL, '1961', 0, 'Lyndon L. Hargrave, 0', 'Wild Birds Identified from Bones from Una Vida Pueblo in Chaco Canyon National Monument', ' Ms. on file, National Park Service, Western Archaeological and Conservation Center, Tucson.'); INSERT INTO "work" VALUES (550, NULL, '1997', 0, 'William G. Dunmire, 0; Gail D. Tierney, 1', 'Wild Plants and Native Peoples of the Four Corners', ' Museum of New Mexico Press, Santa Fe.'); INSERT INTO "work" VALUES (2357, NULL, '1999', 0, 'William H. Walker, 0', 'Witchcraft: Bloody Purges of Black Magic May Explain Evidence of Southwestern Violence', ' Discovering Archaeology1(3).'); INSERT INTO "work" VALUES (1408, NULL, '1992', 0, 'Frances Joan Mathien, 0', 'Women of Chaco: Then and Now', ' In Rediscovering Our Past: Essays on the History of American Archaeology, edited by Jonathan E. Reyman, pp. 103-130. Avebury Press, Glasgow.'); INSERT INTO "work" VALUES (1399, NULL, '1989', 0, 'Frances Joan Mathien, 0', 'Women of Chaco: Then and Now', ' Paper presented at the 54th Annual Meeting of the Society for American Archaeology, Atlanta. Published in 1992.'); INSERT INTO "work" VALUES (2335, NULL, '1975', 0, 'R. Gwinn Vivian, 0; Dulce N. Dodgen, 1; Gayle H. Hartmann, 2', 'Wooden Ritual Artifacts from Chaco Canyon, New Mexico', ' The Chetro Ketl Collection. Submitted in fulfillment of Contract 4940P21004. Chaco Archive 2017, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published in 1978.'); INSERT INTO "work" VALUES (2336, NULL, '1978', 0, 'R. Gwinn Vivian, 0; Dulce N. Dodgen, 1; Gayle H. Hartmann, 2', 'Wooden Ritual Artifacts from Chaco Canyon, New Mexico', ' The Chetro Ketl Collection. Anthropological Papers Series No. 32. University of Arizona, Tucson.'); INSERT INTO "work" VALUES (2525, NULL, '1996', 0, 'Thomas C. Windes, 0', 'Work at Navajo Springs, AZ', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1882, NULL, '1980', 0, 'Robert Lee Sappington, 0', 'X-ray Fluorescence Analysis of Obsidian Artifacts from Chaco Canyon, New Mexico', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1478, NULL, '1981', 0, 'Peter J. McKenna, 0; H. Wolcott Toll, 1', 'Ye Ceramics at Shabik''eshchee', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2171, NULL, '1980', 0, 'Mollie S. Toll, 0', 'Zea mays Remains Recovered during Excavation of 29SJ1360', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (122, NULL, '1928', 0, 'Florence M. Bailey, 0', '[Bird Observations at Chaco Canyon]', 'In Birds of New Mexico, by Florence M. Bailey, p. 42. New Mexico Game and Fish Commission, Santa Fe.'); INSERT INTO "work" VALUES (669, NULL, '1932', 0, 'Robert Frothingham, 0', '[Chaco Canyon National Monument]', 'In Trails Through the Golden West, by Robert Frothingham, p. 267. McBride, New York.'); INSERT INTO "work" VALUES (1755, NULL, '1923', 0, 'Vernon Quinn, 0', '[Chaco Canyon National Monument]', ' In Beautiful America, by Vernon Quinn, pp. 278. F. A. Stokes Co., New York.'); INSERT INTO "work" VALUES (61, NULL, '1907', 0, 'G. B. Anderson, 0', '[Chaco Canyon Ruins and Relics]', ' In History of New Mexico, Vol. 2, by G. B. Anderson, pp. 860-861. Pacific States Publishing Co., New York.'); INSERT INTO "work" VALUES (916, NULL, '1920', 0, 'George Wharton James, 0', '[Chaco Canyon]', 'In New Mexico: The Land of the Delight Makers, by George Wharton James, p. 246. Page, Boston.'); INSERT INTO "work" VALUES (118, NULL, '1924', 0, 'Mary Austin, 0', '[Chaco Canyon]', 'In The Land of Journey''s Ending, by Mary Austin, pp. 103-112. Century, New York.'); INSERT INTO "work" VALUES (2577, NULL, '1919', 0, 'Robert S. Yard, 0', '[Chaco Canyon National Monument]', 'In The Book of the National Parks, by Robert S. Yard, pp. 381-382. Charles Scribner''s Sons, New York.'); INSERT INTO "work" VALUES (492, NULL, '1903', 0, 'George A. Dorsey, 0', '[Chaco Canyon]', 'In Indians of the Southwest by George A. Dorsey, pp. 55-56, 58-59. Atchison, Topeka and Santa Fe Railroad, Chicago.'); INSERT INTO "work" VALUES (141, NULL, '1892', 0, 'Adolph F. A. Bandelier, 0', '[Chaco Canyon]', 'In Final Report of Investigations Among the Indians of the Southwestern United States, Carried Out Mainly in the Years from 1880-1895. Papers of the Archaeological Institute of America, American Series 4, Part II, pp. 302-305.'); INSERT INTO "work" VALUES (1961, NULL, '1907', 0, 'Millard K. Shaler, 0', '[Coal Beds of Chaco Canyon]', ' U.S. Geological Survey Bulletin 316:399-409. Washington, D.C.'); INSERT INTO "work" VALUES (123, NULL, '1931', 0, 'Vernon Bailey, 0', '[Mammals of Chaco Canyon]', 'In Mammals of New Mexico, by Vernon Bailey, pp. 107, 161, 223-225, 260. U.S. Department of Agriculture, Bureau of Biological Surveys of American Fauna, No. 53. Government Printing Office, Washington, D.C.'); INSERT INTO "work" VALUES (907, NULL, '1929', 0, 'William H. Jackson, 0; Howard R. Driggs, 1', '[Photographic Work in Chaco Canyon]', 'In The Pioneer Photographer, by William H. Jackson and Howard L. Driggs, pp. 286-289. World Book Co., Yonkers-on-Hudson.'); INSERT INTO "work" VALUES (1962, NULL, '1894', 0, 'Nathaniel S. Shaler, 0', '[Prehistoric Ruins of Chaco Canyon, Canyon de Chelly, and Casa Grande]', ' In The United States of America, Volume 1, by Nathaniel S. Shaler, pp. 236-239. Appleton, New York.'); INSERT INTO "work" VALUES (2192, NULL, '1929', 0, 'Frank H. Trego, 0', '[Pueblo Bonito, Chaco Canyon]', ' In Boulevarded Old Trails in the Great Southwest, by Frank H. Trego, p. 189. Greenberg, NY.'); INSERT INTO "work" VALUES (856, NULL, '1878', 0, 'Richard J. Hinton, 0', '[Pueblo Bonito, Chaco Canyon]', 'In The Hand-Book to Arizona: Its Resources, History, Towns, Mines, Ruins, and Scenery, by Richard J. Hinton, pp. 428-429. Payot, Upham, San Francisco.'); INSERT INTO "work" VALUES (1842, NULL, '1928', 0, 'Will H. Robinson, 0', '[Pueblo Bonito, Chaco Canyon]', ' In Under Turquoise Skies, by Will H. Robinson, pp. 34, 36. Macmillan, New York.'); INSERT INTO "work" VALUES (1670, NULL, '1904', 0, 'Stephen D. Peet, 0', '[Pueblo Bonito, Chaco Canyon]', ' In Ancient Monuments and Ruined Cities, by Stephen D. Peet, pp. 241-243. Office of the American Antiquarian, Chicago.'); INSERT INTO "work" VALUES (455, NULL, '1915', 0, 'Nelson H. Darton, 0', '[Pueblo Bonito, Chaco Canyon]', 'In Guidebook of the Western United States, Part C. The Santa Fe Route, p. 100. U.S. Geological Survey Bulletin 613. Government Printing Office, Washington.'); INSERT INTO "work" VALUES (1559, NULL, '1934', 0, 'Ann A. Morris, 0', '[Pueblo Bonito, Chaco Canyon]', ' In Digging in the Southwest, by Ann A. Morris, pp. 79-111. Doubleday, Doran, New York.'); INSERT INTO "work" VALUES (1267, NULL, '1915', 0, 'Charles F. Lummis, 0', '[Pueblo Pintado]', ' In Some Strange Corners of Our Country, by Charles F. Lummis, p. 113. Century, New York.'); INSERT INTO "work" VALUES (1306, NULL, '1929', 0, 'R. V. D. Magoffin, 0; Emily C. Davis, 1', '[Relics from Pueblo Bonito and Chetro Ketl Ruins]', ' In Magic Spades, the Romance of Archaeology, by R. V. D. Magoffin and Emily C. Davis, pp. 218-233. Henry Holt, New York.'); INSERT INTO "work" VALUES (1056, NULL, '1924', 0, 'Alfred V. Kidder, 0', '[Ruin, Pottery, and Culture of Chaco Canyon]', 'In An Introduction to the Study of Southwestern Archaeology, pp. 49-57. Papers of the Southwest Expedition No. 1, Phillips Academy, Department of Archaeology. Yale University Press, New Haven.'); INSERT INTO "work" VALUES (456, NULL, '1931', 0, 'Emily C. Davis, 0', '[Ruins at Chaco Canyon', ' Pueblo Bonito]. In Ancient Americans, by Emily C. Davis, pp. 90-92. Kenry Holt, New York.'); INSERT INTO "work" VALUES (1108, NULL, '1891', 0, 'Horatio O. Ladd, 0', '[Ruins in Chaco Canyon]', 'In The Story of the States: The Story of New Mexico, by Horatio O. Ladd, pp. 176-185. Lothrop, Boston.'); INSERT INTO "work" VALUES (137, NULL, '1875', 0, 'Hubert H. Bancroft, 0', '[Ruins, Pottery, and Hieroglyphics of Chaco Canyon]', 'In The Native Races of the Pacific States of North America, by Hubert H. Bancroft, pp. 653-661. Appleton, New York.'); INSERT INTO "work" VALUES (2216, NULL, '1911', 0, 'Ralph E. Twitchell, 0', '[Southwestern Prehistoric Ruins]', 'In The Leading Facts of New Mexico History, Volume 1 by Ralph E. Twitchell, pp. 43-45. Torch Press Cedar Rapids, IA.'); INSERT INTO "work" VALUES (1750, NULL, '1907', 0, 'T. Mitchell Prudden, 0', '[The Chaco Canyon Ruins]', ' In On the Great American Plateau, by T. Mitchell Prudden, pp. 150, 198-200. G. P. Putnam''s Sons, New York.'); INSERT INTO "work" VALUES (405, NULL, '1874', 0, 'Samuel Woodworth Cozzens, 0', '[The Chaco Canyon Ruins]', 'In The Marvelous Country: Or Three Years in Arizona and New Mexico, the Apaches'' Home, pp. 433-440. Shepard and Gill, Boston.'); INSERT INTO "work" VALUES (1976, NULL, '1882', 0, 'John T. Short, 0', '[The Chaco Canyon Ruins]', ' In The North Americans of Antiquity, by John T. Short, pp. 290-293. Harper & Bros., New York.'); INSERT INTO "work" VALUES (593, NULL, '1920', 0, 'John T. Faris, 0', '[The Pueblo Bonito Ruin, Chaco Canyon]', 'In Seeing the Far West, by John T. Faris, p. 143. J. B. Lippincott Co., Philadelphia.'); INSERT INTO "work" VALUES (612, NULL, '1933', 0, 'Harvey Fergusson, 0', '[The Pueblo Bonito Ruin, Chaco Canyon]', 'In Rio Grande, by Harvey Fergusson, pp. 21-22. Alfred A. Knopf, New York.'); INSERT INTO "work" VALUES (731, NULL, '1916', 0, 'Herbert E. Gregory, 0', '[The Ruins and Ancient Inhabitants of Chaco Canyon]', 'In U.S. Geological Survey, Water-Supply Paper 380, No. 24, pp. 148-149. Government Printing Office, Washington, D.C.'); INSERT INTO "work" VALUES (614, NULL, '1919', 0, 'Jesse W. Fewkes, 0', '[Types of Ruins at Chaco Canyon, Casa Grande, and Mesa Verde]', ' Bureau of American Ethnology Bulletin 70:68-76. Government Printing Office, Washington, D.C.'); INSERT INTO "work" VALUES (2429, NULL, '1979', 0, 'Jane Whitmore, 0', 'an Archaeological Survey near Prewitt, New Mexico', ' Contract Archaeology Progress Report No. 74. School of American Research, Santa Fe.'); INSERT INTO "work" VALUES (2354, NULL, '1983', 0, 'Walter Wait, 0; Ben A. Nelson , 1', 'The Star Lake Archaeological Project', ' Anthropology of a Headwaters Area of Chaco Wash, New Mexico. Publications in Archaeology. Southern Illinois University, Carbondale.'); INSERT INTO "work" VALUES (2402, NULL, '1983', 0, 'Stephen G. Wells, 0; David W. Love, 1; Thomas W. Gardner , 2', 'Chaco Canyon Country', ' A Field Guide to the Geomorphology, Quaternary Geology, Paleoecology, and Environmental Geology of Northwestern New Mexico. American Geomorphological Field Group 1983 Field Trip Guidebook. Adobe Press, Albuquerque.'); INSERT INTO "work" VALUES (2551, NULL, '1982', 0, 'Regge N. Wiseman, 0', ' Archeological Excavations near Lake Valley, San Juan County, New Mexico', ' Laboratory of Anthropology Note 308. Museum of New Mexico, Santa Fe.'); INSERT INTO "work" VALUES (8, NULL, '1981', 0, 'Stephen E. Adams, 0', NULL, ' Chaco Culture National Historical Park, General Management Plan, Cultural Resources. Management plan on file in the NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (161, NULL, '1982', 0, 'John D. Beal, 0', ' Archaeological Investigations in the Eastern Red Mesa Valley: The Plains/Escalante Generating Station', ' School of American Research, Santa Fe.'); INSERT INTO "work" VALUES (184, NULL, '1990', 0, 'Julio L. Betancourt, 0; Thomas R. Van Devender, 1; Paul S. Martin , 2', 'Packrat Middens', ' The Last 40,000 Years of Biotic Change. The University of Arizona Press, Tucson.'); INSERT INTO "work" VALUES (226, NULL, '1936', 0, 'Donald D. Brand, 0', NULL, ' Symposium on Prehistoric Agriculture. University of New Mexico, Archaeological Series Nos. 1 and 2, Bulletin No. 296(1):5.'); INSERT INTO "work" VALUES (242, NULL, '1982', 0, 'Cory Dale Breternitz, 0; David E. Doyel, 1; Michael P. Marshall , 2', 'Bis sa''ani: A Late Bonito Phase Community on Escavada Wash, Northwest New Mexico', ' Navajo Nation Papers in Anthropology No. 14. (3 vol.). Window Rock, AZ.'); INSERT INTO "work" VALUES (508, NULL, '1981', 0, 'David E. Doyel, 0', 'The Evolution of Regional Diversity in the Prehistoric Southwest: Anasazi Pueblo and the Hohokam', ' Paper Presented at the Anasazi Conference, Mesa Verde National Park.'); INSERT INTO "work" VALUES (509, NULL, '1992', 0, 'David E. Doyel, 0', 'Anasazi Regional Organization and the Chaco System', ' Anthropological Papers No. 5. Maxwell Museum of Anthropology, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (510, NULL, '1992', 0, 'David E. Doyel, 0', 'Exploring Chaco', ' In Anasazi Regional Organization and the Chaco System, edited by Davied E. Doyel, pp. 3-14. Anthropological Papers No. 5. Maxwell Museum of Anthropology, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (631, NULL, '1994', 0, 'Thomas F. Fletcher, 0', 'Archaeological Data Recovery Excavations at the Sanders Great House and Six Other Sites along U', '. Highway 191, South of Sanders, Apache County, Arizona. Zuni Archaeological Program/ Report 471, Research Series No. 9. Pueblo of Zuni.'); INSERT INTO "work" VALUES (709, NULL, '1998', 0, 'Kelly A. Gilpin, 0; E. Van Hartesveldt , 1', 'Prehistoric Ceramics of the Puerco Valley: The 1995 Chambers-Sanders Trust Lands Ceramic Conference', ' Ceramic Series Nol 7, Museum of Northern Arizona, Flagstaff.'); INSERT INTO "work" VALUES (821, NULL, '1998', 0, 'Kelley Hays-Gilpin, 0; Eric von Hartesveldt , 1', 'Prehistoric Ceramics of the Puerco Valley', ' The 1995 Chambers-Sanders Trust Lands Ceramic Conference. Museum of Northern Arizona Ceramic Series No.7, and Navajo Nation, Flagstaff.'); INSERT INTO "work" VALUES (863, NULL, '1991', 0, 'Patrick Hogan, 0; Lynne Sebastian , 1', 'Archaeology of the San Juan Breaks: The Anasazi Occupation', ' Office of Contract Archaeology, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (895, NULL, '1972', 0, 'Cynthia Irwin-Williams, 0', NULL, ' The Structure of Chacoan Society in the Northern Southwest: Investigations at the Salmon Site-1972. Eastern New Mexico University Contributions in Anthropology 4(3). Portales.'); INSERT INTO "work" VALUES (904, NULL, '1991', 0, 'Cynthia Irwin-Williams, 0; Larry L. Baker , 1', 'Anasazi Puebloan Adaptation in Response to Climatic Stress: Prehistory of the Middle Rio Puerco Valley', ' Ms. on file, Bureau of Land Management, Albuquerque.'); INSERT INTO "work" VALUES (905, NULL, '1980', 0, 'Cynthia Irwin-Williams, 0; Phillip H. Shelley , 1', 'Investigations at Salmon Ruin: The Structure of Chacoan Society in the Northern Southwest', ' Volumes I-IV. Eastern New Mexico University Printing Services, Portales.'); INSERT INTO "work" VALUES (1079, NULL, '1939', 0, 'Clyde Kluckhohn, 0; Paul Reiter , 1', 'Preliminary Report on the 1937 Excavations, Bc 50-51, Chaco Canyon, New Mexico', ' University of New Mexico Bulletin 345, Anthropological Series 3(2). University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1147, NULL, '1983', 0, 'Stephen H. Lekson, 0', ' The Architecture and Dendrochronology of Chetro Ketl, Chaco Canyon, New Mexico', ' Reports of the Chaco Center No. 6. Division of Cultural Research, National Park Service, Albuquerque.'); INSERT INTO "work" VALUES (1264, NULL, '1937', 0, 'Dorothy L. Luhrs, 0', NULL, ' Hogan Number-Chaco Archaeological Station. El Palacio 43:71-90.'); INSERT INTO "work" VALUES (1286, NULL, '1979', 0, 'Thomas R. Lyons, 0; James I. Ebert, 1', ' Remote Sensing and Non-destructive Archeology: Proceedings of Symposium on Cultural Resources Management and Remote Sensing', ' National Park Service, Albuquerque.'); INSERT INTO "work" VALUES (1292, NULL, '1977', 0, 'Thomas R. Lyons, 0; Robert K. Hitchcock, 1', NULL, ' Aerial Remote Sensing Techniques in Archeology. Reports of the Chaco Center No. 2. National Park Service and University of New Mexico, Albuquerque'); INSERT INTO "work" VALUES (1299, NULL, '1980', 0, 'Thomas R. Lyons, 0; Frances Joan Mathien , 1', 'Cultural Resources Remote Sensing', ' Cultural Resources Management Division, National Park Service, Washington, D.C.'); INSERT INTO "work" VALUES (1305, NULL, '1979', 0, 'Pamela C. Magers, 0', 'Class I Cultural Resources Inventory of the Chaco, San Juan and Portions of the Cabezon Planning Units', ' Bureau of Land Management Contract YA-512-CT7-252. Report No. 289, Department of Sociology and Anthropology, New Mexico State University, Las Cruces.'); INSERT INTO "work" VALUES (1304, NULL, '1979', 0, 'Pamela C. Magers, 0', 'Cultural Resources Inventory of the Chaco, San Juan and Portions of the Cabezon Planning Units', ' Bureau of Land Management Contract YA-512-CT7-252. Report No. 288, Department of Sociology and Anthropology, New Mexico State University, Las Cruces.'); INSERT INTO "work" VALUES (1328, NULL, '1993', 0, 'J. McKim Malville, 0; Gary Matlock , 1', 'The Chimney Rock Archaeological Symposium, October 20-21, 1990, Durango, Colorado', ' U.S.D.A. Forest Service General Technical Report RM-227. Rocky Mountain Forest and Range Experimental Station, Fort Collins, CO.'); INSERT INTO "work" VALUES (1392, NULL, '1985', 0, 'Frances Joan Mathien, 0', ' Environment and Subsistence of Chaco Canyon, New Mexico', ' Publications in Archeology 18E, Chaco Canyon Studies. National Park Service, Albuquerque.'); INSERT INTO "work" VALUES (1402, NULL, '1991', 0, 'Frances Joan Mathien, 0', ' Excavations at 29SJ633: The Eleventh Hour Site, Chaco Canyon, New Mexico', ' Reports of the Chaco Center, No. 10. Branch of Cultural Research, National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (1406, NULL, '1992', 0, 'Frances Joan Mathien, 0', ' Excavations at 29SJ627, Chaco Canyon, New Mexico', ' Volume II. The Artifact Analyses. Reports of the Chaco Center No. 11. Branch of Cultural Reseasrch, National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (1416, NULL, '1997', 0, 'Frances Joan Mathien, 0', ' Ceramics, Lithics, and Ornaments of Chaco Canyon', ' Analyses of Artifacts from the Chaco Project, 1971-1978. Publications in Archeology 18G, Chaco Canyon Studies. National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (1431, NULL, '1987', 0, 'Frances Joan Mathien, 0; Thomas C. Windes, 1', ' Investigations at the Pueblo Alto Complex, Chaco Canyon, New Mexico 1975-1979', ' Volume III. Artifactual and Biological analyses. Publications in Archeology 18F, Chaco Canyon Studies, National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (1493, NULL, '1964', 0, 'Frank McNitt, 0', ' Navaho Expedition, Journal of a Military Reconnaissance from Santa Fe, New Mexico, to the Navajo Country Made in 1849 by Lieutenant James H', 'Simpson. University of Oklahoma, Norman.'); INSERT INTO "work" VALUES (1532, NULL, '1995', 0, 'Barbara J. Mills, 0; Patricia L. Crown , 1', 'Ceramic Production in the American Southwest', ' University of Arizona Press, Tucson.'); INSERT INTO "work" VALUES (1542, NULL, '1980', 0, 'James L. Moore, 0; Joseph C. Winter , 1', 'Human Adaptation in a Marginal Environment: The UII Mitigation Project', 'Office of Contract Archeology, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1602, NULL, '1999', 0, 'Jill E. Neitzel, 0', ' Great Towns and Regional Polities in the Prehistoric American Southwest and Southeast', ' Amerind Foundation and the University of New Mexico Press, Dragoon and Albuquerque.'); INSERT INTO "work" VALUES (1629, NULL, '1984', 0, 'David Grant Noble, 0', 'New Light on Chaco Canyon', ' An Issue of Exploration, the Annual Bulleting of the School of American Research, Santa Fe.'); INSERT INTO "work" VALUES (1630, NULL, '1997', 0, 'David Grant Noble, 0', 'Not All Roads Lead to', 'Chaco. American Archaeology 1(1):6-12. The Archaeological Conservancy, Albuquerque.'); INSERT INTO "work" VALUES (1695, NULL, '1982', 0, 'Fred Plog, 0; Walter Wait , 1', 'The San Juan Basin Tomorrow: Planning for the Conservation of Cultural Resources in the San Juan Basin', ' National Park Service, Southwest Region, and School of American Research, Santa Fe.'); INSERT INTO "work" VALUES (1771, NULL, '1992', 0, 'Lori Stephens Reed, 0; Paul F. Reed , 1', 'Cultural Diversity and Adaptation', ' The Archaic, Anasazi, and Navajo Occupation of the Upper San Juan Basin. Cultural Resources Series No. 9. Bureau of Land Management, New Mexico State Office, Santa Fe.'); INSERT INTO "work" VALUES (1930, NULL, '1997', 0, 'Jeanne A. Schutt, 0; Richard C. Chapman , 1', 'Cycles of Closure: A Cultural Resources Inventory of Fort Wingate Depot Activity, New Mexico', ' Office of Contract Archeology, University of New Mexico Report No. 195-551. Office of Contract Archeology, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1957, NULL, '1979', 0, 'Steven E. Sessions, 0', 'The Archaeology of Southwest Gallegos Mesa', ' The EPCC Survey Project. Navajo Nation Papers in Anthropology No. 1. Window Rock.'); INSERT INTO "work" VALUES (1982, NULL, '1984', 0, 'Alan H. Simmons, 0', ' Archaic Prehistory and Paleoenvironments in the San Juan Basin, New Mexico: The Chaco Shelters Project', ' Museum of Anthropology Project Report Series No. 53. University of Kansas, Lawrence.'); INSERT INTO "work" VALUES (1772, NULL, '1998', 0, 'L. S. Reed, 0; J. Goff and K. N. Hensler , 1', 'Exploring Ceramic Production, Distribution, and Exchange in the Southern Chuska Valley: Analytical Results from the El Paso Natural Gas North System Expansion Project', ' Vol. XI. Pipeline Archaeology 1990-1993: The el Paso Natural Gas North System Expansion Project, New Mexico and Arizona. Western Cultural Resource Management, Inc., Farmington, NM.'); INSERT INTO "work" VALUES (1881, NULL, '1995', 0, 'Vincent L. Santucci, 0; Lindsay McClelland , 1', 'National Park Service Paleontological Research', ' Technical Report NPS/NRPO/NRTR-95/16. National Park Service Natural Resources Publication Office, Denver.'); INSERT INTO "work" VALUES (2123, NULL, '1995', 0, 'Joseph A. Tainter, 0; Bonnie Bagley Tainter , 1', 'Evolving Complexity and Environmental Risk in the Prehistoric Southwest: Proceedings of the Workshop "Resource Stress, Economic Uncertainty, and Human Response in the Prehistoric Southwest," held February 25-29, 1992, in Santa Fe, NM', ' Addison-Wesley Publishing Co., Reading.'); INSERT INTO "work" VALUES (536, NULL, '1983', 0, 'Dwight L. Drager, 0; Thomas R. Lyons, 1', ' Remote Sensing in Cultural Resource Management: The San Juan Basin Project', ' Cultural Resources Management Division, National Park Service, Washington, D.C.'); INSERT INTO "work" VALUES (1576, NULL, '1992', 0, 'Baker H. Morrow, 0; V. B. Price , 1', 'Proceedings', ' The Mesa Verde Symposium on Anasazi Architecture and American Design. Morrow & Co., Ltd., Albuquerque.'); INSERT INTO "work" VALUES (1577, NULL, '1997', 0, 'Baker H. Morrow, 0; V. B. Price , 1', 'Anasazi Architecture and American Design', ' University of New Mexico Press, Albuquerque.'); INSERT INTO "work" VALUES (567, NULL, '1983', 0, 'James I. Ebert, 0; Thomas R. Lyons, 1; with contributions by Bruce Bevan, 2; Eileen Camilli, 3; Sarah Dennelt, 4; Dwight L. Drager, 5; Rosalie Fanale, 6; Nicholas Hartmann, 7; Hans Muessig, 8; Irwin Scollar, 9', 'Archaeology, Anthropology and Cultural Resource Management', ' Chapter 26 in Manual of Remote Sensing, 2nd, edition, Volume II, Robert N. Colwell, editor-in-chief, John E. Estes, editor and Gene A. Tharley, associate editor, pp. 1233-1304. American Society of Photogrammetry, Falls Church, VA.'); INSERT INTO "work" VALUES (2186, NULL, '1933', 0, 'Hillary A. Tolson, 0', '[Legislation Relating to Chaco Canyon National Monument', ' In Laws Relating to the National Park Service, the National Parks and Monuments, pp. 315-317. USDI, National Park Service, Government Printing Office, Washington, D.C.'); INSERT INTO "work" VALUES (162, NULL, '1984', 0, 'John D. Beal, 0', '(compiler) The Lee Ranch Mine Project: Dimensions of Occupational Persistence', ' Archaeology Division, School of American Research, Santa Fe.'); INSERT INTO "work" VALUES (2422, NULL, '1980', 0, 'Jeff West, 0', 'A Consideration of the Soils and Foundations of Pueblo Alto, Chaco Canyon, New Mexico', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published in 1987.'); INSERT INTO "work" VALUES (2423, NULL, '1987', 0, 'Jeff West, 0', 'A Consideration of the Soils and Foundations of Pueblo Alto, Chaco Canyon, New Mexico', ' In Investigations at the Pueblo Alto Complex, Chaco Canyon, New Mexico, 1975-1979. Volume IV. Microfiche, edited by Thomas C. Windes and Frances Joan Mathien, pp. MF-44 to MF-46. Publications in Archeology 18F, Chaco Canyon Studies. National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (535, NULL, '1983', 0, 'Dwight L. Drager, 0; Thomas R. Lyons, 1', 'A Field Test of Remote Sensing in Archeology', ' Ms. in site files, Accession 57, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (534, NULL, '1980', 0, 'Dwight L. Drager, 0; Thomas R. Lyons, 1', 'A Field Test of Remote Sensing in Archeology', ' Ms. in site files, Accession 57, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2506, NULL, '1984', 0, 'Thomas C. Windes, 0', 'A New Look at Population in Chaco Canyon', ' In Recent Research on Chaco Prehistory, edited by W. James Judge and John D. Schelberg, pp. 75-87. Reports of the Chaco Center No. 8. Division of Cultural Research, National Park Service, Albuquerque.'); INSERT INTO "work" VALUES (2496, NULL, '1981', 0, 'Thomas C. Windes, 0', 'A New Look at Population in Chaco Canyon', ' Paper presented at the 46th Annual Meeting of the Society for American Archaeology, San Diego.'); INSERT INTO "work" VALUES (331, NULL, '1997', 0, 'Catherine M. Cameron, 0', 'A Preliminary Report on the 1997 Excavations at the Bluff Great House', ' Ms. on file, Southwest Heritage Foundation, Bluff, and Department of Anthropology, University of Colorado at Boulder. '); INSERT INTO "work" VALUES (298, NULL, '1979', 0, 'Catherine M. Cameron, 0', 'A Preliminary Report on the Chipped Stone of Chaco Canyon', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2151, NULL, '1990', 0, 'H. Wolcott Toll, III, 0', 'A Reappraisal of Chaco Cylinder Jars', ' In Clues to the Past. Papers in Honor of William M. Sundt, edited by Meliha S. Duran and David T. Kirkpatrick, pp. 273-306. Papers of the Archaeological Society of New Mexico: 16.'); INSERT INTO "work" VALUES (2148, NULL, '1986', 0, 'H. Wolcott Toll, III, 0', 'A Reassessment of Chaco Cylinder Jars', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published in 1990.'); INSERT INTO "work" VALUES (130, NULL, '1955', 0, 'Elmer H. Baltz, 0', 'A Reconnaissance for Uranium in Carbonaceous Rocks in Southwestern Colorado and Parts of New Mexico', ' U.S. Geological Survey, Oak Ridge, TN, and U.S. Atomic Energy Commission, Technical Information Service, Washington, D.C.'); INSERT INTO "work" VALUES (131, NULL, '1955', 0, 'Elmer H. Baltz, 0', 'A Reconnaissance for Uranium in Parts of New Mexico and Colorado, 1954', ' U.S. Geological Survey, Oak Ridge, TN, and U.S. Atomic Energy Commission, Technical Information Extension, Washington, D.C.'); INSERT INTO "work" VALUES (2039, NULL, '1988', 0, 'A. Sofaer, 0; R. M. Sinclair, 1; R. Williamson, 2', 'A Regional Pattern in the Architecture of the Chaco Culture and Its Astronomical Implications', ' Paper presented at the American Astronomical Society, January 10-11.'); INSERT INTO "work" VALUES (2038, NULL, '1987', 0, 'A. Sofaer, 0; R. M. Sinclair, 1; R. Williamson, 2', 'A Regional Pattern in the Architecture of the Chaco Culture and Its Astronomical Implications', ' Bulletin of the American Astronomical Society 19:1044.'); INSERT INTO "work" VALUES (2495, NULL, '1981', 0, 'Thomas C. Windes, 0', 'A Rough Sort of the Ceramics from LA 2578', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2029, NULL, '1989', 0, 'Anna Sofaer, 0; Rolf Sinclair, 1', 'A Solar Pueblo Symbol: An Interpretation of a Fajada Butte Petroglyph', ' In World Archaeoastronomy, edited by A. F. Aveni, pp. 499. Cambridge University Press.'); INSERT INTO "work" VALUES (2023, NULL, '1986', 0, 'Anna Sofaer, 0; Rolf Sinclair, 1', 'A Solar Pueblo Symbol: An Interpretation of a Fajada Butte Petroglyph', ' Paper presented at the"Oxford II Conference on Archaeoastronomy", Merida.'); INSERT INTO "work" VALUES (2193, NULL, '1979', 0, 'Michael Treshow, 0', 'A Study for the Possible Adverse Effects on Vegetation due to Air Pollutans in the Chaco Canyon National Monument, New Mexico', ' Interim Report. Ms. on file, Office of Natural Resources, National Park Service, Intermountain Region, Santa Fe Office.'); INSERT INTO "work" VALUES (2194, NULL, '1980', 0, 'Michael Treshow, 0', 'A Study for the Possible Adverse Effects on Vegetation due to Air Pollutans in the Chaco Canyon National Monument, New Mexico', ' Concluding Report. Ms. on file, Office of Natural Resources, National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (1051, NULL, '1933', 0, 'John Y. Keur, 0', 'A Study of Primitive Indian Engineering Methods Pertaining to Threatening Rock', ' Archive 1874, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1053, NULL, '1933', 0, 'John Y. Keur, 0', 'A Study of Primitive Indian Engineering Methods Pertaining to Threatening Rock', ' Southwestern Monuments, April, pp. 352-361.'); INSERT INTO "work" VALUES (1052, NULL, '1933', 0, 'John Y. Keur, 0', 'A Study of Primitive Indian Engineering Methods Pertaining to Threatening Rock', ' Ms. on file, Biology Department Long Island University, Brooklyn.'); INSERT INTO "work" VALUES (1534, NULL, '1989', 0, 'Victor Mindeleff, 0', 'A Study of Pueblo Architecture in Tusayan and Cibola', ' Smithsonian Institution Press, Washington, D.C.'); INSERT INTO "work" VALUES (1533, NULL, '1891', 0, 'Victor Mindeleff, 0', 'A Study of Pueblo Architecture: Tusayan and Cibola', ' In Eighth Annual Report of the Bureau of American Ethnology for the Years 1886-1887, pp. 3-228. Government Printing Office, Washington, D.C.'); INSERT INTO "work" VALUES (2204, NULL, '1982', 0, 'Marcia L. Truell, 0', 'A Summary of Small Site Architecture in Chaco Canyon, New Mexico', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published in 1986.'); INSERT INTO "work" VALUES (2206, NULL, '1986', 0, 'Marcia L. Truell, 0', 'A Summary of Small Site Architecture in Chaco Canyon, New Mexico', ' Part II in Small Site Architecture of Chaco Canyon, New Mexico, by Peter J. McKenna and Marcia L. Truell, pp. 115-502. Publications in Archeology 18D, Chaco Canyon Studies. National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (818, NULL, '1981', 0, 'Alden C. Hayes, 0', 'A Survey of Chaco Canyon Archeology', ' In Archeological Surveys of Chaco Canyon, by Alden C. Hayes, David M. Brugge, and W. James Judge, pp. 1-68. Publications in Archeology 18A, Chaco Canyon Studies. National Park Service, Washignton, D.C.'); INSERT INTO "work" VALUES (814, NULL, '1975', 0, 'Alden C. Hayes, 0', 'A Survey of Chaco Canyon Archeology', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico. Published in 1981.'); INSERT INTO "work" VALUES (817, NULL, '1978', 0, 'Alden C. Hayes, 0', 'A Survey of Chaco Canyon Archeology', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published in 1981.'); INSERT INTO "work" VALUES (2310, NULL, '1981', 0, 'R. Gwinn Vivian, 0', 'Agricultural and Social Adjustments to Changing Environments in the Chaco Basin', ' Paper presented at the 80th Annual Meeting of the American Anthropological Association, Los Angeles.'); INSERT INTO "work" VALUES (2317, NULL, '1986', 0, 'R. Gwinn Vivian, 0', 'Agriculture and Domestic Water Use in Chaco Canyon, New Mexico', ' Paper presented at the 51st Annual Meeting of the Society for American Archaeology, New Orleans.'); INSERT INTO "work" VALUES (238, NULL, '1976', 0, 'Cory Dale Breternitz, 0', 'An Analysis of Axes and Mauls from Chaco Canyon, New Mexico', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published in 1997.'); INSERT INTO "work" VALUES (240, NULL, '1997', 0, 'Cory Dale Breternitz, 0', 'An Analysis of Axes and Mauls from Chaco Canyon, New Mexico', ' In Ceramics, Lithics, and Ornaments of Chaco Canyon. Analyses of Artifacts from the Chaco Project, 1971-1978, edited by Frances Joan Mathien, pp. 977-996. Publications in Archeology 18G, Chaco Canyon Series. National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (40, NULL, '1992', 0, 'Nancy J. Akins, 0', 'An Analysis of the Faunal Remains from 29SJ627', ' In Excavations at 29SJ627, Chaco Canyon, New Mexico. Volume II. The Artifact Analyses, edited by Frances Joan Mathien, pp. 319-370. Reports of the Chaco Center No. 11. Branch of Cultural Research, National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (322, NULL, '1988', 0, 'Catherine M. Cameron, 0', 'An Examination of Chipped Stone from Kin Nahasbas', ' In Historic Structure Report, Kin Nahasbas Ruin, Chaco Culture National Historical Park, New Mexico by Frances Joan Mathien and Thomas C. Windes, pp. 213-232. Branch of Cultural Research, National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (482, NULL, '1902', 0, 'R. E. Dodge, 0', 'An Interesting Landslide in the Chaco Canyon, New Mexico', ' American Geologist 29:322.'); INSERT INTO "work" VALUES (484, NULL, '1903', 0, 'R. E. Dodge, 0', 'An Interesting Landslide in the Chaco Canyon, New Mexico', ' Annals of the New York Academy 15:49-50.'); INSERT INTO "work" VALUES (2178, NULL, '1985', 0, 'Mollie S. Toll, 0', 'An Overview of Chaco Canyon Macrobotanical Materials and Analyses to Date', ' Castetter Laboratory for Ethnobotanical Studies, Department of Biology, University of New Mexico, Albuquerque. Published in 1985.'); INSERT INTO "work" VALUES (2179, NULL, '1985', 0, 'Mollie S. Toll, 0', 'An Overview of Chaco Canyon Macrobotanical Materials and Analyses to Date', ' In Environment and Subsistence of Chaco Canyon, New Mexico, edited by Frances Joan Mathien, pp. 247-277. Publications in Archeology 18E, Chaco Canyon Studies. National Park Service, Albuquerque.'); INSERT INTO "work" VALUES (599, NULL, '1992', 0, 'Gary M. Feinman, 0', 'An Outside Perspective on Chaco Canyon', ' In Anasazi Regional Organization and the Chaco System, edited by David E. Doyel, pp. 177-182. Anthropological Papers No. 5. Maxwell Museum of Anthropology, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (680, NULL, '1979', 0, 'William B. Gillespie, 0', 'An Overview of the Archaeology of Chaco Canyon', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (690, NULL, '1983', 0, 'William B. Gillespie, 0', 'An Overview of the Archaeology of Chaco Canyon', ' In Chaco Canyon Country. A Field Guide to the Geomorphology, Quarternary Geology, Paleoecology, and Environmental Geology of Northwestern New Mexico, edited by Stephen. G. Wells, David W. Love, and Thomas W. Gardner, pp. 237-239. American Geomorphological Field Group 1983 Field Trip Guidebook. Adobe Press, Albuquerque..'); INSERT INTO "work" VALUES (1186, NULL, '1997', 0, 'Stephen H. Lekson, 0', 'Anasazi Communities in Context', ' In Anasazi Architecture and American Design, edited by B. H. Morrow and V. B. Price pp. 27-35. University of New Mexico Press, Albuquerque.'); INSERT INTO "work" VALUES (1169, NULL, '1992', 0, 'Stephen H. Lekson, 0', 'Anasazi Communities in Context', ' In Proceedings: The Mesa Verde Symposium on Anasazi Architecture and American Design, edited and coordinated by Baker H. Morrow and V. B. Price, pp. 19-32. Morrow and Co., Ltd., Albuquerque.'); INSERT INTO "work" VALUES (2459, NULL, '1977', 0, 'Ray A. Williamson, 0; Howard J. Fisher, 1; Donnel O''Flynn, 2', 'Anasazi Solar Observatories', ' In Native American Astronomy, edited by Anthony F. Aveni, pp. 203-217. University of Texas, Austin.'); INSERT INTO "work" VALUES (2607, NULL, '1987', 0, 'Michael Zeilik, 0', 'Anticipation in Ceremony: The Readiness is All', ' In Astronomy and Ceremony in the Prehistoric Southwest, edited by John B. Carlson and W. James Judge, pp. 25-41. Papers of the Maxwell Museum of Anthropology No. 2. University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1124, NULL, '1977', 0, 'Stephen H. Lekson, 0', 'Approaches to the Masonry Structure at Alto', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1125, NULL, '1977', 0, 'Stephen H. Lekson, 0', 'Approaches to the Masonry Structure at Alto II', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1975, NULL, '1960', 0, 'Joel Shiner, 0; G. Vivian, 1', 'The 1960 Stabilization of Una Vida Ruin, Chaco Canyon National Monument, New Mexico', ' Stabilization report on file in the NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.'); INSERT INTO "work" VALUES (1754, NULL, '1900', 0, 'Frederic W. Putnam, 0', 'Ancient Pueblos of Chaco Cañon', ' American Journal of Archaeology 4:166.'); INSERT INTO "work" VALUES (887, NULL, '1933', 0, 'Anna W. Ickes, 0', 'Chaco Cañon', ' In Mesa Land, by Anna W. Ickes, pp. 92-94. Houghton Mifflin, New York.'); INSERT INTO "work" VALUES (611, NULL, '1931', 0, 'Marjorie E. Ferguson, 0', 'Chaco Cañon Notes', ' Archive 1857, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2507, NULL, '1984', 0, 'Thomas C. Windes, 0', 'A Rough Sort of Some Ceramics from Leyit Kin', ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (549, NULL, '1938', 0, 'Bertha P. Dutton, 0', 'Leyit Kin, a Small House Ruin, Chaco Canyon, New Mexico', ' Monographs of the University of New Mexico and School of American Research No. 7. University of New Mexico Bulletin No. 333, Monograph Series 1(5). University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (873, NULL, '1908', 0, 'Aleš Hrdlicka, 0', 'Physiological and Medical Observations among the Indians of Southwestern United States and Northern Mexico', ' Bureau of American Ethnology Bulletin 30. Smithsonian Institution, Washington, D.C.'); INSERT INTO "work" VALUES (1572, NULL, '1879', 0, 'C. C. Morrison, 0', 'Notice of the Pueblo Pintado and of Other Ruins in the Chaco Cañon', ' In Report upon United States Geographical Surveys West of the One-Hundredth Meridian, in Charge of First Lieut. Geo. M. Wheeler, Corps of Engineers, U.S. Army, Under the Direction of Brig. Gen. A. A. Humphreys, Chief of Engineers, U.S. Army, Published by the Authority of the Honorable the Secretary of War, in Accordance with Acts of Congress of June 23, 1874, and February 15, 1875, Volume VII, In Seven Volumes, Accompanied by One Topographical and One Geological Atlas. Archaeology, pp. 366-369. Government Printing Office, Washington, D.C.'); INSERT INTO "work" VALUES (1706, NULL, '1934', 0, 'W. W. Postlethwaite, 0', 'Preliminary Excavation of West Plaza Kiva, Chetro Ketl, Chaco Cañon, New Mexico, June-July 1934', ' Vivian Archive, Reiter Papers. Archive 1940, 1945, 2125J, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (845, NULL, '1932', 0, 'Edgar L. Hewett, 0', 'The Chaco Cañon in 1932', ' Art and Archaeology 33(3):147-158.'); INSERT INTO "work" VALUES (1817, NULL, '1990', 0, 'Jonathan E. Reyman, 0', 'Rediscovered Pseudo-Cloisonné from Pueblo Bonito: Description and Comparisons', ' In Clues to the Past. Papers in Honor of William M. Sundt, edited by Meliha S. Duran and David T. Kirkpatrick, pp. 217-228. Papers of the Archaeological Society of New Mexico: 16. Albuquerque.'); INSERT INTO "work" VALUES (837, NULL, '1929', 0, 'Edgar L. Hewett, 0', 'Resumé of the Work of the School for 1929', ' School of American Research, Santa Fe.'); INSERT INTO "work" VALUES (275, NULL, '1943', 0, 'Kirk Bryan, 0; Joseph H. Toulouse, 1', 'The San José Non-Ceramic Culture and Its Relation to Puebloan Culture in New Mexico', ' American Antiquity 8(3):269-280.'); INSERT INTO "work" VALUES (1869, NULL, '1982', 0, 'Hans Ruppert, 0', 'Zur Verbreitung und Herkunft von Türkis und Sodalith in Präkolumbischen Kulturen der Kordilleren', ' Baessler-Archiv 30:69-124. Berlin.'); INSERT INTO "work" VALUES (2083, NULL, '1994', 0, 'Richard W. Stoffle, 0; Michael J. Evans, 1; M. Nieves Zedeño, 2; Brent W. Stoffle, 3; Cindy J. Kesel, 4', 'American Indians and Fajada Butte', ' Ethnographic Overview and Assessment for Fajada Butte and Traditional (Ethnobotanical) Use Study for Chaco Culture National Historical Park, New Mexico. Final Report (Grant No. CA-7029-1-0009) for the Office of Cultural Affairs, Historic Preservation Department and Southwest Regional Office, National Park Service by Bureau of Applied Research in Anthropology, University of Arizona, Tucson.'); INSERT INTO "work" VALUES (918, NULL, '1930', 0, 'Jean A. Jeançon, 0; F. H. Douglas , 1', 'Periods of Pueblo Culture and History', ' Denver Art Museum Leaflet No. 11. Denver.'); INSERT INTO "work" VALUES (919, NULL, '1930', 0, 'Jean A. Jeançon, 0; F. H. Douglas , 1', 'The Pueblo Golden Age', ' Denver Art Museum Leaflet 14. Denver.'); INSERT INTO "work" VALUES (489, NULL, '1860', 0, 'Abbé Emmanuel H. D. Domenech, 0', '[Chaco Canyon Ruins]', 'In Seven Years Residence in the Great Deserts of North America, by Abbé Emmanuel H. D. Domenech, Vol. 1:200, 381. Longman, Green, London.'); INSERT INTO "work" VALUES (1693, NULL, '1998', 0, 'Lloyd M. Pierson, 0', 'Chaco Canyon Navajo', ' In Dinè Bíhéyah: Papers in Honor of David M. Brugge, edited by Mehila S. Duran and David T. Kirkpatrick, pp. 169-178. Archaeological Society of New Mexico: 24. Albuquerque.'); INSERT INTO "work" VALUES (1929, NULL, '1993', 0, 'Wilhelm Schuster, 0', 'Die Sonnenworte 29Mc527, Chaco Canyon, New Mexico, USA', ' Ein Multifunktions-kalender der prähistorischen Anasazi-Kultur. Beiträge zur Allgemeinen und Vergleichenden Archäologie 13:193-219.'); INSERT INTO "work" VALUES (1870, NULL, '1983', 0, 'Hans Ruppert, 0', 'Geochmische Untersuchungen an Türkis und Sodalith aus Lagerstätten und präkolumbischen Kulturn der Kordilleren', ' Berliner Beiträge zur Archäometrie 8:101-210. Berlin.'); INSERT INTO "work" VALUES (664, NULL, '1998', 0, 'Theodore R. Frisbie, 0', 'New Light on Pochteca Concept and the Chaco Phenomenon', 'In Diné Bíkéyak: Papers in Honor of David M. Brugge, edited by Meliha S. Duran and David T. Kirkpatrick, pp. 87-97. Archaeological Society of New Mexico: 24. Albuquerque.'); INSERT INTO "work" VALUES (505, NULL, '1991', 0, 'Dennis Doxtater, 0', 'Reflections of the Anasazi Cosmos', 'In Social Space. Human Spatial Behavior in Dwellings and Settlements. Proceedings of an Interdisciplinary Conference, edited by Ole Grøn, Erika Engelstad and Inge Lindblom, pp. 155-184. Odense University Press, Odense.'); INSERT INTO "work" VALUES (1085, NULL, '1998', 0, 'Jane Kolber, 0', 'The Human Figure in Navajo Rock Art, with an Emphasis on Mockingbird Canyon, Chaco', ' In Diné Bíkéyah: Papers in Honor of David M. Brugge, edited by Meliha S. Duran and David T. Kirkpatrick, pp. 157-168. Archaeological Society of New Mexico: 24. Albuquerque.'); INSERT INTO "work" VALUES (1658, NULL, '1977', 0, 'Peter D. Paul, 0', 'Wind Characteristics of the Chaco Canyon Environment with Particular Emphasis on Peñasco Blanco', 'Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (1268, NULL, '1925', 0, 'Charles F. Lummis, 0', '[Chaco Canyon]', ' In Mesa, Cañon and Pueblo, by Charles F. Lummis, pp. 284-285. Century, New York.'); INSERT INTO "work" VALUES (548, NULL, '1937', 0, 'Bertha P. Dutton, 0', 'Leyit Kin, a Small House Ruin in Chaco Canyon', ' New Mexico Anthropologist 1:84-85.'); INSERT INTO "work" VALUES (547, NULL, '1937', 0, 'Bertha P. Dutton, 0', 'Leyit Kin, a Small House Ruin, Chaco Canyon, New Mexico', ' M.A. thesis, Department of Anthropology, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (546, NULL, '1936', 0, 'Bertha P. Dutton, 0', 'Report on Leyit Kin', ' Southwestern Monuments, pp. 309-319, November.'); INSERT INTO "work" VALUES (720, NULL, '1954', 0, 'Glover M. Allen, 0', 'Canid Remains from Pueblo Bonito and Pueblo del Arroyo', 'Appendix B in The Material Culture of Pueblo Bonito by Neil M. Judd, pp. 385-388. Smithsonian Miscellaneous Collections Vol. 124. Smithsonian Institution, Washington, D.C.'); INSERT INTO "work" VALUES (54, NULL, '1954', 0, 'Glover M. Allen, 0', 'Canid Remains from Pueblo Alto, Bonito, and Pueblo del Arroyo', 'In The Material Culture of Pueblo Bonito by Neil M. Judd, pp. 385-389. Smithsonian Miscellaneous Collections No. 124. Washington, D.C.'); INSERT INTO "work" VALUES (2617, NULL, 'n.d.', 0, NULL, 'Chemical Stabilization Methods at Chaco Canyon National Monument and Bent’s Old Fort National Historic Site', NULL); INSERT INTO "work" VALUES (2618, NULL, 'n.d.', 0, NULL, 'Museum Notes on the Chaco Cañon Excavation. ', NULL); INSERT INTO "work" VALUES (2619, NULL, NULL, 0, NULL, 'The Chaco Canyon Supernova Pictograph—A Reorientation', NULL); INSERT INTO "work" VALUES (2620, NULL, '1940', 0, NULL, 'Trees Do Not Lie', NULL); INSERT INTO "work" VALUES (2621, NULL, NULL, 0, NULL, 'Dr. Hewett Announces Discoveries', NULL); INSERT INTO "work" VALUES (2622, NULL, NULL, 0, NULL, 'Village Indians of New Mexico ', NULL); INSERT INTO "work" VALUES (2623, NULL, NULL, 0, NULL, 'village indians of new mexico', NULL); INSERT INTO "work" VALUES (2624, NULL, 'n.d.', 0, NULL, 'Environmental Mapping of the San Juan Basin', NULL); INSERT INTO "work" VALUES (2625, NULL, '1954', 0, NULL, 'The Kiva and Its Functions', 'Jackson, Earl n.d. The Kiva and Its Functions. Archive 1954, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. '); INSERT INTO "work" VALUES (2626, NULL, '1984', 0, NULL, 'Chipped Stone in the San Juan Basin: A Distributional Analysis', 'Jacobson, LouAnn 1984 Chipped Stone in the San Juan Basin: A Distributional Analysis. Unpublished M.A. thesis, Department of Anthropology, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2627, NULL, '1985', 0, NULL, 'Chacra Mesa Site Inventory: National Register Nomination by BLM', 'Jacobson, LouAnn, and John Roney 1985 Chacra Mesa Site Inventory: National Register Nomination by BLM. Ms. on file, Bureau of Land Management, Albuquerque, and NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. '); INSERT INTO "work" VALUES (2628, NULL, '2001', 0, NULL, 'Chaco Canyon’s Star Power', 'Jaffe, Matthew 2001 Chaco Canyon’s Star Power. Sunset Magazine April. '); INSERT INTO "work" VALUES (2629, NULL, '1920', 0, NULL, '[Chaco Canyon.] ', 'James, George Wharton 1920 [Chaco Canyon.] In New Mexico: The Land of the Delight Makers, by George Wharton James, p. 246. Page, Boston. '); INSERT INTO "work" VALUES (2630, NULL, '1931', 0, NULL, 'A Month’s Work in Chaco Canyon (June 10 to July 8, 1931)', 'Johnson, Fern 1931 A Month’s Work in Chaco Canyon (June 10 to July 8, 1931). Archive 1860, 1949, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. '); INSERT INTO "work" VALUES (2631, NULL, '1989', 0, NULL, 'Dynamics of Southwestern Prehistory: Far Outside—Looking In', 'Johnson, Gregory A. 1989 Dynamics of Southwestern Prehistory: Far Outside—Looking In. In Dynamics of Southwest Prehistory, edited by Linda S. Cordell and George J. Gumerman, pp. 371-389. Smithsonian Institution Press, Washington, D.C. '); INSERT INTO "work" VALUES (2632, NULL, '1946', 0, NULL, 'Survey of Petroglyphs in Chaco Canyon Region: Part I: North Walls of Canyon in Chaco Canyon National Monument', 'Johnston, E. Clark 1946 Survey of Petroglyphs in Chaco Canyon Region: Part I: North Walls of Canyon in Chaco Canyon National Monument. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. '); INSERT INTO "work" VALUES (2633, NULL, '1992', 0, NULL, 'The Boys and Girls of Summer: The University of New Mexico Archaeological Field School in Chaco Canyon', 'Joiner, Carol 1992 The Boys and Girls of Summer: The University of New Mexico Archaeological Field School in Chaco Canyon. Journal of Anthropological Research 48(1):49-66. '); INSERT INTO "work" VALUES (2634, NULL, '1976', 0, NULL, 'Current and Future Applications of Aerospace Remote Sensing in Archeology: A Feasibility Study', 'Jorde, Lynn B., and Jack B. Bertram 1976a Current and Future Applications of Aerospace Remote Sensing in Archeology: A Feasibility Study. Contract CX7000-3-0206 funded by U.S.G.S. Eros Project. Ms. on file, Branch of Remote Sensing, National Park Service, Intermountain Region, Santa Fe Office. Published in 1976. '); INSERT INTO "work" VALUES (2635, NULL, '1920', 0, NULL, 'National Geographic Society Reconnaissance of Chaco Canyon, New Mexico: Diary of Neil M. Judd', 'Judd, Neil Merton 1920 National Geographic Society Reconnaissance of Chaco Canyon, New Mexico: Diary of Neil M. Judd. In Papers of Neil M. Judd, Box 6, Smithsonian Institution, National Anthropological Archives, Washington, D.C. '); INSERT INTO "work" VALUES (2636, NULL, '1938', 0, NULL, 'Review of D. D. Brand et al.’s Tseh So.', '1938b Review of D. D. Brand et al.’s Tseh So. American Anthropologist 40:728-729.'); INSERT INTO "work" VALUES (2637, NULL, '1976', 0, NULL, 'Chacoan Outlier Study: Research Prospectus', '1976a* Chacoan Outlier Study: Research Prospectus. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2638, NULL, '1977', 0, NULL, 'The Chaco Project: A Brief Progress Report', '1977b The Chaco Project: A Brief Progress Report. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2639, NULL, '1977', 0, NULL, 'The Research Program of the Chaco Project: A Brief Summary', '1977d The Research Program of the Chaco Project: A Brief Summary. Paper presented at the 50th Pecos Conference, Pecos.'); INSERT INTO "work" VALUES (2640, NULL, '1981', 0, NULL, 'Transect Sampling in Chaco Canyon—Evaluation of a Survey Technique', '1981c Transect Sampling in Chaco Canyon—Evaluation of a Survey Technique. Part Three in Archeological Surveys of Chaco Canyon, New Mexico, by Alden C.Hayes, David M. Brugge, and W. James Judge, pp. 107-137. Publications in Archeology 18A, Chaco Canyon Studies. National Park Service, Washington, D.C.'); INSERT INTO "work" VALUES (2641, NULL, '1982', 0, NULL, 'The Paleo-Indian and Basketmaker Periods: An Overview and Some Research Problems', '1982b The Paleo-Indian and Basketmaker Periods: An Overview and Some Research Problems. In The San Juan Tomorrow, edited by Fred Plog and Walter Wait, pp. 5-57. National Park Service Southwest Regional Office in cooperation with the School of American Research, Santa Fe.'); INSERT INTO "work" VALUES (2642, NULL, '1983', 0, NULL, 'Chaco Canyon—San Juan Basin', '1983a Chaco Canyon—San Juan Basin. Paper presented at the School of American Research Seminar entitled "Dynamics of Southwestern Prehistory." School of American Research, Santa Fe. Published in 1989.'); INSERT INTO "work" VALUES (2643, NULL, '1983', 0, NULL, 'PARKMAN: A Computer Graphics Program for Cultural Resource Management', '1983b PARKMAN: A Computer Graphics Program for Cultural Resource Management. CRM Bulletin 7(1):14-16.'); INSERT INTO "work" VALUES (2644, NULL, 'n.d.', 0, NULL, 'Minimal Impact Archeology: A Plea for a Formalized Ethic', NULL); INSERT INTO "work" VALUES (2645, NULL, '1980', 0, NULL, 'Bipod Photography: Procedures for Photographic Mapping of Archeological Sites', 'Klausner, Stephanie 1980 Bipod Photography: Procedures for Photographic Mapping of Archeological Sites. In Cultural Resources Remote Sensing, edited by Thomas R. Lyons and Frances Joan Mathien, pp. 293-325. Cultural Resources Management Division, National Park Service, Washington, D.C. '); INSERT INTO "work" VALUES (2646, NULL, '1977', 0, NULL, 'Unworked Wood from Bc 288', 'Koeppen, R. C. 1977. Unworked Wood from Bc 288. Submitted from Department of Agriculture, U.S. Forest Service, Forest Products Laboratory, Madison, WI. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. '); INSERT INTO "work" VALUES (2647, NULL, '1999', 0, NULL, 'James G. Bain—Innovator in Rock Art Field Schools', 'Kolber, Jane, and Helen Crotty 1999 James G. Bain—Innovator in Rock Art Field Schools. Poster presented at the 72nd Pecos Conference, Pinedale, AZ. '); INSERT INTO "work" VALUES (2648, NULL, '1999', 0, NULL, 'The Chaco Rock Art Reassessment Project—Gallo Wash', 'Kolber, Jane, and Donna Yoder 1999 The Chaco Rock Art Reassessment Project—Gallo Wash. Paper presented at the 72nd Pecos Conference, Pinedale, AZ. '); INSERT INTO "work" VALUES (2649, NULL, '1993', 0, NULL, 'The Faunal Structuring of Anasazi Place: A Social Perspective from Chaco Canyon, New Mexico', 'Kovacik, Joseph J. 1993 The Faunal Structuring of Anasazi Place: A Social Perspective from Chaco Canyon, New Mexico. Paper presented at the 15th Annual Meeting of the Theoretical Archaeological Group, Durham, England. '); INSERT INTO "work" VALUES (2650, NULL, '1960', 0, NULL, 'Photogeologic Map of the Chaco Canyon—2 Quandrangles', 'Kover, A. N. 1960 Photogeologic Map of the Chaco Canyon—2 Quandrangles. Mc Kinley County, New Mexico. U.S.G.S. Miscellaneous Geological Investigations Map I-315. '); INSERT INTO "work" VALUES (2651, NULL, '1991', 0, NULL, 'New Mexico’s Mysterious Anasazi Ruins', 'Laskin, David 1991 New Mexico’s Mysterious Anasazi Ruins. The New York Times 141:XX15(n), p. XX15L, col. 1. Dec. 5, Sept. 22. '); INSERT INTO "work" VALUES (2652, NULL, '1997', 0, NULL, 'Chaco Canyon: A Legacy in Stone', 'Leach, Nicky 1997 Chaco Canyon: A Legacy in Stone. New Mexico Magazine 75(6):32-41. June. '); INSERT INTO "work" VALUES (2653, NULL, '1983', 0, NULL, 'Aspects of Southwestern Prehistory: A.D. 900-1450', 'LeBlanc, Steven A. 1983 Aspects of Southwestern Prehistory: A.D. 900-1450. Paper presented at the 48th Annual Meeting of the Society for American Archaeology, Pittsburgh. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published in 1986. '); INSERT INTO "work" VALUES (2654, NULL, '1986', 0, NULL, 'Aspects of Southwestern Prehistory: A.D. 900-1450', '1986 Aspects of Southwestern Prehistory: A.D. 900-1450. In Ripples in the Chichimec Sea: New Considerations of Southwestern-Mesoamerican Interactions, edited by Frances Joan Mathien and Randall H. McGuire, pp. 105-134. Southern Illinois University, Carbondale.'); INSERT INTO "work" VALUES (2655, NULL, '1983', 0, NULL, 'Wijiji at Chaco Canyon: A Winter Solstice Sunrise and Sunset Location', 'Zeilik, Michael, and Richard Elston 1983 Wijiji at Chaco Canyon: A Winter Solstice Sunrise and Sunset Location. Archaeoastronomy VI(1-4):66-73. '); INSERT INTO "work" VALUES (2656, NULL, '1988', 0, NULL, 'Astronomy and Ritual: The Rhythm of the Social Calendar in the U.S. Southwest', '1988 Astronomy and Ritual: The Rhythm of the Social Calendar in the U.S. Southwest. In New Directions in American Archaeoastromony (Proceedings of the 46 International Congress of Americanists, Amsterday, Netherlands, 1988), edited by Anthony F. Aveni, pp. 183-198. BAR International Series, No. 454. Oxford.'); INSERT INTO "work" VALUES (2657, NULL, '1987', 0, NULL, 'Anticipation in Ceremony: The Readiness is All', '1987 Anticipation in Ceremony: The Readiness is All. In Astronomy and Ceremony in the Prehistoric Southwest, edited by John B. Carlson and W. James Judge, pp. 25-41. Papers of the Maxwell Museum of Anthropology No. 2. University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2658, NULL, '1985', 0, NULL, 'Sun Shrines and Sun Symbols in the U.S. Southwest', '1985d Sun Shrines and Sun Symbols in the U.S. Southwest. Archaeoastronomy (Supplement to the Journal for the History of Astronomy) 9:86-96.'); INSERT INTO "work" VALUES (2659, NULL, '1985', 0, NULL, 'The Fajada Butte Solar Marker: A Reevaluation', '1985c The Fajada Butte Solar Marker: A Reevaluation. Science 228:1311-1313.'); INSERT INTO "work" VALUES (2660, NULL, '1984', 0, NULL, 'Sunwatching and Calendars: A Southwestern-Mesoamerican Contrast in a Distant, Smoky Mirror', '1984d Sunwatching and Calendars: A Southwestern-Mesoamerican Contrast in a Distant, Smoky Mirror. Paper presented at the Symposium on Archaeoastronomy and Ethnoastronomy in Mesoamerica, Mexico.'); INSERT INTO "work" VALUES (2661, NULL, '1984', 0, NULL, 'Summer Solstice at Casa Rinconada: Calender, Hierophany, or Nothing?', '1984c Summer Solstice at Casa Rinconada: Calender, Hierophany, or Nothing? Archaeoastronomy 7(1-4):76-81.'); INSERT INTO "work" VALUES (2662, NULL, '1946', 0, NULL, 'Significance of the Letters R.M.R. in the Chaco Canyon Inscription', 'Young, R. W. 1946* Significance of the Letters R.M.R. in the Chaco Canyon Inscription. Ms. on file. Where. '); INSERT INTO "work" VALUES (2663, NULL, '2001', 0, NULL, 'The Chaco “Rituality” Revisited', 'Yoffee, Norman 2001 The Chaco “Rituality” Revisited. In Chaco Society and Polity: Papers from the 1999 Conference, edited by Linda S. Cordell, W. James Judge, and June-el Piper, pp. 63-78. NMAC Special Publication No. 4. New Mexico Archeological Council, Albuquerque. '); INSERT INTO "work" VALUES (2664, NULL, '2001', 0, NULL, 'The Anasazi Rock Art of Chaco Canyon. A Preliminary Report of the Findings', 'Yoder, Donna, and Jane Kolber 2001 The Anasazi Rock Art of Chaco Canyon. A Preliminary Report of the Findings. Paper presented at the ARARA Conference, Pendleton, Oregon. '); INSERT INTO "work" VALUES (2665, NULL, '1875', 0, NULL, 'I. General Itinerary', 'Yarrow, H. C. 1875 I. General Itinerary. In Appendix I1. Geological Report, Field Season of 1874, pp. 1059-1068. In Annual Report of the Chief of Engineers to the Secretary of War for the Year 1875. In Two Parts. Part II. 44th Congress, 1st Session Ex. Doc. 1, Part 2, Vol. II. Government Printing Office, Washington, D.C. '); INSERT INTO "work" VALUES (2666, NULL, '1919', 0, NULL, '[Chaco Canyon National Monument.] ', 'Yard, Robert S. 1919 [Chaco Canyon National Monument.] In The Book of the National Parks, by Robert S. Yard, pp. 381-382. Charles Scribner’s Sons, New York. '); INSERT INTO "work" VALUES (2667, NULL, '1937', 0, NULL, 'Talus Unit No. 1 at Chaco', '1937* Talus Unit No. 1 at Chaco. Southwestern Monuments Monthly Report for October, pp. 321-323.'); INSERT INTO "work" VALUES (2668, NULL, '1935', 0, NULL, 'Talus Unit No. 1., Chetro Ketl', '1935* Talus Unit No. 1., Chetro Ketl. Southwestern Monuments Monthly Report Supplement 1:44-46. August supplement, pp. 321-323.'); INSERT INTO "work" VALUES (2669, NULL, '1934', 0, NULL, 'Report on Excavations in 1934 of Talus Unit No. 1, Chetro Ketl, Chaco Canyon', '1934b Report on Excavations in 1934 of Talus Unit No. 1, Chetro Ketl, Chaco Canyon. Ms. on file, School of American Research, Santa Fe. Archive 1825, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2670, NULL, '1934', 0, NULL, 'Burial No. 4., Talus Unit No. 1, Chetro Ketl', '1934a Burial No. 4., Talus Unit No. 1, Chetro Ketl. Southwestern Monuments, pp. 61-62. August.'); INSERT INTO "work" VALUES (2671, NULL, '1933', 0, NULL, 'Report on Excavation Work at Talus Unit No. 1 of Chetro Ketl Ruin, Chaco Canyon, San Juan County, New Mexico, in Summer of 1933', '1933 Report on Excavation Work at Talus Unit No. 1 of Chetro Ketl Ruin, Chaco Canyon, San Juan County, New Mexico, in Summer of 1933. Archive 1828, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO "work" VALUES (2672, NULL, '1984', 0, NULL, 'Remote Sensing: The American Great Plains', 'Wood, W. Raymond, Robert K. Nickel, and David E. Griffin 1984 Remote Sensing: The American Great Plains. Supplement No. 9 to Remote Sensing: A Handbook for Archeologists and Cultural Resource Managers, by Thomas R. Lyons and Thomas Eugene Avery. Cultural Resources Management Division, National Park Service, Washington, D.C. '); INSERT INTO "work" VALUES (2673, NULL, '1972', 0, NULL, 'Supplemental Report: Environmental Data Recording', 'Witter, Daniel 1972 Supplemental Report: Environmental Data Recording. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. '); INSERT INTO "work" VALUES (2674, NULL, '1982', 0, NULL, 'Archeological Excavations near Lake Valley, San Juan County, New Mexico', '1982 (editor) Archeological Excavations near Lake Valley, San Juan County, New Mexico. Laboratory of Anthropology Note 308. Museum of New Mexico, Santa Fe.'); INSERT INTO "work" VALUES (2675, NULL, '1980', 0, NULL, 'The Naschitti-North Project: The Excavation of Two Small Pueblo II Sites near Sheep Springs, San Juan County, New Mexico', '1980 The Naschitti-North Project: The Excavation of Two Small Pueblo II Sites near Sheep Springs, San Juan County, New Mexico. Laboratory of Anthropology Notes 143. Museum of New Mexico Contract Archaeology Section, Santa Fe.'); INSERT INTO "work" VALUES (2676, NULL, '1979', 0, NULL, 'The Tsaya Project: Archaeological Excavations near Lake Valley, San Juan County, New Mexico', '1979 The Tsaya Project: Archaeological Excavations near Lake Valley, San Juan County, New Mexico. Draft ms. on file, Laboratory of Anthropology, Museum of New Mexico, and National Park Service, Santa Fe.'); INSERT INTO "work" VALUES (2677, NULL, '1996', 0, NULL, 'The Chaco Wood Project: The Chronometric Reappraisal of Pueblo Bonito', '1996 The Chaco Wood Project: The Chronometric Reappraisal of Pueblo Bonito. American Antiquity 61(2):295-310.'); INSERT INTO "work" VALUES (2678, NULL, '1982', 0, NULL, 'Archaeological Survey in the Forest Highlands of the Defiance Plateau and Chuska Mountains, Navajo Nation', NULL); INSERT INTO "work" VALUES (2679, NULL, '1937', 0, NULL, 'Hogan Number—Chaco Archaeological Station', NULL); INSERT INTO "work" VALUES (2680, NULL, '1976', 0, NULL, ' Remote Sensing Experiments in Cultural Resource Studies. Non-destructive Methods of Archeological Exploration, Survey, and Analysis.', NULL); INSERT INTO "work" VALUES (2681, NULL, '1977', 0, NULL, 'Aerial Remote Sensing Techniques in Archeology', NULL); -- -- Data for TOC entry 101 (OID 561361) -- Name: documentary_instance; Type: TABLE DATA; Schema: public; Owner: rwb3y -- INSERT INTO documentary_instance VALUES (3, 'Tenth Century Apartment House', NULL, NULL, NULL, NULL, '1959', 0, NULL, 'Journal', '3 pages', NULL, NULL, NULL, NULL, NULL, NULL, 'Abarr, James 1959 Tenth Century Apartment House. New Mexico 37(4):18-19, 51. '); INSERT INTO documentary_instance VALUES (4, 'A Late Pueblo Site in Chaco Canyon National Monument, New Mexico. ', NULL, NULL, 'Albuquerque', 'University of New Mexico', '1974', 0, NULL, 'Manuscript', 'Unknown', NULL, NULL, 'Archive 2149, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. ', NULL, 2, NULL, 'Abel, Leland J. 1974 Bc 288: A Late Pueblo Site in Chaco Canyon National Monument, New Mexico. Archive 2149, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. '); INSERT INTO documentary_instance VALUES (5, 'Mythology of the Navajo Game Stick Dice. ', NULL, NULL, NULL, NULL, '1942', 0, NULL, 'Journal', '10 pages', NULL, NULL, NULL, NULL, 3, NULL, 'Aberle, David F. 1942 Mythology of the Navajo Game Stick Dice. Journal of American Folklore 55(217):144-154. '); INSERT INTO documentary_instance VALUES (6, 'Half House: A Pit House in Chaco Canyon, New Mexico.', NULL, NULL, NULL, NULL, '1949', 0, NULL, 'M.A. Thesis', NULL, NULL, NULL, NULL, NULL, 4, NULL, 'Adams, Richard N. 1949 Half House: A Pit House in Chaco Canyon, New Mexico. M.A. thesis, Yale University, New Haven. Published in 1951. '); INSERT INTO documentary_instance VALUES (7, 'Half House: A Pithouse in Chaco Canyon, New Mexico. ', NULL, NULL, 'Ann Arbor, MI', 'Papers of Michigan Academy of Science, Art and Letters', '1951', 0, NULL, 'Journal', '22 pages', NULL, NULL, NULL, NULL, 5, NULL, 'Adams, Richard N. 1951 Half House: A Pithouse in Chaco Canyon, New Mexico. Papers of Michigan Academy of Science, Art and Letters No. 35:273-295. Ann Arbor, MI.'); INSERT INTO documentary_instance VALUES (8, 'Pueblo Bonito, Chaco Canyon National Monument, Stabilization Report 1975', NULL, NULL, 'Tucson', 'Ruins Stabilization Unit, Western Archeological Center, Tucson.', '1975', 0, NULL, 'Report', NULL, NULL, NULL, 'Stabilization report on file in the NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park. ', NULL, 6, NULL, 'Adams, Stephen E. 1975 Pueblo Bonito, Chaco Canyon National Monument, Stabilization Report 1975. Ruins Stabilization Unit, Western Archeological Center, Tucson. Stabilization report on file in the NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park. '); INSERT INTO documentary_instance VALUES (9, 'Wijiji Ruin, Chaco Canyon National Monument, New Mexico.', NULL, NULL, 'Tucson', 'Western Archeological Center, Tucson.', '1976', 0, NULL, 'Report', NULL, NULL, NULL, 'Stabilization report on file in the NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.', NULL, 7, NULL, 'Adams, Stephen E. 1976 Wijiji Ruin, Chaco Canyon National Monument, New Mexico. Western Archeological Center, Tucson. Stabilization report on file in the NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.'); INSERT INTO documentary_instance VALUES (10, 'Chaco Culture National Historical Park, General Management Plan, Cultural Resources', NULL, NULL, NULL, NULL, '1981', 0, NULL, 'Plan', NULL, NULL, NULL, 'Management plan on file in the NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.', NULL, 8, NULL, 'Adams, Stephen E. 1981 (editor). Chaco Culture National Historical Park, General Management Plan, Cultural Resources. Management plan on file in the NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.'); INSERT INTO documentary_instance VALUES (11, 'Fathoming the Scale of Anasazi Communities.', NULL, NULL, NULL, NULL, '1996', 0, NULL, 'Research Paper', '8 pages', NULL, NULL, 'Anthropological Research Paper No. 48, Arizona State University, Tempe. ', NULL, 9, NULL, 'Adler, Mark 1996 Fathoming the Scale of Anasazi Communities. In Interpreting Southwestern Diversity: Underlying Principles and Overarching Patterns, edited by Paul R. Fish and J. J. Reid, pp. 97-105. Anthropological Research Paper No. 48, Arizona State University, Tempe. '); INSERT INTO documentary_instance VALUES (12, 'An Inventory of Chaco Canyon Human Remains. ', NULL, NULL, NULL, NULL, '1976', 1, NULL, 'Ms. on file', NULL, NULL, NULL, 'NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. ', NULL, 10, NULL, 'Akins, Nancy J. 1976a An Inventory of Chaco Canyon Human Remains. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. '); INSERT INTO documentary_instance VALUES (13, 'The Analysis of a Random Sample of Chaco Canyon Abraders.', NULL, NULL, NULL, NULL, '1976b', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.', NULL, 11, NULL, '1976b The Analysis of a Random Sample of Chaco Canyon Abraders. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO documentary_instance VALUES (14, 'Excavation of a Burial near Kin Ya’a.', NULL, NULL, NULL, NULL, '1978', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.', NULL, 12, NULL, 'Akins, Nancy J. 1978 Excavation of a Burial near Kin Ya’a. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO documentary_instance VALUES (15, 'The Abraders of Chaco Canyon: An Analysis of Their Form and Function', NULL, NULL, NULL, NULL, '1980', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque', NULL, 13, NULL, 'Akin, Nancy J. 1980 The Abraders of Chaco Canyon: An Analysis of Their Form and Function. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Revised and published in 1997.'); INSERT INTO documentary_instance VALUES (16, 'An Analysis of the Faunal Remains from 29SJ423. ', NULL, NULL, NULL, NULL, '1981a', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.', NULL, 14, NULL, 'Akins, Nancy J. 1981a An Analysis of the Faunal Remains from 29SJ423. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO documentary_instance VALUES (17, 'An Analysis of the Faunal Remains from 29SJ627', NULL, NULL, NULL, NULL, '1981b', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque', NULL, 15, NULL, 'Akins, Nancy j. 1981b An Analysis of the Faunal Remains from 29SJ627. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published in 1992.'); INSERT INTO documentary_instance VALUES (18, 'Analysis of the Faunal Remains from 29SJ724.', NULL, NULL, NULL, NULL, '1981c', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.', NULL, 16, NULL, 'Akins, Nancy J. 1981c Analysis of the Faunal Remains from 29SJ724. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO documentary_instance VALUES (19, 'Human Burial Practices within Chaco Canyon', NULL, NULL, NULL, NULL, '1981d', 0, NULL, 'Paper', NULL, NULL, NULL, NULL, NULL, 17, NULL, 'Akins, Nancy J. 1981d Human Burial Practices within Chaco Canyon. Paper presented at the 46th Annual Meeting of the Society for American Archaeology, San Diego, April 29-May 2.'); INSERT INTO documentary_instance VALUES (20, 'The Faunal Remains from 29SJ299', NULL, NULL, NULL, NULL, '1981e', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque', NULL, 18, NULL, 'Akins, Nancy J. 1981e The Faunal Remains from 29SJ299. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO documentary_instance VALUES (21, 'The Faunal Remains from 29SJ628', NULL, NULL, NULL, NULL, '1981f', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque', NULL, 19, NULL, 'Akins, Nancy J. 1981f The Faunal Remains from 29SJ628. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO documentary_instance VALUES (22, 'The Faunal Remains from 29SJ1360', NULL, NULL, NULL, NULL, '1981g', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.', NULL, 20, NULL, 'Akins, Nancy J. 1981g The Faunal Remains from 29SJ1360. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO documentary_instance VALUES (23, 'The Faunal Remains from Shabikeschee Village (29SJ1659). ', NULL, NULL, NULL, NULL, '1981h', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.', NULL, 21, NULL, 'Akins, Nancy J. 1981h The Faunal Remains from Shabikeschee Village (29SJ1659). Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO documentary_instance VALUES (24, 'Analysis of Faunal Remains from Pueblo Alto, Chaco Canyon.', NULL, NULL, NULL, NULL, '1982a', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque', NULL, 23, NULL, 'Akins, Nancy J. 1982a Analysis of Faunal Remains from Pueblo Alto, Chaco Canyon. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Revised and published in 1987.'); INSERT INTO documentary_instance VALUES (25, 'Analysis of the Faunal Remains from Recent Excavations at Una Vida', NULL, NULL, NULL, NULL, '1982b', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque', NULL, 23, NULL, 'Akins, Nancy J. 1982b Analysis of the Faunal Remains from Recent Excavations at Una Vida. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO documentary_instance VALUES (26, 'Faunal Exploitation in Chaco Canyon, New Mexico.', NULL, NULL, NULL, NULL, '1982c', 0, NULL, 'Paper', NULL, NULL, NULL, NULL, NULL, 24, NULL, 'Akins, Nancy J. 1982c Faunal Exploitation in Chaco Canyon, New Mexico. Paper presented at the 47th Annual Meeting of the Society for American Archaeology, Minneapolis.'); INSERT INTO documentary_instance VALUES (27, 'Perspectives on Faunal Resource Utilization, Chaco Canyon, New Mexico', NULL, NULL, NULL, NULL, '1982d', 0, NULL, 'Paper', NULL, NULL, NULL, NULL, NULL, 26, NULL, 'Akins, Nancy J. 1982d Perspectives on Faunal Resource Utilization, Chaco Canyon, New Mexico. Paper presented at the New Mexico Archeological Council Workshop No. 1: Archeological Research in the San Juan Basin. Chaco Culture National Historical Park, NM. Published as 1982e.'); INSERT INTO documentary_instance VALUES (28, 'Perspectives on Faunal Resource Utilization, Chaco Canyon', NULL, NULL, 'New Mexico', 'New Mexico Archeological Council Newsletter', '1982e', 0, NULL, 'Journal', '6 pages', NULL, NULL, NULL, NULL, 26, NULL, 'Akins, Nancy J. 1982e Perspectives on Faunal Resource Utilization, Chaco Canyon. New Mexico Archeological Council Newsletter 4(5-6):23-29.'); INSERT INTO documentary_instance VALUES (29, 'Reports on the Faunal Remains from the Proveniences of Pueblo Alto', NULL, NULL, NULL, NULL, '1982f', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.', NULL, 27, NULL, 'Akins, Nancy J. 1982f Reports on the Faunal Remains from the Proveniences of Pueblo Alto. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Revised and published in 1987.'); INSERT INTO documentary_instance VALUES (30, 'Status from Burial Information', NULL, NULL, NULL, NULL, '1982g', 0, NULL, 'Ms. on File', NULL, NULL, NULL, 'NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque', NULL, 28, NULL, 'Akins, Nancy J. 1982g Status from Burial Information. Ms. on file NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO documentary_instance VALUES (31, 'A Biocultural Approach to the Human Burials from Chaco Canyon, New Mexico', NULL, NULL, NULL, NULL, '1985a', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque', NULL, 31, NULL, 'Akins, Nancy J. 1985a A Biocultural Approach to the Human Burials from Chaco Canyon, New Mexico. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published in 1986.'); INSERT INTO documentary_instance VALUES (32, 'Analyses of the Faunal Remains from Pueblo Alto, Chaco Canyon, New Mexico', NULL, NULL, NULL, NULL, '1985b', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque', NULL, 32, NULL, 'Akins, Nancy J. 1985b Analyses of the Faunal Remains from Pueblo Alto, Chaco Canyon, New Mexico. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Revised version, published in 1987.'); INSERT INTO documentary_instance VALUES (33, 'Prehistoric Faunal Utilization in Chaco Canyon Basketmaker III through Pueblo III', NULL, NULL, 'Albuquerque.', 'Publications in Archeology 18E, Chaco Canyon Studies. National Park Service', '1985c', 0, NULL, 'Journal', '140 pages', NULL, NULL, NULL, NULL, 33, NULL, 'Akins, Nancy J. 1985c Prehistoric Faunal Utilization in Chaco Canyon Basketmaker III through Pueblo III. In Environment and Subsistence of Chaco Canyon, New Mexico, edited by Frances Joan Mathien, pp. 305-445. Publications in Archeology 18E, Chaco Canyon Studies. National Park Service, Albuquerque.'); INSERT INTO documentary_instance VALUES (34, 'The Human Remains from Pueblo Alto', NULL, NULL, NULL, NULL, '1985d', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque', NULL, 34, NULL, 'Akins, Nancy J. 1985d The Human Remains from Pueblo Alto. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published in 1987.'); INSERT INTO documentary_instance VALUES (35, 'A Biocultural Approach to Human Burials from Chaco Canyon, New Mexico.', NULL, NULL, 'Santa Fe', 'Branch of Cultural Research, National Park Service', '1986a', 0, NULL, 'Report of the Chaco Center', NULL, NULL, NULL, NULL, NULL, 35, NULL, 'Akins, Nancy J. 1986a A Biocultural Approach to Human Burials from Chaco Canyon, New Mexico. Reports of the Chaco Center, No. 9. Branch of Cultural Research, National Park Service, Santa Fe.'); INSERT INTO documentary_instance VALUES (36, 'Some Methodological Considerations in the Investigation of Faunal Remains from Chaco Canyon, New Mexico.', NULL, NULL, 'Albuquerque', ' Paper presented at the Ninth Annual Ethnobotanical Conference, Albuquerque', '1986b', 0, NULL, 'Paper', NULL, NULL, NULL, NULL, NULL, 36, NULL, 'Akins, Nancy J. 1986b Some Methodological Considerations in the Investigation of Faunal Remains from Chaco Canyon, New Mexico. Paper presented at the Ninth Annual Ethnobotanical Conference, Albuquerque.'); INSERT INTO documentary_instance VALUES (37, 'Faunal Remains from Pueblo Alto', NULL, NULL, 'Santa Fe', NULL, '1987a', 0, NULL, 'Journal', NULL, NULL, NULL, NULL, NULL, 37, NULL, 'Akins, Nancy J. 1987a Faunal Remains from Pueblo Alto. In Investigations at the Pueblo Alto Complex, Chaco Canyon, New Mexico 1975-1979. Volume III: Artifactual and Biological Analyses, edited by Frances Joan Mathien and Thomas C. Windes, pp. 445-649. Publications in Archeology 18F, Chaco Canyon Studies. National Park Service, Santa Fe.'); INSERT INTO documentary_instance VALUES (38, 'Human Skeletal Remains from Pueblo Alto', NULL, NULL, 'Santa Fe', NULL, '1987b', 0, NULL, 'Journal', NULL, NULL, NULL, NULL, NULL, 38, NULL, 'Akins, Nancy J. 1987b Human Skeletal Remains from Pueblo Alto. In Investigations at the Pueblo Alto Complex, Chaco Canyon, New Mexico 1975-1979. Volume III: Artifactual and Biological Analyses, edited by Frances Joan Mathien and Thomas C. Windes, pp. 789-792. Publications in Archeology 18F, Chaco Canyon Studies. National Park Service, Santa Fe.'); INSERT INTO documentary_instance VALUES (39, 'The Abraders of Pueblo Alto', NULL, NULL, 'Santa Fe', NULL, '1987c', 0, NULL, 'Journal', NULL, NULL, NULL, NULL, NULL, 39, NULL, 'Akins, nancy J. 1987c The Abraders of Pueblo Alto. In Investigations at the Pueblo Alto Complex, Chaco Canyon, New Mexico 1975-1979. Volume III: Artifactual and Biological Analyses, edited by Frances Joan Mathien and Thomas C. Windes, pp. 351-380. Publications in Archeology 18F, Chaco Canyon Studies. National Park Service, Santa Fe.'); INSERT INTO documentary_instance VALUES (40, 'An Analysis of the Faunal Remains from 29SJ627', NULL, NULL, 'Santa Fe', NULL, '1992', 0, NULL, 'Journal', '51 pages', NULL, NULL, NULL, NULL, 40, NULL, 'Akins, Nancy J. 1992 An Analysis of the Faunal Remains from 29SJ627. In Excavations at 29SJ627, Chaco Canyon, New Mexico. Volume II. The Artifact Analyses, edited by Frances Joan Mathien, pp. 319-370. Reports of the Chaco Center No. 11. Branch of Cultural Research, National Park Service, Santa Fe'); INSERT INTO documentary_instance VALUES (41, 'The Abraders of Chaco Canyon: An Analysis of Their Form and Function', NULL, NULL, 'Santa Fe', NULL, '1997', 0, NULL, 'Journal', '245 pages', NULL, NULL, NULL, NULL, 41, NULL, 'Akins, Nancy J. 1997 The Abraders of Chaco Canyon: An Analysis of Their Form and Function. In Ceramics, Lithics, and Ornaments of Chaco Canyon. Analyses of Artifacts from the Chaco Project, 1971-1978, edited by Frances Joan Mathien, pp. 701-946. Publications in Archeology 18G, Chaco Canyon Studies. National Park Service, Santa Fe.'); INSERT INTO documentary_instance VALUES (42, 'Chaco Canyon Mortuary Practices. Archeological Correlates of Complexity', NULL, NULL, 'Albuquerque', ' University of New Mexico Press', '2001', 0, NULL, 'Journal', '23 pages', NULL, NULL, NULL, NULL, 42, NULL, 'Akins, Nancy J. 2001 Chaco Canyon Mortuary Practices. Archeological Correlates of Complexity. In Ancient Burial Practices in the American Southwest: Archaeology, Physical Anthropology, and Native American Perspectives, edited by Douglas R. Mitchell and Judy L. Brunson-Hadley, pp. 167-190. University of New Mexico Press, Albuquerque.'); INSERT INTO documentary_instance VALUES (43, 'The Burials of Pueblo Bonito', NULL, NULL, ' Washington, D.C.', 'Smithsonian Institution Press', '2003', 0, NULL, 'Journal', NULL, NULL, NULL, NULL, NULL, 43, NULL, 'Akins, Nancy J. 2003* The Burials of Pueblo Bonito. In Pueblo Bonito: Center of the Chacoan World, edited by Jill E. Neitzel, pp. . Smithsonian Institution Press, Washington, D.C.'); INSERT INTO documentary_instance VALUES (44, 'Official Explorations for Pacific Railroads', NULL, NULL, NULL, NULL, '1921', 0, NULL, 'Journal', '16 pages', NULL, NULL, 'University of California at Berkeley', NULL, 50, NULL, 'Albright, G. 1921 Official Explorations for Pacific Railroads. Publications in History 11:102-118. University of California at Berkeley. '); INSERT INTO documentary_instance VALUES (45, 'Dogs of the American Aborigines', NULL, NULL, NULL, NULL, '1920', 0, NULL, 'Journal', '84 pages', NULL, NULL, NULL, NULL, 53, NULL, 'Allen, Glover M. 1920 Dogs of the American Aborigines. Museum of Comparative Zoology Bulletin 63(3):431-515 '); INSERT INTO documentary_instance VALUES (46, 'Canid Remains from Pueblo Alto, Bonito, and Pueblo del Arroyo.', NULL, NULL, NULL, NULL, '1954', 0, 'In The Material Culture of Pueblo Bonito by Neil M. Judd', 'Journal', '4 pages', NULL, NULL, 'Smithsonian Miscellaneous Collections No. 124. Washington, D.C.', NULL, 54, NULL, 'Allen, Glover M. 1954 Canid Remains from Pueblo Alto, Bonito, and Pueblo del Arroyo. In The Material Culture of Pueblo Bonito by Neil M. Judd, pp. 385-389. Smithsonian Miscellaneous Collections No. 124. Washington, D.C.'); INSERT INTO documentary_instance VALUES (47, 'Red Knobs: A (non-Chacoan?) Great House in Southeastern Utah', NULL, NULL, 'Denver', NULL, '2002', 0, NULL, 'Paper', NULL, NULL, NULL, NULL, NULL, 55, NULL, 'Allison, James R. 2002 Red Knobs: A (non-Chacoan?) Great House in Southeastern Utah. Paper presented at the 67th Annual Meeting of the Society for American Archaeology, Denver. '); INSERT INTO documentary_instance VALUES (48, 'The Archaeofaunal Remains from 29SJ626', NULL, NULL, NULL, NULL, '1985a', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque', NULL, 44, NULL, 'Akins, Nancy J., and Jack B. Bertram 1985a The Archaeofaunal Remains from 29SJ626. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque '); INSERT INTO documentary_instance VALUES (49, 'The Kin Nahasbas Faunal Remains', NULL, NULL, NULL, NULL, '1985b', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque', NULL, 45, NULL, 'Akins, Nancy J., and Jack B. Bertram 1985b The Kin Nahasbas Faunal Remains. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published in 1988'); INSERT INTO documentary_instance VALUES (50, 'The Kin Nahasbas Faunal Remains', NULL, NULL, 'Santa Fe', 'Branch of Cultural Research, National Park Service, Santa Fe.', '1988', 0, NULL, 'Journal', '12 pages', NULL, NULL, NULL, NULL, 46, NULL, 'Akins, Nancy J., and Jack B. Bertram 1988 The Kin Nahasbas Faunal Remains. In Historic Structure Report, Kin Nahasbas, Chaco Culture National Historical Park, by Frances Joan Mathien and Thomas C. Windes, pp. 275-288. Branch of Cultural Research, National Park Service, Santa Fe.'); INSERT INTO documentary_instance VALUES (51, 'Summary Report of Archaeological Investigations at Una Vida, Chaco Canyon, New Mexico', NULL, NULL, NULL, NULL, '1979', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque ', NULL, 47, NULL, 'Akins, Nancy J., and William B. Gillespie 1979 Summary Report of Archaeological Investigations at Una Vida, Chaco Canyon, New Mexico. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque '); INSERT INTO documentary_instance VALUES (52, 'Human Burial Practices within Chaco Canyon', NULL, NULL, 'San Diego', NULL, '1981', 0, NULL, 'Paper', NULL, NULL, NULL, NULL, NULL, 48, NULL, 'Akins, Nancy J., and John D. Schelberg 1981 Human Burial Practices within Chaco Canyon. Paper presented at the 46th Annual Meeting of the Society for American Archaeology, San Diego. Published in 1984 '); INSERT INTO documentary_instance VALUES (53, 'Evidence of Organizational Complexity as Seen from the Mortuary Practices in Chaco Canyon', NULL, NULL, 'Albuquerque', NULL, '1984', 0, NULL, 'Report', '13 pages', NULL, NULL, NULL, NULL, 49, NULL, 'Akins, Nancy J., and John D. Schelberg 1984 Evidence of Organizational Complexity as Seen from the Mortuary Practices in Chaco Canyon. In Recent Research on Chaco Prehistory, edited by W. James Judge and John D. Schelberg, pp. 89-102. Reports of the Chaco Center No. 8. Division of Cultural Research, National Park Service, Albuquerque'); INSERT INTO documentary_instance VALUES (54, 'Chaco Canyon National Monument', NULL, NULL, 'Stanford', 'Stanford University Press', '1928', 0, 'In Oh, Ranger!, by Horace M. Albright and Frank J. Taylor', 'Journal', '1 page', NULL, NULL, NULL, NULL, 51, NULL, 'Albright, Horace M., and Frank J. Taylor 1928 Chaco Canyon National Monument. In Oh, Ranger!, by Horace M. Albright and Frank J. Taylor, p. 161. Stanford University Press, Stanford '); INSERT INTO documentary_instance VALUES (55, 'An Archeological Application of the Christaller Model', NULL, NULL, NULL, NULL, '1978', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque', NULL, 52, NULL, 'Allan, William C., and John B. Broster 1978 An Archeological Application of the Christaller Model. Paper presented at the 54th Annual Meeting of the Southwestern and Rocky Mountain Division of the American Association for the Advancement of Science, April 28. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque '); INSERT INTO documentary_instance VALUES (56, 'The Development of the Chacoan Interaction Sphere', NULL, NULL, NULL, NULL, '1978', 0, NULL, 'Journal', '37 pages', NULL, NULL, NULL, NULL, 56, NULL, 'Altschul, Jeffrey H. 1978 The Development of the Chacoan Interaction Sphere. Journal of Anthropological Research 34(1):109-146 '); INSERT INTO documentary_instance VALUES (57, 'Prehistoric Southwesterners from Basketmaker to Pueblo', NULL, NULL, NULL, NULL, '1949', 0, NULL, NULL, NULL, NULL, NULL, 'Southwest Museum, Los Angeles ', NULL, 57, NULL, 'Amsden, Charles A. 1949 Prehistoric Southwesterners from Basketmaker to Pueblo. Southwest Museum, Los Angeles '); INSERT INTO documentary_instance VALUES (58, 'Archeological Survey of the San Juan Lateral, Chaco Mesa Route', NULL, NULL, 'Albuquerque', NULL, '1992a', 0, NULL, 'Journal', NULL, NULL, NULL, NULL, NULL, 58, NULL, 'Amsden, Charles W. 1992a Archeological Survey of the San Juan Lateral, Chaco Mesa Route. Volume III of Across the Colorado Plateau: Anthropological Studies for the Transwestern Pipeline Expansion Project. Office of Contract Archeology and Museum of New Mexico, University of New Mexico, Albuquerque '); INSERT INTO documentary_instance VALUES (59, 'Archeological Survey, Site Testing, and Ethnographic Research along the San Juan Lateral', NULL, NULL, 'Albuquerque', NULL, '1992b', 0, NULL, 'Journal', NULL, NULL, NULL, NULL, NULL, 59, NULL, 'Amsden, Charles W. 1992b Archeological Survey, Site Testing, and Ethnographic Research along the San Juan Lateral. Volume V of Across the Colorado Plateau: Anthropological Studies for the Transwestern Pipeline Expansion Project. Office of Contract Archeology and Museum of New Mexico, University of New Mexico, Albuquerque'); INSERT INTO documentary_instance VALUES (60, 'Small Sites of the Chaco', NULL, NULL, NULL, NULL, '1925', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'Archive No. 4853:1at the National Anthropological Archive, Smithsonian Institution, Washington, D.C., and Archive No. 2097 at Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque', NULL, 60, NULL, 'Amsden, Monroe 1925 Small Sites of the Chaco. Ms. on file, Archive No. 4853:1at the National Anthropological Archive, Smithsonian Institution, Washington, D.C., and Archive No. 2097 at Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. '); INSERT INTO documentary_instance VALUES (61, '[Chaco Canyon Ruins and Relics.] ', NULL, NULL, 'New York', 'Pacific States Publishing Co., ', '1907', 0, 'In History of New Mexico, Vol. 2, by G. B. Anderson', 'Journal', '2 pages', NULL, NULL, NULL, NULL, 61, NULL, 'Anderson, G. B. 1907 [Chaco Canyon Ruins and Relics.] In History of New Mexico, Vol. 2, by G. B. Anderson, pp. 860-861. Pacific States Publishing Co., New York '); INSERT INTO documentary_instance VALUES (62, 'Chaco Canyon', NULL, NULL, NULL, NULL, '1976', 0, 'Popular Series No. 17. Southwest Parks and Monuments Association, Globe', 'Journal', NULL, NULL, NULL, NULL, NULL, 62, NULL, 'Anderson, Douglas, and Barbara Anderson 1976 Chaco Canyon. Popular Series No. 17. Southwest Parks and Monuments Association, Globe '); INSERT INTO documentary_instance VALUES (63, 'Cretaceous-Tertiary Palynology, Eastern Side of the San Juan Basin, New Mexico', NULL, NULL, 'Socorro', NULL, '1960', 0, 'New Mexico Bureau of Mines and Mineral Resources Memoir 6', 'Journal', NULL, NULL, NULL, NULL, NULL, 63, NULL, 'Anderson, Roger Yates 1960 Cretaceous-Tertiary Palynology, Eastern Side of the San Juan Basin, New Mexico. New Mexico Bureau of Mines and Mineral Resources Memoir 6. State Bureau of Mines and Mineral Resources, New Mexico Institute of Mining and Technology, Socorro '); INSERT INTO documentary_instance VALUES (64, 'The Chaco Canyon Project: The Tozzer-Farabee Expedition, 1901', NULL, NULL, NULL, NULL, '1970', 0, NULL, NULL, NULL, NULL, NULL, 'Archive 2128J, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque ', NULL, 64, NULL, 'Andrews, Anthony 1970 The Chaco Canyon Project: The Tozzer-Farabee Expedition, 1901. Archive 2128J, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque '); INSERT INTO documentary_instance VALUES (65, 'The Aztec Ruins of Mexico and Arizona', NULL, NULL, 'London', NULL, '1869', 0, 'All The Year Round 1:540-544', 'Journal', '4 pages', NULL, NULL, NULL, NULL, 65, NULL, 'Anonymous 1869 The Aztec Ruins of Mexico and Arizona. All The Year Round 1:540-544. London. May 8 '); INSERT INTO documentary_instance VALUES (66, 'Aztec Ruins in New Mexico', NULL, NULL, NULL, 'Pacific Rural Press', '1880', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 66, NULL, 'Anonymous 1880 Aztec Ruins in New Mexico. Pacific Rural Press 19:185. March 20'); INSERT INTO documentary_instance VALUES (67, 'The First Americans', NULL, NULL, NULL, NULL, '1882', 0, 'Harper''s Magazine', 'Journal', '13 pages', NULL, NULL, NULL, NULL, 67, NULL, 'Anonymous 1882 The First Americans. Harper’s Magazine 65:342-355. August'); INSERT INTO documentary_instance VALUES (68, 'Aboriginal Architecture in the Southwest', NULL, NULL, NULL, NULL, '1888', 0, 'Science', 'Journal', '2 pages', NULL, NULL, NULL, NULL, 68, NULL, 'Anonymous 1888 Aboriginal Architecture in the Southwest. Science 11:257-259'); INSERT INTO documentary_instance VALUES (69, 'National Monuments of New Mexico', NULL, NULL, NULL, NULL, '1918', 0, NULL, 'Journal', '5 pages', NULL, NULL, NULL, NULL, 69, NULL, 'Anonymous 1918 National Monuments of New Mexico. 5. The Chaco Canyon National Monument. El Palacio 5:257-262'); INSERT INTO documentary_instance VALUES (70, 'Explorations in Chaco Canyon in 1920', NULL, NULL, NULL, NULL, '1921a', 0, NULL, 'Journal', '2 pages', NULL, NULL, NULL, NULL, 70, NULL, 'Anonymous 1921a Explorations in Chaco Canyon in 1920. El Palacio 10:(2-5):12-13. February 19'); INSERT INTO documentary_instance VALUES (71, 'The Pueblo Bonito Expedition of the National Geographic Society', NULL, NULL, NULL, NULL, '1921b', 0, 'Science', 'Journal', NULL, NULL, NULL, NULL, NULL, 71, NULL, 'Anonymous 1921b The Pueblo Bonito Expedition of the National Geographic Society. Science 54:458. November 11'); INSERT INTO documentary_instance VALUES (72, 'Ruins of Chaco Canyon, New Mexico', NULL, NULL, NULL, NULL, '1921c', 0, NULL, 'Journal', '6 pages', NULL, NULL, NULL, NULL, 72, NULL, 'Anonymous 1921c Ruins of Chaco Canyon, New Mexico; Nature-Made Treasure Chest to be Excavated and Studied. National Geographic Magazine 39:637-643'); INSERT INTO documentary_instance VALUES (73, 'Chaco Canyon National Monument', NULL, NULL, NULL, NULL, '1925', 0, 'American Scenic and Historical Preservation Society, 30th Annual Report', 'Report', '2 pages', NULL, NULL, NULL, NULL, 73, NULL, 'Anonymous 1925 Chaco Canyon National Monument. American Scenic and Historical Preservation Society, 30th Annual Report, 1925, pp. 156-157'); INSERT INTO documentary_instance VALUES (74, 'Recent Finds in Chaco Canyon', NULL, NULL, NULL, NULL, '1927a', 0, NULL, 'Journal', '3 pages', NULL, NULL, NULL, NULL, 74, NULL, 'Anonymous 1927a Recent Finds in Chaco Canyon. El Palacio 23:485-487'); INSERT INTO documentary_instance VALUES (75, 'Slab House Builders in Chaco Canyon', NULL, NULL, NULL, NULL, '1927b', 0, NULL, 'Journal', '3 pages', NULL, NULL, NULL, NULL, 75, NULL, 'Anonymous 1927b Slab House Builders in Chaco Canyon. El Palacio 23(18):462-464'); INSERT INTO documentary_instance VALUES (76, 'Prehistoric Chaco Canyon “Roads” Puzzle Scientists.', NULL, NULL, NULL, NULL, '1928', 0, NULL, 'Journal', NULL, NULL, NULL, NULL, NULL, 76, NULL, 'Anonymous 1928 Prehistoric Chaco Canyon “Roads” Puzzle Scientists. New Mexico Highway Journal, March'); INSERT INTO documentary_instance VALUES (77, 'East Tower Uncovered', NULL, NULL, NULL, NULL, '1929a', 0, NULL, 'Journal', '2 pages', NULL, NULL, NULL, NULL, 77, NULL, 'Anonymous 1929a East Tower Uncovered. El Palacio 26(19-25):315-316. Also in Digs 1:5'); INSERT INTO documentary_instance VALUES (78, 'Hewett Describes Chaco Canyon, Past and Present', NULL, NULL, NULL, NULL, '1929b', 0, NULL, 'Journal', '3 pages', NULL, NULL, NULL, NULL, 78, NULL, 'Anonymous 1929b Hewett Describes Chaco Canyon, Past and Present. El Palacio 26(19-25):313-315. Also in Digs 1:3-4'); INSERT INTO documentary_instance VALUES (79, 'Talus Mounds Excavated', NULL, NULL, NULL, NULL, '1929c', 0, NULL, 'Journal', '2 pages', NULL, NULL, NULL, NULL, 79, NULL, 'Anonymous 1929c Talus Mounds Excavated. El Palacio 27:40-41'); INSERT INTO documentary_instance VALUES (80, 'University Group Works at Chetro Ketl', NULL, NULL, NULL, NULL, '1929d', 0, NULL, 'Journal', '2 pages', NULL, NULL, NULL, NULL, 80, NULL, 'Anonymous 1929d University Group Works at Chetro Ketl. El Palacio 26(19-25):312-313. Also in Digs1:2-3'); INSERT INTO documentary_instance VALUES (81, 'Dam Saves Pueblo from Enemy Stream', NULL, NULL, NULL, NULL, '1930a', 0, NULL, 'Journal', '1 page', NULL, NULL, NULL, NULL, 81, NULL, 'Anonymous 1930a Dam Saves Pueblo from Enemy Stream. El Palacio 29(12-13):233'); INSERT INTO documentary_instance VALUES (82, 'Excavations and Other Work (Section V of the Director''s Annual Report). ', NULL, NULL, NULL, NULL, '1930b', 0, NULL, 'Journal', '3 pages', NULL, NULL, NULL, NULL, 82, NULL, 'Anonymous 1930b Excavations and Other Work (Section V of the Director''s Annual Report). El Palacio 29(12-13):201-203'); INSERT INTO documentary_instance VALUES (83, 'Glimpses of Our National Monuments', NULL, NULL, 'Washington, D.C.', 'National Park Service', '1930c', 0, NULL, 'Journal', '4 pages', NULL, NULL, NULL, NULL, 83, NULL, 'Anonymous 1930c Glimpses of Our National Monuments. National Park Service, Washington, D.C. pp. 10-14.'); INSERT INTO documentary_instance VALUES (84, 'University Field School', NULL, NULL, NULL, NULL, '1930d', 0, NULL, 'Journal', '2 pages', NULL, NULL, NULL, NULL, 84, NULL, 'Anonymous 1930d University Field School. El Palacio 29(1):31-32'); INSERT INTO documentary_instance VALUES (85, 'Chetro Ketl Still a Riddle: Great Chaco Canyon Site Offers Problems Still to be Solved by Archaeologists', NULL, NULL, NULL, NULL, '1931a', 0, NULL, 'Journal', '3 pages', NULL, NULL, NULL, NULL, 85, NULL, 'Anonymous 1931a Chetro Ketl Still a Riddle: Great Chaco Canyon Site Offers Problems Still to be Solved by Archaeologists. El Palacio 31(3):29-31'); INSERT INTO documentary_instance VALUES (86, 'Summer Field School at Chaco Canyon', NULL, NULL, NULL, NULL, '1931b', 0, NULL, 'Journal', '2 pages', NULL, NULL, NULL, NULL, 86, NULL, 'Anonymous 1931b Summer Field School at Chaco Canyon. El Palacio 31(3):29-3'); INSERT INTO documentary_instance VALUES (87, 'Summer Work Under Way', NULL, NULL, NULL, NULL, '1931c', 0, NULL, 'Journal', '6 pages', NULL, NULL, NULL, NULL, 87, NULL, 'Anonymous 1931c Summer Work Under Way. El Palacio 30(21-22):274-277'); INSERT INTO documentary_instance VALUES (88, 'Chaco Inscriptions', NULL, NULL, NULL, NULL, '1932a', 0, NULL, 'Journal', '2 pages', NULL, NULL, NULL, NULL, 88, NULL, 'Anonymous 1932a Chaco Inscriptions. El Palacio 33(7-8):67-68'); INSERT INTO documentary_instance VALUES (89, 'Dr. Hewett Announces Discovery', NULL, NULL, NULL, NULL, '1932b', 0, NULL, 'Journal', '3 pages', NULL, NULL, NULL, NULL, NULL, NULL, 'Anonymous 1932b Dr. Hewett Announces Discovery. El Palacio 32(19-20):255-257'); INSERT INTO documentary_instance VALUES (90, 'Excavations at Chetro Ketl', NULL, NULL, NULL, NULL, '1932c', 0, NULL, 'Journal', '8 pages', NULL, NULL, NULL, NULL, 90, NULL, 'Anonymous 1932c Excavations at Chetro Ketl. El Palacio 33(2):13-20'); INSERT INTO documentary_instance VALUES (91, 'Excavations at the Ruins of Chetro Ketl in Chaco Canyon, New Mexico', NULL, NULL, NULL, NULL, '1932d', 0, NULL, 'Journal', NULL, NULL, NULL, NULL, NULL, 91, NULL, 'Anonymous 1932d Excavations at the Ruins of Chetro Ketl in Chaco Canyon, New Mexico. The Masterkey 6:98'); INSERT INTO documentary_instance VALUES (92, 'Oldest Tree Ring Record of Ancient Pueblos.', NULL, NULL, NULL, NULL, '1932e', 0, NULL, 'Journal', '3 pages', NULL, NULL, NULL, NULL, 92, NULL, 'Anonymous 1932e Oldest Tree Ring Record of Ancient Pueblos. El Palacio 32(7-8):108-110'); INSERT INTO documentary_instance VALUES (93, 'Announcement of Summer Field Sessions. Chetro Ketl, Chaco Canyon', NULL, NULL, NULL, NULL, '1933a', 0, NULL, 'Journal', '2 pages', NULL, NULL, NULL, NULL, 93, NULL, 'Anonymous 1933a Announcement of Summer Field Sessions. Chetro Ketl, Chaco Canyon. El Palacio 34(7-8):49-54'); INSERT INTO documentary_instance VALUES (94, 'The Chaco Canyon Thirty-Five Years Ago', NULL, NULL, NULL, NULL, '1933c', 0, NULL, 'Journal', '8 pages', NULL, NULL, NULL, NULL, NULL, NULL, 'Anonymous 1933c The Chaco Canyon Thirty-Five Years Ago. El Palacio 34(17-18):127-135'); INSERT INTO documentary_instance VALUES (95, 'The Chaco Canyon Thirty-Five Years Ago', NULL, NULL, NULL, NULL, '1933c', 0, NULL, 'Journal', '8 pages', NULL, NULL, NULL, NULL, 95, NULL, 'Anonymous 1933c The Chaco Canyon Thirty-Five Years Ago. El Palacio 34(17-18):127-135'); INSERT INTO documentary_instance VALUES (96, 'U.S. Department of Interior, National Park Service, Southwestern Monuments Six Year Program', NULL, NULL, NULL, NULL, '1934', 0, NULL, 'Journal', NULL, NULL, NULL, NULL, NULL, 96, NULL, 'Anonymous 1934 U.S. Department of Interior, National Park Service, Southwestern Monuments Six Year Program. U.S. Department of the Interior, National Park Service'); INSERT INTO documentary_instance VALUES (97, 'A Few Papers on the Chaco Canyon', NULL, NULL, NULL, NULL, '1936', 0, NULL, 'Journal', NULL, NULL, NULL, NULL, NULL, 97, NULL, 'Anonymous 1936 A Few Papers on the Chaco Canyon. Southwestern Lore 2(1):22. June'); INSERT INTO documentary_instance VALUES (98, 'New Chaco Building and Season''s Work Discussed', NULL, NULL, NULL, NULL, '1937a', 0, NULL, 'Journal', '3 pages', NULL, NULL, NULL, NULL, 98, NULL, 'Anonymous 1937a New Chaco Building and Season''s Work Discussed. El Palacio 42(13-15):84-86'); INSERT INTO documentary_instance VALUES (99, 'No title', NULL, NULL, NULL, NULL, '1937b', 0, NULL, 'Journal', NULL, NULL, NULL, NULL, NULL, 99, NULL, 'Anonymous 1937b No title. New Mexico Anthropologist 1(3):40'); INSERT INTO documentary_instance VALUES (100, 'The University of New Mexico and the School of American Research', NULL, NULL, NULL, NULL, '1938', 0, NULL, 'Journal', NULL, NULL, NULL, NULL, NULL, 100, NULL, 'Anonymous 1938 The University of New Mexico and the School of American Research. New Mexico Anthropologist 2(3):162'); INSERT INTO documentary_instance VALUES (101, 'Chaco Threatening Rock Falls', NULL, NULL, NULL, NULL, '1941', 0, NULL, 'Journal', '2 pages', NULL, NULL, NULL, NULL, 101, NULL, 'Anonymous 1941 Chaco Threatening Rock Falls. El Palacio 48(2):25-26'); INSERT INTO documentary_instance VALUES (102, 'Chaco Canyon National Monument, New Mexico', NULL, NULL, NULL, NULL, '1955', 0, NULL, 'Pamphlet', NULL, NULL, NULL, NULL, NULL, 102, NULL, 'Anonymous 1955 Chaco Canyon National Monument, New Mexico. U.S. Department of the Interior Pamphlet'); INSERT INTO documentary_instance VALUES (103, 'Professional Activities, Chaco Center, National Park Service', NULL, NULL, NULL, NULL, '1974', 0, NULL, 'Journal', '4 pages', NULL, NULL, NULL, NULL, 103, NULL, 'Anonymous 1974 Professional Activities, Chaco Center, National Park Service. AWANYU 2(4):40-43'); INSERT INTO documentary_instance VALUES (104, 'Professional Activities, Chaco Center, National Park Service', NULL, NULL, NULL, NULL, '1975', 0, NULL, 'Journal', '10 pages', NULL, NULL, NULL, NULL, 104, NULL, 'Anonymous 1975 Professional Activities, Chaco Center, National Park Service. AWANYU 3(3):7-10; 3(4):8-13'); INSERT INTO documentary_instance VALUES (105, 'Professional Activities, Chaco Center, National Park Service', NULL, NULL, NULL, NULL, '1976', 0, NULL, 'Journal', '16 pages', NULL, NULL, NULL, NULL, 105, NULL, 'Anonymous 1976 Professional Activities, Chaco Center, National Park Service. AWANYU 4(1):7, 40-41; 4(2):5-7, 39-41; 4(3):40-42; 4(4):18-21'); INSERT INTO documentary_instance VALUES (106, 'Professional Activities, Chaco Center, National Park Service', NULL, NULL, NULL, NULL, '1977', 0, NULL, 'Journal', '12 pages', NULL, NULL, NULL, NULL, 106, NULL, 'Anonymous 1977 Professional Activities, Chaco Center, National Park Service. AWANYU 5(1):31-33; 5(2):45-48; 5(3):5-7, 36.'); INSERT INTO documentary_instance VALUES (107, 'Chaco Park Land Exchange: A “Win Win” Solution', NULL, NULL, NULL, NULL, '1987', 0, NULL, 'Journal', NULL, NULL, NULL, NULL, NULL, 107, NULL, 'Anonymous 1987 Chaco Park Land Exchange: A “Win Win” Solution. National Parks 61:1. Jan-Feb'); INSERT INTO documentary_instance VALUES (108, 'Arroyo-Cutting and Filling', NULL, NULL, NULL, NULL, NULL, 0, 'Journal of Geology', 'Journal', '11 pages', NULL, NULL, NULL, NULL, 108, NULL, 'Antevs, E. 1952 Arroyo-Cutting and Filling. Journal of Geology 60:375-385 '); INSERT INTO documentary_instance VALUES (109, 'Climate of New Mexico during the Last Glacio-Pluvial', NULL, NULL, NULL, NULL, '1954', 0, 'Journal of Geology ', 'Journal', '10 pages', NULL, NULL, NULL, NULL, 109, NULL, 'Antevs, E. 1954 Climate of New Mexico during the Last Glacio-Pluvial. Journal of Geology 62(2):182-191'); INSERT INTO documentary_instance VALUES (110, 'Stabilization of Pueblo Bonito, Chaco Canyon, Vol. 1', NULL, NULL, NULL, NULL, '1974a', 0, NULL, 'Report', NULL, NULL, NULL, 'Stabilization report on file in the NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park', NULL, 110, NULL, 'Antieau, John 1974a Stabilization of Pueblo Bonito, Chaco Canyon, Vol. 1. Stabilization report on file in the NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park '); INSERT INTO documentary_instance VALUES (111, 'Stabilization of Pueblo Bonito, Chaco Canyon, Vol. 2', NULL, NULL, NULL, NULL, '1974b', 0, NULL, 'Report', NULL, NULL, NULL, 'Stabilization report on file in the NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park', NULL, 111, NULL, 'Antieau, John 1974b Stabilization of Pueblo Bonito, Chaco Canyon, Vol. 2. Stabilization report on file in the NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.'); INSERT INTO documentary_instance VALUES (112, 'Stabilization of Pueblo Bonito, Chaco Canyon, Vol. 3', NULL, NULL, NULL, NULL, '1974c', 0, NULL, 'Report', NULL, NULL, NULL, 'Stabilization report on file in the NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park', NULL, 112, NULL, 'Antieau, John 1974c Stabilization of Pueblo Bonito, Chaco Canyon, Vol. 3. Stabilization report on file in the NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque, and Chaco Culture National Historical Park.'); INSERT INTO documentary_instance VALUES (113, 'Volcanic Structures in the Chuska Mountains, Arizona-New Mexico', NULL, NULL, NULL, NULL, '1957', 0, NULL, 'Journal', '23 pages', NULL, NULL, NULL, NULL, 113, NULL, 'Appledorn, C. R., and H. E. Wright 1957 Volcanic Structures in the Chuska Mountains, Arizona-New Mexico. Geological Society of America Bulletin 68(Pt. 1):445-467 '); INSERT INTO documentary_instance VALUES (114, 'The Mystery of Chaco Canyon', NULL, NULL, NULL, NULL, '1980', 0, NULL, 'Journal', NULL, NULL, NULL, NULL, NULL, 114, NULL, 'Armstrong, Ruth W. 1980* The Mystery of Chaco Canyon. National Parks & Conservation Magazine 54(8): . August '); INSERT INTO documentary_instance VALUES (115, 'Chaco Canyon—Grandeur and Mystery', NULL, NULL, NULL, NULL, '1981', 0, NULL, 'Journal', '10 pages', NULL, NULL, NULL, NULL, 115, NULL, 'Armstrong, Ruth W. 1981 Chaco Canyon—Grandeur and Mystery. New Mexico Magazine 59(2):32-41. February'); INSERT INTO documentary_instance VALUES (116, '“Anteologists” Unearth Secrets of the Ancients', NULL, NULL, NULL, NULL, '1995', 0, NULL, 'Journal', '4 pages', NULL, NULL, NULL, NULL, 116, NULL, 'Arritt, Susan 1995 “Anteologists” Unearth Secrets of the Ancients. New Mexico Magazine 73(2):36-39 '); INSERT INTO documentary_instance VALUES (117, 'People: Past and Present', NULL, NULL, NULL, NULL, '1975', 0, ' In Manual of Remote Sensing', 'Manual', '61 pages', NULL, NULL, NULL, NULL, 117, NULL, 'Aschmann, H. Homer, Leonard W. Bawden, Thomas R. Lyons, and Ralph S. Solecki 1975 People: Past and Present. In Manual of Remote Sensing, edited by Robert G. Reeves, pp. 1999-2060. American Society for Photogrammetry, Falls Church, VA. '); INSERT INTO documentary_instance VALUES (119, 'In The Land of Journey’s Ending, by Mary Austin', NULL, NULL, 'New York', 'Century', '1924', 0, NULL, 'Book', '10 pages', NULL, NULL, NULL, NULL, 118, NULL, 'Austin, Mary 1924 [Chaco Canyon.] In The Land of Journey’s Ending, by Mary Austin, pp. 103-112. Century, New York '); INSERT INTO documentary_instance VALUES (120, 'Archaeoastronomy in the Southwestern United States: A Neighbor''s Eye View', NULL, NULL, NULL, NULL, '1987', 0, ' In Astronomy and Ceremony in the Prehistoric Southwest', 'Paper', '15 pages', NULL, NULL, 'Papers of the Maxwell Museum of Anthropology No. 2. University of New Mexico, Albuquerque ', NULL, 119, NULL, 'Aveni, Anthony F. 1987 Archaeoastronomy in the Southwestern United States: A Neighbor''s Eye View. In Astronomy and Ceremony in the Prehistoric Southwest, edited by John B. Carlson and W. James Judge, pp. 9-23. Papers of the Maxwell Museum of Anthropology No. 2. University of New Mexico, Albuquerque '); INSERT INTO documentary_instance VALUES (121, 'Remote Sensing: Aerial and Terrestrial Photography for Archeologists', NULL, NULL, 'Washington, D.C.', NULL, '1981', 0, NULL, 'Book', NULL, NULL, NULL, NULL, NULL, 120, NULL, 'Avery, Thomas Eugene, and Thomas R. Lyons 1981 Remote Sensing: Aerial and Terrestrial Photography for Archeologists. Supplement No. 7 to Remote Sensing: A Handbook for Archeologists and Cultural Resource Managers by Thomas R. Lyons and Thomas Eugene Avery. Division of Cultural Resource Management, National Park Service, Washington, D.C. '); INSERT INTO documentary_instance VALUES (122, 'Navajo Foods and Cooking Methods', NULL, NULL, NULL, NULL, '1940', 0, NULL, 'Journal', '21 pages', NULL, NULL, NULL, NULL, 121, NULL, 'Bailey, Flora L. 1940 Navajo Foods and Cooking Methods. American Anthropologist 42:270-290 '); INSERT INTO documentary_instance VALUES (123, '[Bird Observations at Chaco Canyon.] In Birds of New Mexico, by Florence M. Bailey', NULL, NULL, NULL, NULL, '1928', 0, NULL, 'Book', '1 page', NULL, NULL, NULL, NULL, 122, NULL, 'Bailey, Florence M. 1928 [Bird Observations at Chaco Canyon.] In Birds of New Mexico, by Florence M. Bailey, p. 42. New Mexico Game and Fish Commission, Santa Fe '); INSERT INTO documentary_instance VALUES (124, '[Mammals of Chaco Canyon.] In Mammals of New Mexico, by Vernon Bailey', NULL, NULL, 'Washington, D.C.', 'Government Printing Office', '1931', 0, NULL, 'Book', '6 pages', NULL, NULL, 'U.S. Department of Agriculture, Bureau of Biological Surveys of American Fauna, No. 53.', NULL, 123, NULL, 'Bailey, Vernon 1931 [Mammals of Chaco Canyon.] In Mammals of New Mexico, by Vernon Bailey, pp. 107, 161, 223-225, 260. U.S. Department of Agriculture, Bureau of Biological Surveys of American Fauna, No. 53. Government Printing Office, Washington, D.C. '); INSERT INTO documentary_instance VALUES (125, 'Archeological Applications of Remote Sensing in the North Central Lowlands', NULL, NULL, NULL, NULL, '1981', 0, NULL, 'Handbook', NULL, NULL, NULL, NULL, NULL, 124, NULL, 'Baker, Craig, and George J. Gumerman 1981 Archeological Applications of Remote Sensing in the North Central Lowlands. Supplement No. 6 to Remote Sensing: A Handbook for Archeologists and Cultural Resource Managers by Thomas R. Lyons and Thomas Eugene Avery. Division of Cultural Resource Management, National Park Service, Washington, D.C. '); INSERT INTO documentary_instance VALUES (126, 'New Evidence for the Relationship of Archaeoastronomy to Chaco Anasazi Sociopolitical Complexity', NULL, NULL, NULL, NULL, '1998', 0, NULL, 'Paper', NULL, NULL, NULL, NULL, NULL, 125, NULL, 'Baker, Larry L., and Kurt T. Mantonya 1998 New Evidence for the Relationship of Archaeoastronomy to Chaco Anasazi Sociopolitical Complexity. Paper presented at the 63rd Annual Meeting of the Society for American Archaeology, Seattle '); INSERT INTO documentary_instance VALUES (127, 'The Question of Cannibalism and Violence in the Anasazi Culture: A Case Study from San Juan County, Utah', NULL, NULL, NULL, NULL, '1994', 0, NULL, 'Journal', '12 pages', NULL, NULL, NULL, NULL, 126, NULL, 'Baker, Shane A. 1994 The Question of Cannibalism and Violence in the Anasazi Culture: A Case Study from San Juan County, Utah. Blue Mountain Shadows 13:30-41 '); INSERT INTO documentary_instance VALUES (128, 'Review of Brand et al.’s Tseh So', NULL, NULL, NULL, NULL, '1938a', 0, NULL, 'Journal', '5 pages', NULL, NULL, NULL, NULL, 127, NULL, 'Baldwin, Gordon C. 1938a Review of Brand et al.’s Tseh So. American Antiquity 4:80-84 '); INSERT INTO documentary_instance VALUES (129, 'A Basket Maker III Sandal Tablet', NULL, NULL, NULL, NULL, '1938b', 0, NULL, 'Journal', '5 pages', NULL, NULL, NULL, NULL, 128, NULL, 'Baldwin, Gordon C. 1938b A Basket Maker III Sandal Tablet. Southwestern Lore 5(30):48-52'); INSERT INTO documentary_instance VALUES (130, 'Stratigraphic Relationships of Cretaceous and Early Tertiary Rocks of a Part of Northwestern San Juan Basin', NULL, NULL, NULL, NULL, '1953', 0, NULL, 'Unpublished M.S. thesis', NULL, NULL, NULL, 'Geology Department, University of New Mexico, Albuquerque ', NULL, 129, NULL, 'Baltz, Elmer H. 1953 Stratigraphic Relationships of Cretaceous and Early Tertiary Rocks of a Part of Northwestern San Juan Basin. Unpublished M.S. thesis, Geology Department, University of New Mexico, Albuquerque '); INSERT INTO documentary_instance VALUES (131, 'A Reconnaissance for Uranium in Carbonaceous Rocks in Southwestern Colorado and Parts of New Mexico', NULL, NULL, NULL, NULL, '1955a', 0, NULL, 'Report', NULL, NULL, NULL, 'U.S. Geological Survey, Oak Ridge, TN, and U.S. Atomic Energy Commission, Technical Information Service, Washington, D.C', NULL, 130, NULL, 'Baltz, Elmer H. 1955a A Reconnaissance for Uranium in Carbonaceous Rocks in Southwestern Colorado and Parts of New Mexico. U.S. Geological Survey, Oak Ridge, TN, and U.S. Atomic Energy Commission, Technical Information Service, Washington, D.C'); INSERT INTO documentary_instance VALUES (132, 'A Reconnaissance for Uranium in Parts of New Mexico and Colorado, 1954', NULL, NULL, NULL, NULL, '1955b', 0, NULL, 'Report', NULL, NULL, NULL, 'U.S. Geological Survey, Oak Ridge, TN, and U.S. Atomic Energy Commission, Technical Information Extension, Washington, D.C', NULL, 131, NULL, 'Baltz, Elmer H. 1955b A Reconnaissance for Uranium in Parts of New Mexico and Colorado, 1954. U.S. Geological Survey, Oak Ridge, TN, and U.S. Atomic Energy Commission, Technical Information Extension, Washington, D.C.'); INSERT INTO documentary_instance VALUES (133, 'Stratigraphy and Geologic Structure of Uppermost Cretaceous and Tertiary Rocks of the East-Central Part of the San Juan Basin, New Mexico', NULL, NULL, NULL, NULL, '1962', 0, NULL, 'Unpublished Ph. D. dissertation', NULL, NULL, NULL, NULL, NULL, 132, NULL, 'Baltz, Elmer H. 1962 Stratigraphy and Geologic Structure of Uppermost Cretaceous and Tertiary Rocks of the East-Central Part of the San Juan Basin, New Mexico. Unpublished Ph.D. dissertation, Geology Department, University of New Mexico, Albuquerque'); INSERT INTO documentary_instance VALUES (134, 'Stratigraphy and Regional Tectonic Implications of Part of Upper Cretaceous and Tertiary Rocks, East-Central San Juan Basin, New Mexico', NULL, NULL, NULL, NULL, '1967', 0, NULL, 'Paper', '1 page', NULL, NULL, NULL, NULL, 133, NULL, 'Baltz, Elmer H. 1967 Stratigraphy and Regional Tectonic Implications of Part of Upper Cretaceous and Tertiary Rocks, East-Central San Juan Basin, New Mexico. U.S.G.S. Professional Paper No. 552, p. 101, Washington, D.C'); INSERT INTO documentary_instance VALUES (135, 'History of Nomenclature and Stratigraphy of Rocks Adjacent to the Cretaceous-Tertiary Boundary, Western San Juan Basin, New Mexico', NULL, NULL, 'Washington, D.C.', 'Government Printing Office', '1966', 0, NULL, 'Report', NULL, NULL, NULL, NULL, NULL, 134, NULL, 'Baltz, Elmer H., Sidney R. Ash, and Roger Y. Anderson 1966 History of Nomenclature and Stratigraphy of Rocks Adjacent to the Cretaceous-Tertiary Boundary, Western San Juan Basin, New Mexico. U.S.G.S. Geological Survey Professional Paper 524D. Government Printing Office, Washington, D.C. '); INSERT INTO documentary_instance VALUES (136, 'Guidebook of West-central New Mexico', NULL, NULL, NULL, NULL, '1959', 0, NULL, 'Book', NULL, NULL, NULL, NULL, NULL, 135, NULL, 'Baltz, Elmer H., and James E. Weir 1959 Guidebook of West-central New Mexico. New Mexico Geological Society, 10th Field Conference. New Mexico Geological Society, Socorro, NM '); INSERT INTO documentary_instance VALUES (137, 'Ground-Water Resources of the Southern Part of the Jicarilla Apache Indian Reservation and Adjacent Areas New Mexico', NULL, NULL, 'Washington, D.C.', NULL, '1967', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Baltz, Elmer H., and Samuel W. West 1967 Ground-Water Resources of the Southern Part of the Jicarilla Apache Indian Reservation and Adjacent Areas New Mexico. U.S.G.S. Water Supply Paper 1576-H. Government Printing Office, Washington, D.C. '); INSERT INTO documentary_instance VALUES (138, 'Ground-Water Resources of the Southern Part of the Jicarilla Apache Indian Reservation and Adjacent Areas New Mexico', NULL, NULL, 'Washington, D.C.', 'Government Printing Office', '1967', 0, NULL, 'Paper', NULL, NULL, NULL, NULL, NULL, 136, NULL, 'Baltz, Elmer H., and Samuel W. West 1967 Ground-Water Resources of the Southern Part of the Jicarilla Apache Indian Reservation and Adjacent Areas New Mexico. U.S.G.S. Water Supply Paper 1576-H. Government Printing Office, Washington, D.C. '); INSERT INTO documentary_instance VALUES (118, ' In The Land of Journey’s Ending, by Mary Austin', NULL, NULL, 'New York', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 118, NULL, 'Austin, Mary 1924 [Chaco Canyon.] In The Land of Journey’s Ending, by Mary Austin, pp. 103-112. Century, New York '); INSERT INTO documentary_instance VALUES (139, '[Ruins, Pottery, and Hieroglyphics of Chaco Canyon.]', NULL, NULL, 'New York', 'Appleton', '1875', 0, NULL, 'Book', '9 pages', NULL, NULL, NULL, NULL, 137, NULL, 'Bancroft, Hubert H. 1875 [Ruins, Pottery, and Hieroglyphics of Chaco Canyon.] In The Native Races of the Pacific States of North America, by Hubert H. Bancroft, pp. 653-661. Appleton, New York '); INSERT INTO documentary_instance VALUES (140, 'The Native Races', NULL, NULL, NULL, NULL, '1883', 0, NULL, 'Journal', '14 pages', NULL, NULL, NULL, NULL, 138, NULL, 'Bancroft, Hubert H. 1883 The Native Races. Antiquities 4:650-663. San Francisco'); INSERT INTO documentary_instance VALUES (141, 'Contributions to the History of the Southwestern Portion of the United States', NULL, NULL, NULL, NULL, '1890', 0, 'Archaeological Institute of America, American Series No. 5', 'Book', NULL, NULL, NULL, NULL, NULL, 139, NULL, 'Bandelier, Adolph F. A. 1890 Contributions to the History of the Southwestern Portion of the United States. Archaeological Institute of America, American Series No. 5 '); INSERT INTO documentary_instance VALUES (142, 'An Outline of the Documentary History of the Zuni Tribe', NULL, NULL, NULL, NULL, '1892a', 0, 'Journal of American Ethnology and Archaeology 3(Pt. 1):', 'Journal', '116 pages', NULL, NULL, NULL, NULL, 140, NULL, 'Bandelier, Adolph F. A. 1892a An Outline of the Documentary History of the Zuni Tribe. Journal of American Ethnology and Archaeology 3(Pt. 1):1-115'); INSERT INTO documentary_instance VALUES (143, '[Chaco Canyon.] ', NULL, NULL, NULL, NULL, '1892b', 0, NULL, 'Paper', '4 pages', NULL, NULL, NULL, NULL, 141, NULL, 'Bandelier, Adolph F. A. 1892b [Chaco Canyon.] In Final Report of Investigations Among the Indians of the Southwestern United States, Carried Out Mainly in the Years from 1880-1895. Papers of the Archaeological Institute of America, American Series 4, Part II, pp. 302-305'); INSERT INTO documentary_instance VALUES (144, 'Draft Report on Archaeological Remote Sensing Research with Refractive Seismology', NULL, NULL, NULL, NULL, '1980', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque', NULL, 142, NULL, 'Bandy, Philip A. 1980 Draft Report on Archaeological Remote Sensing Research with Refractive Seismology. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. '); INSERT INTO documentary_instance VALUES (146, 'Tree-Ring Dating of Archaeological Sites in the Chaco Canyon Region, New Mexico.', NULL, NULL, NULL, NULL, '1959', 0, NULL, 'Unpublished Ph.D. dissertation', NULL, NULL, NULL, NULL, NULL, 144, NULL, 'Bannister, Bryant 1959 Tree-Ring Dating of Archaeological Sites in the Chaco Canyon Region, New Mexico. Unpublished Ph.D. dissertation, Department of Anthropology, University of Arizona, Tucson'); INSERT INTO documentary_instance VALUES (145, 'Tree-Ring Analysis as Applied to the Dating of Kin Kletso Ruin, Chaco Canyon, New Mexico', NULL, NULL, NULL, NULL, '1953', 0, NULL, 'Unpublished M.A. thesis', NULL, NULL, NULL, NULL, NULL, 143, NULL, 'Bannister, Bryant 1953 Tree-Ring Analysis as Applied to the Dating of Kin Kletso Ruin, Chaco Canyon, New Mexico. Unpublished M.A. thesis, Department of Anthropology, University of Arizona, Tucson '); INSERT INTO documentary_instance VALUES (147, 'Southwestern Dated Ruins VII', NULL, NULL, NULL, NULL, '1960', 0, NULL, 'Journal', '3 pages', NULL, NULL, NULL, NULL, 145, NULL, 'Bannister, Bryant 1960 Southwestern Dated Ruins VII. Tree-Ring Bulletin 23(1-4):19-21'); INSERT INTO documentary_instance VALUES (148, 'Dendrochronology', NULL, NULL, NULL, NULL, '1963', 0, NULL, 'Form', NULL, NULL, NULL, NULL, NULL, 146, NULL, 'Bannister, Bryant 1963* Dendrochronology. In ... Edited by E. Wiggs, et al., Basic Books Inc'); INSERT INTO documentary_instance VALUES (149, 'Tree-Ring Dating of the Archeological Sites in the Chaco Canyon Region, New Mexico', NULL, NULL, NULL, NULL, '1965', 0, 'Southwestern Monuments Association Technical Series 6', 'Journal', '90 pages', NULL, NULL, NULL, NULL, 147, NULL, 'Bannister, Bryant 1965 Tree-Ring Dating of the Archeological Sites in the Chaco Canyon Region, New Mexico. Southwestern Monuments Association Technical Series 6(2):117-206, Globe, AZ'); INSERT INTO documentary_instance VALUES (150, 'The Dendrochronology of Room 93, Chetro Ketl', NULL, NULL, NULL, NULL, '1978', 0, NULL, 'Appendix', '2 pages', NULL, NULL, 'Anthropological Papers No. 22. University of Arizona, Tucson ', NULL, 148, NULL, 'Bannister, Bryant, and William J. Robinson 1978 The Dendrochronology of Room 93, Chetro Ketl. Appendix C in Wooden Ritual Artifacts from Chaco Canyon, New Mexico: The Chetro Ketl Collection, by R. Gwinn Vivian, Dulce N. Dodgen, and Gayle H. Hartman, pp. 133-134. Anthropological Papers No. 22. University of Arizona, Tucson '); INSERT INTO documentary_instance VALUES (151, 'Tree-Ring Dates from New Mexico A, G-H, Shiprock-Zuni-Mt. Taylor Area', NULL, NULL, 'Tucson', 'Laboratory of Tree-Ring Research, University of Arizona, Tucson', '1970', 0, NULL, 'Paper', NULL, NULL, NULL, NULL, NULL, 149, NULL, 'Bannister, Bryant, William J. Robinson, and Richard L. Warren 1970 Tree-Ring Dates from New Mexico A, G-H, Shiprock-Zuni-Mt. Taylor Area. Laboratory of Tree-Ring Research, University of Arizona, Tucson '); INSERT INTO documentary_instance VALUES (153, 'Our Whole Country', NULL, NULL, 'Cincinnati', NULL, '1861', 0, 'Our Whole Country', 'Book', '4 pages', NULL, NULL, NULL, NULL, 151, NULL, 'Barber, J. W., and H. Howe 1861 Our Whole Country. In The Past and Present of the United States, Vol. 2, pp. 1438-1441. Cincinnati '); INSERT INTO documentary_instance VALUES (154, 'Polydactyly in the Southwest', NULL, NULL, NULL, NULL, '1994', 0, NULL, 'Book', '13 pages', NULL, NULL, NULL, NULL, 152, NULL, 'Barnes, Ethne 1994 Polydactyly in the Southwest. Kiva 59(4):419-431 '); INSERT INTO documentary_instance VALUES (155, 'New Mexico-Colorado 12,000 Square Mile San Juan Basin, etc', NULL, NULL, NULL, NULL, '1933', 0, NULL, 'Journal', '5 pages', NULL, NULL, NULL, NULL, 153, NULL, 'Barnes, F. C. 1948 New Mexico-Colorado 12,000 Square Mile San Juan Basin, etc. The Oil and Gas Journal 27(4):73-77 '); INSERT INTO documentary_instance VALUES (156, 'Pueblo Milling Stones of the Flagstaff Region and Their Relation to Others in the Southwest', NULL, NULL, 'Flagstaff', NULL, '1933', 0, NULL, 'Journal', '30 pages', NULL, NULL, NULL, NULL, 154, NULL, 'Bartlett, Katherine 1933 Pueblo Milling Stones of the Flagstaff Region and Their Relation to Others in the Southwest. Museum of Northern Arizona Bulletin 3:3-32. Flagstaff '); INSERT INTO documentary_instance VALUES (152, 'Dendrochronology', NULL, NULL, NULL, NULL, '1955', 0, NULL, 'Journal', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Bannister, Bryant, and T. L. Smiley 1955 Dendrochronology. In Geochronology with Special Reference to Southwestern United States, edited by T. L. Smiley. University of Arizona Physical Sciences Bulletin No. 2. Tucson '); INSERT INTO documentary_instance VALUES (157, 'Contributions to the Geology and Palentology of San Juan County, New Mexico; Stratigraphy of a Part of the Chaco River Valley. ', NULL, NULL, 'Washington, D.C.', 'Government Printing Office', '1917', 0, 'U.S.G.S. Reference Paper No. 98', 'Paper', '8 pages', NULL, NULL, NULL, NULL, 155, NULL, 'Bauer, Clyde Max 1917 Contributions to the Geology and Palentology of San Juan County, New Mexico; Stratigraphy of a Part of the Chaco River Valley. U.S.G.S. Reference Paper No. 98, pp. 271-278. Government Printing Office, Washington, D.C '); INSERT INTO documentary_instance VALUES (158, 'Coal in the Middle and Eastern Parts of San Juan County, New Mexico', NULL, NULL, NULL, NULL, '1921', 0, 'U.S.G.S. Bulletin 716C. Washington, D.C', 'Bulletin', NULL, NULL, NULL, NULL, NULL, 156, NULL, 'Bauer, C. M., and J. B. Reeside, Jr. 1921 Coal in the Middle and Eastern Parts of San Juan County, New Mexico. U.S.G.S. Bulletin 716C. Washington, D.C '); INSERT INTO documentary_instance VALUES (159, 'The Ambrosia Lake Project. Archaeological Investigations of Three Small Sites Associated with the Southern Chacoan Outlier of Kin Nizhoni, McKinley County, New Mexico', NULL, NULL, NULL, NULL, '1990', 0, 'UMTRA Archaeological Report No. 53. CASA, Cortez', 'Report', NULL, NULL, NULL, NULL, NULL, 157, NULL, 'Baugh, Timothy G. 1990 The Ambrosia Lake Project. Archaeological Investigations of Three Small Sites Associated with the Southern Chacoan Outlier of Kin Nizhoni, McKinley County, New Mexico. UMTRA Archaeological Report No. 53. CASA, Cortez '); INSERT INTO documentary_instance VALUES (160, 'Pueblo and Cliff Dwellers of the Southwest', NULL, NULL, NULL, NULL, '1902', 0, NULL, 'Journal', '6 pages', NULL, NULL, NULL, NULL, 158, NULL, 'Baum, Henry M. 1902 Pueblo and Cliff Dwellers of the Southwest. Records of the Past 1:356-361 '); INSERT INTO documentary_instance VALUES (161, 'Pueblo Bonito: A Case Study in Community Design to Utilize Solar Energy', NULL, NULL, 'University of Wisconsin, Madison', NULL, '1980', 0, NULL, 'Unpublished M.S. Thesis', NULL, NULL, NULL, NULL, NULL, 159, NULL, 'Baxter, Victor 1980 Pueblo Bonito: A Case Study in Community Design to Utilize Solar Energy. Unpublished M.S. thesis, Department of Landscape Architecture, University of Wisconsin, Madison '); INSERT INTO documentary_instance VALUES (162, 'Chaco/Pueblo Bonito: A Computer Analysis Applied to an Ancient Solar Dwelling', NULL, NULL, NULL, NULL, '1982', 0, NULL, 'Journal', '7 pages', NULL, NULL, NULL, NULL, 160, NULL, 'Baxter, Victor 1982 Chaco/Pueblo Bonito: A Computer Analysis Applied to an Ancient Solar Dwelling. Landscape Journal 1(2):85-91.'); INSERT INTO documentary_instance VALUES (163, 'Archaeological Investigations in the Eastern Red Mesa Valley: The Plains/Escalante Generating Station', NULL, NULL, 'Santa Fe', ' School of American Research, Santa Fe', '1982', 0, NULL, 'Book', NULL, NULL, NULL, NULL, NULL, 161, NULL, 'Beal, John D. 1982 (editor) Archaeological Investigations in the Eastern Red Mesa Valley: The Plains/Escalante Generating Station. School of American Research, Santa Fe '); INSERT INTO documentary_instance VALUES (164, 'The Lee Ranch Mine Project: Dimensions of Occupational Persistence', NULL, NULL, 'Santa Fe', 'Archaeology Division, School of American Research, Santa Fe', '1984', 0, NULL, 'Book', NULL, NULL, NULL, NULL, NULL, 162, NULL, 'Beal, John D. 1984 (compiler) The Lee Ranch Mine Project: Dimensions of Occupational Persistence. Archaeology Division, School of American Research, Santa Fe'); INSERT INTO documentary_instance VALUES (165, 'The Navajo Nation’s Concerns and Recommendations for the Management of Fajada Butte, Chaco Culture National Historical Park, New Mexico', NULL, NULL, NULL, NULL, '1993', 0, NULL, 'Report', NULL, NULL, NULL, NULL, NULL, 163, NULL, 'Begay, Richard M., Alexandra Roberts, Klara B. Kelley, and Alfred Yazzi 1993 The Navajo Nation’s Concerns and Recommendations for the Management of Fajada Butte, Chaco Culture National Historical Park, New Mexico. Prepared for Richard W. Stoffle, Bureau of Applied Research in Anthropology, University of Arizona, Tucson, by the Navajo Historic Preservation Department, Window Rock, AZ '); INSERT INTO documentary_instance VALUES (166, 'On the Native Races of New Mexico', NULL, NULL, NULL, NULL, '1969', 0, NULL, 'Journal', '53 pages', NULL, NULL, NULL, NULL, 164, NULL, 'Bell, W. A. 1869 On the Native Races of New Mexico. Journal of Ethnological Society of London 1:222-274 '); INSERT INTO documentary_instance VALUES (167, 'New Tracks in North America', NULL, NULL, NULL, NULL, '1870', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 165, NULL, 'Bell, W. A. 1870 New Tracks in North America. London'); INSERT INTO documentary_instance VALUES (168, 'Government Explorations in the Territory of New Mexico, 1846-1859', NULL, NULL, NULL, NULL, '1934', 0, NULL, 'Journal', '33 pages', NULL, NULL, NULL, NULL, 166, NULL, 'Bender, A. B. 1934 Government Explorations in the Territory of New Mexico, 1846-1859. New Mexico Historical Review 9:1-32 '); INSERT INTO documentary_instance VALUES (169, 'Analysis of Two Magnetic Surveys in Chaco Canyon National Monument: Pueblo Alto and 29SJ633', NULL, NULL, NULL, NULL, '1981', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'NPS Chaco Cullture NHP Museum Archive, University of New Mexico, Albuquerque ', NULL, 167, NULL, 'Bennett, Connie, and John Weymouth 1981 Analysis of Two Magnetic Surveys in Chaco Canyon National Monument: Pueblo Alto and 29SJ633. Contract PS-6115-8-0197 to the Nebraska Center for Archaeophysical Research, Department of Physics and Astronomy, University of Nebraska, Lincoln through the Midwest Archeological Center, National Park Service, Lincoln. Ms. on file, NPS Chaco Cullture NHP Museum Archive, University of New Mexico, Albuquerque '); INSERT INTO documentary_instance VALUES (170, 'Analysis of Two Magnetic Surveys in Chaco Canyon National Monument: Pueblo Alto and 29SJ 633', NULL, NULL, NULL, NULL, '1987', 0, NULL, 'Book', '7 pages', NULL, NULL, 'Publications in Archeology 18F, Chaco Canyon Studies. National Park Service, Santa Fe', NULL, 168, NULL, 'Bennett, Connie, and John Weymouth 1987 Analysis of Two Magnetic Surveys in Chaco Canyon National Monument: Pueblo Alto and 29SJ 633. In Investigations at the Pueblo Alto Complex, Chaco Canyon, New Mexico, 1975-1979. Volume IV. Microfiche, edited by Thomas C. Windes and Frances Joan Mathien, pp. MF-21-MF-27. Publications in Archeology 18F, Chaco Canyon Studies. National Park Service, Santa Fe'); INSERT INTO documentary_instance VALUES (171, 'Analysis of the Magnetic Survey at Site 29SJ633', NULL, NULL, NULL, NULL, NULL, 0, NULL, 'Book', '4 pages', NULL, NULL, 'Reports of the Chaco Center No. 10. Branch of Cultural Research, National Park Service, Santa Fe', NULL, 169, NULL, 'Bennett, Connie, and John Weymouth 1991 Analysis of the Magnetic Survey at Site 29SJ633. In Excavation at 29SJ633: The Eleventh Hour Site, Chaco Canyon, New Mexico, edited by Frances Joan Mathien, pp. 357-360. Reports of the Chaco Center No. 10. Branch of Cultural Research, National Park Service, Santa Fe'); INSERT INTO documentary_instance VALUES (172, 'Analysis of the Faunal Remains from Site 29SJ724', NULL, NULL, 'University of New Mexico, Albuquerque', 'Class paper, Anthropology, University of New Mexico, Albuquerque', '1978a', 0, NULL, 'Paper', NULL, NULL, NULL, NULL, NULL, 170, NULL, 'Bennett, Eric E. 1978a Analysis of the Faunal Remains from Site 29SJ724. Class paper, Anthropology, University of New Mexico, Albuquerque '); INSERT INTO documentary_instance VALUES (173, 'Testing of Two Different Ways of Holding a Mano to Produce a Triangular Cross Section', NULL, NULL, NULL, NULL, '1978b', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque', NULL, 171, NULL, 'Bennett, Eric E. 1978b Testing of Two Different Ways of Holding a Mano to Produce a Triangular Cross Section. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque'); INSERT INTO documentary_instance VALUES (174, 'Anasazi Sun-Watching Stations', NULL, NULL, NULL, NULL, '1980', 0, NULL, 'Journal', '6 pages', NULL, NULL, NULL, NULL, 172, NULL, 'Benson, C. 1980 Anasazi Sun-Watching Stations. El Palacio 86(2):4-9 '); INSERT INTO documentary_instance VALUES (175, 'Examination of a Cartridge Casing from Pueblo Alto, Other Structure 13', NULL, NULL, NULL, NULL, '1987', 0, NULL, 'Book', '5 pages', NULL, NULL, 'Publications in Archeology 19F, Chaco Canyon Studies. National Park Service, Santa Fe ', NULL, 173, NULL, 'Berger, Scott P. 1987 Examination of a Cartridge Casing from Pueblo Alto, Other Structure 13. In Investigations at the Pueblo Alto Complex, Chaco Canyon, New Mexico, 1975-1979. Volume IV. Microfiche, edited by Thomas C. Windes and Frances Joan Mathien, pp. MF-2-MF-6. Publications in Archeology 19F, Chaco Canyon Studies. National Park Service, Santa Fe '); INSERT INTO documentary_instance VALUES (176, 'Reassessing the Scale of Social Action at Pueblo Bonito, Chaco Canyon, New Mexico', NULL, NULL, NULL, NULL, '1999', 0, NULL, 'Book', '24 pages', NULL, NULL, NULL, NULL, 174, NULL, 'Bernardini, Wesley 1999 Reassessing the Scale of Social Action at Pueblo Bonito, Chaco Canyon, New Mexico. Kiva 64(4):447-470 '); INSERT INTO documentary_instance VALUES (177, 'Archaeofaunal Analysis of Samples from the "Employees Quarters," Pueblo del Arroyo, Chaco Culture National Historical Park', NULL, NULL, NULL, NULL, '1988', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque ', NULL, 175, NULL, 'Bertram, Jack B. 1988 Archaeofaunal Analysis of Samples from the "Employees Quarters," Pueblo del Arroyo, Chaco Culture National Historical Park. Contract PX 7029-7-0785. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque '); INSERT INTO documentary_instance VALUES (178, 'Inventory and Provenience Check. Tree-Ring Specimens from Chetro Ketl, Chaco Canyon, New Mexico', NULL, NULL, NULL, NULL, '1979', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque ', NULL, 176, NULL, 'Betancourt, Julio L. 1979 Inventory and Provenience Check. Tree-Ring Specimens from Chetro Ketl, Chaco Canyon, New Mexico. Contract with the Laboratory of Tree-Ring Research, University of Arizona, Tucson. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque '); INSERT INTO documentary_instance VALUES (179, 'Fossil Packrat Middens from Sheep Camp Shelter (29SJ178). ', NULL, NULL, NULL, NULL, NULL, 0, NULL, 'Book', '19 pages', NULL, NULL, 'Museum of Anthropology Project Report Series No. 53. University of Kansas', NULL, 177, NULL, 'Betancourt, Julio L. 1984 Fossil Packrat Middens from Sheep Camp Shelter (29SJ178). Chapter 9 in Archaic Prehistory and Paleoenvironments in the San Juan Basin of New Mexico: The Chaco Shelters Project, edited by Alan H. Simmons, pp. 167-185. Museum of Anthropology Project Report Series No. 53. University of Kansas'); INSERT INTO documentary_instance VALUES (180, 'Late Quaternary Biogeography of the Colorado Plateau', NULL, NULL, NULL, NULL, '1990', 0, NULL, 'Book', '34 pages', NULL, NULL, NULL, NULL, NULL, NULL, 'Betancourt, Julio L. 1990 Late Quaternary Biogeography of the Colorado Plateau. In Packrat Middens: The Last 40,000 Years of Biotic Changes, edited by Julio L. Betancourt, Thomas R. Van Devender, and Paul S. Martin, pp. 259-292. University of Arizona, Tucson'); INSERT INTO documentary_instance VALUES (181, 'Prehistoric Long-Distance Transport of Spruce and Fir Construction Beams, Chaco Canyon, New Mexico', NULL, NULL, NULL, NULL, '1984', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'Department of Geosciences, University of Arizona, Tucson. Revised and published in 1986 ', NULL, 179, NULL, 'Betancourt, Julio L., Jeffrey S. Dean, and Herbert M. Hull 1984 Prehistoric Long-Distance Transport of Spruce and Fir Construction Beams, Chaco Canyon, New Mexico. Ms. on file, Department of Geosciences, University of Arizona, Tucson. Revised and published in 1986 '); INSERT INTO documentary_instance VALUES (182, 'Prehistoric Long-Distance Transport of Construction Beams, Chaco Canyon, New Mexico', NULL, NULL, NULL, NULL, '1986', 0, NULL, 'Journal', '6 pages', NULL, NULL, NULL, NULL, 180, NULL, 'Betancourt, Julio L., Jeffrey S. Dean, and Herbert M. Hull 1986 Prehistoric Long-Distance Transport of Construction Beams, Chaco Canyon, New Mexico. American Antiquity 51(2):370-375'); INSERT INTO documentary_instance VALUES (183, 'Fossil Packrat Middens from Chaco Canyon, New Mexico: Cultural and Ecological Significance', NULL, NULL, 'Albuquerque', 'Adobe Press', '1983', 0, NULL, 'Book', '11 pages', NULL, NULL, NULL, NULL, 181, NULL, 'Betancourt, Julio L., Paul S. Martin, and Thomas R. Van Devender 1983 Fossil Packrat Middens from Chaco Canyon, New Mexico: Cultural and Ecological Significance. In Chaco Canyon Country. A Field Guide to the Geomorphology, Quarternary Geology, Paleoecology, and Environmental Geology of Northwestern New Mexico, edited by Stephen G. Wells, David W. Love, and Thomas W. Gardner, pp. 207-217. American Geomorphological Field Group, 1983 Field Trip Guidebook. Adobe Press, Albuquerque '); INSERT INTO documentary_instance VALUES (184, 'Holocene Environments in Chaco Canyon, New Mexico: The Packrat Midden Record', NULL, NULL, NULL, NULL, '1980', 0, NULL, 'Paper', NULL, NULL, NULL, 'NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque ', NULL, 182, NULL, 'Betancourt, Julio L., and Thomas R. Van Devender 1980 Holocene Environments in Chaco Canyon, New Mexico: The Packrat Midden Record. Contract PX 7486-9-0098 to the Department of Geosciences, University of Arizona, and the Arizona-Sonora Desert Museum, Tucson. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque '); INSERT INTO documentary_instance VALUES (185, 'Holocene Vegetation in Chaco Canyon, New Mexico', NULL, NULL, NULL, NULL, '1981', 0, NULL, 'Journal', '3 pages', NULL, NULL, NULL, NULL, 183, NULL, 'Betancourt, Julio L., and Thomas R. Van Devender 1981 Holocene Vegetation in Chaco Canyon, New Mexico. Science 214(4521):656-658. '); INSERT INTO documentary_instance VALUES (186, 'Packrat Middens. The Last 40,000 Years of Biotic Change', NULL, NULL, 'Tucson', 'The University of Arizona Press', '1990', 0, NULL, 'Book', NULL, NULL, NULL, NULL, NULL, 184, NULL, 'Betancourt, Julio L., Thomas R. Van Devender, and Paul S. Martin (editors) 1990 Packrat Middens. The Last 40,000 Years of Biotic Change. The University of Arizona Press, Tucson. '); INSERT INTO documentary_instance VALUES (187, 'Second Lives: A Survey of Architectural Artifact Collections in the United States', NULL, NULL, NULL, NULL, '1994', 0, NULL, 'Report', NULL, NULL, NULL, NULL, NULL, 185, NULL, 'Bevitt, Emogene A. 1994 Second Lives: A Survey of Architectural Artifact Collections in the United States. U.S.D.I. Preservation Assistance Division, Washington, D.C. '); INSERT INTO documentary_instance VALUES (188, 'The Sterling Site: An Initial Report', NULL, NULL, NULL, NULL, NULL, 0, NULL, 'Paper', '38 pages', NULL, NULL, NULL, NULL, 186, NULL, 'Bice, Richard A. 1983 The Sterling Site: An Initial Report. In Collected Papers in Honor of Charlie R. Steen, Jr. edited by Nancy L. Fox, pp. 49-86. Archaeological Society of New Mexico Papers: 8 '); INSERT INTO documentary_instance VALUES (189, 'Prehistoric Cave Dwellings', NULL, NULL, NULL, NULL, '1890', 0, NULL, 'Journal', '16 pages', NULL, NULL, NULL, NULL, 187, NULL, 'Bickford, F. T. 1890 Prehistoric Cave Dwellings. Century Magazine 40:896-911 '); INSERT INTO documentary_instance VALUES (192, 'Neutron Activation Analysis of Chacoan Turquoises: An Informal Report to the Division of Chaco Research', NULL, NULL, NULL, NULL, '1979', 0, NULL, 'Report', NULL, NULL, NULL, 'Report from the Department of Chemistry, Brookhaven National Laboratory, Upton, NY, on file in the NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.', NULL, 190, NULL, 'Bishop, Ronald L. 1979 Neutron Activation Analysis of Chacoan Turquoises: An Informal Report to the Division of Chaco Research. Report from the Department of Chemistry, Brookhaven National Laboratory, Upton, NY, on file in the NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. '); INSERT INTO documentary_instance VALUES (193, 'Microcomputer Simulation of the Radiocarbon Dates from Pueblo Alto', NULL, NULL, NULL, NULL, '1987', 0, NULL, 'Book', '9 pages', NULL, NULL, NULL, NULL, 191, NULL, 'Blakeslee, Donald J. 1987 Microcomputer Simulation of the Radiocarbon Dates from Pueblo Alto. In Investigations at the Pueblo Alto Complex, Chaco Canyon, New Mexico, 1975-1979. Volume IV. Microfiche, edited by Thomas C. Windes and Frances Joan Mathien, pp. MF-63 to MF-71. Publications in Archeology 18F, Chaco Canyon Studies. National Park Service, Santa Fe '); INSERT INTO documentary_instance VALUES (194, 'Ceramic Perspectives on Northern Anasazi Exchange', NULL, NULL, 'New York', 'Plenum Press', '1993', 0, NULL, 'Book', '30 pages', NULL, NULL, NULL, NULL, 192, NULL, 'Blinman, Eric, and C. Dean Wilson 1993 Ceramic Perspectives on Northern Anasazi Exchange. In The American Southwest and Mesoamerica: Systems of Prehistoric Exchange, edited by Jonathon E. Ericson and Timothy G. Baugh, pp. 65-94. Plenum Press, New York '); INSERT INTO documentary_instance VALUES (195, 'Pre-Historic Villages', NULL, NULL, NULL, NULL, '1920', 0, NULL, 'Journal', '5 pages', NULL, NULL, NULL, NULL, 193, NULL, 'Bloom, Lansing B. 1920 Pre-Historic Villages. El Palacio 8:30-34 '); INSERT INTO documentary_instance VALUES (196, 'The Emergence of Chaco Canyon in History.', NULL, NULL, NULL, NULL, '1921', 0, 'Art and Archaeology 11(1-2):29-35', 'Journal', '7 pages', NULL, NULL, NULL, NULL, 194, NULL, 'Bloom, Lansing B. 1921 The Emergence of Chaco Canyon in History. Art and Archaeology 11(1-2):29-35'); INSERT INTO documentary_instance VALUES (197, 'Fray Estevan de Perea’s Relacion', NULL, NULL, NULL, NULL, '1933', 0, 'New Mexico Historical Review 8(3):211-235', 'Journal', '15 pages', NULL, NULL, NULL, NULL, 195, NULL, 'Bloom, Lansing B. 1933 Fray Estevan de Perea’s Relacion. New Mexico Historical Review 8(3):211-235'); INSERT INTO documentary_instance VALUES (198, 'Bourke on the Southwest', NULL, NULL, NULL, NULL, '1936', 0, 'New Mexico Historical Review XI(1&3).', 'Journal', NULL, NULL, NULL, NULL, NULL, 196, NULL, 'Bloom, Lansing B. 1936 Bourke on the Southwest. New Mexico Historical Review XI(1&3).'); INSERT INTO documentary_instance VALUES (199, 'Bourke on the Southwest', NULL, NULL, NULL, NULL, '1937', 0, 'New Mexico Historical Review XI(1&3)', 'Journal', NULL, NULL, NULL, NULL, NULL, 197, NULL, 'Bloom, Lansing B. 1937 Bourke on the Southwest. New Mexico Historical Review XI(1&3)'); INSERT INTO documentary_instance VALUES (201, 'The Administration of National Monuments', NULL, NULL, NULL, NULL, '1912', 1, NULL, 'Report', NULL, NULL, NULL, NULL, NULL, 199, NULL, 'Bond, Frank 1912* The Administration of National Monuments. In Proceedings of the National Park Service Conference 1911. National Park Service, Department of the Interior, Washington, D.C '); INSERT INTO documentary_instance VALUES (200, 'A Brief History of Investigations and Excavations in Chaco Canyon: 1877 to Present', NULL, NULL, NULL, NULL, '1982', 1, NULL, 'Report', NULL, NULL, NULL, NULL, NULL, 198, NULL, 'Boling, E. 1982 A Brief History of Investigations and Excavations in Chaco Canyon: 1877 to Present. U.S.D.I., National Park Service '); INSERT INTO documentary_instance VALUES (202, NULL, NULL, NULL, 'Washington, D.C.', 'Government Printing Office', '1879', 0, NULL, 'Report', '5 pages', NULL, NULL, NULL, NULL, 189, NULL, NULL); INSERT INTO documentary_instance VALUES (203, 'Cranial Deformity in the Pueblo Area', NULL, NULL, NULL, NULL, '1937', 0, 'American Anthropologist 39:720-721', 'Journal', '2 pages', NULL, NULL, NULL, NULL, 200, NULL, 'Bonin, G. Von 1937 Cranial Deformity in the Pueblo Area. American Anthropologist 39:720-721 '); INSERT INTO documentary_instance VALUES (204, 'Chaco Canyon Rodent Control', NULL, NULL, NULL, NULL, '1936', 0, 'Southwestern Monuments Monthly Report, Supplement for July, pp. 56-59', 'Journal', '4 pages', NULL, NULL, NULL, NULL, 201, NULL, 'Borell, Adrey E. 1936 Chaco Canyon Rodent Control. Southwestern Monuments Monthly Report, Supplement for July, pp. 56-59 '); INSERT INTO documentary_instance VALUES (205, 'Rodent Problems', NULL, NULL, NULL, NULL, '1937', 0, 'Southwestern Monuments Report, September, pp. 233-235', 'Journal', '2 pages', NULL, NULL, NULL, NULL, 202, NULL, 'Borell, Adrey E. 1937 Rodent Problems. Southwestern Monuments Report, September, pp. 233-235'); INSERT INTO documentary_instance VALUES (206, 'Rivers of America: Birthplaces of Culture, Commerce, and Community', NULL, NULL, 'Golden, CO', 'Fulcrum Publishing', '1998', 0, NULL, 'Book', NULL, NULL, NULL, NULL, NULL, 203, NULL, 'Bourne, Russell 1998 Rivers of America: Birthplaces of Culture, Commerce, and Community. Fulcrum Publishing, Golden, CO. '); INSERT INTO documentary_instance VALUES (207, 'Bipod Photogrammetry', NULL, NULL, NULL, NULL, '1980', 0, NULL, 'Journal', '18 pages', NULL, NULL, NULL, NULL, 204, NULL, 'Boyer, W. Kent 1980 Bipod Photogrammetry. In Cultural Resources Remote Sensing, edited by Thomas R. Lyons and Frances Joan Mathien, pp. 327-345. National Park Service, Cultural Resources Management Division, Washington, D.C. '); INSERT INTO documentary_instance VALUES (208, 'Economic Resources of Chaco Canyon', NULL, NULL, NULL, NULL, '1921', 0, 'Art and Archaeology 11(1-2):36-38', 'Journal', '3 pages', NULL, NULL, NULL, NULL, 205, NULL, 'Bradfield, Wesley 1921 Economic Resources of Chaco Canyon. Art and Archaeology 11(1-2):36-38 '); INSERT INTO documentary_instance VALUES (209, 'Unpublished Notes and Maps on the Excavation at 29SJ597', NULL, NULL, NULL, NULL, '1980/1', 0, NULL, 'Ms. on file, notes', NULL, NULL, NULL, 'Ms. on file, NPS Intermountain Region, Santa Fe. ', NULL, 206, NULL, 'Bradford, James E. 1980/1 Unpublished Notes and Maps on the Excavation at 29SJ597. Ms. on file, NPS Intermountain Region, Santa Fe. '); INSERT INTO documentary_instance VALUES (210, 'Historic Structure Report, Tsin Kletzin Ruin, Chaco Culture National Historical Park, New Mexico', NULL, NULL, NULL, NULL, '1981', 0, NULL, 'Report', NULL, NULL, NULL, ' Southwest Cultural Resources Center, National Park Service, Intermountain Region, Santa Fe', NULL, 207, NULL, 'Bradford, James E. 1981 Historic Structure Report, Tsin Kletzin Ruin, Chaco Culture National Historical Park, New Mexico. Southwest Cultural Resources Center, National Park Service, Intermountain Region, Santa Fe'); INSERT INTO documentary_instance VALUES (211, 'A Preliminary Report on Archeological Testing at the “Employees Quarters,” Pueblo del Arroyo, Chaco Culture National Historical Park.', NULL, NULL, NULL, NULL, '1984', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'Ms. on file, NPS Intermountain Region, Santa Fe, and NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.', NULL, 208, NULL, 'Bradford, James E. 1984 A Preliminary Report on Archeological Testing at the “Employees Quarters,” Pueblo del Arroyo, Chaco Culture National Historical Park. Ms. on file, NPS Intermountain Region, Santa Fe, and NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO documentary_instance VALUES (212, 'Turkey House Burials #8 and #9', NULL, NULL, NULL, NULL, '1983', 0, NULL, 'Ms. on file', NULL, NULL, NULL, ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. ', NULL, 209, NULL, 'Bradford, James E., and Judy L. Miles 1983 Turkey House Burials #8 and #9. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. '); INSERT INTO documentary_instance VALUES (213, 'Preliminary Report of Excavations at Wallace Ruin, 1969-1974', NULL, NULL, NULL, NULL, '1974', 0, 'Southwestern Lore 40(3-4):63-71.', 'Journal', '9 pages', NULL, NULL, NULL, NULL, 210, NULL, 'Bradley, Bruce 1974 Preliminary Report of Excavations at Wallace Ruin, 1969-1974. Southwestern Lore 40(3-4):63-71. '); INSERT INTO documentary_instance VALUES (214, 'General Observations on Chacoan Lithic Technology', NULL, NULL, NULL, NULL, '1979', 1, NULL, 'Ms. on file', NULL, NULL, NULL, 'Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque', NULL, 211, NULL, 'Bradley, Bruce 1979* General Observations on Chacoan Lithic Technology. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque'); INSERT INTO documentary_instance VALUES (215, 'Wallace Ruin and the Chaco Phenomenon', NULL, NULL, NULL, NULL, '1984', 0, NULL, 'Paper', NULL, NULL, NULL, 'Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque', NULL, 212, NULL, 'Bradley, Bruce 1984 Wallace Ruin and the Chaco Phenomenon. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque'); INSERT INTO documentary_instance VALUES (216, 'Wallace Ruin, Interim Report', NULL, NULL, NULL, NULL, '1988', 0, 'Southwestern Lore 54(2):8-33', 'Journal', '26 pages', NULL, NULL, NULL, NULL, 213, NULL, 'Bradley, Bruce 1988 Wallace Ruin, Interim Report. Southwestern Lore 54(2):8-33'); INSERT INTO documentary_instance VALUES (217, 'Wallace Ruin. Implications for Outlier Studies. ', NULL, NULL, NULL, NULL, '1993', 0, NULL, 'Journal', '4 pages', NULL, NULL, 'Rocky Mountain Forest Research and Experimental Station. Fort Collins.', NULL, 214, NULL, 'Bradley, Bruce 1993 Wallace Ruin. Implications for Outlier Studies. In The Chimney Rock Symposium, October 20-21, 1980, Durango, Colorado, edited by J. McKim Malville and Gary Matlock, pp. 72-75. USDA Forest Service General Technical Report RM-227. Rocky Mountain Forest Research and Experimental Station. Fort Collins.'); INSERT INTO documentary_instance VALUES (218, 'Pitchers to Mugs: Chacoan Revival and the Demise of the Mesa Verde Tradition', NULL, NULL, NULL, NULL, '1994', 0, NULL, 'Paper', NULL, NULL, NULL, NULL, NULL, 215, NULL, 'Bradley, Bruce 1994 Pitchers to Mugs: Chacoan Revival and the Demise of the Mesa Verde Tradition. Paper presented at the 59th Annual Meeting of the Society for American Archaeology, Anaheim, CA. Published in 1996'); INSERT INTO documentary_instance VALUES (219, 'Pitchers to Mugs: Chacoan Revival at Sand Canyon Pueblo', NULL, NULL, NULL, NULL, '1996', 0, 'Kiva 61(3):241-255.', 'Journal', '15 pages', NULL, NULL, NULL, NULL, 216, NULL, 'Bradley, Bruce 1996 Pitchers to Mugs: Chacoan Revival at Sand Canyon Pueblo. Kiva 61(3):241-255.'); INSERT INTO documentary_instance VALUES (220, 'General Observations on Flaked Stone Technology', NULL, NULL, NULL, NULL, '1997', 0, NULL, 'Journal', '2 pages', NULL, NULL, NULL, NULL, 217, NULL, 'Bradley, Bruce 1997 General Observations on Flaked Stone Technology. In Ceramics, Lithics, and Ornaments of Chaco Canyon, New Mexico. Analyses of Artifacts from the Chaco Project, 1971-1978, edited by Frances Joan Mathien, pp. 698-99. Publications in Archeology 18G, Chaco Canyon Studies. National Park Service, Santa Fe'); INSERT INTO documentary_instance VALUES (221, 'A Study of Two Anasazi Communities in the San Juan Basin', NULL, NULL, NULL, NULL, '1994', 0, NULL, 'Book', NULL, NULL, NULL, 'Office of Contract Archeology and Maxwell Museum of Anthropology, University of New Mexico, Albuquerque.', NULL, 218, NULL, 'Bradley, Ronna J., and Richard Sullivan 1994 A Study of Two Anasazi Communities in the San Juan Basin. Volume IX of Across the Colorado Plateau: Anthropological Studies for the Transwestern Pipeline Expansion Project. Office of Contract Archeology and Maxwell Museum of Anthropology, University of New Mexico, Albuquerque. '); INSERT INTO documentary_instance VALUES (222, 'Report on Need for Salvage Excavation at Ruin Bc 236 in Chaco Canyon National Monument', NULL, NULL, NULL, NULL, '1958', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque ', NULL, 219, NULL, 'Bradley, Zorro A. 1958 Report on Need for Salvage Excavation at Ruin Bc 236 in Chaco Canyon National Monument. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque '); INSERT INTO documentary_instance VALUES (223, 'Site Bc 236, Chaco Canyon National Monument, New Mexico', NULL, NULL, NULL, NULL, '1971', 0, NULL, NULL, NULL, NULL, NULL, 'Division of Archeology, Office of Archeological and Historic Preservation, National Park Service, Washington, D.C.', NULL, 220, NULL, 'Bradley, Zorro A. 1971 Site Bc 236, Chaco Canyon National Monument, New Mexico. Division of Archeology, Office of Archeological and Historic Preservation, National Park Service, Washington, D.C.'); INSERT INTO documentary_instance VALUES (224, 'The Excavation of Bc 236', NULL, NULL, NULL, NULL, '1977', 0, NULL, NULL, NULL, NULL, NULL, 'Archive 529, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.', NULL, 221, NULL, 'Bradley, Zorro A. 1977 The Excavation of Bc 236. In Excavations in Three Small House Sites, Chaco Canyon National Monument, New Mexico, edited by Charles B. Voll, pp. 3-55. Archive 529, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO documentary_instance VALUES (225, 'Prospectus: Chaco Canyon Studies', NULL, NULL, NULL, NULL, '1969', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 222, NULL, 'Bradley, Zorro, and Wilfred D. Logan 1969 Prospectus: Chaco Canyon Studies. National Park Service, Washington, D.C '); INSERT INTO documentary_instance VALUES (226, 'Hawley’s Study of Chetro Ketl', NULL, NULL, NULL, NULL, '1935a', 0, 'El Palacio 38:17-29.', 'Journal', '13 pages', NULL, NULL, NULL, NULL, 223, NULL, 'Brand, Donald D. 1935a Hawley’s Study of Chetro Ketl. El Palacio 38:17-29. '); INSERT INTO documentary_instance VALUES (227, 'Prehistoric Trade in the Southwest', NULL, NULL, NULL, NULL, '1935b', 0, 'New Mexico Business Review 4(4):202-209', 'Journal', '8 pages', NULL, NULL, NULL, NULL, 224, NULL, 'Brand, Donald D. 1935b Prehistoric Trade in the Southwest. New Mexico Business Review 4(4):202-209'); INSERT INTO documentary_instance VALUES (228, 'University of New Mexico Activities in the Canyon, 1935', NULL, NULL, NULL, NULL, '1936a', 0, 'American Antiquity 2(1):48.', 'Journal', '1 page', NULL, NULL, NULL, NULL, NULL, NULL, 'Brand, Donald D. 1936a University of New Mexico Activities in the Canyon, 1935. American Antiquity 2(1):48.'); INSERT INTO documentary_instance VALUES (229, 'Symposium on Prehistoric Agriculture.', NULL, NULL, NULL, NULL, '1936b', 0, NULL, 'Journal', '1 page', NULL, NULL, NULL, NULL, 226, NULL, 'Brand, Donald D. 1936b (editor). Symposium on Prehistoric Agriculture. University of New Mexico, Archaeological Series Nos. 1 and 2, Bulletin No. 296(1):5.'); INSERT INTO documentary_instance VALUES (190, 'Report on Certain Ruins Visited in New Mexico by Lieutenant Rogers Birnie, Jr., Thirteenth United States Infantry. J3 in Appendix J. Ethnology, Archeology, and Ruins, pp. 1098-1100', NULL, NULL, 'Washington, D.C.', 'Government Printing Office', '1875', 0, NULL, 'Report', '3 pages', NULL, NULL, NULL, NULL, 188, NULL, 'Birnie, Rogers, Jr. 1875 Report on Certain Ruins Visited in New Mexico by Lieutenant Rogers Birnie, Jr., Thirteenth United States Infantry. J3 in Appendix J. Ethnology, Archeology, and Ruins, pp. 1098-1100. In Annual Report of the Chief of Engineers to the Secretary of War for the Year 1875. In Two Parts, Part II. 44th Congress, 1st Session, Ex. Doc. 1, Pt. 2, Vol. II. Government Printing Office, Washington, D.C. '); INSERT INTO documentary_instance VALUES (230, 'Dendrochronology', NULL, NULL, NULL, NULL, '1955', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 150, NULL, 'Bannister, Bryant, and T. L. Smiley 1955 Dendrochronology. In Geochronology with Special Reference to Southwestern United States, edited by T. L. Smiley. University of Arizona Physical Sciences Bulletin No. 2. Tucson '); INSERT INTO documentary_instance VALUES (231, 'Late Quaternary Biogeography of the Colorado Plateau', NULL, NULL, NULL, NULL, '1990', 0, NULL, 'Journal', '34 pages', NULL, NULL, NULL, NULL, 178, NULL, 'Betancourt, Julio L. 1990 Late Quaternary Biogeography of the Colorado Plateau. In Packrat Middens: The Last 40,000 Years of Biotic Changes, edited by Julio L. Betancourt, Thomas R. Van Devender, and Paul S. Martin, pp. 259-292. University of Arizona, Tucson.'); INSERT INTO documentary_instance VALUES (232, 'University of New Mexico Activities in the Canyon, 1935', NULL, NULL, NULL, NULL, '1936a', 0, 'American Antiquity 2(1):48.', 'Journal', '1 page', NULL, NULL, NULL, NULL, NULL, NULL, 'Brand, Donald D. 1936a University of New Mexico Activities in the Canyon, 1935. American Antiquity 2(1):48.'); INSERT INTO documentary_instance VALUES (233, 'Symposium on Prehistoric Agriculture', NULL, NULL, NULL, NULL, '1936b', 0, NULL, 'Journal', '1 page', NULL, NULL, NULL, NULL, 226, NULL, 'Brand, Donald D. 1936b (editor). Symposium on Prehistoric Agriculture. University of New Mexico, Archaeological Series Nos. 1 and 2, Bulletin No. 296(1):5.'); INSERT INTO documentary_instance VALUES (234, 'Introduction', NULL, NULL, NULL, NULL, NULL, 0, NULL, 'Journal', '21 pages', NULL, NULL, NULL, NULL, 227, NULL, 'Brand, Donald D. 1937a Introduction. In Tseh So, A Small House Ruin, Chaco Canyon, New Mexico. Preliminary Report, by Donald D. Brand, Florence M. Hawley, and Frank C. Hibben, et al., pp. 17-37. University of New Mexico Bulletin No. 308, Anthropological Series 2(2). University of New Mexico, Albuquerque.'); INSERT INTO documentary_instance VALUES (235, 'Subsistence', NULL, NULL, NULL, NULL, '1937b', 0, NULL, 'Journal', '3 pages', NULL, NULL, NULL, NULL, 228, NULL, 'Brand, Donald D. 1937b Subsistence. In Tseh So, A Small House Ruin, Chaco Canyon, New Mexico. Preliminary Report, by Donald D. Brand, Florence M. Hawley, and Frank C. Hibben, et al., pp. 112-114. University of New Mexico Bulletin No. 308, Anthropological Series 2(2). University of New Mexico, Albuquerque.'); INSERT INTO documentary_instance VALUES (236, 'The Report, Part I. The Natural Landscape', NULL, NULL, NULL, NULL, '1937c', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 229, NULL, 'Brand, Donald D. 1937c The Report, Part I. The Natural Landscape. In Tseh So, A Small House Ruin, Chaco Canyon, New Mexico. Preliminary Report, by Donald D. Brand, Florence M. Hawley, and Frank C. Hibben, et al., pp. 39-65. University of New Mexico Bulletin No. 308, Anthropological Series 2(2). University of New Mexico, Albuquerque.'); INSERT INTO documentary_instance VALUES (237, 'University of New Mexico Field Parties, 1936.', NULL, NULL, NULL, NULL, '1937d', 0, 'American Antiquity 2(4):308-309', 'Journal', '2 pages', NULL, NULL, NULL, NULL, 230, NULL, 'Brand, Donald D. 1937d University of New Mexico Field Parties, 1936. American Antiquity 2(4):308-309'); INSERT INTO documentary_instance VALUES (238, 'Notes and News, Southwest', NULL, NULL, NULL, NULL, '1938', 0, 'American Antiquity 5(1):70-71', 'Journal', '2 pages', NULL, NULL, NULL, NULL, 231, NULL, 'Brand, Donald D. 1938 Notes and News, Southwest. American Antiquity 5(1):70-71'); INSERT INTO documentary_instance VALUES (239, 'Tseh So, A Small House Ruin, Chaco Canyon, New Mexico. Preliminary Report', NULL, NULL, NULL, NULL, '1937', 0, NULL, 'Journal', NULL, NULL, NULL, NULL, NULL, 232, NULL, 'Brand, Donald D., Florence M. Hawley, and Frank C. Hibben, et al. 1937 Tseh So, A Small House Ruin, Chaco Canyon, New Mexico. Preliminary Report. University of New Mexico Bulletin No. 308, Anthropological Series 2(2). University of New Mexico, Albuquerque. '); INSERT INTO documentary_instance VALUES (240, 'Pictographs and Petroglyphs of the Southwest Indians', NULL, NULL, 'Cambridge.', 'MIT Press', '1979', 0, 'In Astronomy of the Ancients, edited by K. Brecher and M. Fiertag, p. 34.', 'Book', '1 page', NULL, NULL, NULL, NULL, 233, NULL, 'Brandt, John C. 1979 Pictographs and Petroglyphs of the Southwest Indians. In Astronomy of the Ancients, edited by K. Brecher and M. Fiertag, p. 34. MIT Press, Cambridge. '); INSERT INTO documentary_instance VALUES (241, 'Possible Records of the Crab Nebula Supernova in the Western United States', NULL, NULL, NULL, NULL, '1973', 0, 'Bulletin of the American Astronomical Society 5:29.', 'Journal', NULL, NULL, NULL, NULL, NULL, 234, NULL, 'Brandt, J. C., S. P. Moran, R. A. Williamson, R. S. Harrington, C. Cochran, M. Kennedy, W. J. Kennedy, and V. D. Chamberlain 1973 Possible Records of the Crab Nebula Supernova in the Western United States. Bulletin of the American Astronomical Society 5:29. '); INSERT INTO documentary_instance VALUES (242, 'Possible Rock Art Records of the Crab Nebula Supernova in the Western United States', NULL, NULL, NULL, NULL, '1975', 0, NULL, 'Journal', '1 page', NULL, NULL, NULL, NULL, 235, NULL, 'Brandt, J. C., S. P. Moran, R. A. Williamson, R. S. Harrington, C. Cochran, M. Kennedy, W. J. Kennedy, and V. D. Chamberlain 1975 Possible Rock Art Records of the Crab Nebula Supernova in the Western United States. In Archeoastronomy in Pre-Columbian America, edited by Anthony F. Aveni, p. 56. University of Texas, Austin.'); INSERT INTO documentary_instance VALUES (243, 'Rock Art Representations of the A.D. 1054 Supernova: A Progress Report', NULL, NULL, 'Austin and London', 'University of Texas Press', '1977', 0, 'In Native American Astronomy, edited by Anthony F. Aveni, pp. 171-177', 'Book', '7 pages', NULL, NULL, NULL, NULL, 236, NULL, 'Brandt, John C., and Ray A. Williamson 1977 Rock Art Representations of the A.D. 1054 Supernova: A Progress Report. In Native American Astronomy, edited by Anthony F. Aveni, pp. 171-177. University of Texas Press, Austin and London '); INSERT INTO documentary_instance VALUES (244, 'The 1054 Supernova and Native American Rock Art.', NULL, NULL, NULL, NULL, '1979', 0, ' Archaeoastronomy, Supplement to the Journal of Historical Astronomy 10:20.', 'Hournal', NULL, NULL, NULL, NULL, NULL, 237, NULL, 'Brandt, John C., and Ray A. Williamson 1979 The 1054 Supernova and Native American Rock Art. Archaeoastronomy, Supplement to the Journal of Historical Astronomy 10:20.'); INSERT INTO documentary_instance VALUES (245, 'An Analysis of Axes and Mauls from Chaco Canyon, New Mexico', NULL, NULL, NULL, NULL, '1976', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. ', NULL, 238, NULL, 'Breternitz, Cory Dale 1976 An Analysis of Axes and Mauls from Chaco Canyon, New Mexico. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published in 1997. '); INSERT INTO documentary_instance VALUES (246, 'Botanical Remains from Archaeological Sites as a Basis for Determining Cultural Activity in Chaco Canyon', NULL, NULL, NULL, NULL, '1977a', 0, 'Paper for Geosciences 262, University of Arizona, Tucson', 'Ms. on file', NULL, NULL, NULL, ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.', NULL, 239, NULL, 'Breternitz, Cory Dale 1977a Botanical Remains from Archaeological Sites as a Basis for Determining Cultural Activity in Chaco Canyon. Paper for Geosciences 262, University of Arizona, Tucson. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO documentary_instance VALUES (247, 'An Analysis of Axes and Mauls from Chaco Canyon, New Mexico', NULL, NULL, NULL, NULL, '1997', 0, NULL, 'Book', '20 pages', NULL, NULL, NULL, NULL, 240, NULL, 'Breternitz, Cory Dale 1997 An Analysis of Axes and Mauls from Chaco Canyon, New Mexico. In Ceramics, Lithics, and Ornaments of Chaco Canyon. Analyses of Artifacts from the Chaco Project, 1971-1978, edited by Frances Joan Mathien, pp. 977-996. Publications in Archeology 18G, Chaco Canyon Series. National Park Service, Santa Fe.'); INSERT INTO documentary_instance VALUES (248, 'Methodological Issues for the Identification of Chacoan Community Structure: Lessons from the Bis sa’ani Community Study', NULL, NULL, NULL, NULL, '1987', 0, 'American Archaeology 6(3):183-189.', 'Journal', '7 pages', NULL, NULL, NULL, NULL, 241, NULL, 'Breternitz, Cory D., and David E. Doyel 1987 Methodological Issues for the Identification of Chacoan Community Structure: Lessons from the Bis sa’ani Community Study. American Archaeology 6(3):183-189. '); INSERT INTO documentary_instance VALUES (249, 'Bis sa''ani: A Late Bonito Phase Community on Escavada Wash, Northwest New Mexico.', NULL, NULL, NULL, NULL, '1982', 0, 'Navajo Nation Papers in Anthropology No. 14. (3 vol.). Window Rock, AZ.', 'Journal', NULL, NULL, NULL, NULL, NULL, 242, NULL, 'Breternitz, Cory Dale, David E. Doyel, and Michael P. Marshall (editors) 1982 Bis sa''ani: A Late Bonito Phase Community on Escavada Wash, Northwest New Mexico. Navajo Nation Papers in Anthropology No. 14. (3 vol.). Window Rock, AZ. '); INSERT INTO documentary_instance VALUES (250, 'Analysis of Pigments from Pueblo Alto Murals.', NULL, NULL, NULL, NULL, '1987', 0, NULL, 'Journal', '1 page', NULL, NULL, NULL, NULL, 243, NULL, 'Breternitz, Cory D., and Adrian White 1987 Analysis of Pigments from Pueblo Alto Murals. In Investigations at the Pueblo Alto Complex, Chaco Canyon, New Mexico, 1975-1979, edited by Thomas C. Windes and Frances Joan Mathien, p. MF-242. Publications in Archeology 18F, Chaco Canyon Studies. National Park Service, Santa Fe. '); INSERT INTO documentary_instance VALUES (251, 'Archaeological Investigations in the Chaco Canyon Vicinity, New Mexico', NULL, NULL, NULL, NULL, '1978', 0, NULL, 'Report', NULL, NULL, NULL, NULL, NULL, 244, NULL, 'Brethauer, Douglas P. 1978 Archaeological Investigations in the Chaco Canyon Vicinity, New Mexico. Department of Sociology and Anthropology, Cultural Resources Management Division, Report 270. New Mexico State University, Las Cruces. '); INSERT INTO documentary_instance VALUES (252, 'The Chaco Phenomenon', NULL, NULL, NULL, NULL, '1983a', 0, 'Archaeology Magazine 36(4):57-61. July-Aug.', 'Journal', '5 pages', NULL, NULL, NULL, NULL, 245, NULL, 'Brody, J. J. 1983a The Chaco Phenomenon. Archaeology Magazine 36(4):57-61. July-Aug. '); INSERT INTO documentary_instance VALUES (253, 'The Chaco Phenomenon', NULL, NULL, 'Albuquerque', 'Maxwell Museum of Anthropology and University of New Mexico Press.', '1983b', 0, NULL, 'Book', NULL, NULL, NULL, NULL, NULL, 246, NULL, 'Brody, J.J. 1983b The Chaco Phenomenon. Maxwell Museum of Anthropology and University of New Mexico Press, Albuquerque.'); INSERT INTO documentary_instance VALUES (254, 'Chacoan Art and the Chaco Phenomenon', NULL, NULL, NULL, NULL, '1984', 0, NULL, 'Journal', '6 pages', NULL, NULL, NULL, NULL, 247, NULL, 'Brody, J. J. 1984 Chacoan Art and the Chaco Phenomenon. In New Light on Chaco Canyon, edited by David Grant Noble, pp. 13-18. Exploration, School of American Research, Santa Fe.'); INSERT INTO documentary_instance VALUES (255, 'Site Bc 364, Chaco Canyon, A Prehistoric Farm System', NULL, NULL, NULL, NULL, '1961', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Also listed as Ms. 1964. U.S. Department of the Interior. ', NULL, 248, NULL, 'Bromberg, William 1961 Site Bc 364, Chaco Canyon, A Prehistoric Farm System. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Also listed as Ms. 1964. U.S. Department of the Interior. '); INSERT INTO documentary_instance VALUES (256, 'The Navajo Exodus', NULL, NULL, NULL, NULL, '1972', 0, NULL, 'Journal', NULL, NULL, NULL, NULL, NULL, 249, NULL, 'Brugge, David M. 1972 The Navajo Exodus. AWANYU, Archaeological Society of New Mexico Newsletter, 2(4). Supplement No. 5. '); INSERT INTO documentary_instance VALUES (257, 'Navajo Occupation at Chaco Canyon', NULL, NULL, NULL, NULL, '1976a', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. ', NULL, 250, NULL, 'Brugge, David M. 1976a Navajo Occupation at Chaco Canyon. Paper presented at the Small Sites Conference on Limited Activity and Occupation Sites sponsored by the Center for Anthropological Studies, Albuquerque. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published in 1978.'); INSERT INTO documentary_instance VALUES (258, 'The Horse in Navajo Rock Art at Chaco Canyon.', NULL, NULL, NULL, NULL, '1976b', 0, 'AWANYU 4(4):34-46. Archaeological Society of New Mexico, Las Cruces.', 'Journal', '13 pages', NULL, NULL, NULL, NULL, 251, NULL, 'Brugge, David M. 1976b The Horse in Navajo Rock Art at Chaco Canyon. AWANYU 4(4):34-46. Archaeological Society of New Mexico, Las Cruces.'); INSERT INTO documentary_instance VALUES (259, 'The Ye''i or Holy People in Navajo Rock Art.', NULL, NULL, NULL, NULL, '1977a', 0, 'AWANYU 5(3):8-16. Archaeological Society of New Mexico, Las Cruces', 'Journal', '9 pages', NULL, NULL, NULL, NULL, 252, NULL, 'Brugge, David M. 1977a The Ye''i or Holy People in Navajo Rock Art. AWANYU 5(3):8-16. Archaeological Society of New Mexico, Las Cruces'); INSERT INTO documentary_instance VALUES (260, 'Tsegai: An Archeological Ethnohistory of the Chaco Region', NULL, NULL, NULL, NULL, '1977b', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. ', NULL, 253, NULL, 'Brugge, David M. 1977b Tsegai: An Archeological Ethnohistory of the Chaco Region. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published in 1986'); INSERT INTO documentary_instance VALUES (261, 'Motivation and Function in Navajo Rock Art.', NULL, NULL, NULL, NULL, '1978a', 0, NULL, 'Journal', '7 pages', NULL, NULL, NULL, NULL, 254, NULL, 'Brugge, David M. 1978a Motivation and Function in Navajo Rock Art. In American Indian Rock Art, edited by Ernest Snyder, A. J. Bock, and Frank Bock, pp. 141-147. Volume IV of the papers presented at the Fourth Annual ARARA Symposium. American Rock Art Research Association, El Toro, CA.'); INSERT INTO documentary_instance VALUES (262, 'Small Navajo Sites. A Preliminary Report on Historic Archaeology in the Chaco Region.', NULL, NULL, NULL, NULL, '1978b', 0, NULL, 'Journal', '9 pages', NULL, NULL, NULL, NULL, 255, NULL, 'Brugge, David M. 1978b Small Navajo Sites. A Preliminary Report on Historic Archaeology in the Chaco Region. In Small Sites Conference: Limited Activity and Occupation Sites, edited by Albert H. Ward, pp. 41-49. Contributions to Anthropological Studies No. 1. Center for Anthropological Studies, Albuquerque.'); INSERT INTO documentary_instance VALUES (263, 'A History of the Chaco Navajos', NULL, NULL, NULL, NULL, '1980', 0, NULL, 'Report', NULL, NULL, NULL, NULL, NULL, 256, NULL, 'Brugge, David M. 1980 A History of the Chaco Navajos. Reports of the Chaco Center No. 4. Division of Chaco Research, National Park Service, Albuquerque.'); INSERT INTO documentary_instance VALUES (264, 'Horses and Horsemen in Early Native American Art', NULL, NULL, NULL, NULL, '1981a', 0, NULL, 'Paper', '15 pages', NULL, NULL, NULL, NULL, 257, NULL, 'Brugge, David M. 1981a Horses and Horsemen in Early Native American Art. In Collected Papers in Honor of Erik Kellerman Reed, edited by Albert H. Schroeder, pp. 236-250. Papers of the Archaeological Society of New Mexico: 6. Albuquerque'); INSERT INTO documentary_instance VALUES (265, 'Navajo Pottery and Ethnohistory', NULL, NULL, NULL, NULL, '1981b', 0, NULL, 'Paper', NULL, NULL, NULL, NULL, NULL, 258, NULL, 'Brugge, David M. 1981b Navajo Pottery and Ethnohistory. Navajo Nation Papers in Anthropology, No. 4. Navajo Nation Cultural Resources Management Program, Window Rock, AZ.'); INSERT INTO documentary_instance VALUES (266, 'The Historical Archeology of Chaco Canyon', NULL, NULL, NULL, NULL, '1981c', 0, NULL, 'Paper', '38 pages', NULL, NULL, NULL, NULL, 259, NULL, 'Brugge, David M. 1981c The Historical Archeology of Chaco Canyon. In Archeological Surveys of Chaco Canyon, New Mexico, by Alden C. Hayes, David M. Brugge, and W. James Judge, pp. 69-106. Publications in Archeology 18A, Chaco Canyon Studies. National Park Service, U.S.D.I., Washington, D.C'); INSERT INTO documentary_instance VALUES (267, 'The Chaco Navajos', NULL, NULL, NULL, NULL, '1984', 0, NULL, 'Journal', '18 pages', NULL, NULL, NULL, NULL, 260, NULL, 'Brugge, David M. 1984 The Chaco Navajos. In New Light on Chaco Canyon, edited by David Grant Noble, pp. 73-90. Exploration, School of American Research, Santa Fe.'); INSERT INTO documentary_instance VALUES (268, 'One Theory of What Happened to the Early Chaco Indians', NULL, NULL, NULL, NULL, '1985', 0, 'The Indian Trader, pp. 18-20. April', 'Journal', '3 pages', NULL, NULL, NULL, NULL, 261, NULL, 'Brugge, David M. 1985 One Theory of What Happened to the Early Chaco Indians. The Indian Trader, pp. 18-20. April'); INSERT INTO documentary_instance VALUES (269, 'Tsegai: An Archeological Ethnohistory of the Chaco Region', NULL, NULL, NULL, NULL, '1986', 0, NULL, 'Book', NULL, NULL, NULL, NULL, NULL, 262, NULL, 'Brugge, David M. 1986 Tsegai: An Archeological Ethnohistory of the Chaco Region. National Park Service, Washington, D.C.'); INSERT INTO documentary_instance VALUES (270, 'Navajo Religion and the Anasazi Connection.', NULL, NULL, NULL, NULL, '1998', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'Ms. on file, Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque', NULL, 263, NULL, 'Brugge, David M. 1998 Navajo Religion and the Anasazi Connection. Ms. on file, Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque'); INSERT INTO documentary_instance VALUES (271, 'A History of Navajo Rock Art Research', NULL, NULL, NULL, NULL, '2001', 0, 'American Indian Rock Art 27. American Rock Art Research Association.', 'Journal', NULL, NULL, NULL, NULL, NULL, 264, NULL, 'Brugge, David M. 2001 A History of Navajo Rock Art Research. American Indian Rock Art 27. American Rock Art Research Association.'); INSERT INTO documentary_instance VALUES (272, 'The Doll House Site, a Preliminary Report.', NULL, NULL, NULL, NULL, 'n.d.', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. ', NULL, 262, NULL, 'Brugge, David M. n.d. The Doll House Site, a Preliminary Report. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published in 1986 in Tsegai: An Archeological Ethnohistory of the Chaco Region.'); INSERT INTO documentary_instance VALUES (273, 'Navajo Ritual Histories, Organization, and Architecture', NULL, NULL, 'Boulder.', 'University Press of Colorado', '2000', 0, NULL, 'Book', '18 pages', NULL, NULL, NULL, NULL, 265, NULL, 'Brugge, David M., and Dennis Gilpin 2000 Navajo Ritual Histories, Organization, and Architecture. In The Archaeology of Regional Interaction: Religion, Warfare, and Exchange Across the American Southwest, edited by Michelle Hegmon, pp. 361-379. University Press of Colorado, Boulder. '); INSERT INTO documentary_instance VALUES (274, 'Navajo Ring Bits', NULL, NULL, NULL, NULL, '2001', 0, 'American Indian Art Magazine26(4). Autumn.', 'Journal', NULL, NULL, NULL, NULL, NULL, 266, NULL, 'Brugge, David M., and Tobi Taylor 2001 Navajo Ring Bits. American Indian Art Magazine26(4). Autumn. '); INSERT INTO documentary_instance VALUES (275, 'Reading History from the Diary of the Trees', NULL, NULL, NULL, NULL, '1934', 0, 'American Forests 40:10-14, 44-45. January.', 'Journal', '2 pages', NULL, NULL, NULL, NULL, 267, NULL, 'Bryan, Bruce 1934 Reading History from the Diary of the Trees. American Forests 40:10-14, 44-45. January. '); INSERT INTO documentary_instance VALUES (276, 'Dating of Channel Trenching (Arroyo Cutting) in the Arid Southwest', NULL, NULL, NULL, NULL, '1925', 0, ' Science 62:338-344', 'Journal', '7 pages', NULL, NULL, NULL, NULL, 268, NULL, 'Bryan, Kirk 1925 Dating of Channel Trenching (Arroyo Cutting) in the Arid Southwest. Science 62:338-344 '); INSERT INTO documentary_instance VALUES (277, 'Pedestal Rocks Formed by Differential Erosion.', NULL, NULL, 'Washington, D.C.', 'Government Printing Office ', '1926a', 0, 'U.S. Geological Survey Bulletin 790:1-15. ', 'Journal', '16 pages', NULL, NULL, NULL, NULL, 269, NULL, 'Bryan, Kirk 1926a Pedestal Rocks Formed by Differential Erosion. U.S. Geological Survey Bulletin 790:1-15. Government Printing Office, Washington, D.C.'); INSERT INTO documentary_instance VALUES (278, 'Recent Deposits of Chaco Canyon, New Mexico, in Relation to the Life of the Prehistoric Peoples of Pueblo Bonito', NULL, NULL, NULL, NULL, '1926b', 0, 'Abstract. Journal of the Washington Academy of Science 16(3):75-76.', 'Journal', '2 pages', NULL, NULL, NULL, NULL, 270, NULL, 'Bryan, Kirk 1926b Recent Deposits of Chaco Canyon, New Mexico, in Relation to the Life of the Prehistoric Peoples of Pueblo Bonito. Abstract. Journal of the Washington Academy of Science 16(3):75-76.'); INSERT INTO documentary_instance VALUES (279, 'Niches and Other Cavities in Sandstone in Chaco Canyon, New Mexico', NULL, NULL, NULL, NULL, '1928', 0, 'Zeitschr. Geomorphologie Band 3, H3, pp. 125-140.', 'Journal', '16 pages', NULL, NULL, NULL, NULL, 271, NULL, 'Bryan, Kirk 1928 Niches and Other Cavities in Sandstone in Chaco Canyon, New Mexico. Zeitschr. Geomorphologie Band 3, H3, pp. 125-140.'); INSERT INTO documentary_instance VALUES (280, 'Flood Water Farming', NULL, NULL, NULL, NULL, '1929', 1, 'Geographical Review 19(3).', 'Journal', NULL, NULL, NULL, NULL, NULL, 272, NULL, 'Bryan, Kirk 1929* Flood Water Farming. Geographical Review 19(3).'); INSERT INTO documentary_instance VALUES (281, 'Pre-Columbian Agriculture in the Southwest as Conditioned by Periods of Alluviation', NULL, NULL, NULL, NULL, '1941', 0, ' Annals of the Association of American Geographers 31(4):219-242.', 'Journal', '24 pages', NULL, NULL, NULL, NULL, 273, NULL, 'Bryan, Kirk 1941 Pre-Columbian Agriculture in the Southwest as Conditioned by Periods of Alluviation. Annals of the Association of American Geographers 31(4):219-242.'); INSERT INTO documentary_instance VALUES (282, 'The Geology of Chaco Canyon, New Mexico, in Relation to the Life and Remains of the Prehistoric People of Pueblo Bonito', NULL, NULL, NULL, NULL, NULL, 0, NULL, 'Journal', '66 pages', NULL, NULL, NULL, NULL, 274, NULL, 'Bryan, Kirk 1954 The Geology of Chaco Canyon, New Mexico, in Relation to the Life and Remains of the Prehistoric People of Pueblo Bonito. Smithsonian Miscellaneous Collections, Vol. 122(7):1-65. Smithsonian Institution Publication 4140, Washington, D.C.'); INSERT INTO documentary_instance VALUES (283, 'The San José Non-Ceramic Culture and Its Relation to Puebloan Culture in New Mexico', NULL, NULL, NULL, NULL, '1943', 0, 'American Antiquity 8(3):269-280.', 'Journal', '12 pages', NULL, NULL, NULL, NULL, 275, NULL, 'Bryan, Kirk, and Joseph H. Toulouse 1943 The San José Non-Ceramic Culture and Its Relation to Puebloan Culture in New Mexico. American Antiquity 8(3):269-280. '); INSERT INTO documentary_instance VALUES (284, 'Modernism and Primitivism in the American Southwest: Collectors, Railway Tourists, Gender and the Navajos in New Mexico, 1880-1930. ', NULL, NULL, NULL, NULL, '1996', 0, 'Dissertation proposal, Rutgers University, New Brunswick, NJ.', 'Dissertation proposal', NULL, NULL, NULL, NULL, NULL, 276, NULL, 'Bsumek, Erika 1996 Modernism and Primitivism in the American Southwest: Collectors, Railway Tourists, Gender and the Navajos in New Mexico, 1880-1930. Dissertation proposal, Rutgers University, New Brunswick, NJ. '); INSERT INTO documentary_instance VALUES (285, 'Making ‘Indian-Mode’: The Production, Consumption, and Construction of Navajo Ethnic Identity, 1880-1935', NULL, NULL, NULL, NULL, '2000', 0, NULL, 'Unpublished Ph. D. dissertation', NULL, NULL, NULL, NULL, NULL, 277, NULL, 'Bsumek, Erika 2000 Making ‘Indian-Mode’: The Production, Consumption, and Construction of Navajo Ethnic Identity, 1880-1935. Unpublished Ph.D. dissertation, Rutgers University, New Brunswick, NJ. '); INSERT INTO documentary_instance VALUES (286, 'Report on Inscriptions from the Southwest Early Sites', NULL, NULL, NULL, NULL, '1978', 0, 'Research Society Bulletin 6(1):28-33.', 'Journal', '6 pages', NULL, NULL, NULL, NULL, 278, NULL, 'Buchanan, Donal B. 1978 Report on Inscriptions from the Southwest Early Sites. Research Society Bulletin 6(1):28-33. '); INSERT INTO documentary_instance VALUES (287, 'Bc 52, Kiva II: Report on Removal of Stratigraphic Test Block', NULL, NULL, NULL, NULL, '1941', 0, NULL, 'Report', NULL, NULL, NULL, 'Vivian Archive No. 394, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque ', NULL, 279, NULL, 'Buggeln, Theodora, and Ripley Bullen 1941 Bc 52, Kiva II: Report on Removal of Stratigraphic Test Block. Vivian Archive No. 394, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque '); INSERT INTO documentary_instance VALUES (288, 'Bedrock Influences on the Late Quaternary Alluvial History and Evolution on the Kim-me-ni-oli Wash Drainage Basin', NULL, NULL, 'Albuquerque.', 'Adobe Press', '1983', 0, NULL, 'Book', '13 pages', NULL, NULL, NULL, NULL, 280, NULL, 'Bullard, T. F. 1983 Bedrock Influences on the Late Quaternary Alluvial History and Evolution on the Kim-me-ni-oli Wash Drainage Basin. In Chaco Canyon Country. A Field Guide to the Geomorphology, Quaternary Geology, Paleoecology and Environmental Geology of Northwestern New Mexico, edited by S. G. Wells, D. W. Love, and T. W. Gardner, pp. 79-91. 1983 Field Trip Guidebook, American Geomorphological Field Group. Adobe Press, Albuquerque. '); INSERT INTO documentary_instance VALUES (289, 'Late Quaternary Geomorphic Evolution of a Tributary to the Chaco River, Southeastern Colorado Plateau, Northwestern New Mexico: Bedrock Influence on Complex Geomorphic Responses within a Large Drainage System', NULL, NULL, NULL, NULL, 'n.d.', 0, NULL, 'Incomplete M.S. thesis', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Bullard, T. F. n.d. Late Quaternary Geomorphic Evolution of a Tributary to the Chaco River, Southeastern Colorado Plateau, Northwestern New Mexico: Bedrock Influence on Complex Geomorphic Responses within a Large Drainage System. Incomplete M.S. thesis, in progress in 1983, University of New Mexico, Albuquerque.'); INSERT INTO documentary_instance VALUES (290, 'The Cerro Colorado Site and Pithouse Architecture in the Southwestern United States Prior to A.D. 900', NULL, NULL, NULL, NULL, '1962', 0, NULL, 'Paper', NULL, NULL, NULL, NULL, NULL, 281, NULL, 'Bullard, William R., Jr. 1962 The Cerro Colorado Site and Pithouse Architecture in the Southwestern United States Prior to A.D. 900. Papers of the Peabody Museum of American Archaeology and Ethnology 44(2). Harvard University, Cambridge, MA. '); INSERT INTO documentary_instance VALUES (291, 'Archaeological Theory and Anthropological Fact', NULL, NULL, NULL, NULL, '1947', 0, ' American Antiquity 13(2):128-134.', 'Journal', '7 pages', NULL, NULL, NULL, NULL, 282, NULL, 'Bullen, Adelaide Kendall 1947 Archaeological Theory and Anthropological Fact. American Antiquity 13(2):128-134. '); INSERT INTO documentary_instance VALUES (292, 'Preliminary Report. Bc 54, Chaco Canyon, New Mexico', NULL, NULL, NULL, NULL, '1941', 0, NULL, 'Report', NULL, NULL, NULL, 'Archives 2086, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. ', NULL, 283, NULL, 'Bullen, Ripley P. 1941 Preliminary Report. Bc 54, Chaco Canyon, New Mexico. Archives 2086, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. '); INSERT INTO documentary_instance VALUES (293, 'Corn Goddesses or Phalli', NULL, NULL, NULL, NULL, '1944', 0, 'American Antiquity 9(4):448-449.', 'Journal', '2 pages', NULL, NULL, NULL, NULL, 284, NULL, 'Bullen, Ripley P. 1944 Corn Goddesses or Phalli? American Antiquity 9(4):448-449.'); INSERT INTO documentary_instance VALUES (294, 'Draft Annual Progress Report, Chaco Culture National Historical Park, New Mexico, Erosion Control.', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 285, NULL, 'Bureau of Reclamation 1997 Draft Annual Progress Report, Chaco Culture National Historical Park, New Mexico, Erosion Control. Bureau of Reclamation, Denver. '); INSERT INTO documentary_instance VALUES (297, 'Space as Place: Small and Great House Spatial Organization in Chaco Canyon, New Mexico, A.D. 1000-1150', NULL, NULL, NULL, NULL, '1996b', 0, NULL, 'Ph.D. Dissertation', NULL, NULL, NULL, NULL, NULL, 288, NULL, 'Bustard, Wendy 1996b Space as Place: Small and Great House Spatial Organization in Chaco Canyon, New Mexico, A.D. 1000-1150. Ph.D. dissertation, Department of Anthropology, University of New Mexico, Albuquerque.'); INSERT INTO documentary_instance VALUES (295, 'Genotypes of Space: A Spatial Analysis of Domestic Structures in Chaco Canyon', NULL, NULL, NULL, NULL, '1995', 0, NULL, 'Paper', NULL, NULL, NULL, NULL, NULL, 286, NULL, 'Bustard, Wendy 1995 Genotypes of Space: A Spatial Analysis of Domestic Structures in Chaco Canyon. Paper presented at the 60th Annual Meeting of the Society for American Archaeology, Minneapolis '); INSERT INTO documentary_instance VALUES (296, 'Pueblo Bonito: When a House Is Not a Home. ', NULL, NULL, NULL, NULL, '1996a', 0, NULL, 'Paper', NULL, NULL, NULL, NULL, NULL, 287, NULL, 'Bustard, Wendy 1996a Pueblo Bonito: When a House Is Not a Home. Paper presented at the 61st Annual Meeting of the Society for American Archaeology, New Orleans. Published in 2003.'); INSERT INTO documentary_instance VALUES (298, 'Space, Evolution, and Function in the Houses of Chaco Canyon', NULL, NULL, NULL, NULL, '1997', 0, NULL, 'Paper', NULL, NULL, NULL, NULL, NULL, 289, NULL, 'Bustard, Wendy 1997 Space, Evolution, and Function in the Houses of Chaco Canyon. Paper presented at the First International Symposium on Space Syntax, University College, London, April 17. Published in 1999'); INSERT INTO documentary_instance VALUES (299, 'Space, Evolution, and Function in the Houses of Chaco Canyon', NULL, NULL, NULL, NULL, '1999', 0, 'Environment and Planning B: Planning and Design 1999 26:219-240', 'Journal', '22 pages', NULL, NULL, NULL, NULL, 290, NULL, 'Bustard, Wendy 1999 Space, Evolution, and Function in the Houses of Chaco Canyon. Environment and Planning B: Planning and Design 1999 26:219-240'); INSERT INTO documentary_instance VALUES (300, 'Chaco at the New Millenium: Nasty and Brutish.', NULL, NULL, NULL, NULL, '2000', 0, NULL, 'Paper', NULL, NULL, NULL, NULL, NULL, 291, NULL, 'Bustard, Wendy 2000 Chaco at the New Millenium: Nasty and Brutish. Paper presented at the 65th Annual Meeting of the Society for American Archaeology, Philadelphia.'); INSERT INTO documentary_instance VALUES (301, 'Pueblo Bonito: When a House is Not a Home. ', NULL, NULL, 'Washington, D.C.', 'Smithsonian Institution Press', '2003', 0, 'In Pueblo Bonito: Center of the Chacoan World, edited by Jill E. Neitzel', 'Book', NULL, NULL, NULL, NULL, NULL, 292, NULL, 'Bustard, Wendy 2003* Pueblo Bonito: When a House is Not a Home. In Pueblo Bonito: Center of the Chacoan World, edited by Jill E. Neitzel pp. . Smithsonian Institution Press, Washington, D.C.'); INSERT INTO documentary_instance VALUES (302, 'Mud Brick Conservation Project—Field Report #1.', NULL, NULL, NULL, NULL, '1973', 0, NULL, 'Report', NULL, NULL, NULL, NULL, NULL, 293, NULL, 'Butterbaugh, Darrel J. 1973 Mud Brick Conservation Project—Field Report #1. Museum of Applied Science Center for Archaeology, Report No. 1. University Museum. University of Pennsylvania, Philadelphia. '); INSERT INTO documentary_instance VALUES (303, 'Notes on Pueblo Ceremonial Chambers', NULL, NULL, NULL, NULL, '1934', 0, NULL, 'Notes', NULL, NULL, NULL, 'Archive 1943, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. ', NULL, 294, NULL, 'Cahill, Edgar D. 1934 Notes on Pueblo Ceremonial Chambers. Archive 1943, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. '); INSERT INTO documentary_instance VALUES (304, 'Coprolites from Bc 288', NULL, NULL, NULL, NULL, '1977', 0, NULL, 'Report', NULL, NULL, NULL, 'Archive 2149, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Possibly at McDonald College of McGill University, Montreal, Quebec 1977. ', NULL, 295, NULL, 'Callen, Eric O. 1977 Coprolites from Bc 288. Archive 2149, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Possibly at McDonald College of McGill University, Montreal, Quebec 1977. '); INSERT INTO documentary_instance VALUES (305, 'Chaco Manos. An Analysis of a Random Sample.', NULL, NULL, NULL, NULL, '1976', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. ', NULL, 296, NULL, 'Cameron, Catherine M. 1976 Chaco Manos. An Analysis of a Random Sample. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. '); INSERT INTO documentary_instance VALUES (306, 'An Analysis of Manos from 10 Sites in Chaco Canyon, New Mexico', NULL, NULL, NULL, NULL, '1977', 0, NULL, 'Ms. on file', NULL, NULL, NULL, ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque', NULL, 297, NULL, 'Cameron, Catherine M. 1977 An Analysis of Manos from 10 Sites in Chaco Canyon, New Mexico. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published in 1997'); INSERT INTO documentary_instance VALUES (307, 'A Preliminary Report on the Chipped Stone of Chaco Canyon', NULL, NULL, NULL, NULL, '1979a', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque', NULL, 298, NULL, 'Cameron, Catherine M. 1979a A Preliminary Report on the Chipped Stone of Chaco Canyon. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO documentary_instance VALUES (308, 'The Chipped Stone of 423', NULL, NULL, NULL, NULL, '1979b', 0, NULL, 'Ms. on file', NULL, NULL, NULL, ' Ms. on file, NPS Chaco Archive, University of New Mexico, Albuquerque', NULL, 299, NULL, 'Cameron, Catherine M. 1979b The Chipped Stone of 423. Ms. on file, NPS Chaco Archive, University of New Mexico, Albuquerque'); INSERT INTO documentary_instance VALUES (309, 'Chipped Stone at Site 29SJ391—Una Vida', NULL, NULL, NULL, NULL, '1980', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque', NULL, 300, NULL, 'Cameron, Catherine M. 1980a* Chipped Stone at Site 29SJ391—Una Vida. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque'); INSERT INTO documentary_instance VALUES (310, 'Chipped Stone at the Spade Foot Toad Site (29SJ629). ', NULL, NULL, NULL, NULL, '1980b', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.', NULL, 301, NULL, 'Cameron, Catherine M. 1980b* Chipped Stone at the Spade Foot Toad Site (29SJ629). Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published in 1993'); INSERT INTO documentary_instance VALUES (311, 'The Chipped Stone of 29MC184', NULL, NULL, NULL, NULL, '1980c', 0, NULL, 'Ms. on file', NULL, NULL, NULL, ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.', NULL, 302, NULL, 'Cameron, Catherine M. 1980c The Chipped Stone of 29MC184. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO documentary_instance VALUES (312, 'The Chipped Stone of 29SJ299', NULL, NULL, NULL, NULL, '1980d', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.', NULL, 303, NULL, 'Cameron, Catherine M. 1980d The Chipped Stone of 29SJ299. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO documentary_instance VALUES (313, 'The Chipped Stone of 29SJ626', NULL, NULL, NULL, NULL, '1980e', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.', NULL, 304, NULL, 'Cameron, Catherine M. 1980e* The Chipped Stone of 29SJ626. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO documentary_instance VALUES (314, 'The Chipped Stone of 29SJ628', NULL, NULL, NULL, NULL, '1980f', 0, NULL, 'Ms. on file', NULL, NULL, NULL, ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.', NULL, 305, NULL, 'Cameron, Catherine M. 1980f The Chipped Stone of 29SJ628. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO documentary_instance VALUES (315, 'The Chipped Stone of 29JS630', NULL, NULL, NULL, NULL, '1980g', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque', NULL, 306, NULL, 'Cameron, Catherine M. 1980g* The Chipped Stone of 29JS630. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque'); INSERT INTO documentary_instance VALUES (316, 'The Chipped Stone of 29SJ633', NULL, NULL, NULL, NULL, '1980h', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. ', NULL, 307, NULL, 'Cameron, Catherine M. 1980h The Chipped Stone of 29SJ633. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published in 1991'); INSERT INTO documentary_instance VALUES (317, 'The Chipped Stone of 29SJ721', NULL, NULL, NULL, NULL, '1980i', 0, NULL, 'Ms. on file', NULL, NULL, NULL, ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.', NULL, 308, NULL, 'Cameron, Catherine M. 1980i The Chipped Stone of 29SJ721. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO documentary_instance VALUES (318, 'The Chipped Stone of 29SJ724', NULL, NULL, NULL, NULL, '1980j', 0, NULL, 'Ms. on file', NULL, NULL, NULL, ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.', NULL, 309, NULL, 'Cameron, Catherine M. 1980j The Chipped Stone of 29SJ724. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO documentary_instance VALUES (319, 'The Chipped Stone of 29SJ1360', NULL, NULL, NULL, NULL, '1980k', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque', NULL, 310, NULL, 'Cameron, Catherine M. 1980k* The Chipped Stone of 29SJ1360. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque'); INSERT INTO documentary_instance VALUES (320, 'The Chipped Stone of 29SJ1659', NULL, NULL, NULL, NULL, '1980l', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.', NULL, 311, NULL, 'Cameron, Catherine M. 1980l The Chipped Stone of 29SJ1659. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO documentary_instance VALUES (321, 'The Sources of Chaco Canyon Obsidian', NULL, NULL, NULL, NULL, '1980m', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque', NULL, 312, NULL, 'Cameron, Catherine M. 1980m The Sources of Chaco Canyon Obsidian. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque'); INSERT INTO documentary_instance VALUES (322, 'Lithic analysis for 29SJ 627', NULL, NULL, NULL, NULL, '1981a', 0, NULL, 'Ms. on file', NULL, NULL, NULL, ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.', NULL, 313, NULL, 'Cameron, Catherine M. 1981a Lithic analysis for 29SJ 627. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published in 1992.'); INSERT INTO documentary_instance VALUES (323, 'Patterns of Chipped Stone Raw Material Use in Chaco Canyon, N.M.', NULL, NULL, NULL, NULL, '1981b', 0, NULL, 'Paper', NULL, NULL, NULL, NULL, NULL, 314, NULL, 'Cameron, Catherine M. 1981b Patterns of Chipped Stone Raw Material Use in Chaco Canyon, N.M. Paper presented at the 46th Annual Meeting of the Society for American Archaeology, San Diego, April 29-May 2'); INSERT INTO documentary_instance VALUES (324, 'The Chipped Stone of Chaco Canyon, New Mexico.', NULL, NULL, NULL, NULL, '1982', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.', NULL, 315, NULL, 'Cameron, Catherine M. 1982 The Chipped Stone of Chaco Canyon, New Mexico. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published in 1997.'); INSERT INTO documentary_instance VALUES (325, 'A Regional View of Chipped Stone Raw Material Use in Chaco Canyon, New Mexico', NULL, NULL, NULL, NULL, '1984a', 0, NULL, 'Report', '16 pages', NULL, NULL, NULL, NULL, 316, NULL, 'Cameron, Catherine M. 1984a A Regional View of Chipped Stone Raw Material Use in Chaco Canyon, New Mexico. In Recent Research on Chaco Prehistory, edited by W. James Judge and John D. Schelberg, pp. 137-152. Reports of the Chaco Center No. 8. Division of Cultural Research, National Park Service, Albuquerque.'); INSERT INTO documentary_instance VALUES (326, 'An Examination of Chipped Stone from Kin Nahasbas', NULL, NULL, NULL, NULL, '1984b', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico.', NULL, 317, NULL, 'Cameron, Catherine M. 1984b An Examination of Chipped Stone from Kin Nahasbas. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico. Published in 1988.'); INSERT INTO documentary_instance VALUES (327, 'An Analysis of Manos from Chaco Canyon, New Mexico', NULL, NULL, NULL, NULL, '1985a', 0, NULL, 'Ms. on file', NULL, NULL, NULL, ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.', NULL, 318, NULL, 'Cameron, Catherine M. 1985a An Analysis of Manos from Chaco Canyon, New Mexico. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published in 1997.'); INSERT INTO documentary_instance VALUES (328, 'Chipped Stone at Pueblo Alto, Chaco Canyon, New Mexico', NULL, NULL, NULL, NULL, '1985b', 0, 'Submitted in fulfillment of Contract PX 7029-5-C020.', 'Ms. on file', NULL, NULL, NULL, 'Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. ', NULL, 319, NULL, 'Cameron, Catherine M. 1985b Chipped Stone at Pueblo Alto, Chaco Canyon, New Mexico. Submitted in fulfillment of Contract PX 7029-5-C020. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published in 1987.'); INSERT INTO documentary_instance VALUES (329, 'Chipped Stone from Pueblo Alto', NULL, NULL, NULL, NULL, '1987', 0, NULL, 'Book', '42 pages', NULL, NULL, NULL, NULL, 321, NULL, 'Cameron, Catherine M. 1987 Chipped Stone from Pueblo Alto. In Investigations at the Pueblo Alto Complex, Chaco Canyon, New Mexico, 1975-1979. Volume III: Artifactual and Biological Analyses, edited by Frances Joan Mathien and Thomas C. Windes, pp. 231-278. Publications in Archeology 18F, Chaco Canyon Studies. National Park Service, Santa Fe.'); INSERT INTO documentary_instance VALUES (330, 'An Examination of Chipped Stone from Kin Nahasbas. ', NULL, NULL, NULL, NULL, '1988', 0, NULL, 'Journal', '20 pages', NULL, NULL, NULL, NULL, 322, NULL, 'Cameron, Catherine M. 1988 An Examination of Chipped Stone from Kin Nahasbas. In Historic Structure Report, Kin Nahasbas Ruin, Chaco Culture National Historical Park, New Mexico by Frances Joan Mathien and Thomas C. Windes, pp. 213-232. Branch of Cultural Research, National Park Service, Santa Fe.'); INSERT INTO documentary_instance VALUES (331, 'Chipped Stone from Site 29SJ633', NULL, NULL, NULL, NULL, '1991', 0, NULL, 'Journal', '13 pages', NULL, NULL, NULL, NULL, 323, NULL, 'Cameron, Catherine M. 1991 Chipped Stone from Site 29SJ633. In Excavations at 29SJ633: The Eleventh Hour Site, Chaco Canyon, New Mexico, edited by Frances Joan Mathien, pp. 207-219. Reports of the Chaco Center No. 10. Branch of Cultural Research, National Park Service, Santa Fe.'); INSERT INTO documentary_instance VALUES (332, 'A Brief Summary of Chipped Stone Use at Site 29SJ627.', NULL, NULL, NULL, NULL, '1992', 0, NULL, 'Journal', '16 pages', NULL, NULL, NULL, NULL, 324, NULL, 'Cameron, Catherine M. 1992 A Brief Summary of Chipped Stone Use at Site 29SJ627. In Excavations at 29SJ627, Chaco Canyon, New Mexico. Volume II: The Artifact Analyses, edited by Frances Joan Mathien, pp. 249-264. Reports of the Chaco Center No. 11. Branch of Cultural Research, National Park Service, Santa Fe.'); INSERT INTO documentary_instance VALUES (333, 'Chipped Stone from 29SJ629', NULL, NULL, NULL, NULL, '1993a', 0, NULL, 'Journal', '50 pages', NULL, NULL, NULL, NULL, 325, NULL, 'Cameron, Catherine M. 1993a Chipped Stone from 29SJ629. In The Spadefoot Toad Site. Investigations at 29SJ629, Chaco Canyon, New Mexico: Artifactual and Biological Analyses. Volume II, edited by Thomas C. Windes, pp. 135-184. Reports of the Chaco Center No. 12. Branch of Cultural Research, National Park Service, Santa Fe.'); INSERT INTO documentary_instance VALUES (334, 'Recent Research in the Prehistoric Southwest. ', NULL, NULL, NULL, NULL, '1993b', 0, 'Expedition Magazine 35(1). The University Museum, Philadelphia', 'Journal', NULL, NULL, NULL, NULL, NULL, 326, NULL, 'Cameron, Catherine M. 1993b Recent Research in the Prehistoric Southwest. Expedition Magazine 35(1). The University Museum, Philadelphia'); INSERT INTO documentary_instance VALUES (335, 'The Collapse of the Chacoan System: Fragmentation and Social Reorganization in the American Southwest', NULL, NULL, NULL, NULL, '1993c', 0, NULL, 'Paper', NULL, NULL, NULL, NULL, NULL, 327, NULL, 'Cameron, Catherine M. 1993c The Collapse of the Chacoan System: Fragmentation and Social Reorganization in the American Southwest. Paper presented at the 58th Annual Meeting of the Society for American Archaeology, St. Louis.'); INSERT INTO documentary_instance VALUES (336, 'Migration and the Movement of Southwestern Peoples', NULL, NULL, NULL, NULL, '1995', 0, 'Journal of Anthropological Archaeology 14(2):104-124.', 'Journal', '21 pages', NULL, NULL, NULL, NULL, 328, NULL, 'Cameorn, Catherine M. 1995 Migration and the Movement of Southwestern Peoples. Journal of Anthropological Archaeology 14(2):104-124.'); INSERT INTO documentary_instance VALUES (337, 'Archaeological Testing at the Bluff Great House, Southeastern Utah, October 1995.', NULL, NULL, NULL, NULL, '1996a', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'Ms. on file, Southwest Heritage Foundation, Bluff, and Department of Anthropology, University of Colorado at Boulder.', NULL, 329, NULL, 'Cameron, Catherine M. 1996a Archaeological Testing at the Bluff Great House, Southeastern Utah, October 1995. Ms. on file, Southwest Heritage Foundation, Bluff, and Department of Anthropology, University of Colorado at Boulder.'); INSERT INTO documentary_instance VALUES (338, 'Multistory Construction in Southwestern Pueblo Architecture', NULL, NULL, NULL, NULL, '1996b', 0, NULL, 'Journal', '5 pages', NULL, NULL, NULL, NULL, 330, NULL, 'Cameron, Catherine M. 1996b Multistory Construction in Southwestern Pueblo Architecture. In Interpreting Southwestern Diversity: Underlying Principles and Overarching Patterns, edited by Paul R. Fish and J. Jefferson Reid, pp. 195-199. Arizona State University Anthropological Research Papers No. 48. Arizona State University, Tempe.'); INSERT INTO documentary_instance VALUES (339, 'A Preliminary Report on the 1997 Excavations at the Bluff Great House.', NULL, NULL, NULL, NULL, '1997a', 0, NULL, 'Ms. on file', NULL, NULL, NULL, ' Ms. on file, Southwest Heritage Foundation, Bluff, and Department of Anthropology, University of Colorado at Boulder', NULL, 331, NULL, 'Cameron, Catherine M. 1997a A Preliminary Report on the 1997 Excavations at the Bluff Great House. Ms. on file, Southwest Heritage Foundation, Bluff, and Department of Anthropology, University of Colorado at Boulder'); INSERT INTO documentary_instance VALUES (340, 'An Analysis of Manos from Chaco Canyon, New Mexico', NULL, NULL, NULL, NULL, '1997b', 0, NULL, 'Book', '16 pages', NULL, NULL, NULL, NULL, 332, NULL, 'Cameron, Catherine M. 1997b An Analysis of Manos from Chaco Canyon, New Mexico. In Ceramics, Lithics, and Ornaments of Chaco Canyon. Analyses of Artifacts from the Chaco Project, 1971-1978, edited by Frances Joan Mathien, pp. 997-1012. Publications in Archeology 18G, Chaco Canyon Studies. National Park Service, Santa Fe.'); INSERT INTO documentary_instance VALUES (341, 'Cores.', NULL, NULL, NULL, NULL, '1997c', 0, NULL, 'Journal', '16 pages', NULL, NULL, NULL, NULL, 333, NULL, 'Cameron, Catherine M. 1997c Cores. In Ceramics, Lithics, and Ornaments of Chaco Canyon. Analyses of Artifacts from the Chaco Project, 1971-1978, edited by Frances Joan Mathien, pp. 643-658. Publications in Archeology 18G, Chaco Canyon Studies. National Park Service, Santa Fe. '); INSERT INTO documentary_instance VALUES (342, 'The Bluff Great House and the Chacoan Regional System', NULL, NULL, NULL, NULL, '1997d', 0, NULL, 'Paper', NULL, NULL, NULL, NULL, NULL, 334, NULL, 'Cameron, Catherine M. 1997d The Bluff Great House and the Chacoan Regional System. Paper presented at the 62nd Annual Meeting of the Society for American Archaeology, Nashville.'); INSERT INTO documentary_instance VALUES (343, 'The Chacoan Era in the Northern Southwest: 1996 Excavations at the Bluff Great House.', NULL, NULL, NULL, NULL, '1997e', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'Ms. o n file, Southwest Heritage Foundation, Bluff, and Department of Anthropology, University of Colorado at Boulder.', NULL, 335, NULL, 'Cameron, Catherine M. 1997e The Chacoan Era in the Northern Southwest: 1996 Excavations at the Bluff Great House. Ms. o n file, Southwest Heritage Foundation, Bluff, and Department of Anthropology, University of Colorado at Boulder.'); INSERT INTO documentary_instance VALUES (344, 'The Chipped Stone of Chaco Canyon, New Mexico. ', NULL, NULL, NULL, NULL, '1997f', 0, NULL, 'Journal', '69 pages', NULL, NULL, NULL, NULL, 336, NULL, 'Cameron, Catherine M. 1997f The Chipped Stone of Chaco Canyon, New Mexico. In Ceramics, Lithics, and Ornaments of Chaco Canyon. Analyses of Artifacts from the Chaco Project, 1971-1978, edited by Frances Joan Mathien, pp, 531-609. Publications in Archeology 18G, Chaco Canyon Studies. National Park Service, Santa Fe.'); INSERT INTO documentary_instance VALUES (345, 'On the Northern Frontier: Chacoan Archaeology in the San Juan Region', NULL, NULL, NULL, NULL, '1998', 0, NULL, 'Paper', NULL, NULL, NULL, NULL, NULL, 337, NULL, 'Cameron, Catherine M. 1998 On the Northern Frontier: Chacoan Archaeology in the San Juan Region. Paper presented at the 63rd Annual Meeting of the Society for American Archaeology, Seattle.'); INSERT INTO documentary_instance VALUES (346, 'Pink Chert, Projectile Points, and the Chacoan Regional system', NULL, NULL, NULL, NULL, '2001', 0, 'American Antiquity 66(1):79-102.', 'Journal', '24 pages', NULL, NULL, NULL, NULL, 338, NULL, 'Cameron, Catherine M. 2001 Pink Chert, Projectile Points, and the Chacoan Regional system. American Antiquity 66(1):79-102.'); INSERT INTO documentary_instance VALUES (347, 'Sacred Earthen Architecture in the Northern Southwest: The Bluff Great House Berm.', NULL, NULL, NULL, NULL, '2002', 0, 'American Antiquity 67(4):677-695.', 'Journal', '19 pages', NULL, NULL, NULL, NULL, 339, NULL, 'Cameron, Catherine M. 2002 Sacred Earthen Architecture in the Northern Southwest: The Bluff Great House Berm. American Antiquity 67(4):677-695.'); INSERT INTO documentary_instance VALUES (348, 'Chipped Stone of Chaco Canyon', NULL, NULL, NULL, NULL, '1980', 0, 'Paper presented at the 1980 Pecos Conference, Mesa Verde National Park.', 'Ms. on file paper', NULL, NULL, NULL, 'Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. ', NULL, 340, NULL, 'Cameron, Catherine M., and Stephen H. Lekson 1980 Chipped Stone of Chaco Canyon. Paper presented at the 1980 Pecos Conference, Mesa Verde National Park. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. '); INSERT INTO documentary_instance VALUES (349, 'Obsidian Procurement at Chaco Canyon, A.D. 500-1200', NULL, NULL, NULL, NULL, '1984', 0, NULL, 'Journal', '19 pages', NULL, NULL, NULL, NULL, 341, NULL, 'Cameron, Catherine M., and Robert Lee Sappington 1984 Obsidian Procurement at Chaco Canyon, A.D. 500-1200. In Recent Research on Chaco Prehistory, edited by W. James Judge and John D. Schelberg, pp. 153-171. Reports of the Chaco Center No. 8. Division of Cultural Research, National Park Service, Albuquerque. '); INSERT INTO documentary_instance VALUES (350, 'The Chaco Organization of Production Conference', NULL, NULL, NULL, NULL, '1999', 0, 'SAA Bulletin 17(4):24, 29.', 'Journal', '2 pages', NULL, NULL, NULL, NULL, 342, NULL, 'Cameron, Catherine M., and H. Wolcott Toll 1999 The Chaco Organization of Production Conference. SAA Bulletin 17(4):24, 29. '); INSERT INTO documentary_instance VALUES (351, 'Deciphering the Organization of Production in Chaco Canyon', NULL, NULL, NULL, NULL, '2001', 0, 'American Antiquity 66(1):5-13.', 'Journal', '9 pages', NULL, NULL, NULL, NULL, 343, NULL, 'Cameron, Catherine M. and H. Wolcott Toll 2001 Deciphering the Organization of Production in Chaco Canyon. American Antiquity 66(1):5-13.'); INSERT INTO documentary_instance VALUES (352, 'Lithic Procurement and Technology in the Chaco Canyon Area', NULL, NULL, NULL, NULL, '1986', 0, 'Submitted in fulfillment of Contract PX7029-5-C031.', 'Ms. on file', NULL, NULL, NULL, 'Ms. on file, Branch of Cultural Research, National Park Service, Santa Fe. ', NULL, 344, NULL, 'Cameron, Catherine M., and Lisa C. Young 1986 Lithic Procurement and Technology in the Chaco Canyon Area. Submitted in fulfillment of Contract PX7029-5-C031. Ms. on file, Branch of Cultural Research, National Park Service, Santa Fe. '); INSERT INTO documentary_instance VALUES (353, 'Surface Cover-Type Legends. San Juan Basin Ecological Stratification. Phase III Report.', NULL, NULL, NULL, NULL, '1978', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'Ms. on file, Remote Sensing Office, National Park Service, Santa Fe. ', NULL, 345, NULL, 'Camilli, Eileen 1978 Surface Cover-Type Legends. San Juan Basin Ecological Stratification. Phase III Report. Ms. on file, Remote Sensing Office, National Park Service, Santa Fe. '); INSERT INTO documentary_instance VALUES (354, 'An Ecological Cover-Type Map of the San Juan Basin, Northwestern New Mexico', NULL, NULL, NULL, NULL, '1983', 0, NULL, 'Journal', '18 pages', NULL, NULL, NULL, NULL, 346, NULL, 'Camilli, Eileen 1983 An Ecological Cover-Type Map of the San Juan Basin, Northwestern New Mexico. In Remote Sensing in Cultural Resource Management: The San Juan Basin Project, edited by Dwight L. Drager and Thomas R. Lyons, pp. 39-56. Cultural Resources Management Division, National Park Service, Washington, D.C. '); INSERT INTO documentary_instance VALUES (355, 'Remote Sensing: Applications to Cultural Resources in Southwestern North America.', NULL, NULL, NULL, NULL, '1983', 0, NULL, 'Book', NULL, NULL, NULL, NULL, NULL, 347, NULL, 'Camilli, Eileen L., and Linda S. Cordell 1983 Remote Sensing: Applications to Cultural Resources in Southwestern North America. Supplement No. 8 to Remote Sensing: A Handbook for Archeologists and Cultural Resource Managers, by Thomas R. Lyons and Thomas Eugene Avery. Cultural Resources Management Division, National Park Service, Washington, D.C. '); INSERT INTO documentary_instance VALUES (356, 'The Excavations of Elkins "F" 1977 Report # 1.', NULL, NULL, NULL, NULL, '1977', 1, 'Cottonwood Gulch Foundation, Vol. 1', 'Report', NULL, NULL, NULL, NULL, NULL, 348, NULL, 'Cannon, Brian 1977* The Excavations of Elkins "F" 1977 Report # 1. Cottonwood Gulch Foundation, Vol. 1 '); INSERT INTO documentary_instance VALUES (357, 'Food or Feathers: Amino Acid Racemization Analysis of Turkey Bone', NULL, NULL, NULL, NULL, '1991', 0, NULL, 'Paper', NULL, NULL, NULL, NULL, NULL, 349, NULL, 'Capone, Patricia H., and Margaret J. Schoeninger 1991 Food or Feathers: Amino Acid Racemization Analysis of Turkey Bone. Paper presented at the 56th Annual Meeting of the Society for American Archaeology, New Orleans. '); INSERT INTO documentary_instance VALUES (358, 'The Selling of Fajada Butte: An Anacalypsis.', NULL, NULL, NULL, NULL, '1983', 0, NULL, 'Journal', '5 pages', NULL, NULL, NULL, NULL, 350, NULL, 'Carlson, John B. 1983 The Selling of Fajada Butte: An Anacalypsis. Archaeoastronomy (Supplement to the Journal of the History of Astronomy) 6:156-160. '); INSERT INTO documentary_instance VALUES (359, 'Film Review of "The Sun Dagger" produced by A. P. Sofaer, directed by A. Ihde', NULL, NULL, NULL, NULL, '1984', 0, 'Archaeology 37(2):78-79', 'Journal', '2 pages', NULL, NULL, NULL, NULL, 351, NULL, 'Carlson, John B. 1984 Film Review of "The Sun Dagger" produced by A. P. Sofaer, directed by A. Ihde. Archaeology 37(2):78-79.'); INSERT INTO documentary_instance VALUES (360, 'Romancing the Stone, or Moonshine on the Sun Dagger', NULL, NULL, NULL, NULL, '1987', 0, NULL, 'Book', '18 pages', NULL, NULL, NULL, NULL, 352, NULL, 'Carlson, John B. 1987 Romancing the Stone, or Moonshine on the Sun Dagger. In Astronomy and Ceremony in the Prehistoric Southwest, edited by John B. Carlson and W. James Judge, pp. 71-88. Papers of the Maxwell Museum of Anthropology No. 2. University of New Mexico, Albuquerque.'); INSERT INTO documentary_instance VALUES (361, 'America’s Ancient Skywatchers', NULL, NULL, NULL, NULL, '1990', 0, 'National Geographic 177(3):76-108.', 'Journal', '33 pages', NULL, NULL, NULL, NULL, NULL, NULL, 'Carlson, John B. 1990 America’s Ancient Skywatchers. National Geographic 177(3):76-108.'); INSERT INTO documentary_instance VALUES (362, 'Astronomy and Ceremony in the Prehistoric Southwest', NULL, NULL, NULL, NULL, '1987', 0, NULL, 'Book', NULL, NULL, NULL, NULL, NULL, 354, NULL, 'Carlson, John B., and W. James Judge (editors) 1987 Astronomy and Ceremony in the Prehistoric Southwest. Papers of the Maxwell Museum of Anthropology No. 2. University of New Mexico, Albuquerque. '); INSERT INTO documentary_instance VALUES (363, 'Navajo Clans and Marriage at Pueblo Alto.', NULL, NULL, NULL, NULL, '1939', 0, 'American Anthropologist 41(2):245-257.', 'Journal', '13 pages', NULL, NULL, NULL, NULL, 355, NULL, 'Carr, Malcolm, Katherine Spencer, and Doriane Woolley 1939 Navajo Clans and Marriage at Pueblo Alto. American Anthropologist 41(2):245-257. '); INSERT INTO documentary_instance VALUES (364, 'Personal Ritual or Pee Wee’s Playhouse: An Alternative Interpretation of Chacoan Domestic Space', NULL, NULL, NULL, NULL, '1998', 0, 'Ms. for Anthropology 599, Kelly Hays-Gilpin, Northern Arizona University.', NULL, NULL, NULL, NULL, NULL, NULL, 356, NULL, 'Carver, L. 1998 Personal Ritual or Pee Wee’s Playhouse: An Alternative Interpretation of Chacoan Domestic Space. Ms. for Anthropology 599, Kelly Hays-Gilpin, Northern Arizona University. '); INSERT INTO documentary_instance VALUES (365, 'Pueblo Bonito Ruin, Chaco Canyon National Monument, New Mexico, Stabilization Report 1972', NULL, NULL, NULL, NULL, '1972', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'Ms. on file, Chaco Culture National Historical Park and NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. ', NULL, 357, NULL, 'Chambers, George J. 1972 Pueblo Bonito Ruin, Chaco Canyon National Monument, New Mexico, Stabilization Report 1972. Ms. on file, Chaco Culture National Historical Park and NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. '); INSERT INTO documentary_instance VALUES (366, 'Chaco Canyon National Monument, Pueblo Bonito, July-September 1973, Stabilization Report. ', NULL, NULL, NULL, NULL, '1973', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'Ms. on file, Western Archeological Center, Tucson, and NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.', NULL, NULL, NULL, 'Chambers, George J. 1973 Chaco Canyon National Monument, Pueblo Bonito, July-September 1973, Stabilization Report. Ms. on file, Western Archeological Center, Tucson, and NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO documentary_instance VALUES (367, 'Field Notes on Excavation at Bc 52', NULL, NULL, NULL, NULL, '1940', 0, NULL, 'Notes', NULL, NULL, NULL, 'Vivian Archive No. 252, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.', NULL, 359, NULL, 'Chandler, Mary Beth 1940 Field Notes on Excavation at Bc 52. Vivian Archive No. 252, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. '); INSERT INTO documentary_instance VALUES (368, 'A Navajo Myth from Chaco Canyon', NULL, NULL, NULL, NULL, '1940', 0, ' New Mexico Anthropologist 4(4):63-67.', 'Journal', '5 pages', NULL, NULL, NULL, NULL, 360, NULL, 'Chapin, Gretchen 1940 A Navajo Myth from Chaco Canyon. New Mexico Anthropologist 4(4):63-67. '); INSERT INTO documentary_instance VALUES (369, 'An Archaeological Survey of Four Sections of Land near Black Lake, San Juan County, New Mexico', NULL, NULL, NULL, NULL, '1980', 0, 'School of American Research Contract Archaeology Project, Santa Fe.', 'Report', NULL, NULL, NULL, NULL, NULL, 361, NULL, 'Chapman, Richard E., and Jan V. Biella 1980 An Archaeological Survey of Four Sections of Land near Black Lake, San Juan County, New Mexico. School of American Research Contract Archaeology Project, Santa Fe. '); INSERT INTO documentary_instance VALUES (370, 'Why Aborigines Left Chaco Canyon', NULL, NULL, NULL, NULL, '1940', 0, 'Forests 46(98):73.', 'Journal', '1 page', NULL, NULL, NULL, NULL, 362, NULL, 'Chapman, H. H. 1940 Why Aborigines Left Chaco Canyon. Forests 46(98):73. '); INSERT INTO documentary_instance VALUES (371, 'What the Potsherds Tell', NULL, NULL, NULL, NULL, '1921', 0, 'Art and Archaeology 11(1-2):39-44.', 'Journal', '6 pages', NULL, NULL, NULL, NULL, 363, NULL, 'Chapman, Kenneth M. 1921 What the Potsherds Tell. Art and Archaeology 11(1-2):39-44. '); INSERT INTO documentary_instance VALUES (372, 'Erosion Control in Chaco Canyon, New Mexico, for the Preservation of Archaeological Sites.', NULL, NULL, NULL, NULL, '1935', 0, 'M. A. thesis, Department of Anthropology, University of New Mexico, Albuquerque.', 'M.A. thesis', NULL, NULL, NULL, NULL, NULL, 364, NULL, 'Chauvenet, William 1935 Erosion Control in Chaco Canyon, New Mexico, for the Preservation of Archaeological Sites. M. A. thesis, Department of Anthropology, University of New Mexico, Albuquerque. '); INSERT INTO documentary_instance VALUES (373, 'Threatening Rock.', NULL, NULL, NULL, NULL, '1936', 0, 'Southwestern Monuments, September, p. 209.', 'Journal', '1 page', NULL, NULL, NULL, NULL, 365, NULL, 'Clark, A. E. 1936 Threatening Rock. Southwestern Monuments, September, p. 209. '); INSERT INTO documentary_instance VALUES (374, 'Pollen Analysis of Coprolites from Chaco Canyon, New Mexico.', NULL, NULL, NULL, NULL, '1981', 0, NULL, 'Report', NULL, NULL, NULL, NULL, NULL, 366, NULL, 'Clary, Karen Husum 1981 Pollen Analysis of Coprolites from Chaco Canyon, New Mexico. Contract. Castetter Laboratory for Ethnobotanical Studies, Technical Series Report No. 52. University of New Mexico, Albuquerque. '); INSERT INTO documentary_instance VALUES (375, 'Prehistoric Coprolite Remains from Chaco Canyon, New Mexico: Inferences for Anasazi Diet and Subsistence', NULL, NULL, NULL, NULL, '1983a', 0, 'Submitted in fulfillment of Contracts PX 7486-7-0125 and PX 7029-1-1106', 'Ms. on file', NULL, NULL, NULL, 'Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.', NULL, 367, NULL, 'Clary, Karen Husum 1983a Prehistoric Coprolite Remains from Chaco Canyon, New Mexico: Inferences for Anasazi Diet and Subsistence. Submitted in fulfillment of Contracts PX 7486-7-0125 and PX 7029-1-1106. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO documentary_instance VALUES (376, 'Prehistoric Coprolite Remains from Chaco Canyon, New Mexico: Inferences for Anasazi Diet and Subsistence', NULL, NULL, NULL, NULL, '1983b', 0, NULL, 'Unpublished M.S. thesis', NULL, NULL, NULL, NULL, NULL, 368, NULL, 'Clary, Karen Husum 1983b Prehistoric Coprolite Remains from Chaco Canyon, New Mexico: Inferences for Anasazi Diet and Subsistence. Unpublished M.S. thesis, Department of Anthropology, University of New Mexico, Albuquerque.'); INSERT INTO documentary_instance VALUES (377, 'Anasazi Diet and Subsistence as Revealed by Coprolites from Chaco Canyon', NULL, NULL, NULL, NULL, '1984', 0, NULL, 'Journal', '15 pages', NULL, NULL, NULL, NULL, 369, NULL, 'Clary, Karen Husum 1984 Anasazi Diet and Subsistence as Revealed by Coprolites from Chaco Canyon. In Recent Research on Chaco Prehistory, edited by W. James Judge and John D. Schelberg, pp. 265-279. Reports of the Chaco Center No. 8. Division of Cultural Research, National Park Service, Albuquerque.'); INSERT INTO documentary_instance VALUES (378, 'An Analysis of Pollen from Anasazi Period Mealing Bins from Room 100, Pueblo Alto (29SJ389), Chaco Canyon, New Mexico.', NULL, NULL, NULL, NULL, '1987a', 0, NULL, 'Report', NULL, NULL, NULL, 'Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.', NULL, 370, NULL, 'Clary, Karen Husum 1987a An Analysis of Pollen from Anasazi Period Mealing Bins from Room 100, Pueblo Alto (29SJ389), Chaco Canyon, New Mexico. Castetter Laboratory for Ethnobotanical Studies Technical Series Report No. 201. Contract PX7029-7-0391. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO documentary_instance VALUES (379, 'Coprolites from Pueblo Alto', NULL, NULL, NULL, NULL, '1987b', 0, NULL, 'Journal', '4 pages', NULL, NULL, NULL, NULL, 371, NULL, 'Clary, Karen Husum 1987b Coprolites from Pueblo Alto. In Investigations at the Pueblo Alto Complex, Chaco Canyon, New Mexico, 1975-1979. Volume III: Artifactual and Biological Analyses, edited by Frances Joan Mathien and Thomas C. Windes, pp. 785-788. Publications in Archeology 18F, Chaco Canyon Studies. National Park Service, Santa Fe.'); INSERT INTO documentary_instance VALUES (380, 'Chaco Canyon Excavations June 10-July 8, 1931.', NULL, NULL, NULL, NULL, '1931', 0, NULL, 'Report', NULL, NULL, NULL, 'Archive 1883, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. ', NULL, 372, NULL, 'Clinard, Marshall 1931 Chaco Canyon Excavations June 10-July 8, 1931. Archive 1883, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. '); INSERT INTO documentary_instance VALUES (381, 'Feathered, Horned, and Antlered Serpents: Mesoamerican Connections with the Southwest and Southeast', NULL, NULL, 'Albuquerque and Dragoon', 'The Amerind Foundation and University of New Mexico Press.', '1999', 0, NULL, 'Journal', '17 pages', NULL, NULL, NULL, NULL, 373, NULL, 'Cobb, Charles R., Jeffrey Maymon, and Randall H. McGuire 1999 Feathered, Horned, and Antlered Serpents: Mesoamerican Connections with the Southwest and Southeast. In Great Towns and Regional Polities in the Prehistoric American Southwest and Southeast, edited by Jill E. Neitzel, pp. 165-181. The Amerind Foundation, Dragoon, and University of New Mexico Press, Albuquerque. '); INSERT INTO documentary_instance VALUES (382, 'The Hierarchy of Power: The Anasazi Religion of Science', NULL, NULL, NULL, NULL, '1996', 0, 'Paper for Anthropology 394, D. E. Stuart, University of New Mexico.', 'Paper', NULL, NULL, NULL, NULL, NULL, 374, NULL, 'Coffee, MaryBeth 1996 The Hierarchy of Power: The Anasazi Religion of Science. Paper for Anthropology 394, D. E. Stuart, University of New Mexico. '); INSERT INTO documentary_instance VALUES (383, 'The Reconstruction of the Major Ruins in the Chaco Canyon, New Mexico', NULL, NULL, NULL, NULL, '1934', 0, NULL, 'Report', NULL, NULL, NULL, 'Archive 1836, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. ', NULL, 375, NULL, 'Coffin, Robert M. 1934 The Reconstruction of the Major Ruins in the Chaco Canyon, New Mexico. Archive 1836, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. '); INSERT INTO documentary_instance VALUES (384, 'Casamero Site LA 8779. Preliminary Report of the Work Completed in 1966', NULL, NULL, NULL, NULL, '1967', 0, NULL, 'Report', NULL, NULL, NULL, ' Archive 2027A, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. ', NULL, 376, NULL, 'Colberg, Anne M. 1967 Casamero Site LA 8779. Preliminary Report of the Work Completed in 1966. Archive 2027A, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. '); INSERT INTO documentary_instance VALUES (385, 'Review of The Significance of Dated Prehistory of Chetro Ketl, by F. Hawley.', NULL, NULL, NULL, NULL, '1936', 0, 'American Antiquity 1(4):331-332.', 'Journal', '2 pages', NULL, NULL, NULL, NULL, 377, NULL, 'Cole, F. 1936 Review of The Significance of Dated Prehistory of Chetro Ketl, by F. Hawley. American Antiquity 1(4):331-332. '); INSERT INTO documentary_instance VALUES (386, 'Prehistoric Trade in the Southwest', NULL, NULL, NULL, NULL, '1941', 0, ' The Scientific Monthly 52:308-319.', 'Journal', '12 pages', NULL, NULL, NULL, NULL, 378, NULL, 'Colton, Harold Sellers 1941 Prehistoric Trade in the Southwest. The Scientific Monthly 52:308-319. '); INSERT INTO documentary_instance VALUES (387, 'Potsherds: An Introduction to the Study of Prehistoric Southwestern Ceramics and Their Use in Historic Reconstruction', NULL, NULL, NULL, NULL, '1953', 0, NULL, 'Report', NULL, NULL, NULL, 'The Northern Arizona Society of Science and Art, Flagstaff.', NULL, 379, NULL, 'Colton, Harold Sellers 1953 Potsherds: An Introduction to the Study of Prehistoric Southwestern Ceramics and Their Use in Historic Reconstruction. The Northern Arizona Society of Science and Art, Flagstaff.'); INSERT INTO documentary_instance VALUES (388, 'Ethnographic Consideration Surrounding Archeological Protection in the San Juan Basin', NULL, NULL, NULL, NULL, '1982', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'Ms. on file, National Park Service, Santa Fe. ', NULL, 380, NULL, 'Condie, Carol J., and Frederick F. York 1982 Ethnographic Consideration Surrounding Archeological Protection in the San Juan Basin. Ms. on file, National Park Service, Santa Fe. '); INSERT INTO documentary_instance VALUES (389, 'Preliminary Report on the Analysis of Coprolites from Kin Kletso', NULL, NULL, NULL, NULL, '1977', 0, NULL, 'Ms. on file', NULL, NULL, NULL, ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. ', NULL, 381, NULL, 'Conley, Gary J. 1977 Preliminary Report on the Analysis of Coprolites from Kin Kletso. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. '); INSERT INTO documentary_instance VALUES (390, 'Comparative Study of the Great Sanctuary, Kiva E, and the East Tower According to Masonry at the Great Sanctuary of the Great Kiva.', NULL, NULL, NULL, NULL, '1930', 0, NULL, 'Report', NULL, NULL, NULL, 'Archive 1951, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.', NULL, 382, NULL, 'Conrad, Edith 1930 Comparative Study of the Great Sanctuary, Kiva E, and the East Tower According to Masonry at the Great Sanctuary of the Great Kiva. Archive 1951, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. '); INSERT INTO documentary_instance VALUES (391, 'Chaco Canyon Excavations of Chetro Ketl and General Observations', NULL, NULL, NULL, NULL, '1931', 0, NULL, 'Report', NULL, NULL, NULL, 'Archive 1880, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. ', NULL, 383, NULL, 'Cook, Fletcher 1931 Chaco Canyon Excavations of Chetro Ketl and General Observations. Archive 1880, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. '); INSERT INTO documentary_instance VALUES (392, 'Anasazi Places: The Photographic Vision of William Current', NULL, NULL, 'Austin.', 'University of Texas Press', '1992', 0, NULL, 'Book', NULL, NULL, NULL, NULL, NULL, 384, NULL, 'Cook, Jeffrey 1992 Anasazi Places: The Photographic Vision of William Current. University of Texas Press, Austin. '); INSERT INTO documentary_instance VALUES (393, 'Space Syntax Analysis of Chacoan Great Houses. ', NULL, NULL, NULL, NULL, '1995', 0, 'Ph.D. dissertation, Department of Anthropology, University of Arizona, Tucson.', 'Ph.D. dissertation', NULL, NULL, NULL, NULL, NULL, 385, NULL, 'Cooper, Laurel Martine 1995 Space Syntax Analysis of Chacoan Great Houses. Ph.D. dissertation, Department of Anthropology, University of Arizona, Tucson. '); INSERT INTO documentary_instance VALUES (394, 'Comparative Analysis of Chacoan Great Houses.', NULL, NULL, NULL, NULL, '1997', 0, NULL, 'Paper', NULL, NULL, NULL, NULL, NULL, 386, NULL, 'Cooper, Laurel Martine 1997 Comparative Analysis of Chacoan Great Houses. Paper presented at the First International Symposium on Space Syntax, University College, London, April 17.'); INSERT INTO documentary_instance VALUES (395, 'J1. Report on the Remains of Population Observed on and near the Eocene Plateau of Northwestern New Mexico', NULL, NULL, 'Washington, D.C.', 'Government Printing Office', '1875', 0, NULL, 'Report', NULL, NULL, NULL, NULL, NULL, 387, NULL, 'Cope, E. D. 1875 J1. Report on the Remains of Population Observed on and near the Eocene Plateau of Northwestern New Mexico. In Appendix J. Ethnology, Philology, and Ruins, pp. 1086-1093. In Annual Report of the Chief of Engineers of the Secretary of War for the Year 1895. In Two Parts, Part II. 44th Congress, 1st Session, Ex. Doc. 1, Pt. 2, Vol. II. Government Printing Office, Washington, D.C. '); INSERT INTO documentary_instance VALUES (396, 'Navaho House Types in the Chaco Canyon and Its Environs', NULL, NULL, NULL, NULL, '1938', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'Ms. on file, Vivian Archives No. 2157, NPS Chaco Culture NHP Museum Archives, University of New Mexico, Albuquerque. ', NULL, 388, NULL, 'Corbett, John Maxwell 1938 Navaho House Types in the Chaco Canyon and Its Environs. Ms. on file, Vivian Archives No. 2157, NPS Chaco Culture NHP Museum Archives, University of New Mexico, Albuquerque. '); INSERT INTO documentary_instance VALUES (397, 'Navajo House Types', NULL, NULL, NULL, NULL, '1940', 0, 'El Palacio 47(5):97-107.', 'Journal', '11 pages', NULL, NULL, NULL, NULL, 389, NULL, 'Corbett, John Maxwell 1940 Navajo House Types. El Palacio 47(5):97-107.'); INSERT INTO documentary_instance VALUES (398, 'The Pueblo Period in the San Jan Basin: Overview and Research Problem', NULL, NULL, NULL, NULL, '198-*', 1, NULL, 'Ms. on file', NULL, NULL, NULL, ' Ms. on file, NPS Chaco Archive, University of New Mexico, Albuquerque. ', NULL, 390, NULL, 'Cordell, Linda S. 198-* The Pueblo Period in the San Jan Basin: Overview and Research Problem. Ms. on file, NPS Chaco Archive, University of New Mexico, Albuquerque. '); INSERT INTO documentary_instance VALUES (399, 'Prehistory of the Southwest: Systems of Regional Integration A.D. 900-1150', NULL, NULL, 'New York.', 'Academic Press ', '1984', 0, NULL, 'Book', NULL, NULL, NULL, NULL, NULL, 391, NULL, 'Cordell, Linda S. 1984 Prehistory of the Southwest: Systems of Regional Integration A.D. 900-1150. Academic Press, New York.'); INSERT INTO documentary_instance VALUES (400, 'Ancient Pueblo Peoples', NULL, NULL, 'Montreal.', 'St. Remy Press ', '1994', 0, NULL, 'Book', NULL, NULL, NULL, NULL, NULL, 392, NULL, 'Cordell, Linda S. 1994 Ancient Pueblo Peoples. St. Remy Press, Montreal.'); INSERT INTO documentary_instance VALUES (401, 'Tracing Migration Pathways from the Receiving End.', NULL, NULL, NULL, NULL, '1995', 0, 'Journal of Anthropological Archaeology 14(2):203-211.', 'Journal', '9 pages', NULL, NULL, NULL, NULL, 393, NULL, 'Cordell, Linda S. 1995 Tracing Migration Pathways from the Receiving End. Journal of Anthropological Archaeology 14(2):203-211.'); INSERT INTO documentary_instance VALUES (402, 'Indigenous Farmers', NULL, NULL, 'England.', 'Cambridge University Press ', '1996', 0, NULL, 'Journal', '66 pages', NULL, NULL, NULL, NULL, 394, NULL, 'Cordell, Linda S. 1996 Indigenous Farmers. In The Cambridge History of the Native Peoples of the Americas. Volume I, Parts 1 and 2, edited by Bruce G. Trigger and Wilcomb E. Washburn, pp. 201-266. Cambridge University Press, England.'); INSERT INTO documentary_instance VALUES (403, 'Archaeology of the Southwest, 2nd edition.', NULL, NULL, 'San Diego', 'Academic Press', '1997', 0, NULL, 'Book', NULL, NULL, NULL, NULL, NULL, 395, NULL, 'Cordell, Linda S. 1997 Archaeology of the Southwest, 2nd edition. Academic Press, San Diego'); INSERT INTO documentary_instance VALUES (404, 'How Were Precolumbian Southwestern Polities Organized', NULL, NULL, 'Albuquerque and Dragoon', 'The Amerind Foundation and the University of New Mexico Press', '1999', 0, NULL, 'Journal', '9 pages', NULL, NULL, NULL, NULL, 396, NULL, 'Cordell, Linda S. 1999 How Were Precolumbian Southwestern Polities Organized? In Great Towns and Regional Polities in the Prehistoric American Southwest and Southeast, edited by Jill E. Neitzel, pp. 81-93. The Amerind Foundation, Dragoon, and the University of New Mexico Press, Albuquerque.'); INSERT INTO documentary_instance VALUES (405, 'Better Living through Chemistry in Pueblo Archaeology', NULL, NULL, NULL, NULL, '2000', 0, NULL, 'Paper', NULL, NULL, NULL, NULL, NULL, 397, NULL, 'Cordell, Linda S., and Stephen R. Durand 2000 Better Living through Chemistry in Pueblo Archaeology. Paper presented atthe 65thAnnual Meeting of the Society for American Archaeology, Philadelphia '); INSERT INTO documentary_instance VALUES (406, 'Toward Linking Maize Chemistry to Archaeological Agricultural Sites in the North American Southwest', NULL, NULL, NULL, NULL, '2001', 0, 'Journal of Archaeological Science 28(501-513.', 'Journal', '13 pages', NULL, NULL, NULL, NULL, 398, NULL, 'Cordell, Linda S., Stephen R. Durand, Ronald C. Antweiler, and Howard E. Taylor 2001 Toward Linking Maize Chemistry to Archaeological Agricultural Sites in the North American Southwest. Journal of Archaeological Science 28(501-513. '); INSERT INTO documentary_instance VALUES (407, 'Cultural Interaction in the Prehistoric Southwest. ', NULL, NULL, 'Washington, D.C.', 'School of American Archaeology and Smithsonian Institution Press ', '1989', 0, NULL, 'Journal', '17 pages', NULL, NULL, NULL, NULL, 399, NULL, 'Cordell, Linda S., and George J. Gumerman 1989 Cultural Interaction in the Prehistoric Southwest. In Dynamics of Southwest Prehistory, edited by Linda S. Cordell and George J. Gumerman, pp. 1-17. School of American Archaeology and Smithsonian Institution Press, Washington, D.C. '); INSERT INTO documentary_instance VALUES (408, 'Perspectives on Chaco Society and Polity. ', NULL, NULL, NULL, NULL, '2001', 0, NULL, 'Journal', '12 pages', NULL, NULL, NULL, NULL, 400, NULL, 'Cordell, Linda S., and W. James Judge 2001 Perspectives on Chaco Society and Polity. In Chaco Society and Polity: Papers from the 1999 Conference, edited by Linda S. Cordell, W. James Judge, and June-el Piper, pp. 1-12. New Mexico Archeological Council Special Publication 4. New Mexico Archeological Council, Albuquerque '); INSERT INTO documentary_instance VALUES (409, 'Chaco Society and Polity: Papers from the 1999 Conference', NULL, NULL, NULL, NULL, '2001', 0, NULL, 'Journal', NULL, NULL, NULL, NULL, NULL, 401, NULL, 'Cordell, Linda S., W. James Judge, and June-el Piper (editors) 2001 Chaco Society and Polity: Papers from the 1999 Conference. New Mexico Archeological Council Special Publication 4. New Mexico Archeological Council, Albuquerque. '); INSERT INTO documentary_instance VALUES (410, 'Toward Increasing Our Knowledge of the Past: A Discussion', NULL, NULL, NULL, NULL, '1994', 0, NULL, 'Journal', '29 pages', NULL, NULL, NULL, NULL, 402, NULL, 'Cordell, Linda S., J. Kelley, K. Kintigh, S. Lekson, and R. Sinclair 1994 Toward Increasing Our Knowledge of the Past: A Discussion. In Understanding Complexity in the Prehistoric Southwest, edited by George J. Gumerman and Murray Gill-Mann, pp. 163-191. Addisson Wesley, Reading, MA. '); INSERT INTO documentary_instance VALUES (411, 'The Organization of Late Precolumbian Societies in the Southwest and Southeast', NULL, NULL, 'Albuquerque and Dragoon', 'The Amerind Foundation and University of New Mexico Press', '1999', 0, NULL, 'Journal', '5 pages', NULL, NULL, NULL, NULL, 403, NULL, 'Cordell, Linda S., and George R. Milner 1999 The Organization of Late Precolumbian Societies in the Southwest and Southeast. In Great Towns and Regional Polities in the Prehistoric American Southwest and Southeast, edited by Jill E. Neitzel, pp. 109-113. The Amerind Foundation, Dragoon, and University of New Mexico Press, Albuquerque. '); INSERT INTO documentary_instance VALUES (412, 'Architectural Features of Three "Chaco Small House" Ruins (Bc 50, Bc 58, Bc 59). ', NULL, NULL, NULL, NULL, '1947', 0, NULL, 'Report', NULL, NULL, NULL, ' Chaco Archive No. 2106, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.', NULL, 404, NULL, 'Cornett, Barbara 1947 Architectural Features of Three "Chaco Small House" Ruins (Bc 50, Bc 58, Bc 59). Chaco Archive No. 2106, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. '); INSERT INTO documentary_instance VALUES (413, '[The Chaco Canyon Ruins.]', NULL, NULL, NULL, NULL, '1874', 0, NULL, 'Book', '8 pages', NULL, NULL, NULL, NULL, 405, NULL, 'Cozzens, Samuel Woodworth 1874 [The Chaco Canyon Ruins.] In The Marvelous Country: Or Three Years in Arizona and New Mexico, the Apaches’ Home, pp. 433-440. Shepard and Gill, Boston. '); INSERT INTO documentary_instance VALUES (414, 'The Marvelous Country: Or Three Years in Arizona and New Mexico, the Apaches’ Home', NULL, NULL, 'Boston.', 'Lee and Company', '1876', 0, NULL, 'Book', NULL, NULL, NULL, NULL, NULL, 406, NULL, 'Cozzens, Samuel Woodworth 1876 The Marvelous Country: Or Three Years in Arizona and New Mexico, the Apaches’ Home. Lee and Company, Boston.'); INSERT INTO documentary_instance VALUES (415, 'Explorations and Adventures in Arizona and New Mexico', NULL, NULL, 'Secaucus, NJ.', 'Castle ', '1899', 0, NULL, 'Book', NULL, NULL, NULL, NULL, NULL, 407, NULL, 'Cozzens, Samuel Woodworth 1899 Explorations and Adventures in Arizona and New Mexico. Castle, Secaucus, NJ.'); INSERT INTO documentary_instance VALUES (416, 'America’s Mystery Land', NULL, NULL, NULL, NULL, '1925', 0, 'Mentor 13:1-14.', 'Journal', '14 pages', NULL, NULL, NULL, NULL, 408, NULL, 'Crawford, Robert P. 1925 America’s Mystery Land. Mentor 13:1-14. '); INSERT INTO documentary_instance VALUES (417, 'The Rock Art Recording Field School of the Archaeological Society of New Mexico', NULL, NULL, NULL, NULL, '2000', 0, NULL, 'Journal', '26 pages', NULL, NULL, NULL, NULL, 409, NULL, 'Crotty, Helen K. 2000 The Rock Art Recording Field School of the Archaeological Society of New Mexico. In The First 100 Years: Papers in Honor of the State and Local Archaeological Societies of New Mexico, edited by Frances Joan Mathien, David T. Kirkpatrick, and Meliha S. Duran, pp. 107-132. Archaeological Society of New Mexico: 26. Albuquerque. '); INSERT INTO documentary_instance VALUES (418, 'Threatening Rock and the Wisdom Tooth', NULL, NULL, NULL, NULL, '1950', 0, 'Westways 42(1):16-17.', 'Journal', '2 pages', NULL, NULL, NULL, NULL, 410, NULL, 'Crowder, F. 1950 Threatening Rock and the Wisdom Tooth. Westways 42(1):16-17. '); INSERT INTO documentary_instance VALUES (419, 'Water Storage in the Prehistoric Southwest. ', NULL, NULL, NULL, NULL, '1987', 0, 'The Kiva 52(3):209-228', 'Journal', '20 pages', NULL, NULL, NULL, NULL, 411, NULL, 'Crown, Patricia L., and W. James Judge 1987 Water Storage in the Prehistoric Southwest. The Kiva 52(3):209-228 '); INSERT INTO documentary_instance VALUES (420, 'Chaco and Hohokam. Prehistoric Regional Systems in the American Southwest', NULL, NULL, 'Santa Fe.', ' School of American Research Press ', '1991a', 0, NULL, 'Book', NULL, NULL, NULL, NULL, NULL, 412, NULL, 'Crown, Patricia L., and W. James Judge 1991a Chaco and Hohokam. Prehistoric Regional Systems in the American Southwest. School of American Research Press, Santa Fe.'); INSERT INTO documentary_instance VALUES (421, 'Synthesis and Conclusions.', NULL, NULL, 'Santa Fe.', ' School of American Research Press', '1991b', 0, NULL, 'Book', '16 pages', NULL, NULL, NULL, NULL, 413, NULL, 'Crown, Patricia L., and W. James Judge 1991b Synthesis and Conclusions. In Chaco and Hohokam. Prehistoric Regional Systems in the American Southwest, edited by Patricia L. Crown and W. James Judge, pp. 293-308. School of American Research Press, Santa Fe.'); INSERT INTO documentary_instance VALUES (422, 'Pollen Samples from Chetro Ketl Fields', NULL, NULL, NULL, NULL, '1975', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'Ms. in site files, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. ', NULL, 414, NULL, 'Cully, Anne C. 1975 Pollen Samples from Chetro Ketl Fields. Ms. in site files, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. '); INSERT INTO documentary_instance VALUES (423, 'Relation of Pollen Analysis to Archeological Excavation, Chaco Canyon', NULL, NULL, NULL, NULL, '1977a', 0, NULL, 'Unpublished M.S. thesis', NULL, NULL, NULL, NULL, NULL, 415, NULL, 'Cully, Anne C. 1977a Relation of Pollen Analysis to Archeological Excavation, Chaco Canyon. Unpublished M.S. thesis, Department of Biology, University of New Mexico, Albuquerque.'); INSERT INTO documentary_instance VALUES (424, 'Relation of Pollen and Flotation Analysis to Archeological Sites, Chaco Canyon: Pollen Component', NULL, NULL, NULL, NULL, '1977b', 0, 'Final Report, Contract PX7000-5-0802. ', 'Report', NULL, NULL, NULL, 'Archive 2069C, NPS Chaco Culture NHP Museum Archives, University of New Mexico, Albuquerque', NULL, 2090, NULL, 'Cully, Anne C. 1977b Relation of Pollen and Flotation Analysis to Archeological Sites, Chaco Canyon: Pollen Component. Final Report, Contract PX7000-5-0802. Archive 2069C, NPS Chaco Culture NHP Museum Archives, University of New Mexico, Albuquerque'); INSERT INTO documentary_instance VALUES (425, 'Report on Pollen Analysis from 29SJ627 and 29SJ629, Chaco Canyon, New Mexico. Interim Report on Check-List of Plants, July 1, 1977-September 30, 1977.', NULL, NULL, NULL, NULL, '1977c', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.', NULL, 417, NULL, 'Cully, Anne C. 1977c Report on Pollen Analysis from 29SJ627 and 29SJ629, Chaco Canyon, New Mexico. Interim Report on Check-List of Plants, July 1, 1977-September 30, 1977. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO documentary_instance VALUES (426, 'Final Report on Pollen Analysis from Site 29SJ629, Chaco Canyon, New Mexico', NULL, NULL, NULL, NULL, '1978a', 0, 'Submitted in fulfillment of Contract PX 7000-5-0802', 'Ms. on file', NULL, NULL, NULL, 'Archive 2069B, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque', NULL, 418, NULL, 'Cully, Anne C. 1978a Final Report on Pollen Analysis from Site 29SJ629, Chaco Canyon, New Mexico. Submitted in fulfillment of Contract PX 7000-5-0802, Archive 2069B, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque'); INSERT INTO documentary_instance VALUES (427, 'Plants Collected at Chaco Canyon National Monument', NULL, NULL, NULL, NULL, '1978b', 0, 'Interim Report submitted in fulfillment of Contract PX 7000-5-0802', 'Report', NULL, NULL, NULL, 'Chaco Archive 2069C, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.', NULL, 419, NULL, 'Cully, Anne C. 1978b Plants Collected at Chaco Canyon National Monument. Interim Report submitted in fulfillment of Contract PX 7000-5-0802. Chaco Archive 2069C, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO documentary_instance VALUES (428, 'Report on Pollen Analysis from 29SJ629 and 29SJ724, Chaco Canyon, New Mexico.', NULL, NULL, NULL, NULL, '1978c', 0, 'Submitted in fulfillment of Contract PX 7000-5-0802', 'Report', NULL, NULL, NULL, 'Archive 2069C, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque', NULL, 420, NULL, 'Cully, Anne C. 1978c Report on Pollen Analysis from 29SJ629 and 29SJ724, Chaco Canyon, New Mexico. Submitted in fulfillment of Contract PX 7000-5-0802, Archive 2069C, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO documentary_instance VALUES (429, 'Check-list of Plants: Chaco Canyon National Monument, New Mexico.', NULL, NULL, NULL, NULL, '1979a', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.', NULL, 421, NULL, 'Cully, Anne C. 1979a Check-list of Plants: Chaco Canyon National Monument, New Mexico. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO documentary_instance VALUES (430, 'Some Aspects of Pollen analysis in Relation to Archaeology', NULL, NULL, NULL, NULL, '1979b', 0, 'The Kiva 44(2-3):95-100.', 'Journal', '6 pages', NULL, NULL, NULL, NULL, 422, NULL, 'Cully, Anne C. 1979b Some Aspects of Pollen analysis in Relation to Archaeology. The Kiva 44(2-3):95-100.'); INSERT INTO documentary_instance VALUES (431, 'Chaco Canyon Plant List', NULL, NULL, NULL, NULL, '1980', 1, NULL, 'Report', NULL, NULL, NULL, NULL, NULL, 423, NULL, 'Cully, Anne C. 1980* Chaco Canyon Plant List. Report to M. R. Fletcher, Office of Natural Resources, Nationl Park Service, Santa Fe.'); INSERT INTO documentary_instance VALUES (432, 'Pollen Analysis at 29SJ629: A Comparison of Two Village Sites in Marcia''s Rincon, Chaco Canyon, New Mexico.', NULL, NULL, NULL, NULL, '1981', 0, NULL, 'Report', NULL, NULL, NULL, NULL, NULL, 424, NULL, 'Cully, Anne C. 1981 Pollen Analysis at 29SJ629: A Comparison of Two Village Sites in Marcia''s Rincon, Chaco Canyon, New Mexico. Castetter Laboratory for Ethnobotanical Studies Technical Series No. 48. Department of Biology, University of new Mexico, Albuquerque. Published in 1985.'); INSERT INTO documentary_instance VALUES (433, 'Pollen Analysis from Sites on Block VIII-IX, Navajo Indian Irrigation Project, San Juan County, New Mexico', NULL, NULL, NULL, NULL, '1982a', 0, NULL, 'Report', NULL, NULL, NULL, NULL, NULL, 425, NULL, 'Cully, Anne C. 1982a Pollen Analysis from Sites on Block VIII-IX, Navajo Indian Irrigation Project, San Juan County, New Mexico. Castetter Laboratory for Ethnobotanical Studies Technical Series No. 61. Department of Biology, University of New Mexico, Albuquerque.'); INSERT INTO documentary_instance VALUES (434, 'Prehistoric Subsistence at Bis sa''ani Ruin and Associated Small Sites: Evidence from Pollen Analysis', NULL, NULL, NULL, NULL, '1982b', 0, NULL, 'Report', NULL, NULL, NULL, NULL, NULL, 426, NULL, 'Cully, Anne C. 1982b Prehistoric Subsistence at Bis sa''ani Ruin and Associated Small Sites: Evidence from Pollen Analysis. Castetter Laboratory for Ethnobotanical Studies Technical Series No. 65. Department of Biology, University of New Mexico, Albuquerque'); INSERT INTO documentary_instance VALUES (435, 'Pollen Analysis at 29SJ629, Chaco Canyon, New Mexico. Revised version', NULL, NULL, NULL, NULL, '1983a', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.', NULL, 427, NULL, 'Cully, Anne C. 1983a Pollen Analysis at 29SJ629, Chaco Canyon, New Mexico. Revised version. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO documentary_instance VALUES (436, 'Prehistoric Subsistence at Chaco Canyon: Evidence from Pollen Analysis', NULL, NULL, NULL, NULL, '1983b', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.', NULL, 428, NULL, 'Cully, Anne C. 1983b Prehistoric Subsistence at Chaco Canyon: Evidence from Pollen Analysis. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO documentary_instance VALUES (437, 'Pollen Evidence of Past Subsistence and Environment at Chaco Canyon, New Mexico', NULL, NULL, NULL, NULL, '1984a', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.', NULL, 429, NULL, 'Cully, Anne C. 1984a Pollen Evidence of Past Subsistence and Environment at Chaco Canyon, New Mexico. Castetter Laboratory for Ethnobotanical Studies, Technical Series No. 113. Submitted in fulfillment of Contract 7029-9-0023. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published in 1985.'); INSERT INTO documentary_instance VALUES (438, 'The Distribution of Corn Pollen at Three Sites in Chaco Canyon, New Mexico.', NULL, NULL, NULL, NULL, '1984b', 0, NULL, 'Journal', '14 pages', NULL, NULL, NULL, NULL, 430, NULL, 'Cully, Anne c. 1984b The Distribution of Corn Pollen at Three Sites in Chaco Canyon, New Mexico. In Recent Research on Chaco Prehistory, edited by W. James Judge and John D. Schelberg, pp. 251-264. Reports of the Chaco Center No. 8. Division of Cultural Research, National Park Service, Albuquerque.'); INSERT INTO documentary_instance VALUES (439, 'Checklist of Plants, Chaco Canyon National Monument', NULL, NULL, NULL, NULL, '1985a', 0, NULL, 'Book', '11 pages', NULL, NULL, NULL, NULL, 431, NULL, 'Cully, Anne C. 1985a Checklist of Plants, Chaco Canyon National Monument. Appendix A in Environment and Subsistence of Chaco Canyon, New Mexico, edited by Frances Joan Mathien, pp. 447-457. Publications in Archeology 18E, Chaco Canyon Studies. National Park Service, Albuquerque'); INSERT INTO documentary_instance VALUES (440, 'Five Pollen Samples from Kin Nahasbas, Chaco Canyon, New Mexico', NULL, NULL, NULL, NULL, '1985b', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. ', NULL, 432, NULL, 'Cully, Anne C. 1985b Five Pollen Samples from Kin Nahasbas, Chaco Canyon, New Mexico. Castetter Laboratory for Ethnobotanical Studies, Technical Series. Submitted in fulfillment of Contract PX 7029-5-3053. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published in 1988.'); INSERT INTO documentary_instance VALUES (441, 'Pollen Analysis at Una Vida Pueblo, Chaco Canyon, New Mexico', NULL, NULL, NULL, NULL, '1985c', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.', NULL, 433, NULL, 'Cully, Anne C. 1985c Pollen Analysis at Una Vida Pueblo, Chaco Canyon, New Mexico. Castetter Laboratory for Ethnobotanical Studies Technical Series No. 155. Submitted in fulfillment of Contract PX 7029-4-C056. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO documentary_instance VALUES (442, 'Pollen Evidence of Past Subsistence and Environment at Chaco Canyon, New Mexico', NULL, NULL, NULL, NULL, '1985d', 0, NULL, 'Journal', '111 pages', NULL, NULL, NULL, NULL, 434, NULL, 'Cully, Anne C. 1985d Pollen Evidence of Past Subsistence and Environment at Chaco Canyon, New Mexico. In Environment and Subsistence of Chaco Canyon, New Mexico, edited by Frances Joan Mathien, pp. 135-245. Publications in Archeology 18E, Chaco Canyon Studies. National Park Service, Albuquerque'); INSERT INTO documentary_instance VALUES (443, 'Five Pollen Samples from Kin Nahasbas.', NULL, NULL, NULL, NULL, '1988', 0, NULL, 'Journal', '5 pages', NULL, NULL, NULL, NULL, 435, NULL, 'Cully, Anne C. 1988 Five Pollen Samples from Kin Nahasbas. In Historic Structure Report, Kin Nahasbas Ruin, Chaco Culture National Historical Park, New Mexico, by Frances Joan Mathien and Thomas C. Windes, pp. 289-293. Branch of Cultural Research, National Park Service, Santa Fe.'); INSERT INTO documentary_instance VALUES (444, 'Pollen Analysis at 29SJ629, Chaco Canyon, New Mexico', NULL, NULL, NULL, NULL, '1992', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'MS on file, NPS, SWRO, Santa Fe.', NULL, 436, NULL, 'Cully, Anne C. 1992 Pollen Analysis at 29SJ629, Chaco Canyon, New Mexico. MS on file, NPS, SWRO, Santa Fe.'); INSERT INTO documentary_instance VALUES (445, 'Vegetative Cover Diversity and Annual Plant Productivity, Chaco Canyon, New Mexico', NULL, NULL, NULL, NULL, '1985a', 0, NULL, 'Report', NULL, NULL, NULL, NULL, NULL, 437, NULL, 'Cully, Anne C., and Jack F. Cully, Jr. 1985a Vegetative Cover Diversity and Annual Plant Productivity, Chaco Canyon, New Mexico. Castetter Laboratory for Ethnobotanical Studies Technical Series No. 134. Department of Biology, University of New Mexico, Albuquerque. Published in 1985. '); INSERT INTO documentary_instance VALUES (446, 'Vegetative Cover Diversity and Annual Plant Productivity, Chaco Canyon, New Mexico', NULL, NULL, NULL, NULL, '1985b', 0, NULL, 'Journal', '32 pages', NULL, NULL, NULL, NULL, 438, NULL, 'Cully, Anne C., and Jack F. Cully, Jr. 1985b Vegetative Cover Diversity and Annual Plant Productivity, Chaco Canyon, New Mexico. In Environment and Subsistence of Chaco Canyon, New Mexico, edited by Frances Joan Mathien, pp. 47-78. Publications in Archeology 18E, Chaco Canyon Studies. National Park Service, Albuquerque.'); INSERT INTO documentary_instance VALUES (447, 'Spatial and Temporal Variability in Perennial and Annual Vegetation at Chaco Canyon, New Mexico.', NULL, NULL, NULL, NULL, '1989', 0, 'The Great Basin Naturalist 49(1):113-122.', 'Journal', '10 pages', NULL, NULL, NULL, NULL, 439, NULL, 'Cully, Anne C., and Jack F. Cully, Jr. 1989 Spatial and Temporal Variability in Perennial and Annual Vegetation at Chaco Canyon, New Mexico. The Great Basin Naturalist 49(1):113-122.'); INSERT INTO documentary_instance VALUES (448, 'Agriculture in the Bis sa’ani Community.', NULL, NULL, NULL, NULL, '1982', 0, NULL, 'Journal', '52 pages', NULL, NULL, NULL, NULL, 440, NULL, 'Cully, Anne C., Marcia L. Donaldson, Mollie S. Toll, and Klara B. Kelley 1982 Agriculture in the Bis sa’ani Community. In Bis sa’ani: A Late Bonito Phase Community on Escavada Wash, Northwest New Mexico, edited by Cory D. Breternitz, David E. Doyel, and Michael P. Marshall, pp. 115-166. Navajo Nation Papers in Anthropology No. 14. Navajo Nation Cultural Resources Management Program, Window Rock, AZ. '); INSERT INTO documentary_instance VALUES (449, 'Relation of Pollen and Flotation Analyses to Archeological Excavations, Chaco Canyon. Final Report (Pollen Component). ', NULL, NULL, NULL, NULL, '1976', 0, 'Submitted in fulfillment of Contract PX 7000-5-0802.', 'Ms. on file', NULL, NULL, NULL, 'Ms. on file, Department of Biology, University of New Mexico, Albuquerque. ', NULL, 441, NULL, 'Cully, Anne C., and Loren D. Potter 1976 Relation of Pollen and Flotation Analyses to Archeological Excavations, Chaco Canyon. Final Report (Pollen Component). Submitted in fulfillment of Contract PX 7000-5-0802. Ms. on file, Department of Biology, University of New Mexico, Albuquerque. '); INSERT INTO documentary_instance VALUES (450, 'Evaluation of Agricultural Potential on Four Park Additions to Chaco Culture National Historical Park', NULL, NULL, NULL, NULL, '1987', 0, NULL, 'Report', NULL, NULL, NULL, NULL, NULL, 442, NULL, 'Cully, Anne C., and Mollie S. Toll 1987 Evaluation of Agricultural Potential on Four Park Additions to Chaco Culture National Historical Park. Southwest Ecological Associates, Albuquerque. '); INSERT INTO documentary_instance VALUES (451, 'The Birds and Mammals of Chaco Canyon National Monument: Summary Report of the Period October 1978 to August 1979. Prepared by Quivira Research Center.', NULL, NULL, NULL, NULL, '1979', 0, NULL, 'Report', NULL, NULL, NULL, 'Ms. on file, Office of Natural Resources, National Park Service, Santa Fe. ', NULL, 443, NULL, 'Cully, Jack F. 1979 The Birds and Mammals of Chaco Canyon National Monument: Summary Report of the Period October 1978 to August 1979. Prepared by Quivira Research Center. Ms. on file, Office of Natural Resources, National Park Service, Santa Fe. '); INSERT INTO documentary_instance VALUES (452, 'Baseline Biology of Birds and Mammals at Chaco Canyon National Monument, New Mexico. Communities of Four Habitats. I. Birds. II. Annotated Species List of Birds. III. Small Mammal Communities of Four Habitats. Prepared by Quivira Research Center.', NULL, NULL, NULL, NULL, '1981', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.', NULL, 444, NULL, 'Cully, Jack F. 1981 Baseline Biology of Birds and Mammals at Chaco Canyon National Monument, New Mexico. Communities of Four Habitats. I. Birds. II. Annotated Species List of Birds. III. Small Mammal Communities of Four Habitats. Prepared by Quivira Research Center. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published in 1985.'); INSERT INTO documentary_instance VALUES (453, 'A Multivariate Analysis of Niche Relationships within A Nocturnal Rodent Community in Northwestern New Mexico', NULL, NULL, NULL, NULL, '1984a', 0, NULL, 'Unpublished Ph.D. dissertation', NULL, NULL, NULL, NULL, NULL, 445, NULL, 'Cully, Jack F. 1984a A Multivariate Analysis of Niche Relationships within A Nocturnal Rodent Community in Northwestern New Mexico. Unpublished Ph.D. dissertation, Department of Biology, University of New Mexico, Albuquerque.'); INSERT INTO documentary_instance VALUES (454, 'Diversity, Stability, and the Deermouse: Implications for the Vegetative Diversity Model', NULL, NULL, NULL, NULL, '1984b', 0, NULL, 'Journal', '12 pages', NULL, NULL, NULL, NULL, 446, NULL, 'Cully, Jack F. 1984b Diversity, Stability, and the Deermouse: Implications for the Vegetative Diversity Model. In Recent Research on Chaco Prehistory, edited by W. James Judge and John D. Schelberg, pp. 213-224. Reports of the Chaco Center No. 8. Division of Cultural Research, National Park Service, Albuquerque.'); INSERT INTO documentary_instance VALUES (455, 'An Annotated List of the Birds of Chaco Canyon National Monument', NULL, NULL, NULL, NULL, '1985a', 0, NULL, 'Journal', '17 pages', NULL, NULL, NULL, NULL, 447, NULL, 'Cully, Jack F. 1985a An Annotated List of the Birds of Chaco Canyon National Monument. In Environment and Subsistence of Chaco Canyon, New Mexico, edited by Frances Joan Mathien, pp. 459-475. Publications in Archeology 18E, Chaco Canyon Studies. National Park Service, Albuquerque.'); INSERT INTO documentary_instance VALUES (456, 'Baseline Biology of Birds and Mammals at Chaco Canyon National Monument, New Mexico', NULL, NULL, NULL, NULL, '1985b', 0, NULL, 'Journal', '26 pages', NULL, NULL, NULL, NULL, 448, NULL, 'Cully, Jack F. 1985b Baseline Biology of Birds and Mammals at Chaco Canyon National Monument, New Mexico. In Environment and Subsistence of Chaco Canyon, New Mexico, edited by Frances Joan Mathien, pp. 279-304. Publications in Archeology 18E, Chaco Canyon Studies. National Park Service, Albuquerque'); INSERT INTO documentary_instance VALUES (457, 'The Ancient Inhabitants of the San Juan Valley.', NULL, NULL, NULL, NULL, '1910', 0, 'Bulletin of the University of Utah 3(3):Pt. II.', 'Journal', NULL, NULL, NULL, NULL, NULL, 449, NULL, 'Cummings, Byron 1910 The Ancient Inhabitants of the San Juan Valley. Bulletin of the University of Utah 3(3):Pt. II. '); INSERT INTO documentary_instance VALUES (458, 'Kivas of the San Juan Drainage.', NULL, NULL, NULL, NULL, '1915', 0, 'American Anthropologist 17(2):272-282.', 'Journal', '11 pages', NULL, NULL, NULL, NULL, 450, NULL, 'Cummings, Byron 1915 Kivas of the San Juan Drainage. American Anthropologist 17(2):272-282.'); INSERT INTO documentary_instance VALUES (459, 'A Comparative View of Small House Form and Function in the Chacoan System: Investigations at the Chacoan Outlier of Whirlwind Lakes', NULL, NULL, NULL, NULL, '1994', 0, NULL, 'Paper', NULL, NULL, NULL, NULL, NULL, 451, NULL, 'Curtis, Ross, and Roger Wakenhorst 1994 A Comparative View of Small House Form and Function in the Chacoan System: Investigations at the Chacoan Outlier of Whirlwind Lakes. Paper presented at the 59th Annual Meeting of the Society for American Archaeology, Anaheim. '); INSERT INTO documentary_instance VALUES (460, 'Mapping the Sun Dagger', NULL, NULL, NULL, NULL, 'n.d.', 0, NULL, 'Ms. on file with authors.', NULL, NULL, NULL, NULL, NULL, 452, NULL, 'Curry, S., D. Fair, D. Encinas, A. Sofaer, and R. M. Sinclair n.d. Mapping the Sun Dagger. Ms. on file with authors. '); INSERT INTO documentary_instance VALUES (461, 'Mapping the Sun Dagger', NULL, NULL, NULL, NULL, '1987', 1, 'Proceedings of the American Society of Photogrammetry', NULL, NULL, NULL, NULL, NULL, NULL, 452, NULL, 'Curry, S., D. Fair, D. Encinas, A. Sofaer, and R. M. Sinclair 1987* Mapping the Sun Dagger. Proceedings of the American Society of Photogrammetry '); INSERT INTO documentary_instance VALUES (462, 'Environmental Change and Aspects of Human Influence, Chaco Canyon, New Mexico', NULL, NULL, NULL, NULL, '1997/98', 1, NULL, 'Ms. on file', NULL, NULL, NULL, 'Ms. on file as ES3301, Environmental Science Honours Project 1997/98. University of Wolverhampton, England. ', NULL, 453, NULL, 'Dabbs, Laura 1997/98 Environmental Change and Aspects of Human Influence, Chaco Canyon, New Mexico. Ms. on file as ES3301, Environmental Science Honours Project 1997/98. University of Wolverhampton, England. '); INSERT INTO documentary_instance VALUES (463, 'Review of Kirk Bryan’s “The Geology of Chaco Canyon.”', NULL, NULL, NULL, NULL, '1955', 0, 'American Antiquity 57:372-373.', 'Journal', '2 pages', NULL, NULL, NULL, NULL, 454, NULL, 'Danson, Edward B. 1955 Review of Kirk Bryan’s “The Geology of Chaco Canyon.” American Antiquity 57:372-373. '); INSERT INTO documentary_instance VALUES (464, '[Pueblo Bonito, Chaco Canyon.] ', NULL, NULL, 'Washington.', 'Government Printing Office ', '1915', 0, NULL, 'Book', '1 page', NULL, NULL, NULL, NULL, 455, NULL, 'Darton, Nelson H. 1915 [Pueblo Bonito, Chaco Canyon.] In Guidebook of the Western United States, Part C. The Santa Fe Route, p. 100. U.S. Geological Survey Bulletin 613. Government Printing Office, Washington. '); INSERT INTO documentary_instance VALUES (465, '[Ruins at Chaco Canyon. Pueblo Bonito.] ', NULL, NULL, NULL, NULL, '1931', 0, 'In Ancient Americans, by Emily C. Davis, pp. 90-92. Kenry Holt, New York.', 'Book', '3 pages', NULL, NULL, NULL, NULL, 456, NULL, 'Davis, Emily C. 1931 [Ruins at Chaco Canyon. Pueblo Bonito.] In Ancient Americans, by Emily C. Davis, pp. 90-92. Kenry Holt, New York. '); INSERT INTO documentary_instance VALUES (466, 'Pollen Analysis of Eight Samples from Mealing Catchment Basins at 29SJ629', NULL, NULL, NULL, NULL, '1992', 0, 'Castetter Laboratory for Ethnobotanical Studies Technical Report No. 328.', 'Report', NULL, NULL, NULL, NULL, NULL, 457, NULL, 'Dean, Glenna 1992 Pollen Analysis of Eight Samples from Mealing Catchment Basins at 29SJ629. Castetter Laboratory for Ethnobotanical Studies Technical Report No. 328. Published in 1993. '); INSERT INTO documentary_instance VALUES (467, 'Pollen Analysis of Eight Samples from Mealing Catchment Basins at 29SJ629', NULL, NULL, NULL, NULL, '1993', 0, NULL, 'Journal', '10 pages', NULL, NULL, NULL, NULL, 458, NULL, 'Dean, Glenna 1993 Pollen Analysis of Eight Samples from Mealing Catchment Basins at 29SJ629. In The Spadefoot Toad Site: Investigations at 29SJ629, Chaco Canyon, New Mexico. Artifactual and Biological Analyses. Volume II, edited by Thomas C. Windes, pp. 403-412. Reports of the Chaco Center No. 12. Branch of Cultural Research, National Park Service, Santa Fe.'); INSERT INTO documentary_instance VALUES (468, 'Environmental Aspects of Modeling Human Activity-Locating Behavior', NULL, NULL, NULL, NULL, '1984', 0, NULL, 'Journal', '13 pages', NULL, NULL, NULL, NULL, 459, NULL, 'Dean, Jeffrey S. 1984 Environmental Aspects of Modeling Human Activity-Locating Behavior. In Theory and Model Building: Refining Survey Strategies for Locating Prehistoric Heritage Resources: Trial Formulations for Southwestern Forests, edited by Linda S. Cordell and Dee F. Green, pp. 8-20. Cultural Resources Management Report No. 5. U.S.D.A. Forest Service, Southwestern Region, Albuquerque. '); INSERT INTO documentary_instance VALUES (469, 'A Model of Anasazi Behavioral Adaptation.', NULL, NULL, 'Cambridge.', 'Cambridge University Press ', '1988a', 0, NULL, 'Book', '20 pages', NULL, NULL, NULL, NULL, 460, NULL, 'Dean, Jeffrey S. 1988a A Model of Anasazi Behavioral Adaptation. In The Anasazi in a Changing Environment, edited by George J. Gumerman, pp. 25-44. Cambridge University Press, Cambridge.'); INSERT INTO documentary_instance VALUES (470, 'Dendrochronology and Paleoenvironmental Reconstruction on the Colorado Plateaus', NULL, NULL, 'Cambridge.', 'Cambridge University Press ', '1988b', 0, NULL, 'Book', '49 pages', NULL, NULL, NULL, NULL, 461, NULL, 'Dean, Jeffrey S. 1988b Dendrochronology and Paleoenvironmental Reconstruction on the Colorado Plateaus. In The Anasazi in a Changing Environment, edited by George J. Gumerman, pp. 119-167. Cambridge University Press, Cambridge.'); INSERT INTO documentary_instance VALUES (471, 'The Chacoan Regional System', NULL, NULL, NULL, NULL, '1989', 0, NULL, 'Journal', NULL, NULL, NULL, NULL, NULL, 462, NULL, 'Dean, Jeffrey S. 1989 The Chacoan Regional System. In The Interpretation of Prehistory. Essays from the Pages of the Quarterly Review of Archaeology 10(1). The Review of Archaeology, Salem, MA.'); INSERT INTO documentary_instance VALUES (472, 'Environmental Factors in the Evolution of the Chacoan Political System', NULL, NULL, NULL, NULL, '1992', 0, NULL, 'Journal', '32 pages', NULL, NULL, NULL, NULL, 463, NULL, 'Dean, Jeffrey S. 1992 Environmental Factors in the Evolution of the Chacoan Political System. In Anasazi Regional Organization and the Chaco System, edited by David E. Doyel, pp. 35-43. Anthropological Papers No. 5. Maxwell Museum of Anthropology, University of New Mexico, Albuquerque.'); INSERT INTO documentary_instance VALUES (473, 'Demography, Environment and Subsistence Stress. ', NULL, NULL, NULL, NULL, '1996', 0, NULL, 'Journal', '31 pages', NULL, NULL, NULL, NULL, 464, NULL, 'Dean, Jeffrey S. 1996 Demography, Environment and Subsistence Stress. In Evolving Complexity and Environmental Risk in the Prehistoric Southwest, edited by Joseph A. Tainter and Bonnie Bagley Tainter, pp. 25-56. Santa Fe Institute Studies in the Sciences of Complexity. Proceedings Volume XXI. Addison-Wesley, Reading.'); INSERT INTO documentary_instance VALUES (474, 'Adaptive Stress, Environment, and Demography', NULL, NULL, NULL, NULL, '1994', 0, NULL, 'Journal', '34 pages', NULL, NULL, NULL, NULL, 465, NULL, 'Dean, Jeffrey S., William H. Doelle, and Janet D. Orcutt 1994 Adaptive Stress, Environment, and Demography. In Themes in Southwest Prehistory, edited by George J. Gumerman, pp. 53-86. School of American Research, Santa Fe. Adaptive Stress, Environment, and Demography. In Themes in Southwest Prehistory, edited by George J. Gumerman, pp. 53-86. School of American Research, Santa Fe. '); INSERT INTO documentary_instance VALUES (475, 'Human Behavior, Demography, and Paleoenvironment on the Colorado Plateaus', NULL, NULL, NULL, NULL, '1985', 0, 'American Antiquity 50(3):537-554', 'Journal', '18 pages', NULL, NULL, NULL, NULL, 466, NULL, 'Dean, Jeffrey S., Robert E. Euler, George J. Gumerman, Fred Plog, Richard H. Hevly, and Thor N. V. Karlstrom 1985 Human Behavior, Demography, and Paleoenvironment on the Colorado Plateaus. American Antiquity 50(3):537-554 '); INSERT INTO documentary_instance VALUES (476, 'Appendix A. Dendroclimatology and Fluvial Chronology in Chaco Canyon', NULL, NULL, NULL, NULL, '2002', 0, NULL, 'Book', '3 pages', NULL, NULL, NULL, NULL, 467, NULL, 'Dean, Jeffrey S., and Gary Funkhouser 2002 Appendix A. Dendroclimatology and Fluvial Chronology in Chaco Canyon. In Relation of “Bonito” Paleo-channels and Base-level Variations to Anasazi Occupation, Chaco Canyon, New Mexico, by Eric R. Force, R.Gwinn Vivian, Thomas C. Windes and Jeffrey S. Dean, pp. 39-41. Arizona State Museum Archaeological Series No. 194. The University of Arizona, Tucson. '); INSERT INTO documentary_instance VALUES (477, 'Dendroclimatic Variability in the American Southwest, A.D. 680 to 1970. ', NULL, NULL, NULL, NULL, '1977', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. ', NULL, 468, NULL, 'Dean, Jeffrey S., and William J. Robinson 1977 Dendroclimatic Variability in the American Southwest, A.D. 680 to 1970. Laboratory of Tree-Ring Research, University of Arizona, Tucson. Submitted in fulfillment of Contract CX 1595-5-0241 on Southwest Paleoclimate. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. '); INSERT INTO documentary_instance VALUES (478, 'The Dendrochronology of Chetro Ketl, Chaco Culture National Historical Park', NULL, NULL, NULL, NULL, '1982', 0, 'Submitted in fulfillment of Contract PX 7486-8-0225.', 'Ms. on file', NULL, NULL, NULL, ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. ', NULL, 469, NULL, 'Dean, Jeffrey S., and Richard L. Warren 1982 The Dendrochronology of Chetro Ketl, Chaco Culture National Historical Park. Submitted in fulfillment of Contract PX 7486-8-0225. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published in 1983. '); INSERT INTO documentary_instance VALUES (479, 'Dendrochronology', NULL, NULL, NULL, NULL, '1983', 0, NULL, 'Book', '136 pages', NULL, NULL, NULL, NULL, 470, NULL, 'Dean, Jeffrey S., and Richard L. Warren 1983 Dendrochronology. Chapter V in The Architecture and Dendrochronology of Chetro Ketl, Chaco Canyon, New Mexico, edited by Stephen H. Lekson, pp. 105-240. Reports of the Chaco Center No. 6. Division of Cultural Research, National Park Service, Albuquerque. '); INSERT INTO documentary_instance VALUES (480, 'A Summary of Referenced Materials Concerning the Physical Geography of the Chaco Canyon Area', NULL, NULL, NULL, NULL, '1971', 0, NULL, 'Ms. on file', NULL, NULL, NULL, ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico Albuquerque. ', NULL, 471, NULL, 'DeAngelis, James M. 1971 A Summary of Referenced Materials Concerning the Physical Geography of the Chaco Canyon Area. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico Albuquerque. '); INSERT INTO documentary_instance VALUES (481, 'Physical Geography of the Chaco Canyon Country.', NULL, NULL, NULL, NULL, '1972', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'Ms. on file, Geography Department and NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque', NULL, 472, NULL, 'DeAngelis, James M. 1972 Physical Geography of the Chaco Canyon Country. Ms. on file, Geography Department and NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO documentary_instance VALUES (482, 'The North Americans of Yesterday', NULL, NULL, NULL, NULL, '1900', 0, NULL, NULL, '3 pages', NULL, NULL, NULL, NULL, 473, NULL, 'Dellenbaugh, F. S. 1900 The North Americans of Yesterday, pp. 230-232, New York. '); INSERT INTO documentary_instance VALUES (483, 'A Planning Primer. Lessons from Chaco', NULL, NULL, 'Albuquerque.', 'University of New Mexico Press ', '1997', 0, NULL, 'Book', '9 pages', NULL, NULL, NULL, NULL, 474, NULL, 'Dent, Stephen D., and Barbara Coleman 1997 A Planning Primer. Lessons from Chaco. In Anasazi Architecture and American Design, edited by Baker H. Morrow and V. B. Price, pp. 53-61. University of New Mexico Press, Albuquerque. '); INSERT INTO documentary_instance VALUES (484, 'A Planners’ Primer: Lessons from Chaco.', NULL, NULL, NULL, NULL, '1992', 0, NULL, 'Journal', '15 pages', NULL, NULL, NULL, NULL, 475, NULL, 'Dent, Stephen D., and Barbara McReynolds Dent 1992 A Planners’ Primer: Lessons from Chaco. In Proceedings: The Mesa Verde Symposium on Anasazi Architecture and American Design, edited and coordinated by Baker H. Morrow and V. B. Price, pp. 263-277. Morrow and Co. Ltd., Albuquerque. '); INSERT INTO documentary_instance VALUES (485, 'Tree Trail to Chaco Canyon', NULL, NULL, NULL, NULL, '2001', 0, 'Nature 413:687-690. October 20. ', 'Journal', '4 pages', NULL, NULL, NULL, NULL, 476, NULL, 'Diamond, Jared 2001 Tree Trail to Chaco Canyon. Nature 413:687-690. October 20. '); INSERT INTO documentary_instance VALUES (486, 'A Comparative Study of the Architectural Elements, Distribution, and History of the Upper-Story Kiva.', NULL, NULL, NULL, NULL, '1936', 0, NULL, 'Paper', NULL, NULL, NULL, 'Archives 1861, 1917, 1952, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.', NULL, 477, NULL, 'Didcoct, Betty 1936 A Comparative Study of the Architectural Elements, Distribution, and History of the Upper-Story Kiva. Archives 1861, 1917, 1952, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. '); INSERT INTO documentary_instance VALUES (487, 'Casas Grandes and the Gran Chichimeca', NULL, NULL, NULL, NULL, '1968a', 0, 'El Palacio 75:47-61.', 'Journal', '15 pages', NULL, NULL, NULL, NULL, 478, NULL, 'DiPeso, Charles C. 1968a Casas Grandes and the Gran Chichimeca. El Palacio 75:47-61. '); INSERT INTO documentary_instance VALUES (488, 'Casas Grandes, a Fallen Trading Center of the Gran Chichimeca', NULL, NULL, NULL, NULL, '1968b', 0, 'Masterkey 42:20-37.', 'Journal', '18 pages', NULL, NULL, NULL, NULL, 479, NULL, 'DiPeso, Charles C. 1968b Casas Grandes, a Fallen Trading Center of the Gran Chichimeca. The Masterkey 42:20-37.'); INSERT INTO documentary_instance VALUES (489, 'Casas Grandes: A Fallen Trading Center of the Gran Chichimeca', NULL, NULL, NULL, NULL, '1974', 0, NULL, 'Book', NULL, NULL, NULL, NULL, NULL, 480, NULL, 'DiPeso, Charles C. 1974 Casas Grandes: A Fallen Trading Center of the Gran Chichimeca. 8 volumes. The Amerind Foundation and Northland Press, Dragoon and Flagstaff.'); INSERT INTO documentary_instance VALUES (490, 'Diurnal Winds on Faint Gradient in Northwestern New Mexico.', NULL, NULL, NULL, NULL, '1901', 0, 'Monthly Weather Review 29(7):299-300', 'Journal', '2 pages', NULL, NULL, NULL, NULL, 481, NULL, 'Dodge, R. E. 1901 Diurnal Winds on Faint Gradient in Northwestern New Mexico. Monthly Weather Review 29(7):299-300 '); INSERT INTO documentary_instance VALUES (491, 'An Interesting Landslide in the Chaco Canyon, New Mexico', NULL, NULL, NULL, NULL, '1902a', 0, 'American Geologist 29:322.', 'Journal', '1 page', NULL, NULL, NULL, NULL, 482, NULL, 'Dodge, R.E. 1902a An Interesting Landslide in the Chaco Canyon, New Mexico. American Geologist 29:322.'); INSERT INTO documentary_instance VALUES (492, 'Arroyo Formation', NULL, NULL, NULL, NULL, '1902b', 0, 'Science 15:746.', 'Journal', NULL, NULL, NULL, NULL, NULL, 483, NULL, 'Dodge, R.E. 1902b Arroyo Formation. Science 15:746.'); INSERT INTO documentary_instance VALUES (493, 'An Interesting Landslide in the Chaco Canyon, New Mexico', NULL, NULL, NULL, NULL, '1903', 0, ' Annals of the New York Academy 15:49-50', 'Journal', '2 pages', NULL, NULL, NULL, NULL, 484, NULL, 'Dodge, R.E. 1903 An Interesting Landslide in the Chaco Canyon, New Mexico. Annals of the New York Academy 15:49-50'); INSERT INTO documentary_instance VALUES (494, 'A Paper on Arroyo Formation in the Chaco Area. ', NULL, NULL, NULL, NULL, '1909', 0, NULL, 'Paper', NULL, NULL, NULL, NULL, NULL, 485, NULL, 'Dodge, R.E. 1909 A Paper on Arroyo Formation in the Chaco Area. Paper presented at the British Association for the Advancement of Science, Winnipeg.'); INSERT INTO documentary_instance VALUES (495, 'The Formation of Arroyos in Adobe-Filled Valleys in Southwestern United States', NULL, NULL, NULL, NULL, '1910', 0, NULL, 'Paper', NULL, NULL, NULL, NULL, NULL, 486, NULL, 'Dodge, R.E. 1910 The Formation of Arroyos in Adobe-Filled Valleys in Southwestern United States. Paper presented at the British Association for the Advancement of Science. Abstracts Vol. 79.'); INSERT INTO documentary_instance VALUES (496, 'Report of Field Studies', NULL, NULL, NULL, NULL, '1920', 0, NULL, 'Book', '3 pages', NULL, NULL, NULL, NULL, 487, NULL, 'Dodge, R.E. 1920 Report of Field Studies. In Pueblo Bonito by George Pepper, pp. 23-25. American Museum of Natural History Anthropological Papers. Vol. 27.'); INSERT INTO documentary_instance VALUES (497, 'The Chaco Phenomenon: One Role of Lithics in the Study of Trade', NULL, NULL, NULL, NULL, '1981', 0, 'Paper prepared for Anthropology 420 at the University of New Mexico.', 'Ms. on file', NULL, NULL, NULL, 'Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.', NULL, 488, NULL, 'Doleman, William 1981 The Chaco Phenomenon: One Role of Lithics in the Study of Trade. Paper prepared for Anthropology 420 at the University of New Mexico. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. '); INSERT INTO documentary_instance VALUES (498, '[Chaco Canyon Ruins.] ', NULL, NULL, NULL, NULL, '1860', 0, NULL, 'Book', NULL, NULL, NULL, NULL, NULL, 489, NULL, 'Domenech, Abbé Emmanuel H. D. 1860 [Chaco Canyon Ruins.] In Seven Years Residence in the Great Deserts of North America, by Abbé Emmanuel H. D. Domenech, Vol. 1:200, 381. Longman, Green, London. '); INSERT INTO documentary_instance VALUES (499, 'Cultural Resource Inventory along the Proposed Continental Divide Pipeline, Southwestern Colorado and Northwestern New Mexico. ', NULL, NULL, NULL, NULL, '1983', 0, 'Report', NULL, NULL, NULL, NULL, 'Office of Contract Archeology, University of New Mexico, Albuquerque. ', NULL, 490, NULL, 'Donaldson, Marcia 1983 Cultural Resource Inventory along the Proposed Continental Divide Pipeline, Southwestern Colorado and Northwestern New Mexico. Office of Contract Archeology, University of New Mexico, Albuquerque. '); INSERT INTO documentary_instance VALUES (500, 'The Cliff House Sandstone, San Juan Basin, New Mexico: Model for the Stacking of ‘Transgressive’ Barrier Complexes', NULL, NULL, NULL, NULL, '1989', 0, 'Journal of Sedimentary Petrology 59(1):13-27.', 'Journal', '15 pages', NULL, NULL, NULL, NULL, 491, NULL, 'Donselaar, M. E. 1989 The Cliff House Sandstone, San Juan Basin, New Mexico: Model for the Stacking of ‘Transgressive’ Barrier Complexes. Journal of Sedimentary Petrology 59(1):13-27. '); INSERT INTO documentary_instance VALUES (501, '[Chaco Canyon.] ', NULL, NULL, NULL, NULL, '1903', 0, NULL, 'Book', '4 pages', NULL, NULL, NULL, NULL, 492, NULL, 'Dorsey, George A. 1903 [Chaco Canyon.] In Indians of the Southwest by George A. Dorsey, pp. 55-56, 58-59. Atchison, Topeka and Santa Fe Railroad, Chicago. '); INSERT INTO documentary_instance VALUES (502, 'Climate Cycles and Tree Growth', NULL, NULL, NULL, NULL, '1919', 0, 'Carnegie Institute of Washington, Publ. 289, Vol. 1.', 'Book', NULL, NULL, NULL, NULL, NULL, 493, NULL, 'Douglass, Andrew E. 1919 Climate Cycles and Tree Growth. Carnegie Institute of Washington, Publ. 289, Vol. 1. '); INSERT INTO documentary_instance VALUES (503, 'Dating Our Prehistoric Ruins', NULL, NULL, NULL, NULL, '1821', 0, ' Natural History 21:27-33.', 'Journal', '7 pages', NULL, NULL, NULL, NULL, 494, NULL, 'Douglass, Andrew E. 1921 Dating Our Prehistoric Ruins. Natural History 21:27-33.'); INSERT INTO documentary_instance VALUES (504, 'Climate Cycles and Tree-Growth.', NULL, NULL, NULL, NULL, '1928', 0, 'Carnegie Institution of Washington, Publ. 289. Vol. 2.', 'Book', NULL, NULL, NULL, NULL, NULL, 495, NULL, 'Douglass, Andrew E. 1928 Climate Cycles and Tree-Growth. Carnegie Institution of Washington, Publ. 289. Vol. 2.'); INSERT INTO documentary_instance VALUES (505, 'The Secret of the Southwest Solved by Talkative Tree Rings', NULL, NULL, NULL, NULL, '1929', 0, 'The National Geographic Magazine 56:737-770. December. Washington, D.C.', 'Journal', '34 pages', NULL, NULL, NULL, NULL, 496, NULL, 'Douglass, Andrew E. 1929 The Secret of the Southwest Solved by Talkative Tree Rings. The National Geographic Magazine 56:737-770. December. Washington, D.C.'); INSERT INTO documentary_instance VALUES (506, 'Tree Rings and Their Relation to Solar Variations and Chronology', NULL, NULL, 'Washington, D.C.', 'Government Printing Office ', '1932', 0, 'In Annual Report of the Smithsonian Institution for 1931, p. 304-312.', 'Report', '9 pages', NULL, NULL, NULL, NULL, 497, NULL, 'Douglass, Andrew E. 1932 Tree Rings and Their Relation to Solar Variations and Chronology. In Annual Report of the Smithsonian Institution for 1931, p. 304-312. Government Printing Office, Washington, D.C.'); INSERT INTO documentary_instance VALUES (507, 'Evidences of Cycles in Tree Ring Records.', NULL, NULL, NULL, NULL, '1933', 0, ' Proceedings of the National Academy of Science 19:350-360.', 'Journal', '11 pages', NULL, NULL, NULL, NULL, 498, NULL, 'Douglass, Andrew E. 1933 Evidences of Cycles in Tree Ring Records. Proceedings of the National Academy of Science 19:350-360.'); INSERT INTO documentary_instance VALUES (508, 'Dating Pueblo Bonito and Other Ruins of the Southwest', NULL, NULL, NULL, NULL, '1935', 0, NULL, 'Paper', '3 pages', NULL, NULL, NULL, NULL, 499, NULL, 'Douglass, Andrew E. 1935 Dating Pueblo Bonito and Other Ruins of the Southwest. National Geographic Society, Contributed Technical Papers, Pueblo Bonito Series, No. 1, pp. 45-47. Washington, D.C.'); INSERT INTO documentary_instance VALUES (509, 'The Central Pueblo Chronology', NULL, NULL, NULL, NULL, '1936', 0, 'Tree-Ring Bulletin 2(4):29-34. University of Arizona, Tucson.', 'Journal', '6 pages', NULL, NULL, NULL, NULL, 500, NULL, 'Douglass, Andrew E. 1936 The Central Pueblo Chronology. Tree-Ring Bulletin 2(4):29-34. University of Arizona, Tucson.'); INSERT INTO documentary_instance VALUES (510, 'Tree Rings and Chronology', NULL, NULL, NULL, NULL, '1937a', 0, NULL, 'Journal', NULL, NULL, NULL, NULL, NULL, 501, NULL, 'Douglass, Andrew E. 1937a Tree Rings and Chronology. University of Arizona Physical Sciences Bulletin No. 1. University of Arizona Bulletin 8(4).'); INSERT INTO documentary_instance VALUES (511, 'Typical Tree Ring Record from Chaco Canyon 700-850. CK-31', NULL, NULL, NULL, NULL, '1937b', 0, 'Tree-Ring Bulletin 3(3):20-21. University of Arizona, Tucson.', 'Journal', '2 pages', NULL, NULL, NULL, NULL, 502, NULL, 'Douglass, Andrew E. 1937b Typical Tree Ring Record from Chaco Canyon 700-850. CK-31. Tree-Ring Bulletin 3(3):20-21. University of Arizona, Tucson.'); INSERT INTO documentary_instance VALUES (512, 'Southwestern Dated Ruins No. 2.', NULL, NULL, NULL, NULL, '1938', 0, 'Tree-Ring Bulletin 5(2):10-13.', 'Journal', '4 pages', NULL, NULL, NULL, NULL, 503, NULL, 'Douglass, Andrew E. 1938 Southwestern Dated Ruins No. 2. Tree-Ring Bulletin 5(2):10-13.'); INSERT INTO documentary_instance VALUES (513, 'Tree ring Calendars', NULL, NULL, NULL, NULL, '1955', 0, NULL, 'Journal', '2 pages', NULL, NULL, NULL, NULL, 504, NULL, 'Douglass, Andrew E. 1955 Tree ring Calendars. In National Geographic on Indians of the Americas pp. 338-339. National Geographic Society, Washington, D.C.'); INSERT INTO documentary_instance VALUES (514, 'Reflections of the Anasazi Cosmos', NULL, NULL, 'Odense.', 'Odense University Press', '1991', 0, NULL, 'Book', '30 pages', NULL, NULL, NULL, NULL, 505, NULL, 'Doxtater, Dennis 1991 Reflections of the Anasazi Cosmos. In Social Space. Human Spatial Behavior in Dwellings and Settlements. Proceedings of an Interdisciplinary Conference, edited by Ole Grøn, Erika Engelstad and Inge Lindblom, pp. 155-184. Odense University Press, Odense. '); INSERT INTO documentary_instance VALUES (515, 'Possibilities of “Georitual” Chacoan Constructs and Other Foci at Canyon de Chelly, Kin Bineola, and Hopi Second Mesa', NULL, NULL, NULL, NULL, '1999', 0, NULL, 'Manuscript', NULL, NULL, NULL, 'Unpublished manuscript on file with author.', NULL, 506, NULL, 'Doxtater, Dennis 1999 Possibilities of “Georitual” Chacoan Constructs and Other Foci at Canyon de Chelly, Kin Bineola, and Hopi Second Mesa. Unpublished manuscript on file with author.'); INSERT INTO documentary_instance VALUES (516, 'A Hypothetical Layout of Chaco Canyon Structures via Large-Scale Alignments between Significant Natural Features', NULL, NULL, NULL, NULL, '2002', 0, 'Kiva 68(1):1-25.', 'Journal', '26 pages', NULL, NULL, NULL, NULL, 507, NULL, 'Doxtater, Dennis 2002 A Hypothetical Layout of Chaco Canyon Structures via Large-Scale Alignments between Significant Natural Features. Kiva 68(1):1-25.'); INSERT INTO documentary_instance VALUES (517, 'The Evolution of Regional Diversity in the Prehistoric Southwest: Anasazi Pueblo and the Hohokam', NULL, NULL, NULL, NULL, '1981', 0, 'Paper Presented at the Anasazi Conference, Mesa Verde National Park.', 'Paper', NULL, NULL, NULL, NULL, NULL, 508, NULL, 'Doyel, David E. (editor) 1981 The Evolution of Regional Diversity in the Prehistoric Southwest: Anasazi Pueblo and the Hohokam. Paper Presented at the Anasazi Conference, Mesa Verde National Park. '); INSERT INTO documentary_instance VALUES (518, 'Anasazi Regional Organization and the Chaco System.', NULL, NULL, NULL, NULL, '1992a', 0, NULL, 'Journal', NULL, NULL, NULL, NULL, NULL, 509, NULL, 'Doyel, David E. 1992a Anasazi Regional Organization and the Chaco System. Anthropological Papers No. 5. Maxwell Museum of Anthropology, University of New Mexico, Albuquerque.'); INSERT INTO documentary_instance VALUES (519, 'Exploring Chaco', NULL, NULL, NULL, NULL, '1992b', 0, NULL, 'Book', '12 pages', NULL, NULL, NULL, NULL, 510, NULL, 'Doyel, David E. 1992b Exploring Chaco. In Anasazi Regional Organization and the Chaco System, edited by Davied E. Doyel, pp. 3-14. Anthropological Papers No. 5. Maxwell Museum of Anthropology, University of New Mexico, Albuquerque.'); INSERT INTO documentary_instance VALUES (520, 'Chacoan Community Structure: Bis sa’ani Pueblo and the Chaco Halo.', NULL, NULL, NULL, NULL, '1981', 0, NULL, 'Paper', NULL, NULL, NULL, NULL, NULL, 511, NULL, 'Doyel, David E., Cory D. Breternitz, and Michael P. Marshall 1981 Chacoan Community Structure: Bis sa’ani Pueblo and the Chaco Halo. Paper presented at the 46th Annual Meeting of the Society for American Archaeology, San Diego. Published in 1983 and 1984. '); INSERT INTO documentary_instance VALUES (521, 'Chacoan Community Structure: Bis sa’ani Pueblo and the Chaco Halo', NULL, NULL, NULL, NULL, '1983', 0, 'Kiva 49:1-2.', 'Journal', '2 pages', NULL, NULL, NULL, NULL, 512, NULL, 'Doyel, David E., Cory D. Breternitz, and Michael P. Marshall 1983 Chacoan Community Structure: Bis sa’ani Pueblo and the Chaco Halo. Kiva 49:1-2.'); INSERT INTO documentary_instance VALUES (522, 'Chacoan Community Structure: Bis sa''ani Pueblo and the Chaco Halo', NULL, NULL, NULL, NULL, '1984', 0, NULL, 'Journal', '18 pages', NULL, NULL, NULL, NULL, 513, NULL, 'Doyel, David E., Cory D. Breternitz, and Michael P. Marshall 1984 Chacoan Community Structure: Bis sa''ani Pueblo and the Chaco Halo. In Recent Research on Chaco Prehistory, edited by W. James Judge and John D. Schelberg, pp. 37-54. Reports of the Chaco Center No. 8. Division of Cultural Research, National Park Service, Albuquerque.'); INSERT INTO documentary_instance VALUES (523, 'Reanalysis of the Archaeomagnetic Chronology for the Bonito Phase in the Chaco Region, New Mexico', NULL, NULL, NULL, NULL, '1992', 0, NULL, 'Paper', NULL, NULL, NULL, NULL, NULL, 514, NULL, 'Doyel, David E., and Jeffrey Eighmy 1991 Reanalysis of the Archaeomagnetic Chronology for the Bonito Phase in the Chaco Region, New Mexico. Paper presented at the 56th Annual Meeting of the Society for American Archaeology, New Orleans. '); INSERT INTO documentary_instance VALUES (524, 'Archaeomagnetic Dating and the Bonito Phase Chronology', NULL, NULL, NULL, NULL, '1994', 0, 'Journal of Archaeological Science 21:651-658.', 'Journal', '8 pages', NULL, NULL, NULL, NULL, 515, NULL, 'Doyel, David E., and Jeffrey Eighmy 1994 Archaeomagnetic Dating and the Bonito Phase Chronology. Journal of Archaeological Science 21:651-658.'); INSERT INTO documentary_instance VALUES (525, 'Regional Organization in the American Southwest. ', NULL, NULL, NULL, NULL, '1992', 0, NULL, 'Journal', '7 pages', NULL, NULL, NULL, NULL, 516, NULL, 'Doyel, David E., and Stephen H. Lekson 1992 Regional Organization in the American Southwest. In Anasazi Regional Organization and the Chaco System, edited by David E. Doyel, pp. 15-21. Anthropological Papers No. 5. Maxwell Museum of Anthropology, University of New Mexico, Albuquerque. '); INSERT INTO documentary_instance VALUES (526, 'An Analysis of a Possible Communication System in the San Juan Basin of New Mexico', NULL, NULL, NULL, NULL, '1976', 0, 'Paper for Anthropology 511, University of New Mexico.', 'Ms. on file', NULL, NULL, NULL, 'Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. ', NULL, 517, NULL, 'Drager, Dwight L. 1976 An Analysis of a Possible Communication System in the San Juan Basin of New Mexico. Paper for Anthropology 511, University of New Mexico. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. '); INSERT INTO documentary_instance VALUES (527, 'Anasazi Population Estimates with the Aid of Data Derived from Photogrammetric Maps.', NULL, NULL, NULL, NULL, '1976', 0, NULL, 'Report', '15 pages', NULL, NULL, NULL, NULL, 518, NULL, 'Drager, Dwight L. 1976 Anasazi Population Estimates with the Aid of Data Derived from Photogrammetric Maps. In Remote Sensing Experiments in Cultural Resource Studies. Non-destructive Methods of Archaeological Exploration, Survey, and Analysis, assembled by Thomas R. Lyons, pp. 157-171. Reports of the Chaco Center No. 1. National Park Service and University of New Mexico, Albuquerque.'); INSERT INTO documentary_instance VALUES (528, 'A Plan for the Remote Sensing Assessment of the Cultural Resources of the San Juan Basin. ', NULL, NULL, NULL, NULL, '1977', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'Ms. on file, Remote Sensing Office, National Park Service, Santa Fe.', NULL, 519, NULL, 'Drager, Dwight L. 1977 A Plan for the Remote Sensing Assessment of the Cultural Resources of the San Juan Basin. Proposal submitted to the Bureau of Indian Affairs, San Juan Regional Uranium Study, Albuquerque. Ms. on file, Remote Sensing Office, National Park Service, Santa Fe.'); INSERT INTO documentary_instance VALUES (529, 'Navajo Indian Irrigation Project', NULL, NULL, NULL, NULL, '1980a', 0, NULL, 'Journal', '1 page', NULL, NULL, NULL, NULL, 520, NULL, 'Drager, Dwight L. 1980a Navajo Indian Irrigation Project. CRM Bulletin 3(2):8. Cultural Resources Management Division, National Park Service, Washington, D.C.'); INSERT INTO documentary_instance VALUES (530, 'Projecting Archeological Site Concentration from Cover-Type Maps Developed from Remote Sensing Data', NULL, NULL, NULL, NULL, '1980b', 0, NULL, 'Report', '7 pages', NULL, NULL, NULL, NULL, 521, NULL, 'Drager, Dwight L. 1980b Projecting Archeological Site Concentration from Cover-Type Maps Developed from Remote Sensing Data. In Proceedings of the Conference on Scientific Research in the National Parks (2nd) Held at San Francisco, California on November 26-30, 1979. Volume I, pp. 151-157. National Park Service, Washington, D.C.'); INSERT INTO documentary_instance VALUES (531, 'A Final Statement', NULL, NULL, NULL, NULL, '1983a', 0, NULL, 'Report', '1 page', NULL, NULL, NULL, NULL, 522, NULL, 'Drager, Dwight L. 1983a A Final Statement. In Remote Sensing in Cultural Resource Management: The San Juan Basin Project, edited by Dwight L. Drager and Thomas R. Lyons, p. 129. Cultural Resources Management Division, National Park Service, Washington, D.C.'); INSERT INTO documentary_instance VALUES (532, 'Approaches to a Remote Sensing Assessment of the Cultural Resources of the San Juan Basin', NULL, NULL, NULL, NULL, '1983b', 0, NULL, 'Report', '18 pages', NULL, NULL, NULL, NULL, 523, NULL, 'Drager, Dwight L. 1983b Approaches to a Remote Sensing Assessment of the Cultural Resources of the San Juan Basin. In Remote Sensing in Cultural Resource Management: The San Juan Basin Project, edited by Dwight L. Drager and Thomas R. Lyons, pp. 5-22. Cultural Resources Management Division, National Park Service, Washington, D.C.'); INSERT INTO documentary_instance VALUES (533, 'Environmental Integration in Archeology.', NULL, NULL, NULL, NULL, '1983c', 0, 'Paper presented at the Pecos Conference, Bluff, UT.', 'Paper', NULL, NULL, NULL, NULL, NULL, 524, NULL, 'Drager, Dwight L. 1983c Environmental Integration in Archeology. Paper presented at the Pecos Conference, Bluff, UT.'); INSERT INTO documentary_instance VALUES (534, 'Environmental Integration in Archeology.', NULL, NULL, NULL, NULL, '1983d', 0, NULL, 'Paper', NULL, NULL, NULL, NULL, NULL, 525, NULL, 'Drager, Dwight L. 1983d Environmental Integration in Archeology. Paper presented at the 49th Annual Meeting of the Society for American Archaeology, Portland, April 10-15.'); INSERT INTO documentary_instance VALUES (535, 'Materials Acquired for the Remote Sensing Assessment of the Cultural Resources of the San Juan Basin, New Mexico', NULL, NULL, NULL, NULL, '1983f', 0, NULL, 'Journal', '4 pages', NULL, NULL, NULL, NULL, 527, NULL, 'Drager, Dwight L. 1983f Materials Acquired for the Remote Sensing Assessment of the Cultural Resources of the San Juan Basin, New Mexico. In Remote Sensing in Cultural Resources Management: The San Juan Basin Project, edited by Dwight L. Drager and Thomas R. Lyons, pp. 23-26. Cultural Resources Management Division, National Park Service, Washington, D.C.'); INSERT INTO documentary_instance VALUES (536, 'Introduction.', NULL, NULL, NULL, NULL, '1983e', 0, NULL, 'Report', '3 pages', NULL, NULL, NULL, NULL, 526, NULL, 'Drager, Dwight L. 1983e Introduction. In Remote Sensing in Cultural Resource Management: The San Juan Basin Project, edited by Dwight L. Drager and Thomas R. Lyons, pp. 1-3. Cultural Resources Management Division, National Park Service, Washington, D.C.'); INSERT INTO documentary_instance VALUES (537, 'Projecting Archeological Site Concentrations in the San Juan Basin, New Mexico. ', NULL, NULL, NULL, NULL, '1983g', 0, NULL, 'Report', '5 pages', NULL, NULL, NULL, NULL, 528, NULL, 'Drager, Dwight L. 1983g Projecting Archeological Site Concentrations in the San Juan Basin, New Mexico. In Remote Sensing in Cultural Resource Management: The San Juan Basin Project, edited by Dwight L. Drager and Thomas R. Lyons, pp. 123-127. Cultural Resources Management Division, National Park Service, Washington, D.C.'); INSERT INTO documentary_instance VALUES (538, 'Equipment for Remote Sensing in Cultural Resource Management', NULL, NULL, NULL, NULL, '1984', 0, NULL, 'Presentation', NULL, NULL, NULL, NULL, NULL, 529, NULL, 'Drager, Dwight L. 1984 Equipment for Remote Sensing in Cultural Resource Management. Presentation at the Second World Conference on Rescue Archeology, Dallas, December. '); INSERT INTO documentary_instance VALUES (539, 'Projecting Archeological Site Occurrences in the Navajo Indian Irrigation Project.', NULL, NULL, NULL, NULL, '1983', 0, NULL, 'Report', '13 pages', NULL, NULL, NULL, NULL, 530, NULL, 'Drager, Dwight L., and Arthur K. Ireland 1983 Projecting Archeological Site Occurrences in the Navajo Indian Irrigation Project. In Remote Sensing in Cultural Resources Management: The San Juan Basin Project, edited by Dwight L. Drager and Thomas R. Lyons, pp. 103-115. Cultural Resources Management Division, National Park Service, Washington, D.C. '); INSERT INTO documentary_instance VALUES (540, 'Large-Area Base Maps for Cultural Resource Studies', NULL, NULL, NULL, NULL, '1983', 0, NULL, 'Report', '6 pages', NULL, NULL, NULL, NULL, 531, NULL, 'Drager, Dwight L., and Jerry L. Livingston 1983 Large-Area Base Maps for Cultural Resource Studies. In Remote Sensing in Cultural Resources Management: The San Juan Basin Project, edited by Dwight L. Drager and Thomas R. Lyons, pp. 27-31. Cultural Resources Management Division, National Park Service, Washington, D.C. '); INSERT INTO documentary_instance VALUES (541, 'Preliminary Site Report, Site 29SJ1010, The Poco Site.', NULL, NULL, NULL, NULL, '1975', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'Ms. in site files, Accession 57, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.', NULL, 532, NULL, 'Drager, Dwight L., and Thomas R. Lyons 1975 Preliminary Site Report, Site 29SJ1010, The Poco Site. Ms. in site files, Accession 57, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. '); INSERT INTO documentary_instance VALUES (542, 'Preliminary Report—Site 29SJ1010, the Poco Site. ', NULL, NULL, NULL, NULL, '1979', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'Ms. on file, Division of Remote Sensing, National Park Service, Santa Fe and Accession 57, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque', NULL, 533, NULL, 'Drager, Dwight L., and Thomas R. Lyons 1979 Preliminary Report—Site 29SJ1010, the Poco Site. Ms. on file, Division of Remote Sensing, National Park Service, Santa Fe and Accession 57, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO documentary_instance VALUES (543, 'A Field Test of Remote Sensing in Archeology. ', NULL, NULL, NULL, NULL, '1980', 0, NULL, 'Ms. in site files', NULL, NULL, NULL, 'Ms. in site files, Accession 57, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.', NULL, 534, NULL, 'Drager, Dwight L., and Thomas R. Lyons 1980 A Field Test of Remote Sensing in Archeology. Ms. in site files, Accession 57, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO documentary_instance VALUES (544, 'A Field Test of Remote Sensing in Archeology. ', NULL, NULL, NULL, NULL, '1983a', 0, NULL, 'Ms. in site files', NULL, NULL, NULL, ' Ms. in site files, Accession 57, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.', NULL, 535, NULL, 'Drager, Dwight L., and Thomas R. Lyons 1983a A Field Test of Remote Sensing in Archeology. Ms. in site files, Accession 57, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO documentary_instance VALUES (545, 'Remote Sensing in Cultural Resource Management: The San Juan Basin Project.', NULL, NULL, NULL, NULL, '1983b', 0, NULL, 'Book', NULL, NULL, NULL, NULL, NULL, 536, NULL, 'Drager, Dwight L., and Thomas R. Lyons 1983b (eds.) Remote Sensing in Cultural Resource Management: The San Juan Basin Project. Cultural Resources Management Division, National Park Service, Washington, D.C.'); INSERT INTO documentary_instance VALUES (546, 'Remote Sensing: Photogrammetry in Archeology: The Chaco Mapping Project.', NULL, NULL, NULL, NULL, '1985', 0, NULL, 'Report', NULL, NULL, NULL, NULL, NULL, 537, NULL, 'Drager, Dwight L., and Thomas R. Lyons 1985 Remote Sensing: Photogrammetry in Archeology: The Chaco Mapping Project. Supplement No. 10 to Remote Sensing: A Handbook for Archeologists and Cultural Resource Managers by Thomas R. Lyons and Thomas Eugene Avery. Division of Cultural Resource Management, National Park Service, Washington, D.C.'); INSERT INTO documentary_instance VALUES (547, 'Mollusks of the Eastern Basin of the Chaco River, New Mexico.', NULL, NULL, NULL, NULL, '1948', 0, 'The Nautilus 62(1):5-8.', 'Journal', '4 pages', NULL, NULL, NULL, NULL, 538, NULL, 'Drake, R. J. 1948 Mollusks of the Eastern Basin of the Chaco River, New Mexico. The Nautilus 62(1):5-8. '); INSERT INTO documentary_instance VALUES (548, 'A Pattern-Recognition Study of Anasazi Ceramic Distributions in the San Juan Basin, Northern New Mexico.', NULL, NULL, NULL, NULL, '1981a', 0, 'Paper for Anthropology 467, University of New Mexico.', 'Ms. on file', NULL, NULL, NULL, 'Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. ', NULL, 539, NULL, 'Draper, Neale 1981a A Pattern-Recognition Study of Anasazi Ceramic Distributions in the San Juan Basin, Northern New Mexico. Paper for Anthropology 467, University of New Mexico. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. '); INSERT INTO documentary_instance VALUES (549, 'Castles and County Cousins: The San Juan Basin Anasazi in Perspective', NULL, NULL, NULL, NULL, '1981b', 0, 'Paper for Anthropology 356, University of New Mexico. ', 'Ms. on file', NULL, NULL, NULL, 'Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquer', NULL, 540, NULL, 'Draper, Neale 1981b Castles and County Cousins: The San Juan Basin Anasazi in Perspective. Paper for Anthropology 356, University of New Mexico. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO documentary_instance VALUES (550, 'An Exploration of Post-Chacoan Community Organization through Ceramic Sourcing.', NULL, NULL, NULL, NULL, '1993', 0, NULL, 'Unpublished Master''s thesis', NULL, NULL, NULL, NULL, NULL, 541, NULL, 'Duff, Andrew 1993 An Exploration of Post-Chacoan Community Organization through Ceramic Sourcing. Unpublished Master’s thesis, Department of Anthropology, Arizona State University, Tempe. '); INSERT INTO documentary_instance VALUES (551, 'A Class II Cultural Resources Inventory of the Southern Portion of the Chaco Planning Unit, McKinley and Sandoval Counties, New Mexico.', NULL, NULL, NULL, NULL, '1981', 0, NULL, 'Report', NULL, NULL, NULL, NULL, NULL, 542, NULL, 'Dulaney, Alan R., and Steven G. Dosh 1981 A Class II Cultural Resources Inventory of the Southern Portion of the Chaco Planning Unit, McKinley and Sandoval Counties, New Mexico. Bureau of Land Management, Albuquerque District, Albuquerque. '); INSERT INTO documentary_instance VALUES (552, 'Architectural Change and Chaco Prehistory. ', NULL, NULL, NULL, NULL, '1992', 0, NULL, 'Unpublished Ph.D. dissertation', NULL, NULL, NULL, NULL, NULL, 543, NULL, 'Durand, Stephen R. 1992 Architectural Change and Chaco Prehistory. Unpublished Ph.D. dissertation, Department of Anthropology, University of Washington, Seattle '); INSERT INTO documentary_instance VALUES (553, 'Notes from the Edge: Settlement Pattern Changes at the Guadalupe Great House Community', NULL, NULL, 'Tucson.', ' University of Arizona Press ', '2000', 0, NULL, 'Book', '9 pages', NULL, NULL, NULL, NULL, 544, NULL, 'Durand, Stephen R., and Kathy Roler Durand 2000 Notes from the Edge: Settlement Pattern Changes at the Guadalupe Great House Community. In Great House Communities Across the Chacoan Landscape, edited by John Kantner and Nancy M. Mahoney, pp. 101-109. University of Arizona Anthropological Papers No. 64. University of Arizona Press, Tucson. '); INSERT INTO documentary_instance VALUES (554, 'Trees, Chemistry, and Prehistory in the American Southwest.', NULL, NULL, NULL, NULL, '1999', 0, 'Journal of Archaeological Science 26:185-203.', 'Journal', '19 pages', NULL, NULL, NULL, NULL, 545, NULL, 'Durand, Stehpen H., Phillip H. Shelley, Ronald C. Antweiler, and Howard E. Taylor 1999 Trees, Chemistry, and Prehistory in the American Southwest. Journal of Archaeological Science 26:185-203. '); INSERT INTO documentary_instance VALUES (555, 'Report on Leyit Kin', NULL, NULL, NULL, NULL, '1936', 0, 'Southwestern Monuments, pp. 309-319, November.', 'Journal', '11 pages', NULL, NULL, NULL, NULL, 546, NULL, 'Dutton, Bertha P. 1936 Report on Leyit Kin. Southwestern Monuments, pp. 309-319, November. '); INSERT INTO documentary_instance VALUES (556, 'Leyit Kin, a Small House Ruin, Chaco Canyon, New Mexico', NULL, NULL, NULL, NULL, '1937a', 0, ' M.A. thesis, Department of Anthropology, University of New Mexico, Albuquerque.', 'M.A. thesis', NULL, NULL, NULL, NULL, NULL, 548, NULL, 'Dutton Bertha P. 1937a Leyit Kin, a Small House Ruin, Chaco Canyon, New Mexico. M.A. thesis, Department of Anthropology, University of New Mexico, Albuquerque.'); INSERT INTO documentary_instance VALUES (557, 'Leyit Kin, a Small House Ruin in Chaco Canyon', NULL, NULL, NULL, NULL, '1937b', 0, 'New Mexico Anthropologist 1:84-85.', 'Journal', '2 pages', NULL, NULL, NULL, NULL, 548, NULL, 'Dutton, Bertha P. 1937b Leyit Kin, a Small House Ruin in Chaco Canyon. New Mexico Anthropologist 1:84-85.'); INSERT INTO documentary_instance VALUES (558, 'Leyit Kin, a Small House Ruin, Chaco Canyon, New Mexico.', NULL, NULL, NULL, NULL, '1938', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 549, NULL, 'Dutton, Bertha P. 1938 Leyit Kin, a Small House Ruin, Chaco Canyon, New Mexico. Monographs of the University of New Mexico and School of American Research No. 7. University of New Mexico Bulletin No. 333, Monograph Series 1(5). University of New Mexico, Albuquerque.'); INSERT INTO documentary_instance VALUES (559, 'Wild Plants and Native Peoples of the Four Corners', NULL, NULL, 'Santa Fe', 'Museum of New Mexico Press', '1997', 0, NULL, 'Book', NULL, NULL, NULL, NULL, NULL, 550, NULL, 'Dunmire, William G., and Gail D. Tierney 1997 Wild Plants and Native Peoples of the Four Corners. Museum of New Mexico Press, Santa Fe. '); INSERT INTO documentary_instance VALUES (560, 'Room for a View: Chaco Canyon from the Chuska Slope. ', NULL, NULL, NULL, NULL, '1990', 0, NULL, 'Paper', NULL, NULL, NULL, NULL, NULL, 551, NULL, 'Dykeman, Douglas D. 1990 Room for a View: Chaco Canyon from the Chuska Slope. Paper presented at the 55th Annual Meeting of the Society for American Archaeology, Las Vegas. '); INSERT INTO documentary_instance VALUES (561, 'Economic Support of Chaco Canyon Society. ', NULL, NULL, NULL, NULL, '2001', 0, 'American Antiquity 66(1):26-35.', 'Journal', '10 pages', NULL, NULL, NULL, NULL, 552, NULL, 'Earle, Timothy 2001 Economic Support of Chaco Canyon Society. American Antiquity 66(1):26-35. '); INSERT INTO documentary_instance VALUES (562, 'Chaco Canyon, A Study Guide', NULL, NULL, NULL, NULL, '1976', 0, NULL, 'Book', NULL, NULL, NULL, NULL, NULL, 553, NULL, 'Early, Frank Lee 1976 Chaco Canyon, A Study Guide. Museum Study Series No. 2. Museum of Anthropology, Arapahoe Community College, Littleton, CO. '); INSERT INTO documentary_instance VALUES (563, 'The Lightning Field: Travels In and Around New Mexico', NULL, NULL, 'Boulder.', 'Johnson Books ', '1995', 0, NULL, 'Book', NULL, NULL, NULL, NULL, NULL, 554, NULL, 'Eaton, Robert 1995 The Lightning Field: Travels In and Around New Mexico. Johnson Books, Boulder. '); INSERT INTO documentary_instance VALUES (564, 'Remote Sensing within an Archeological Research Framework: Methods, Economics, and Theory.', NULL, NULL, NULL, NULL, '1977', 0, NULL, 'Book', '24 pages', NULL, NULL, NULL, NULL, 555, NULL, 'Ebert, James I. 1977 Remote Sensing within an Archeological Research Framework: Methods, Economics, and Theory. In Aerial Remote Sensing Techniques in Archeology, edited by Thomas R. Lyons and Robert K. Hitchcock, pp. 169-192. Reports of the Chaco Center No. 2. National Park Service and University of New Mexico, Albuquerque. '); INSERT INTO documentary_instance VALUES (565, 'Geomorphic Processes Affecting the Visibility and Integrity of Cultural Resources at Chaco Culture National Historical Park. Field Reconnaissance, March 19-20, 1981', NULL, NULL, NULL, NULL, '1981', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'Ms. on file, NPS Chaco Archive, University of New Mexico, Albuquerque. ', NULL, 556, NULL, 'Ebert, James I., and Galen N. Brown 1981 Geomorphic Processes Affecting the Visibility and Integrity of Cultural Resources at Chaco Culture National Historical Park. Field Reconnaissance, March 19-20, 1981. Ms. on file, NPS Chaco Archive, University of New Mexico, Albuquerque. '); INSERT INTO documentary_instance VALUES (566, 'Remote Sensing in Large-Scale Cultural Resources Survey: A Case Study from the Arctic.', NULL, NULL, NULL, NULL, '1980', 0, NULL, 'Book', '72 pages', NULL, NULL, NULL, NULL, 557, NULL, 'Ebert, James I. (Editor, with contributions by Galen N. Brown, Dwight L. Drager, James I. Ebert, Dick Ping Hsu, and Thomas R. Lyons 1980 Remote Sensing in Large-Scale Cultural Resources Survey: A Case Study from the Arctic. In Cultural Resources Remote Sensing, edited by Thomas R. Lyons and Frances Joan Mathien, pp. 7-78. Cultural Resources Management Division, National Park Service, Washington. '); INSERT INTO documentary_instance VALUES (567, 'Remote Sensing of Geomorphological Factors Affecting the Visibility of Archaeological Materials', NULL, NULL, NULL, NULL, '1981', 0, NULL, 'Journal', '11 pages', NULL, NULL, NULL, NULL, 558, NULL, 'Ebert, James I., and Alberto A. Gutierrez 1981 Remote Sensing of Geomorphological Factors Affecting the Visibility of Archaeological Materials. In Technical Papers of the American Society for Photogrammetry. 1981 ASP-ACSM Convention, pp. 226-236. '); INSERT INTO documentary_instance VALUES (568, 'Spatial Inference and the Archeology of Complex Societies', NULL, NULL, NULL, NULL, '1973', 0, NULL, 'Paper', NULL, NULL, NULL, NULL, NULL, 559, NULL, 'Ebert, James I., and Robert K. Hitchcock 1973 Spatial Inference and the Archeology of Complex Societies. Paper presented at the Mathematics in Social Sciences Board Conference on Formal Methods for the Analysis of Regional Social Structure, Santa Fe, Oct. '); INSERT INTO documentary_instance VALUES (569, 'Chaco Canyon''s Mysterious Highways', NULL, NULL, NULL, NULL, '1975', 0, 'Horizon 17(4):48-53.', 'Journal', '6 pages', NULL, NULL, NULL, NULL, 560, NULL, 'Ebert, James I., and Robert K. Hitchcock 1975 Chaco Canyon''s Mysterious Highways. Horizon 17(4):48-53.'); INSERT INTO documentary_instance VALUES (570, 'The Role of Remote Sensing', NULL, NULL, NULL, NULL, '1977', 0, NULL, 'Journal', '26 pages', NULL, NULL, NULL, NULL, 561, NULL, 'Ebert, James I., and Robert K. Hitchcock 1977 The Role of Remote Sensing. In Settlement and Subsistence Along the Lower Chaco River: The CGP Survey, edited by Charles A. Reher, pp. 191-216. University of New Mexico Press, Albuquerque.'); INSERT INTO documentary_instance VALUES (571, 'Locational Modeling in the Analysis of the Prehistoric Roadway System at and around Chaco Canyon, New Mexico', NULL, NULL, NULL, NULL, '1980', 0, NULL, 'Book', '39 pages', NULL, NULL, NULL, NULL, 562, NULL, 'Ebert, James I., and Robert K. Hitchcock 1980 Locational Modeling in the Analysis of the Prehistoric Roadway System at and around Chaco Canyon, New Mexico. In Cultural Resources Remote Sensing, edited by Thomas R. Lyons and Frances Joan Mathien, pp. 169-207. Cultural Resources Management Division, National Park Service, Washington, D.C.'); INSERT INTO documentary_instance VALUES (572, 'The Role of Remote Sensing in a Regional Archaeological Research Design: A Case Study.', NULL, NULL, NULL, NULL, '1974', 0, NULL, 'Paper', NULL, NULL, NULL, NULL, NULL, 563, NULL, 'Ebert, James I., Robert K. Hitchcock, and Thomas R. Lyons 1974 The Role of Remote Sensing in a Regional Archaeological Research Design: A Case Study. Paper presented at the 39th Annual Meeting of the Society for American Archaeology, Washington, D.C. Published in 1976 by Ebert and Lyons. '); INSERT INTO documentary_instance VALUES (573, 'The Role of Remote Sensing in a Regional Archeological Research Design: A Case Study', NULL, NULL, NULL, NULL, '1976', 0, NULL, 'Report', '5 pages', NULL, NULL, 'Reports of the Chaco Center No. 1. National Park Service and University of New Mexico, Albuquerque. ', NULL, 564, NULL, 'Ebert, James I., and Thomas R. Lyons 1976 The Role of Remote Sensing in a Regional Archeological Research Design: A Case Study. In Remote Sensing Experiments in Cultural Resources Studies: Non-destructive Methods of Archeological Exploration, Survey, and Analysis, assembled by Thomas R. Lyons, pp. 5-9. Reports of the Chaco Center No. 1. National Park Service and University of New Mexico, Albuquerque. '); INSERT INTO documentary_instance VALUES (574, 'Remote Sensing in Archeology, Cultural Resources Treatment and Anthropology: The United States of America in 1979.', NULL, NULL, NULL, NULL, '1980a', 0, 'In Aerial Archaeology 5:1-19.', 'Journal', '20 pages', NULL, NULL, NULL, NULL, 565, NULL, 'Ebert, James I., and Thomas R. Lyons 1980a Remote Sensing in Archeology, Cultural Resources Treatment and Anthropology: The United States of America in 1979. In Aerial Archaeology 5:1-19.'); INSERT INTO documentary_instance VALUES (575, 'The Detection, Mitigation and Analysis of Remotely-Sensed, "Ephemeral" Archeological Evidence.', NULL, NULL, NULL, NULL, '1980b', 0, NULL, 'Journal', '4 pages', NULL, NULL, NULL, NULL, 566, NULL, 'Ebert, James I., and Thomas R. Lyons 1980b The Detection, Mitigation and Analysis of Remotely-Sensed, "Ephemeral" Archeological Evidence. In Cultural Resources Remote Sensing, edited by Thomas R. Lyons and Frances Joan Mathien, pp. 119-122. Cultural Resources Management Division, National Park Service, Washington, D.C. '); INSERT INTO documentary_instance VALUES (576, 'Comments on “Application of Orthophoto Mapping to Archaeological Problems.”', NULL, NULL, NULL, NULL, '1979', 0, ' American Antiquity 44(2):341-345.', 'Journal', '5 pages', NULL, NULL, NULL, NULL, 568, NULL, 'Ebert, James I., Thomas R. Lyons and Dwight L. Drager 1979 Comments on “Application of Orthophoto Mapping to Archaeological Problems.” American Antiquity 44(2):341-345. '); INSERT INTO documentary_instance VALUES (577, 'The Anasazi of Wide Ruin Wash and the Hopi Buttes.', NULL, NULL, NULL, NULL, '1994', 0, NULL, 'Journal', NULL, NULL, NULL, NULL, NULL, 569, NULL, 'Eck, David C. 1994 The Anasazi of Wide Ruin Wash and the Hopi Buttes. Volume XI in Across the Colorado Plateau. Anthropological Studies for the Transwestern Pipeline Expansion Project. Office of Contract Archeology and the Maxwell Museum of Anthropology, University of New Mexico, Albuquerque. '); INSERT INTO documentary_instance VALUES (578, 'Social Differentiation at Post-Chacoan Great House Sites: A View from the Hinkson Site, New Mexico.', NULL, NULL, NULL, NULL, '1995', 0, NULL, 'Paper', NULL, NULL, NULL, NULL, NULL, 570, NULL, 'Eckert, Suzanne L. 1995 Social Differentiation at Post-Chacoan Great House Sites: A View from the Hinkson Site, New Mexico. Paper presented at the 60th Annual Meeting of the Society for American Archaeology, Minneapolis. '); INSERT INTO documentary_instance VALUES (579, 'Chapter 5. Pueblo Bonito, Neil Judd Takes on the Southwest’s Greatest Archaeological Mystery. ', NULL, NULL, 'Santa Fe', 'School of American Research Press', '1995', 0, 'In Great Expectations, Tales of Early Southwestern Archaeology.', 'Book', NULL, NULL, NULL, NULL, NULL, 571, NULL, 'Elliott, Melinda 1995 Chapter 5. Pueblo Bonito, Neil Judd Takes on the Southwest’s Greatest Archaeological Mystery. In Great Expectations, Tales of Early Southwestern Archaeology. School of American Research Press, Santa Fe. '); INSERT INTO documentary_instance VALUES (580, 'The Probable Geological Sources of Some Obsidian Artifacts from Chaco Canyon', NULL, NULL, NULL, NULL, '1980', 0, 'Paper for Anthropology 420, University of New Mexico.', 'Ms. on file', NULL, NULL, NULL, 'Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. ', NULL, 572, NULL, 'Elliott, Michael Lee 1980 The Probable Geological Sources of Some Obsidian Artifacts from Chaco Canyon. Paper for Anthropology 420, University of New Mexico. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. '); INSERT INTO documentary_instance VALUES (581, 'Atlatl Cave and the Late Archaic Period in Chaco Canyon, New Mexico', NULL, NULL, NULL, NULL, '1986', 0, NULL, 'Unpublished M.A. thesis', NULL, NULL, NULL, NULL, NULL, 573, NULL, 'Elliott, Michael Lee 1986 Atlatl Cave and the Late Archaic Period in Chaco Canyon, New Mexico. Unpublished M.A. Thesis, Department of Anthropology, University of New Mexico, Albuquerque. '); INSERT INTO documentary_instance VALUES (582, 'The Anasazi: Mother to the Pueblos', NULL, NULL, NULL, NULL, '1967', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. ', NULL, 574, NULL, 'Ellis, Florence H. 1967 The Anasazi: Mother to the Pueblos. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. '); INSERT INTO documentary_instance VALUES (583, 'A Thousand Years of the Pueblo Sun-Moon-Star Calendar', NULL, NULL, NULL, NULL, '1975', 0, NULL, 'Book', '29 pages', NULL, NULL, NULL, NULL, 575, NULL, 'Ellis, Florence H. 1975 A Thousand Years of the Pueblo Sun-Moon-Star Calendar. In Archaeoastronomy in Pre-Columbian America, edited by Anthony F. Aveni, pp. 59-87. University of Texas, Austin. '); INSERT INTO documentary_instance VALUES (584, 'The Spread of Chaco/Mesa Verde/McElmo Black-on-white Pottery and the Possible Simultaneous Introduction of Irrigation into the Rio Grande Drainage.', NULL, NULL, NULL, NULL, '1980', 0, 'Journal of Anthropological Research 45:47-53.', 'Journal', '7 pages', NULL, NULL, NULL, NULL, 576, NULL, 'Ellis, Florence H., and Andrea Ellis Dodge 1980 The Spread of Chaco/Mesa Verde/McElmo Black-on-white Pottery and the Possible Simultaneous Introduction of Irrigation into the Rio Grande Drainage. Journal of Anthropological Research 45:47-53. '); INSERT INTO documentary_instance VALUES (585, 'The Changing Image of the Anasazi World in the American Imagination', NULL, NULL, 'Albuquerque', 'University of New Mexico Press', '1997', 0, NULL, 'Book', '8 pages', NULL, NULL, NULL, NULL, 577, NULL, 'Ellis, Richard 1997 The Changing Image of the Anasazi World in the American Imagination. In Anasazi Architecture and American Design, edited by Baker H. Morrow and V. B. Price, pp. 16-23. University of New Mexico Press, Albuquerque. '); INSERT INTO documentary_instance VALUES (586, 'Ethnobotany of the Navajo of the Chaco Canyon.', NULL, NULL, NULL, NULL, NULL, 0, 'Paper for Field Course 199', 'Ms. on file, Paper', NULL, NULL, NULL, '. Ms. on file, Laboratory of Anthropology and School of American Research, Santa Fe, and University of Southern California. ', NULL, 578, NULL, 'Elmore, Francis H. 1936 Ethnobotany of the Navajo of the Chaco Canyon. Paper for Field Course 199. Ms. on file, Laboratory of Anthropology and School of American Research, Santa Fe, and University of Southern California. '); INSERT INTO documentary_instance VALUES (587, 'Great Sanctuary.', NULL, NULL, NULL, NULL, '1942', 0, 'Desert Magazine 5:23.', 'Journal', '1 page', NULL, NULL, NULL, NULL, 579, NULL, 'Elmore, Francis H. 1942 Great Sanctuary. Desert Magazine 5:23.'); INSERT INTO documentary_instance VALUES (588, 'Ethnobotany of the Navajo', NULL, NULL, NULL, NULL, '1943', 0, NULL, 'Journal', NULL, NULL, NULL, NULL, NULL, 580, NULL, 'Elmore, Francis H. 1943 Ethnobotany of the Navajo. University of New Mexico Bulletin Monograph Series 1(7), Albuquerque, and Monograph No. 8, School of American Research, Santa Fe. University of New Mexico Press, Albuquerque.'); INSERT INTO documentary_instance VALUES (589, 'The Secret Story of Pueblo Bonito.', NULL, NULL, 'New York', 'Scholastic Book Services', '1963', 0, NULL, 'Book', NULL, NULL, NULL, NULL, NULL, 581, NULL, 'Elting, Mary, and Michael Folson 1963 The Secret Story of Pueblo Bonito. Scholastic Book Services, New York. '); INSERT INTO documentary_instance VALUES (590, 'Chaco Canyon Field Report', NULL, NULL, NULL, NULL, '1934', 0, NULL, 'Field Report', NULL, NULL, NULL, 'Archive 1835, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. ', NULL, 582, NULL, 'Ely, Albert Grim 1934 Chaco Canyon Field Report. Archive 1835, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. '); INSERT INTO documentary_instance VALUES (591, 'Strontium Isotopes Reveal Distant Sources of Architectural Timber in Chaco Canyon, New Mexico.', NULL, NULL, NULL, NULL, '2001', 0, 'Proceedings of the National Academy of Science 98(21):11891-11896.', 'Journal', '6 pages', NULL, NULL, NULL, NULL, 583, NULL, 'English, Nathan B., Julio L. Betancourt, Jeffrey S. Dean, and Jay Quade 2001 Strontium Isotopes Reveal Distant Sources of Architectural Timber in Chaco Canyon, New Mexico. Proceedings of the National Academy of Science 98(21):11891-11896. '); INSERT INTO documentary_instance VALUES (592, 'The Cliff Dwellers', NULL, NULL, NULL, NULL, '1912', 0, NULL, 'Book', '16 pages', NULL, NULL, NULL, NULL, 584, NULL, 'Enock, C. Reginald 1912 The Cliff Dwellers. In The Secret of the Pacific by C. Reginald Enock, pp. 77-92. Scribner’s, New York. '); INSERT INTO documentary_instance VALUES (593, 'Archaeo-Environmental Analysis of the Upper Chaco Drainage Basin, New Mexico', NULL, NULL, NULL, NULL, '1969', 0, 'Yearbook of the American Philosophical Society, 1970, pp. 308-310.', 'Journal', '3 pages', NULL, NULL, NULL, NULL, 585, NULL, 'Everett, A. Gordon 1969 Archaeo-Environmental Analysis of the Upper Chaco Drainage Basin, New Mexico. Yearbook of the American Philosophical Society, 1970, pp. 308-310. '); INSERT INTO documentary_instance VALUES (594, 'Ethnography, Remote Sensing, and Cultural Resources Management', NULL, NULL, NULL, NULL, '1978a', 0, NULL, 'Journal', '2 pages', NULL, NULL, NULL, NULL, 586, NULL, 'Fanale, Rosalie 1978a Ethnography, Remote Sensing, and Cultural Resources Management. Cultural Resources Management Bulletin 1(3):11-12. National Park Service, Washington. '); INSERT INTO documentary_instance VALUES (595, 'Research Proposal Topic: "Environment, Industry and Economy": The Navajo Livestock Industry in Historical Perspective.', NULL, NULL, NULL, NULL, '1978b', 1, NULL, 'Report', NULL, NULL, NULL, 'Ms. on file, NPS, Intermountain Region, Santa Fe Office', NULL, 587, NULL, 'Fanale, Rosalie 1978b* Research Proposal Topic: "Environment, Industry and Economy": The Navajo Livestock Industry in Historical Perspective. Ms. on file, NPS, Intermountain Region, Santa Fe Office'); INSERT INTO documentary_instance VALUES (596, 'San Juan Basin Ethnographic Project Report No. 1: Introduction and Sampling Procedures.', NULL, NULL, NULL, NULL, '1978c', 0, NULL, 'Ms. on file, report', NULL, NULL, NULL, ' Ms. on file, NPS, Intermountain Region, Santa Fe Office.', NULL, 588, NULL, 'Fanale, Rosalie 1978c* San Juan Basin Ethnographic Project Report No. 1: Introduction and Sampling Procedures. Ms. on file, NPS, Intermountain Region, Santa Fe Office.'); INSERT INTO documentary_instance VALUES (597, 'San Juan Basin Ethnographic Project Report No. 2: Ethnographic Stratification of the San Juan Basin.', NULL, NULL, NULL, NULL, '1978d', 0, NULL, 'Ms.on file, report', NULL, NULL, NULL, 'MS. on file, NPS, Intermountain Region, Santa Fe Office.', NULL, 589, NULL, 'Fanale, Rosalie 1978d* San Juan Basin Ethnographic Project Report No. 2: Ethnographic Stratification of the San Juan Basin. MS. on file, NPS, Intermountain Region, Santa Fe Office.'); INSERT INTO documentary_instance VALUES (598, 'Navajo Land and Land Management: A Century of Change.', NULL, NULL, NULL, NULL, '1982', 0, NULL, 'Unpublished Ph.D. dissertation', NULL, NULL, NULL, NULL, NULL, 590, NULL, 'Fanale, Rosalie 1982 Navajo Land and Land Management: A Century of Change. Unpublished Ph.D. dissertation, Department of Anthropology, The Catholic University of America, Washington, D.C. '); INSERT INTO documentary_instance VALUES (599, 'Environmental Mapping for Cultural Resources Management: The Navajo Indian Irrigation Project.', NULL, NULL, NULL, NULL, '1983', 0, NULL, 'Book', '20 pages', NULL, NULL, NULL, NULL, 591, NULL, 'Fanale, Rosalie, and Dwight L. Drager 1983 Environmental Mapping for Cultural Resources Management: The Navajo Indian Irrigation Project. In Remote Sensing in Cultural Resource Management: The San Juan Basin Project, edited by Dwight L. Drager and Thomas R. Lyons, pp. 57-76. Cultural Resources Management Division, National Park Service, Washington, D.C. '); INSERT INTO documentary_instance VALUES (600, 'Remote Sensing Measurement of Indicators of Desertification and their Cultural Correlates.', NULL, NULL, NULL, NULL, '1978', 0, NULL, 'Journal', '1 page', NULL, NULL, NULL, NULL, 592, NULL, 'Fanale, Rosalie, James I. Ebert, and Thomas R. Lyons 1978 Remote Sensing Measurement of Indicators of Desertification and their Cultural Correlates. Proceedings of the American Society of Photogrammetry Fall Technical Meetings, Albuquerque, New Mexico. October 15-20, 1978, p. 193. American Society of Photogrammetry, Falls Church, VA. '); INSERT INTO documentary_instance VALUES (601, '[The Pueblo Bonito Ruin, Chaco Canyon.] ', NULL, NULL, ' Philadelphia', 'J. B. Lippincott Co.', '1920', 0, 'In Seeing the Far West, by John T. Faris, p. 143. ', 'Book', '1 page', NULL, NULL, NULL, NULL, 593, NULL, 'Faris, John T. 1920 [The Pueblo Bonito Ruin, Chaco Canyon.] In Seeing the Far West, by John T. Faris, p. 143. J. B. Lippincott Co., Philadelphia. '); INSERT INTO documentary_instance VALUES (602, 'Opening the Fourth World: The Semiotics of Anasazi Sun Daggers', NULL, NULL, NULL, NULL, '1996', 0, NULL, 'Paper', NULL, NULL, NULL, NULL, NULL, 594, NULL, 'Farmer, James D. 1996 Opening the Fourth World: The Semiotics of Anasazi Sun Daggers. Paper presented at the 61st Annual Meeting of the Society for American Archaeology, New Orleans. '); INSERT INTO documentary_instance VALUES (603, '“When Pueblo met Chetro”: Turner’s Mexican Hypothesis and the Evolution of Chaco Great House Architecture', NULL, NULL, NULL, NULL, '2002', 0, NULL, 'Paper', NULL, NULL, NULL, NULL, NULL, 595, NULL, 'Farmer, James D. 2002 “When Pueblo met Chetro”: Turner’s Mexican Hypothesis and the Evolution of Chaco Great House Architecture. Paper presented at the 67th Annual Meeting of the Society for American Archaeology, Denver.'); INSERT INTO documentary_instance VALUES (604, 'Astronomy and Ritual in Chaco Canyon', NULL, NULL, 'Washington, D.C.', 'Smithsonian Institution Press', '2003', 0, 'In Pueblo Bonito: Center of the Chacoan World, edited by Jill E. Neitzel,', 'Book', NULL, NULL, NULL, NULL, NULL, 596, NULL, 'Farmer, James D. 2003 Astronomy and Ritual in Chaco Canyon. In Pueblo Bonito: Center of the Chacoan World, edited by Jill E. Neitzel, pp. . Smithsonian Institution Press, Washington, D.C. '); INSERT INTO documentary_instance VALUES (605, 'Field and Laboratory Reports, Archaeological Work Done in the Old Navajo Country, Summer of 1938.', NULL, NULL, NULL, NULL, '1939', 0, NULL, 'Ms. on file, reports', NULL, NULL, NULL, ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. ', NULL, 597, NULL, 'Farmer, Malcolm F. 1939 Field and Laboratory Reports, Archaeological Work Done in the Old Navajo Country, Summer of 1938. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. '); INSERT INTO documentary_instance VALUES (606, 'The Peach Springs Survey: A Cultural Resources Survey and Inventory along New Mexico State Road 566, McKinley County, for the New Mexico State Highway Department.', NULL, NULL, NULL, NULL, '1980', 0, NULL, 'Notes', NULL, NULL, NULL, 'Laboratory of Anthropology Notes 160. Museum of New Mexico, Santa Fe.', NULL, 598, NULL, 'Farwell, Robin E. 1980 The Peach Springs Survey: A Cultural Resources Survey and Inventory along New Mexico State Road 566, McKinley County, for the New Mexico State Highway Department. Laboratory of Anthropology Notes 160. Museum of New Mexico, Santa Fe. '); INSERT INTO documentary_instance VALUES (607, 'An Outside Perspective on Chaco Canyon.', NULL, NULL, NULL, NULL, '1992', 0, NULL, 'Paper', '6 pages', NULL, NULL, NULL, NULL, 599, NULL, 'Feinman, Gary M. 1992 An Outside Perspective on Chaco Canyon. In Anasazi Regional Organization and the Chaco System, edited by David E. Doyel, pp. 177-182. Anthropological Papers No. 5. Maxwell Museum of Anthropology, University of New Mexico, Albuquerque. '); INSERT INTO documentary_instance VALUES (608, 'Dual-processual Theory and Social Formations in the Southwest', NULL, NULL, 'Tucson', 'University of Arizona Press', '2000', 0, NULL, 'Book', '18 pages', NULL, NULL, NULL, NULL, 600, NULL, 'Feinman, Gary M. 2000 Dual-processual Theory and Social Formations in the Southwest. In Alternative Leadership Strategies in the Prehispanic Southwest edited by Barbara J. Mills, pp. 207-224. University of Arizona Press, Tucson'); INSERT INTO documentary_instance VALUES (609, 'Political Hierarchies and Organizational Strategies in the Puebloan Southwest', NULL, NULL, NULL, NULL, '2000', 0, 'American Antiquity 65(3):449-470.', 'Journal', '22 pages', NULL, NULL, NULL, NULL, 601, NULL, 'Feinman, Gary M., Kent G. Lightfoot, and Steadman Upham 2000 Political Hierarchies and Organizational Strategies in the Puebloan Southwest. American Antiquity 65(3):449-470. '); INSERT INTO documentary_instance VALUES (610, 'Too Many Types: An Overview of Sedentary Pre-State Societies in the Americas.', NULL, NULL, 'New York', 'Academic Press', '1984', 0, NULL, 'Book', '64 pages', NULL, NULL, NULL, NULL, 602, NULL, 'Feinman, Gary, and Jill Neitzel 1984 Too Many Types: An Overview of Sedentary Pre-State Societies in the Americas. In Advances in Archaeological Method and Theory, Vol. 7, edited by Michael B. Schiffer, pp. 39-102. Academic Press, New York. '); INSERT INTO documentary_instance VALUES (611, 'Additional Lirian Compass Dial Inscriptions from Spain and New Mexico', NULL, NULL, NULL, NULL, '1977', 0, 'OPES 6(118). November.', 'Journal', NULL, NULL, NULL, NULL, NULL, 603, NULL, 'Fell, Barry 1977 Additional Lirian Compass Dial Inscriptions from Spain and New Mexico. OPES 6(118). November. '); INSERT INTO documentary_instance VALUES (612, 'Chemical Stabilization of Prehistoric Structures at Chaco Canyon National Monument: First Annual Report.', NULL, NULL, NULL, NULL, '1976', 0, NULL, 'Ms. on file, report', NULL, NULL, NULL, 'Ms. on file, National Park Service, Intermountain Region, Santa Fe Office. ', NULL, 604, NULL, 'Fenn, Dennis B. 1976 Chemical Stabilization of Prehistoric Structures at Chaco Canyon National Monument: First Annual Report. Ms. on file, National Park Service, Intermountain Region, Santa Fe Office. '); INSERT INTO documentary_instance VALUES (613, 'Chemical Stabilization of Prehistoric Structures at Chaco Canyon National Monument: Second Annual Report', NULL, NULL, NULL, NULL, '1977', 0, NULL, 'Ms. on file, report', NULL, NULL, NULL, ' Ms. on file, National Park Service, Intermountain Region, Santa Fe Office.', NULL, 605, NULL, 'Fenn, Dennis B. 1977 Chemical Stabilization of Prehistoric Structures at Chaco Canyon National Monument: Second Annual Report. Ms. on file, National Park Service, Intermountain Region, Santa Fe Office. '); INSERT INTO documentary_instance VALUES (614, 'Chemical Methods of Ruins Stabilization.', NULL, NULL, NULL, NULL, '1979', 0, NULL, 'Report', '5 pages', NULL, NULL, NULL, NULL, 606, NULL, 'Fenn, Dennis B., and Raymond E. Burge 1979 Chemical Methods of Ruins Stabilization. In Proceedings of the First Conference on Scientific Research in the National Parks. Volume 2, edited by Robert M. Linn, pp. 929-933. National Park Service Transactions and Proceedings Series No. 5. Washington, D.C. '); INSERT INTO documentary_instance VALUES (615, 'Third Annual Report, Chemical Stabilization of Prehistoric Structures at Chaco Canyon National Monument.', NULL, NULL, NULL, NULL, '1978', 0, NULL, 'Ms. on file, report', NULL, NULL, NULL, 'Ms. on file, National Park Service, Intermountain Region, Santa Fe Office. ', NULL, 607, NULL, 'Fenn, Dennis B., and John R. Deck 1978 Third Annual Report, Chemical Stabilization of Prehistoric Structures at Chaco Canyon National Monument. Ms. on file, National Park Service, Intermountain Region, Santa Fe Office. '); INSERT INTO documentary_instance VALUES (616, 'Chemical Stabilization Methods at Chaco Canyon National Monument and Bent’s Old Fort National Historic Site', NULL, NULL, NULL, NULL, 'n.d.', 0, NULL, 'Report', NULL, NULL, NULL, 'Ms. on file, National Park Service, Intermountain Region, Santa Fe Office.', NULL, 2617, NULL, 'Fenn, Dennis B., John R. Deck, Walter P. Herriman, and John R. Vincent n.d. Chemical Stabilization Methods at Chaco Canyon National Monument and Bent’s Old Fort National Historic Site. Ms. on file, National Park Service, Intermountain Region, Santa Fe Office. '); INSERT INTO documentary_instance VALUES (617, 'A Surface Jacal Site in the Chaco Basin.', NULL, NULL, NULL, NULL, '1954', 0, 'El Palacio 61(2):35-42.', 'Journal', '8 pages', NULL, NULL, NULL, NULL, 608, NULL, 'Ferdon, Edwin N. 1954 A Surface Jacal Site in the Chaco Basin. El Palacio 61(2):35-42. '); INSERT INTO documentary_instance VALUES (618, 'A Trial Survey of Mexican-Southwestern Architectural Parallels', NULL, NULL, NULL, NULL, '1955', 0, 'Monograph No. 21. School of American Research, Santa Fe.', 'Report', NULL, NULL, NULL, NULL, NULL, 609, NULL, 'Ferdon, Edwin N. 1955 A Trial Survey of Mexican-Southwestern Architectural Parallels. Monograph No. 21. School of American Research, Santa Fe. '); INSERT INTO documentary_instance VALUES (619, 'A Study of the Architectures of the Chaco Canon Indians, the Province of Tusayan and the Indians of the Seven Cities of Cibola.', NULL, NULL, NULL, NULL, '1931a', 0, NULL, 'Paper', NULL, NULL, NULL, 'Archive 1882, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.', NULL, 610, NULL, 'Ferguson, Marjorie E. 1931a A Study of the Architectures of the Chaco Canon Indians, the Province of Tusayan and the Indians of the Seven Cities of Cibola. Archive 1882, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. '); INSERT INTO documentary_instance VALUES (620, 'Chaco Cañon Notes', NULL, NULL, NULL, NULL, '1931b', 0, NULL, 'Notes', NULL, NULL, NULL, 'Archive 1857, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.', NULL, 611, NULL, 'Ferguson, Marjorie E. 1931b Chaco Cañon Notes. Archive 1857, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO documentary_instance VALUES (621, 'Museum Notes on the Chaco Cañon Excavation.', NULL, NULL, NULL, NULL, 'n.d.', 0, NULL, NULL, NULL, NULL, NULL, 'Archive 1863, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.', NULL, 2618, NULL, 'Ferguson, Marjorie E. n.d. Museum Notes on the Chaco Cañon Excavation. Archive 1863, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. '); INSERT INTO documentary_instance VALUES (622, '[The Pueblo Bonito Ruin, Chaco Canyon.] ', NULL, NULL, NULL, NULL, '1933', 0, 'In Rio Grande, by Harvey Fergusson, pp. 21-22. Alfred A. Knopf, New York.', 'Book', '2 pages', NULL, NULL, NULL, NULL, 612, NULL, 'Fergusson, Harvey 1933 [The Pueblo Bonito Ruin, Chaco Canyon.] In Rio Grande, by Harvey Fergusson, pp. 21-22. Alfred A. Knopf, New York. '); INSERT INTO documentary_instance VALUES (623, 'Prehistoric Towers and Castles of the Southwest.', NULL, NULL, NULL, NULL, '1918', 0, 'Art and Archaeology 9:353-366.', 'Journal', '14 pages', NULL, NULL, NULL, NULL, 613, NULL, 'Fewkes, Jesse W. 1918 Prehistoric Towers and Castles of the Southwest. Art and Archaeology 9:353-366. '); INSERT INTO documentary_instance VALUES (624, '[Types of Ruins at Chaco Canyon, Casa Grande, and Mesa Verde.]', NULL, NULL, 'Washington, D.C.', 'Government Printing Office', '1919', 0, ' Bureau of American Ethnology Bulletin 70:68-76.', 'Journal', '9 pages', NULL, NULL, NULL, NULL, 614, NULL, 'Fewkes, Jesse W. 1919 [Types of Ruins at Chaco Canyon, Casa Grande, and Mesa Verde.] Bureau of American Ethnology Bulletin 70:68-76. Government Printing Office, Washington, D.C. '); INSERT INTO documentary_instance VALUES (625, 'Implements of Percussion and Abrasion Found in Bc 51.', NULL, NULL, NULL, NULL, '1937', 0, NULL, 'Report', NULL, NULL, NULL, 'Archive 1731B, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.', NULL, 615, NULL, 'Field, Thomas 1937 Implements of Percussion and Abrasion Found in Bc 51. Archive 1731B, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. '); INSERT INTO documentary_instance VALUES (626, 'Leaving More than Footprints”: Modern Votive Offerings at Chaco Canyon Pre-historic Site.', NULL, NULL, NULL, NULL, '1997', 0, 'Antiquity 71:271:169-178.', 'Journal', '10 pages', NULL, NULL, NULL, NULL, 616, NULL, 'Finn, C. 1997 “Leaving More than Footprints”: Modern Votive Offerings at Chaco Canyon Pre-historic Site. Antiquity 71:271:169-178. '); INSERT INTO documentary_instance VALUES (627, 'How Complex Were the Southwestern Great Towns’ Polities?', NULL, NULL, NULL, NULL, '1999', 0, NULL, 'Book', '14 pages', NULL, NULL, NULL, NULL, 617, NULL, 'Fish, Suzanne K. 1999 How Complex Were the Southwestern Great Towns’ Polities? In Great Towns and Regional Polities in the Prehistoric American Southwest and Southeast, edited by Jill E. Neitzel, pp. 45-58. The Amerind Foundation, Dragoon, and University of New Mexico Press, Albuquerque. '); INSERT INTO documentary_instance VALUES (628, 'How Great Were the Polities of the Southwest and Southeast?', NULL, NULL, NULL, NULL, '1999', 0, NULL, 'Book', '6 pages', NULL, NULL, NULL, NULL, 618, NULL, 'Fish, Suzanne, K., and J. F. Scarry 1999 How Great Were the Polities of the Southwest and Southeast? In Great Towns and Regional Polities in the Prehistoric American Southwest, edited by Jill E. Neitzel, pp. 75-80. The Amerind Foundation, Dragoon, and University of New Mexico Press, Albuquerque. '); INSERT INTO documentary_instance VALUES (629, 'General Observations of the Excavations at Chetro Ketl in 1931', NULL, NULL, NULL, NULL, '1931a', 0, NULL, 'Paper', NULL, NULL, NULL, 'Archive 1837, 1865, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. ', NULL, 619, NULL, 'Fisher, Grace 1931a General Observations of the Excavations at Chetro Ketl in 1931. Archive 1837, 1865, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. '); INSERT INTO documentary_instance VALUES (630, 'Notes on the First Week’s Work on the Great Bowl.', NULL, NULL, NULL, NULL, '1931b', 0, NULL, 'Notes', NULL, NULL, NULL, 'Archive 1865, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.', NULL, 620, NULL, 'Fisher, Grace 1931b Notes on the First Week’s Work on the Great Bowl. Archive 1865, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO documentary_instance VALUES (631, 'Chetro Ketl Notes', NULL, NULL, NULL, NULL, '1931c', 0, NULL, 'Notes', NULL, NULL, NULL, 'Archive 1865, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.', NULL, 621, NULL, 'Fisher, Grace 1931c Chetro Ketl Notes. Archive 1865, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO documentary_instance VALUES (632, 'Chetro Ketl Masonry. ', NULL, NULL, NULL, NULL, '1931d', 0, NULL, 'Paper', NULL, NULL, NULL, 'Archive 1867, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.', NULL, 622, NULL, 'Fisher, Grace 1931d Chetro Ketl Masonry. Archive 1867, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO documentary_instance VALUES (633, 'Physiographic Changes in the Chaco Canyon.', NULL, NULL, NULL, NULL, '1930a', 1, 'Farmington Time-Hustler 41(19).', 'Journal', NULL, NULL, NULL, NULL, NULL, 623, NULL, 'Fisher, Reginald G. 1930a* Physiographic Changes in the Chaco Canyon. Farmington Time-Hustler 41(19). '); INSERT INTO documentary_instance VALUES (634, 'The Archeological Survey of the Pueblo Plateau. ', NULL, NULL, NULL, NULL, '1930b', 0, NULL, 'Journal', NULL, NULL, NULL, NULL, NULL, 624, NULL, 'Fisher, Reginald G. 1930b The Archeological Survey of the Pueblo Plateau. UNM Bulletin Archeological Series Vol. I, No. 1. University of New Mexico, Albuquerque.'); INSERT INTO documentary_instance VALUES (635, 'The State Archaeological Survey of New Mexico.', NULL, NULL, NULL, NULL, '1931', 0, 'El Palacio 31(21-25):390-391.', 'Journal', '2 pages', NULL, NULL, NULL, NULL, 625, NULL, 'Fisher, Reginald G. 1931 The State Archaeological Survey of New Mexico. El Palacio 31(21-25):390-391.'); INSERT INTO documentary_instance VALUES (636, 'Engineering in Southwestern Excavation and Research', NULL, NULL, NULL, NULL, '1932', 0, 'El Palacio 34(15-16):116-120.', 'Journal', '5 pages', NULL, NULL, NULL, NULL, 626, NULL, 'Fisher, Reginald G. 1932 Engineering in Southwestern Excavation and Research. El Palacio 34(15-16):116-120.'); INSERT INTO documentary_instance VALUES (637, 'The Chaco Canyon in 1934.', NULL, NULL, NULL, NULL, '1934a', 0, ' El Palacio 37(15-16):117-132. Santa Fe.', 'Journal', '16 pages', NULL, NULL, NULL, NULL, 627, NULL, 'Fisher, Reginald G. 1934a The Chaco Canyon in 1934. El Palacio 37(15-16):117-132. Santa Fe.'); INSERT INTO documentary_instance VALUES (638, 'Some Geographic Factors that Influenced the Ancient Population of Chaco Canyon, New Mexico.', NULL, NULL, NULL, NULL, '1934b', 0, NULL, 'Journal', NULL, NULL, NULL, NULL, NULL, 628, NULL, 'Fisher, Reginald G. 1934b Some Geographic Factors that Influenced the Ancient Population of Chaco Canyon, New Mexico. University of New Mexico Bulletin 244, Archaeology Series 3(1). University of New Mexico, Albuquerque.'); INSERT INTO documentary_instance VALUES (639, 'Excavations at the Eleanor Site, ENM 883: A Brief Interim Report', NULL, NULL, NULL, NULL, '1974', 0, NULL, 'Ms. on file, report', NULL, NULL, NULL, 'Ms on file, Agency for Conservation Archaeology, Eastern New Mexico University, Portales. ', NULL, 629, NULL, 'Flam, Louis 1974 Excavations at the Eleanor Site, ENM 883: A Brief Interim Report. Ms on file, Agency for Conservation Archaeology, Eastern New Mexico University, Portales. '); INSERT INTO documentary_instance VALUES (640, 'Chaco Canyon: Mystery of the Pueblos', NULL, NULL, NULL, NULL, '198-*', 1, 'Archaeology Magazine ', 'Journal', NULL, NULL, NULL, NULL, NULL, 630, NULL, 'Fleming, Stuart 198-* Chaco Canyon: Mystery of the Pueblos. Archaeology Magazine '); INSERT INTO documentary_instance VALUES (641, 'Archaeological Data Recovery Excavations at the Sanders Great House and Six Other Sites along U.S. Highway 191, South of Sanders, Apache County, Arizona', NULL, NULL, NULL, NULL, '1994', 0, 'Zuni Archaeological Program/ Report 471, Research Series No. 9. Pueblo of Zuni.', 'Report', NULL, NULL, NULL, NULL, NULL, 631, NULL, 'Fletcher, Thomas F. (editor) 1994 Archaeological Data Recovery Excavations at the Sanders Great House and Six Other Sites along U.S. Highway 191, South of Sanders, Apache County, Arizona. Zuni Archaeological Program/ Report 471, Research Series No. 9. Pueblo of Zuni. '); INSERT INTO documentary_instance VALUES (642, 'Chacoesque: Chaco-like Great Pueblo Architecture Outside Chaco Canyon', NULL, NULL, 'Albuquerque.', 'Century Graphics/Printing', '1989', 0, NULL, 'Book', NULL, NULL, NULL, NULL, NULL, 632, NULL, 'Flint, Richard, and Shirley Cushing Flint 1989 Chacoesque: Chaco-like Great Pueblo Architecture Outside Chaco Canyon. Century Graphics/Printing, Albuquerque. '); INSERT INTO documentary_instance VALUES (643, 'Vegetation Studies at Chaco Culture National Historical Park', NULL, NULL, NULL, NULL, '1995', 0, 'Ms. Final report to SPMA and Environmental Studies Program, Prescott College.', 'Report', NULL, NULL, NULL, NULL, NULL, 633, NULL, 'Floyd-Hanna, Lisa and David Hanna 1995 Vegetation Studies at Chaco Culture National Historical Park. Ms. Final report to SPMA and Environmental Studies Program, Prescott College. '); INSERT INTO documentary_instance VALUES (644, 'Vegetation Inventory of Chaco Culture National Historic Park. Final Report', NULL, NULL, NULL, NULL, '1993', 0, NULL, 'Ms. on file, report', NULL, NULL, NULL, 'Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. ', NULL, 634, NULL, 'Floyd-Hanna, Lisa, David D. Hanna, Frank Hays, and Ken Heil 1993 Vegetation Inventory of Chaco Culture National Historic Park. Final Report. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. '); INSERT INTO documentary_instance VALUES (645, 'Chaco Canyon 1971 Archaeological Survey Site Sketch Maps.', NULL, NULL, NULL, NULL, '1971', 0, NULL, 'Ms. on file, maps', NULL, NULL, NULL, 'Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. ', NULL, 635, NULL, 'Flynn, Leo L., Jr. 1971 Chaco Canyon 1971 Archaeological Survey Site Sketch Maps. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. '); INSERT INTO documentary_instance VALUES (646, 'Investigations of Classic Pueblo Occupation of Chaco Canyon, New Mexico (Part I. Classic Pueblo Size and Population Estimates, and Part II. Time Period of Classic Development).', NULL, NULL, NULL, NULL, '1973', 0, NULL, 'Ms. on file', NULL, NULL, NULL, ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.', NULL, 636, NULL, 'Flynn, Leo L., Jr. 1973 Investigations of Classic Pueblo Occupation of Chaco Canyon, New Mexico (Part I. Classic Pueblo Size and Population Estimates, and Part II. Time Period of Classic Development). Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO documentary_instance VALUES (647, 'Report on the Mapping of Linearities from 1930s Aerial Photography for the Bisti-Star Lake Coal Lease Area, San Juan Basin, New Mexico.', NULL, NULL, NULL, NULL, '1981', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.', NULL, 637, NULL, 'Flynn, Leo L., Jr. 1981 Report on the Mapping of Linearities from 1930s Aerial Photography for the Bisti-Star Lake Coal Lease Area, San Juan Basin, New Mexico. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO documentary_instance VALUES (648, 'Report on Work in Chaco Canyon, June 10-July 8, 1931', NULL, NULL, NULL, NULL, '1931', 0, NULL, 'Report', NULL, NULL, NULL, 'Archive 1862, 1931, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.', NULL, 638, NULL, 'Foraker, Margaret 1931 Report on Work in Chaco Canyon, June 10-July 8, 1931. Archive 1862, 1931, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. '); INSERT INTO documentary_instance VALUES (649, 'Relation of “Bonito” Paleo-channels and Base-level Variations to Anasazi Occupation, Chaco Canyon, New Mexico', NULL, NULL, NULL, NULL, '2002', 0, NULL, 'Paper', NULL, NULL, NULL, NULL, NULL, 639, NULL, 'Force, Eric R., R. Gwinn Vivian, Thomas C. Windes and Jeffrey S. Dean 2002 Relation of “Bonito” Paleo-channels and Base-level Variations to Anasazi Occupation, Chaco Canyon, New Mexico. Arizona State Museum Archaeological Series No. 194. The University of Arizona, Tucson. '); INSERT INTO documentary_instance VALUES (650, 'Preliminary Report of Investigations at 29SJ1426. ', NULL, NULL, NULL, NULL, '1985', 0, NULL, 'Ms. on file, report', NULL, NULL, NULL, 'Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. ', NULL, 640, NULL, 'Ford, Dabney A. 1985 Preliminary Report of Investigations at 29SJ1426. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. '); INSERT INTO documentary_instance VALUES (651, 'Architecture on Fajada Butte.', NULL, NULL, NULL, NULL, '1993', 0, NULL, 'Book', NULL, NULL, NULL, NULL, NULL, 641, NULL, 'Ford, Dabney A. 1993 Architecture on Fajada Butte. Appendix H in The Spadefoot Toad Site: Investigations at 29SJ629, Chaco Canyon, New Mexico. Reports of the Chaco Center No. 12. National Park Service, Santa Fe. '); INSERT INTO documentary_instance VALUES (652, 'A Remarkable Carbonaceous Deposit near Putnam, New Mexico', NULL, NULL, NULL, NULL, '1913', 0, ' Economic Geology 8:360-368', 'Journal', '9 pages', NULL, NULL, NULL, NULL, 642, NULL, 'Foster, W. 1913 A Remarkable Carbonaceous Deposit near Putnam, New Mexico. Economic Geology 8:360-368. '); INSERT INTO documentary_instance VALUES (653, 'Archaeological Reconnaissance of Selected Ruins on the Navajo Indian Reservation.', NULL, NULL, NULL, NULL, '1986', 0, NULL, 'Report', NULL, NULL, NULL, NULL, NULL, 643, NULL, 'Fowler, Andrew P. 1986 Archaeological Reconnaissance of Selected Ruins on the Navajo Indian Reservation. Cultural Resources Management Program Report No. 86-123. Navajo Nation, Window Rock, AZ. '); INSERT INTO documentary_instance VALUES (654, 'The Anasazi Great House in Space, Time, and Paradigm', NULL, NULL, NULL, NULL, '1992', 0, NULL, 'Journal', '22 pages', NULL, NULL, NULL, NULL, 644, NULL, 'Fowler, Andrew P., and John R. Stein 1992 The Anasazi Great House in Space, Time, and Paradigm. In Anasazi Regional Organization and the Chaco System, edited by David E. Doyel, pp. 101-122. Anthropological Papers No. 5. Maxwell Museum of Anthropology, University of New Mexico, Albuquerque. '); INSERT INTO documentary_instance VALUES (655, 'An Archaeological Reconnaissance of West-Central New Mexico: The Anasazi Monuments Program.', NULL, NULL, NULL, NULL, '1987', 0, NULL, 'Paper', NULL, NULL, NULL, NULL, NULL, 645, NULL, 'Fowler, Andrew P., John R. Stein, and Roger Anyon 1987 An Archaeological Reconnaissance of West-Central New Mexico: The Anasazi Monuments Program. Ms. presented to the Office of Contract Archeology, University of New Mexico, and the Historic Preservation Department, Santa Fe. '); INSERT INTO documentary_instance VALUES (656, 'AMNH and USNM vs. AIA and SAR: The Battle for Control of Chaco Canyon, 1900-1930.', NULL, NULL, NULL, NULL, '1998', 0, NULL, 'Paper', NULL, NULL, NULL, NULL, NULL, 646, NULL, 'Fowler, Don 1998 AMNH and USNM vs. AIA and SAR: The Battle for Control of Chaco Canyon, 1900-1930. Paper presented at the 6erd Annual Meeting of the Society for American Archaeology, Seattle. '); INSERT INTO documentary_instance VALUES (657, 'A Laboratory for Anthropology: Science and Romanticism in the American Southwest, 1846-1930.', NULL, NULL, 'Albuquerque', 'University of New Mexico Press', '2000', 0, NULL, 'Book', NULL, NULL, NULL, NULL, NULL, 647, NULL, 'Fowler, Don 2000 A Laboratory for Anthropology: Science and Romanticism in the American Southwest, 1846-1930. University of New Mexico Press, Albuquerque. '); INSERT INTO documentary_instance VALUES (658, 'Refiring Analysis of Corrugated Sherds from Chaco Canyon', NULL, NULL, NULL, NULL, '1979', 0, NULL, 'Ms. on file', NULL, NULL, NULL, ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. ', NULL, 648, NULL, 'Franklin, Hayward H. 1979 Refiring Analysis of Corrugated Sherds from Chaco Canyon. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. '); INSERT INTO documentary_instance VALUES (659, 'An Introduction to the Navajo Oral History of Anasazi Sites in the San Juan Basin. Submitted in fulfillment of Contract PX 7486-8-0224.', NULL, NULL, NULL, NULL, '1979', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. ', NULL, 649, NULL, 'Fransted, Dennis 1979 An Introduction to the Navajo Oral History of Anasazi Sites in the San Juan Basin. Submitted in fulfillment of Contract PX 7486-8-0224. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. '); INSERT INTO documentary_instance VALUES (660, 'The Ethnogeography of the Chaco Canyon Area Navajo', NULL, NULL, NULL, NULL, '1974', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'Ms. on file, Department of Anthropology, Northwestern University, and Archive No. 1986C, NPS Chaco Culture NHP Museum, University of New Mexico, Albuquerque. ', NULL, 650, NULL, 'Fransted, Dennis, and Oscar Werner 1974 The Ethnogeography of the Chaco Canyon Area Navajo. Ms. on file, Department of Anthropology, Northwestern University, and Archive No. 1986C, NPS Chaco Culture NHP Museum, University of New Mexico, Albuquerque. '); INSERT INTO documentary_instance VALUES (661, 'Solstice-Watchers of Chaco', NULL, NULL, NULL, NULL, '1978', 0, 'Science News 114(9):148-151. August.', 'Journal', '4 pages', NULL, NULL, NULL, NULL, 651, NULL, 'Frazier, Kendrick 1978 Solstice-Watchers of Chaco. Science News 114(9):148-151. August. '); INSERT INTO documentary_instance VALUES (662, 'Chaco and the Man', NULL, NULL, NULL, NULL, '1979a', 0, 'Rocky Mountain Magazine', 'Journal', NULL, NULL, NULL, NULL, NULL, 652, NULL, 'Frazier, Kendrick 1979a* Chaco and the Man. Rocky Mountain Magazine -----'); INSERT INTO documentary_instance VALUES (663, 'Stars, Sky and Culture', NULL, NULL, NULL, NULL, '1979b', 0, 'Science News 116(5): August 4.', 'Journal', NULL, NULL, NULL, NULL, NULL, 653, NULL, 'Frazier, Kendrick 1979b* Stars, Sky and Culture. Science News 116(5): August 4.'); INSERT INTO documentary_instance VALUES (664, 'The Anasazi Sun Dagger', NULL, NULL, NULL, NULL, '1979c', 0, ' Science 80 1(1):57-67. November.', 'Journal', '11 pages', NULL, NULL, NULL, NULL, 654, NULL, 'Frazier, Kendrick 1979c The Anasazi Sun Dagger. Science 80 1(1):57-67. November.'); INSERT INTO documentary_instance VALUES (665, 'People of Chaco: A Canyon and Its Culture.', NULL, NULL, 'New York', 'W. W. Norton', '1986', 0, NULL, 'Book', NULL, NULL, NULL, NULL, NULL, 655, NULL, 'Frazier, Kendrick 1986 People of Chaco: A Canyon and Its Culture. W. W. Norton, New York.'); INSERT INTO documentary_instance VALUES (666, 'People of Chaco: A Canyon and Its Culture, 2nd edition', NULL, NULL, 'New York', 'W. W. Norton', '1999', 0, NULL, 'Book', NULL, NULL, NULL, NULL, NULL, 656, NULL, 'Frazier, Kendrick 1999 People of Chaco: A Canyon and Its Culture, 2nd edition. W. W. Norton, New York.'); INSERT INTO documentary_instance VALUES (667, 'Mapping Ancient Landscapes in the Four Corners Region: Integrating the Use of GIS, GPS and Image-Processing Technology', NULL, NULL, NULL, NULL, '1996', 0, NULL, 'Paper', NULL, NULL, NULL, NULL, NULL, 657, NULL, 'Friedman, Richard A., and John R. Stein 1996 Mapping Ancient Landscapes in the Four Corners Region: Integrating the Use of GIS, GPS and Image-Processing Technology. Paper presented at the Southwest ARC/INFO Users Group, on file at McKinley County GIS Center, Gallup and Navajo Nation Chaco Protection Sites Program. '); INSERT INTO documentary_instance VALUES (668, 'The Chacoan Interaction Sphere: A Verification of the ‘Pochteca’ Concept within the Southwestern United States', NULL, NULL, NULL, NULL, '1972', 0, NULL, 'Paper', NULL, NULL, NULL, NULL, NULL, 658, NULL, 'Frisbie, Theodore R. 1972 The Chacoan Interaction Sphere: A Verification of the ‘Pochteca’ Concept within the Southwestern United States. Paper presented at the 37th Annual Meeting of the Society for American Archaeology, Miami Beach. '); INSERT INTO documentary_instance VALUES (669, 'High Status Burials in the Greater Southwest: An Interpretive Synthesis', NULL, NULL, NULL, NULL, '1978', 0, NULL, 'Book', '26 pages', NULL, NULL, NULL, NULL, 659, NULL, 'Frisbie, Theodore R. 1978 High Status Burials in the Greater Southwest: An Interpretive Synthesis. In Across the Chichimec Sea. Papers in Honor of J. Charles Kelley, edited by Carroll L. Riley and Basil C. Hedrick, pp. 202-227. Southern Illinois University, Carbondale.'); INSERT INTO documentary_instance VALUES (670, 'Social Ranking in Chaco Canyon, New Mexico: A Mesoamerican Reconstruction.', NULL, NULL, NULL, NULL, '1980', 0, 'Transactions of the Illinois State Academy of Science 72(4):60-69.', 'Journal', '10 pages', NULL, NULL, NULL, NULL, 660, NULL, 'Frisbie, Theodore R. 1980 Social Ranking in Chaco Canyon, New Mexico: A Mesoamerican Reconstruction. Transactions of the Illinois State Academy of Science 72(4):60-69.'); INSERT INTO documentary_instance VALUES (671, 'Anasazi-Mesoamerican Relationships: From the Bowels of the Earth and Beyond.', NULL, NULL, NULL, NULL, '1983', 0, NULL, 'Journal', '13 pages', NULL, NULL, NULL, NULL, 661, NULL, 'Frisbie, Theodore R. 1983 Anasazi-Mesoamerican Relationships: From the Bowels of the Earth and Beyond. In Proceedings of the Anasazi Symposium 1981, edited by Jack E. Smith, pp. 215-227. Mesa Verde Museum Association, Mesa Verde, CO.'); INSERT INTO documentary_instance VALUES (672, 'The Chaco Phenomenon and Spanish Colonial Missions: Commonality through Paucity.', NULL, NULL, 'Santa Fe', 'Ancient City Press', '1985', 0, NULL, 'Book', '18 pages', NULL, NULL, NULL, NULL, 662, NULL, 'Frisbie, Theodore R. 1985 The Chaco Phenomenon and Spanish Colonial Missions: Commonality through Paucity. In Prehistory and History in the Southwest. Collected Papers in Honor of Alden C. Hayes, edited by Nancy L. Fox, pp. 73-90. Papers of the Archaeological Society of New Mexico: 11. Ancient City Press, Santa Fe.'); INSERT INTO documentary_instance VALUES (673, 'Southwestern Indians and Cranes.', NULL, NULL, NULL, NULL, '1986', 0, 'The ICF Bugle 12(1):3-5.', 'Journal', '3 pages', NULL, NULL, NULL, NULL, 663, NULL, 'Frisbie, Theodore R. 1986 Southwestern Indians and Cranes. The ICF Bugle 12(1):3-5.'); INSERT INTO documentary_instance VALUES (674, 'New Light on Pochteca Concept and the Chaco Phenomenon.', NULL, NULL, NULL, NULL, '1998', 0, NULL, 'Papers', '11 pages', NULL, NULL, NULL, NULL, 664, NULL, 'Frisbie, Theodore R. 1998 New Light on Pochteca Concept and the Chaco Phenomenon. In Diné Bíkéyak: Papers in Honor of David M. Brugge, edited by Meliha S. Duran and David T. Kirkpatrick, pp. 87-97. Archaeological Society of New Mexico: 24. Albuquerque. '); INSERT INTO documentary_instance VALUES (675, 'Dendrochronological Modeling: The Effects of Climate Change', NULL, NULL, NULL, NULL, '1990', 0, NULL, 'Paper', NULL, NULL, NULL, NULL, NULL, 665, NULL, 'Fritts, Harold C. 1990 Dendrochronological Modeling: The Effects of Climate Change. Paper presented at the Annual Meeting of the American Association for the Advancement of Science, New Orleans. '); INSERT INTO documentary_instance VALUES (676, 'Paleopsychology Today: Ideational Systems and Human Adaptation in Prehistory. ', NULL, NULL, 'New York', ' Academic Press', '1978', 0, NULL, 'Book', '23 pages', NULL, NULL, NULL, NULL, 666, NULL, 'Fritz, John M. 1978 Paleopsychology Today: Ideational Systems and Human Adaptation in Prehistory. Chapter 3 in Social Archaeology, Beyond Subsistence and Dating, edited by Charles L. Redman, Mary Jane Berman, Edward V. Curtain, William T. Langhorn, Nina M. Versaggi, and Jeffrey C. Wanser, pp. 37-59. Academic Press, New York. '); INSERT INTO documentary_instance VALUES (677, 'Chaco Canyon and Vijayanagara: Proposing Spatial Meaning in Two Societies.', NULL, NULL, NULL, NULL, '1986', 0, NULL, 'Ms. on file, paper', NULL, NULL, NULL, 'Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. ', NULL, 667, NULL, 'Fritz, John M. 1986 Chaco Canyon and Vijayanagara: Proposing Spatial Meaning in Two Societies. Paper presented at the First Chaco Nonconference, Chaco Culture National Historical Park, New Mexico. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published in 1987.'); INSERT INTO documentary_instance VALUES (678, 'Chaco Canyon and Vijayanagra: Proposing Spatial Meaning in Two Societies', NULL, NULL, 'Lanham', 'University Press of America', '1987', 0, NULL, 'Book', '36 pages', NULL, NULL, NULL, NULL, 668, NULL, 'Fritz, John M. 1987 Chaco Canyon and Vijayanagra: Proposing Spatial Meaning in Two Societies. In Mirror and Metaphor: Material and Social Constructions of Reality, edited by D. W. Ingersoll and G. Bronitsky, pp. 313-348. University Press of America, Lanham. '); INSERT INTO documentary_instance VALUES (679, '[Chaco Canyon National Monument.] ', NULL, NULL, NULL, NULL, '1932', 0, NULL, 'Book', '1 page', NULL, NULL, NULL, NULL, 669, NULL, 'Frothingham, Robert 1932 [Chaco Canyon National Monument.] In Trails Through the Golden West, by Robert Frothingham, p. 267. McBride, New York. '); INSERT INTO documentary_instance VALUES (680, 'Roads to Center Place: A Cultural Atlas of Chaco Canyon and the Anasazi', NULL, NULL, 'Boulder', 'Johnson Books', '1991', 0, NULL, 'Book', NULL, NULL, NULL, NULL, NULL, 670, NULL, 'Gabriel, Kathryn 1991 Roads to Center Place: A Cultural Atlas of Chaco Canyon and the Anasazi. Johnson Books, Boulder. '); INSERT INTO documentary_instance VALUES (681, 'Marietta Wetherill: Reflections on Life with the Navajos in Chaco Canyon', NULL, NULL, 'Boulder', 'Johnson Books', '1992', 0, NULL, 'Book', NULL, NULL, NULL, NULL, NULL, 671, NULL, 'Gabriel, Kathryn 1992 Marietta Wetherill: Reflections on Life with the Navajos in Chaco Canyon. Johnson Books, Boulder. Republished in 1997.'); INSERT INTO documentary_instance VALUES (682, 'Gambler Way: Indian Gaming in Mythology, History, and Archaeology in North America.', NULL, NULL, 'Boulder', 'Johnson Books', '1996', 0, NULL, 'Book', NULL, NULL, NULL, NULL, NULL, 672, NULL, 'Gabriel, Kathryn 1996 Gambler Way: Indian Gaming in Mythology, History, and Archaeology in North America. Johnson Books, Boulder.'); INSERT INTO documentary_instance VALUES (683, 'Marietta Wetherill: Life with the Navajos in Chaco Canyon', NULL, NULL, 'Albuquerque', 'University of New Mexico Press', '1997', 0, NULL, 'Book', NULL, NULL, NULL, NULL, NULL, 673, NULL, 'Gabriel, Kathryn 1997 Marietta Wetherill: Life with the Navajos in Chaco Canyon. University of New Mexico Press, Albuquerque.'); INSERT INTO documentary_instance VALUES (684, 'Chaco Night', NULL, NULL, NULL, NULL, '1991', 0, 'Michigan Quarterly Review 30(4):610-620.', 'Journal', '11 pages', NULL, NULL, NULL, NULL, 674, NULL, 'Ganer, Reg 1991 Chaco Night. Michigan Quarterly Review 30(4):610-620. '); INSERT INTO documentary_instance VALUES (685, 'Ruins in the South-West', NULL, NULL, 'London', 'Stanford', '1898', 0, ' In North America, by Henry Gannett, 2:279-283.', 'Book', '5 pages', NULL, NULL, NULL, NULL, 675, NULL, 'Gannett, Henry 1898 Ruins in the South-West. In North America, by Henry Gannett, 2:279-283. Stanford, London. '); INSERT INTO documentary_instance VALUES (686, 'The Archaeological Wonders of Chaco Canyon. ', NULL, NULL, NULL, NULL, '1979', 0, 'Sierra Club Bulletin 64(6):10-15. November 6.', 'Journal', '6 pages', NULL, NULL, NULL, NULL, 676, NULL, 'Gardner, Michael 1979 The Archaeological Wonders of Chaco Canyon. Sierra Club Bulletin 64(6):10-15. November 6. '); INSERT INTO documentary_instance VALUES (687, 'The Geological Setting of Kin Nahasbas, Chaco Canyon and Petrographic Analysis of Construction Material.', NULL, NULL, NULL, NULL, '1983', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. ', NULL, 677, NULL, 'Garrett, Elizabeth M. 1983 The Geological Setting of Kin Nahasbas, Chaco Canyon and Petrographic Analysis of Construction Material. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published in 1988. '); INSERT INTO documentary_instance VALUES (688, 'The Geological Setting of Kin Nahasbas, Chaco Canyon, and Petrographic Analysis of Construction Material', NULL, NULL, NULL, NULL, '1988', 0, NULL, 'Book', '5 pages', NULL, NULL, NULL, NULL, 678, NULL, '1988 The Geological Setting of Kin Nahasbas, Chaco Canyon, and Petrographic Analysis of Construction Material. In Historic Structure Report, Kin Nahasbas Ruin, Chaco Culture National Historical Park, New Mexico, by Frances Joan Mathien and Thomas C. Windes, pp. 301-305. Branch of Cultural Research, National Park Service, Santa Fe.'); INSERT INTO documentary_instance VALUES (689, 'The Chaco Canyon Supernova Pictograph—A Reorientation', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2 pages', NULL, NULL, NULL, NULL, NULL, NULL, 'Gaustad, John ?*** The Chaco Canyon Supernova Pictograph—A Reorientation, pp. 33-34. '); INSERT INTO documentary_instance VALUES (690, 'Preliminary Analysis of Faunal Remains from Site 29SJ1613.', NULL, NULL, NULL, NULL, '1977', 0, NULL, 'Ms. on file, report', NULL, NULL, NULL, ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuqerque. ', NULL, 679, NULL, 'Gillespie, William B. 1977 Preliminary Analysis of Faunal Remains from Site 29SJ1613. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuqerque. '); INSERT INTO documentary_instance VALUES (691, 'An Overview of the Archaeology of Chaco Canyon. ', NULL, NULL, NULL, NULL, '1979a', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.', NULL, 680, NULL, 'Gillespie, William B. 1979a An Overview of the Archaeology of Chaco Canyon. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO documentary_instance VALUES (692, 'Faunal Remains from 29SJ721', NULL, NULL, NULL, NULL, '1979b', 1, NULL, 'Ms. on file', NULL, NULL, NULL, ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.', NULL, 681, NULL, 'Gillespie, William B. 1979b* Faunal Remains from 29SJ721. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO documentary_instance VALUES (693, 'Architectural Development at Una Vida, Chaco Canyon, N.M.', NULL, NULL, NULL, NULL, '1980a', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.', NULL, 682, NULL, 'Gillespie, William B. 1980a Architectural Development at Una Vida, Chaco Canyon, N.M. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO documentary_instance VALUES (694, 'Architectural Development at Una Vida: A Lexonian Account', NULL, NULL, NULL, NULL, '1980b', 0, 'Paper presented at the 1980 Pecos Conference, Mesa Verde', 'Ms. on file, paper', NULL, NULL, NULL, ' Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.', NULL, 683, NULL, 'Gillespie, William B. 1980b Architectural Development at Una Vida: A Lexonian Account. Paper presented at the 1980 Pecos Conference, Mesa Verde. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO documentary_instance VALUES (695, 'Ecological Implications of Faunal Remains from Archaeological Sites in Chaco Canyon, New Mexico.', NULL, NULL, NULL, NULL, '1981a', 0, NULL, 'Paper', NULL, NULL, NULL, NULL, NULL, 684, NULL, 'Gillespie, William B. 1981a Ecological Implications of Faunal Remains from Archaeological Sites in Chaco Canyon, New Mexico. Paper presented at the 46th Annual Meeting of the Society for American Archaeology, San Diego.'); INSERT INTO documentary_instance VALUES (696, 'Faunal Remains from 29SJ629', NULL, NULL, NULL, NULL, '1981b', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. ', NULL, 685, NULL, 'Gillespie, William B. 1981b Faunal Remains from 29SJ629. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published in 1993.'); INSERT INTO documentary_instance VALUES (697, 'Faunal Remains from 29SJ633', NULL, NULL, NULL, NULL, '1981c', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. ', NULL, 686, NULL, 'Gillespie, William B. 1981c Faunal Remains from 29SJ633. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published in 1991.'); INSERT INTO documentary_instance VALUES (698, 'Summary of Osteological Remains from Chaco Coprolites.', NULL, NULL, NULL, NULL, '1981d', 1, NULL, 'Ms. on file', NULL, NULL, NULL, 'Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.', NULL, 687, NULL, 'Gillespie, William B. 1981d* Summary of Osteological Remains from Chaco Coprolites. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO documentary_instance VALUES (699, 'Vertebrate Remains from Atlatl Cave, Chaco Canyon, New Mexico', NULL, NULL, NULL, NULL, '1982a', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.', NULL, 688, NULL, 'Gillespie, William B. 1982a Vertebrate Remains from Atlatl Cave, Chaco Canyon, New Mexico. Preliminary Draft. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO documentary_instance VALUES (700, 'Vertebrate Remains, Macrobotanical Remains, Pottery, and Unfired Clay from the 1981 Test Excavation of 29SJ178, Northwestern New Mexico.', NULL, NULL, NULL, NULL, '1982b', 1, NULL, 'Ms. on file', NULL, NULL, NULL, 'Ms. on file, NPS Library, Santa Fe. ', NULL, 689, NULL, 'Gillespie, William B. 1982b* Vertebrate Remains, Macrobotanical Remains, Pottery, and Unfired Clay from the 1981 Test Excavation of 29SJ178, Northwestern New Mexico. Ms. on file, NPS Library, Santa Fe. Published, in part, in 1984.'); INSERT INTO documentary_instance VALUES (701, 'An Overview of the Archaeology of Chaco Canyon.', NULL, NULL, 'Albuquerque', ' Adobe Press', '1983a', 0, NULL, 'Book', '3 pages', NULL, NULL, NULL, NULL, 690, NULL, 'Gillespie, William B. 1983a An Overview of the Archaeology of Chaco Canyon. In Chaco Canyon Country. A Field Guide to the Geomorphology, Quarternary Geology, Paleoecology, and Environmental Geology of Northwestern New Mexico, edited by Stephen. G. Wells, David W. Love, and Thomas W. Gardner, pp. 237-239. American Geomorphological Field Group 1983 Field Trip Guidebook. Adobe Press, Albuquerque..'); INSERT INTO documentary_instance VALUES (702, 'Precipitation Trends: 900-1300', NULL, NULL, NULL, NULL, '1983b', 0, NULL, 'Report', '5 pages', NULL, NULL, NULL, NULL, 691, NULL, 'Gillespie, William B. 1983b Precipitation Trends: 900-1300. In The Outlier Survey, A Regional View of Settlement in the San Juan Basin, by Robert P. Powers, William B. Gillespie and Stephen H. Lekson, pp. 279-283. Reports of the Chaco Center No. 3. National Park Service, Albuquerque.'); INSERT INTO documentary_instance VALUES (703, 'Excavations at Sheep Camp Shelter (29SJ178). ', NULL, NULL, NULL, NULL, '1984a', 0, NULL, 'Book', '56 pages', NULL, NULL, NULL, NULL, 692, NULL, 'Gillespie, William B. 1984a Excavations at Sheep Camp Shelter (29SJ178). Chapter 4 in Archaic Prehistory and Paleoenvironments in the San Juan Basin, New Mexico: The Chaco Shelters Project, edited by A. H. Simmons, pp. 39-94. Museum of Anthropology Project Report Series No. 53. University of Kansas, Lawrence.'); INSERT INTO documentary_instance VALUES (704, 'Holocene Climate and Environment at Chaco Canyon.', NULL, NULL, NULL, NULL, '1984b', 0, NULL, 'Ms. on file', NULL, NULL, NULL, NULL, NULL, 693, NULL, 'Gillespie, William B. 1984b Holocene Climate and Environment at Chaco Canyon. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published in 1985.'); INSERT INTO documentary_instance VALUES (705, 'Late Quaternary Small Vertebrates from Chaco Canyon, Northwestern New Mexico', NULL, NULL, NULL, NULL, '1984c', 0, 'New Mexico Geology 6:16 (Abstract).', 'Journal', NULL, NULL, NULL, NULL, NULL, 694, NULL, 'Gillespie, William B. 1984c Late Quaternary Small Vertebrates from Chaco Canyon, Northwestern New Mexico. New Mexico Geology 6:16 (Abstract).'); INSERT INTO documentary_instance VALUES (706, 'The Environment of the Chaco Anasazis', NULL, NULL, NULL, NULL, '1984d', 0, NULL, 'Book', '8 pages', NULL, NULL, NULL, NULL, 695, NULL, 'Gillespie, William D. 1984d The Environment of the Chaco Anasazis. In New Light on Chaco Canyon, edited by David Grant Noble, pp. 37-44. Exploration, School of American Research, Santa Fe.'); INSERT INTO documentary_instance VALUES (707, 'Una Vida', NULL, NULL, NULL, NULL, '1984e', 0, NULL, 'Book', '16 pages', NULL, NULL, NULL, NULL, 696, NULL, 'Gillespie, William B. 1984e Una Vida. In Great Pueblo Architecture of Chaco Canyon, New Mexico, edited by Stephen H. Lekson, pp. 79-94. Publications in Archeology 19B, Chaco Canyon Studies, National Park Service, Washington, D.C.'); INSERT INTO documentary_instance VALUES (708, 'Holocene Climate and Environment of Chaco Canyon', NULL, NULL, NULL, NULL, '1985', 0, NULL, 'Book', '33 pages', NULL, NULL, NULL, NULL, 697, NULL, 'Gillespie, William B. 1985 Holocene Climate and Environment of Chaco Canyon. In Environment and Subsistence of Chaco Canyon, New Mexico, edited by Frances Joan Mathien, pp. 13-45. Publications in Archeology 18E, Chaco Canyon Studies. National Park Service, Albuquerque.'); INSERT INTO documentary_instance VALUES (709, 'Faunal Remains from 29SJ633', NULL, NULL, NULL, NULL, '1991', 0, NULL, 'Book', '73 pages', NULL, NULL, NULL, NULL, 698, NULL, 'Gillespie, William B. 1991 Faunal Remains from 29SJ633. In Excavations at 29SJ633: The Eleventh Hour Site, Chaco Canyon, New Mexico, edited by Frances Joan Mathien, pp. 243-315. Reports of the Chaco Center No. 10. Branch of Cultural Research, National Park Service, Santa Fe.'); INSERT INTO documentary_instance VALUES (710, 'Vertebrate Remains from 29SJ629', NULL, NULL, NULL, NULL, '1993', 0, NULL, 'Book', '53 pages', NULL, NULL, NULL, NULL, 699, NULL, 'Gillespie, William B. 1993 Vertebrate Remains from 29SJ629. In The Spadefoot Toad Site: Investigations at 29SJ629, Chaco Canyon, New Mexico. Artifactual and Biological Analyses. Volume II, edited by Thomas C. Windes, pp. 343-395. Report s of the Chaco Center No. 12. Branch of Cultural Research, National Park Service, Santa Fe.'); INSERT INTO documentary_instance VALUES (711, 'Regional Settlement Changes and Past Environment in the San Juan Basin, Northwestern New Mexico', NULL, NULL, NULL, NULL, '1983', 0, NULL, 'Paper', NULL, NULL, NULL, NULL, NULL, 700, NULL, 'Gillespie, William B., and Robert P. Powers 1983 Regional Settlement Changes and Past Environment in the San Juan Basin, Northwestern New Mexico. Paper presented at the Second Anasazi Symposium, Salmon Ruin, Bloomfield, NM, Feb. 10-12. '); INSERT INTO documentary_instance VALUES (712, 'Fossil Hunting in New Mexico', NULL, NULL, NULL, NULL, '1930', 0, 'In Smithsonian Institution, Explorations and Fieldwork, Pub. 3060, pp. 17-22.', 'Journal', '6 pages', NULL, NULL, NULL, NULL, 701, NULL, 'Gilmore, Charles W. 1930 Fossil Hunting in New Mexico. In Smithsonian Institution, Explorations and Fieldwork, Pub. 3060, pp. 17-22. '); INSERT INTO documentary_instance VALUES (713, 'Great Houses and Pueblos in Northeastern Arizona. ', NULL, NULL, NULL, NULL, '1989', 0, NULL, 'Paper', NULL, NULL, NULL, NULL, NULL, 702, NULL, 'Gilpin, Dennis 1989 Great Houses and Pueblos in Northeastern Arizona. Paper presented at the 62nd Pecos Conference, Bandelier National Monument, Aug. 17-20. '); INSERT INTO documentary_instance VALUES (714, 'Anasazi Community Architecture on the Middle Rio Puerco', NULL, NULL, NULL, NULL, '1993', 0, 'Paper presented at the Fifth Occasional Anasazi Symposium, Farmington.', 'Paper', NULL, NULL, NULL, NULL, NULL, 703, NULL, 'Gilpin, Dennis 1993 Anasazi Community Architecture on the Middle Rio Puerco. Paper presented at the Fifth Occasional Anasazi Symposium, Farmington.'); INSERT INTO documentary_instance VALUES (715, 'Anasazi Community Structure along the Lower Puerco River, Northeastern Arizona', NULL, NULL, NULL, NULL, '1995', 0, NULL, 'Paper', NULL, NULL, NULL, NULL, NULL, 704, NULL, 'Gilpin, Dennis 1995 Anasazi Community Structure along the Lower Puerco River, Northeastern Arizona. Paper presented at the 60th Annual Meeting of the Society for American Archaeology, Minneapolis.'); INSERT INTO documentary_instance VALUES (716, 'Archaeological Investigations in the Peach Springs Chacoan Community: Data Recovery on Navajo Route 9, Segment 5-1, McKinley County, New Mexico', NULL, NULL, NULL, NULL, '1998a', 0, 'SWCA Repot 98-15. SWCA Inc., Environmental Consultants, Flagstaff', NULL, NULL, NULL, NULL, NULL, NULL, 705, NULL, 'Gilpin, Dennis 1998a Archaeological Investigations in the Peach Springs Chacoan Community: Data Recovery on Navajo Route 9, Segment 5-1, McKinley County, New Mexico. SWCA Repot 98-15. SWCA Inc., Environmental Consultants, Flagstaff.'); INSERT INTO documentary_instance VALUES (717, 'Peach Springs Revisited: Surface Recording and Excavations on the South Chaco Slope, New Mexico', NULL, NULL, NULL, NULL, '1998b', 0, NULL, 'Paper', NULL, NULL, NULL, NULL, NULL, 706, NULL, 'Gilpin, Dennis 1998b Peach Springs Revisited: Surface Recording and Excavations on the South Chaco Slope, New Mexico. Paper presented at the 63rd Annual Meeting of the Society for American Archaeology, Seattle. '); INSERT INTO documentary_instance VALUES (718, 'Anasazi Community Architecture in the Chuska Valley', NULL, NULL, NULL, NULL, '1996', 0, NULL, 'Report', NULL, NULL, NULL, NULL, NULL, 707, NULL, 'Gilpin, Dennis, Douglas D. Dykeman, and Paul F. Reed 1996 Anasazi Community Architecture in the Chuska Valley. New Mexico Archaeological Council, Albuquerque. '); INSERT INTO documentary_instance VALUES (719, 'Peach Springs Revisited: Surface Recording and Excavation on the South Chaco Slope, New Mexico', NULL, NULL, 'Tucson', 'University of Arizona Press', '2000', 0, NULL, 'Book', '11 pages', NULL, NULL, NULL, NULL, 708, NULL, 'Gilpin, Dennis, and David E. Purcell 2000 Peach Springs Revisited: Surface Recording and Excavation on the South Chaco Slope, New Mexico. In Great House communities Across the Chacoan Landscape, edited by John Kantner and Nancy M. Mahoney, pp. 28-38. University of Arizona Anthropological Papers No. 64. University of Arizona Press, Tucson. '); INSERT INTO documentary_instance VALUES (720, 'Prehistoric Ceramics of the Puerco Valley: The 1995 Chambers-Sanders Trust Lands Ceramic Conference', NULL, NULL, NULL, NULL, '1998', 0, 'Ceramic Series Nol 7, Museum of Northern Arizona, Flagstaff.', 'Report', NULL, NULL, NULL, NULL, NULL, 821, NULL, 'Gilpin, Kelly A., and E. Van Hartesveldt (editors) 1998 Prehistoric Ceramics of the Puerco Valley: The 1995 Chambers-Sanders Trust Lands Ceramic Conference. Ceramic Series Nol 7, Museum of Northern Arizona, Flagstaff. '); INSERT INTO documentary_instance VALUES (721, 'Chaco Body, 1987: A Collection of Photographs', NULL, NULL, ' Albuquerque', 'Outland Press', '1987', 0, NULL, 'Book', NULL, NULL, NULL, NULL, NULL, 710, NULL, 'Gittings, Kirk, and Vincent B. Price 1987 Chaco Body, 1987: A Collection of Photographs. Outland Press, Albuquerque. '); INSERT INTO documentary_instance VALUES (722, 'Chaco Body', NULL, NULL, 'Albuquerque', 'Artspace Press', '1991', 0, NULL, 'Book', NULL, NULL, NULL, NULL, NULL, 711, NULL, 'Gittings, Kirk, and Vincent B. Price 1991 Chaco Body. Artspace Press, Albuquerque. '); INSERT INTO documentary_instance VALUES (723, 'An Investigation of Sulfur Concentrations in Soils and Pine Needles in Chaco Culture National Historical Park, New Mexico.', NULL, NULL, NULL, NULL, '1993', 0, 'Report No. LA-12419-MS, UC-000. Los Alamos National Laboratory, Los Alamos.', 'Report', NULL, NULL, NULL, NULL, NULL, 712, NULL, 'Gladney, Ernest S., Roger W. Ferenbaugh, Richard G. Bowker, Elizabeth A. Jones, Michael G. Bell, Janet D. Morgan, and Laura A. Nelson 1993 An Investigation of Sulfur Concentrations in Soils and Pine Needles in Chaco Culture National Historical Park, New Mexico. Report No. LA-12419-MS, UC-000. Los Alamos National Laboratory, Los Alamos. '); INSERT INTO documentary_instance VALUES (724, 'An Outline of Southwestern Prehistory', NULL, NULL, NULL, NULL, '1930', 0, 'Arizona Historical Review 3:71-87.', 'Journal', '17 pages', NULL, NULL, NULL, NULL, 713, NULL, 'Gladwin, Harold Sterling 1930 An Outline of Southwestern Prehistory. Arizona Historical Review 3:71-87. '); INSERT INTO documentary_instance VALUES (725, 'The Chaco Branch: Excavations at White Mound and in the Red Mesa Valley.', NULL, NULL, NULL, NULL, '1945', 0, 'Medallion Papers No. 33. Gila Pueblo, Globe, AZ.', 'Paper', NULL, NULL, NULL, NULL, NULL, 714, NULL, 'Gladwin, Harold Sterling 1945 The Chaco Branch: Excavations at White Mound and in the Red Mesa Valley. Medallion Papers No. 33. Gila Pueblo, Globe, AZ.'); INSERT INTO documentary_instance VALUES (726, 'A History of Ancient Southwest', NULL, NULL, 'Portland, MA.', 'Bond Wheelwright', '1957', 0, NULL, 'Book', NULL, NULL, NULL, NULL, NULL, 715, NULL, 'Gladwin, Harold Sterling 1957 A History of Ancient Southwest. Bond Wheelwright, Portland, MA.'); INSERT INTO documentary_instance VALUES (727, 'A Method for Designation of Cultures and their Variations', NULL, NULL, 'Lancaster, PA', 'Lancaster Press', '1934', 0, 'Gila Pueblo, Lancaster Press, Lancaster, PA.', 'Book', NULL, NULL, NULL, NULL, NULL, 716, NULL, 'Gladwin, Winifred, and Harold S. Gladwin 1934 A Method for Designation of Cultures and their Variations. Gila Pueblo, Lancaster Press, Lancaster, PA. '); INSERT INTO documentary_instance VALUES (728, 'Navajo and Historic Sites and Settlement of the Chaco Additions Inventory Survey. ', NULL, NULL, NULL, NULL, '1987', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.', NULL, 717, NULL, 'Gleickman, Carol Legard 1987 Navajo and Historic Sites and Settlement of the Chaco Additions Inventory Survey. Prepared by Native Culture Resources Services, Boulder, CO, for NPS Contract PX7029-5-C045. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. '); INSERT INTO documentary_instance VALUES (729, 'Register to the Papers of Neil Merton Judd.', NULL, NULL, NULL, NULL, '1982', 0, NULL, NULL, NULL, NULL, NULL, 'National Anthropological Archives, Washington, D.C. ', NULL, 718, NULL, 'Glenn, James R. 1982 Register to the Papers of Neil Merton Judd. National Anthropological Archives, Washington, D.C. '); INSERT INTO documentary_instance VALUES (730, 'Bc 50 Substructures', NULL, NULL, 'Albuquerque', 'University of New Mexico Press, Albuquerque.', '1937', 0, NULL, 'Book', '9 pages', NULL, NULL, NULL, NULL, 719, NULL, 'Glenn, Nan 1937 Bc 50 Substructures. In Preliminary Report on the Excavations, Bc 50-Bc 51, Chaco Canyon, New Mexico, edited by Clyde Kluckhohn and Paul Reiter, pp. 166-174. University of New Mexico Press, Albuquerque. '); INSERT INTO documentary_instance VALUES (731, 'Canid Remains from Pueblo Bonito and Pueblo del Arroyo', NULL, NULL, NULL, NULL, '1954', 0, NULL, 'Book', '4 pages', NULL, NULL, NULL, NULL, 720, NULL, 'Glover, M. Allen 1954 Canid Remains from Pueblo Bonito and Pueblo del Arroyo. Appendix B in The Material Culture of Pueblo Bonito by Neil M. Judd, pp. 385-388. Smithsonian Miscellaneous Collections Vol. 124. Smithsonian Institution, Washington, D.C. '); INSERT INTO documentary_instance VALUES (732, 'Indians of the Southwest', NULL, NULL, NULL, NULL, '1913', 0, 'Handbook Series No. 2. American Museum of Natural History, New York.', 'Book', NULL, NULL, NULL, NULL, NULL, 721, NULL, 'Goddard, Pliny E. 1913 Indians of the Southwest. Handbook Series No. 2. American Museum of Natural History, New York. '); INSERT INTO documentary_instance VALUES (733, 'Pottery of the Southwestern Indians.', NULL, NULL, NULL, NULL, '1928', 0, 'Guide Leaflet No. 73. American Museum of Natural History, New York.', 'Leaflet', NULL, NULL, NULL, NULL, NULL, 722, NULL, 'Goddard, Pliny E. 1928 Pottery of the Southwestern Indians. Guide Leaflet No. 73. American Museum of Natural History, New York. '); INSERT INTO documentary_instance VALUES (734, 'Second Geological Report on Chaco Canyon National Monument', NULL, NULL, NULL, NULL, '1938', 0, 'Southwestern Monuments Report, Supplement for April, pp. 374-377. Globe.', 'Journal', '4 pages', NULL, NULL, NULL, NULL, 723, NULL, 'Gould, C. N. 1938 Second Geological Report on Chaco Canyon National Monument. Southwestern Monuments Report, Supplement for April, pp. 374-377. Globe. '); INSERT INTO documentary_instance VALUES (735, 'Navajo Springs: An Examination of the Great House and Surrounding Community. ', NULL, NULL, NULL, NULL, '1990', 0, 'Unpublished Master’s thesis, Northern Arizona University, Flagstaff.', 'Unpublished Master''s thesis', NULL, NULL, NULL, NULL, NULL, 724, NULL, 'Graves, Donna K. 1990 Navajo Springs: An Examination of the Great House and Surrounding Community. Unpublished Master’s thesis, Northern Arizona University, Flagstaff. '); INSERT INTO documentary_instance VALUES (736, 'Community Boundaries in Late Prehistoric Puebloan Society: Kalinga Ethnoarchaeology as a Model for the Southwestern Production and Exchange of Pottery', NULL, NULL, NULL, NULL, '1994', 0, NULL, 'Book', '21 pages', NULL, NULL, NULL, NULL, 725, NULL, 'Graves, Michael W. 1994 Community Boundaries in Late Prehistoric Puebloan Society: Kalinga Ethnoarchaeology as a Model for the Southwestern Production and Exchange of Pottery. In The Ancient Southwest Community: Models and Methods for the Study of Prehistoric Social Organization, edited by W. H. Wills, and R. D. Leonard, pp. 149-169. University of New Mexico, Albuquerque. '); INSERT INTO documentary_instance VALUES (737, 'Prehistoric Social Organization in Chaco Canyon, New Mexico: An Alternative Reconstruction', NULL, NULL, NULL, NULL, '1973', 0, 'The Kiva 39(1):3-23. Tucson', 'Journal', '21 pages', NULL, NULL, NULL, NULL, 726, NULL, 'Grebinger, Paul 1973 Prehistoric Social Organization in Chaco Canyon, New Mexico: An Alternative Reconstruction. The Kiva 39(1):3-23. Tucson '); INSERT INTO documentary_instance VALUES (738, 'Prehistoric Social Organization in Chaco Canyon, New Mexico: An Evolutionary Perspective.', NULL, NULL, 'New York and London', 'Gordon and Breach Science Publishers', '1978', 0, NULL, 'Book', '28 pages', NULL, NULL, NULL, NULL, 727, NULL, 'Grebinger, Paul 1978 Prehistoric Social Organization in Chaco Canyon, New Mexico: An Evolutionary Perspective. In Discovering Past Behavior, Experiments in the Archaeology of the American Southwest XI, edited by Paul Grebinger, pp. 73-100. Gordon and Breach Science Publishers, New York and London. '); INSERT INTO documentary_instance VALUES (739, 'Commerce of the Prairies', NULL, NULL, NULL, NULL, '1844', 0, NULL, NULL, '1 page', NULL, NULL, NULL, NULL, 728, NULL, 'Gregg, Josiah 1844 Commerce of the Prairies. P. 188. Reprinted in 1933, Dallas. '); INSERT INTO documentary_instance VALUES (740, 'Reprint Edition of Commerce of the Prairies, the Journal of a Santa Fe Trader', NULL, NULL, NULL, NULL, '1933', 0, 'Southwest Press Dallas pp. 188-189.', 'Journal', '2 pages', NULL, NULL, NULL, NULL, 729, NULL, 'Gregg, Josiah 1933 Reprint Edition of Commerce of the Prairies, the Journal of a Santa Fe Trader. Southwest Press Dallas pp. 188-189. '); INSERT INTO documentary_instance VALUES (741, 'The Navajo Country', NULL, NULL, NULL, NULL, '1916', 0, NULL, 'Paper', NULL, NULL, NULL, NULL, NULL, 730, NULL, 'Gregory, Herbert E. 1916 The Navajo Country. U.S. Geological Survey Water Supply Paper No. 390. Government Printing Office, Washington, D.C. '); INSERT INTO documentary_instance VALUES (742, '[The Ruins and Ancient Inhabitants of Chaco Canyon.] ', NULL, NULL, NULL, NULL, '1916', 0, NULL, 'Paper', '2 pages', NULL, NULL, NULL, NULL, 731, NULL, 'Gregory, Herbert E. 1916 [The Ruins and Ancient Inhabitants of Chaco Canyon.] In U.S. Geological Survey, Water-Supply Paper 380, No. 24, pp. 148-149. Government Printing Office, Washington, D.C. '); INSERT INTO documentary_instance VALUES (743, 'Sanctuaries of the Sun', NULL, NULL, NULL, NULL, '1933', 0, 'New Mexico Magazine 11:20-21, 61. July.', 'Journal', '3 pages', NULL, NULL, NULL, NULL, 732, NULL, 'Griffin, Jean 1933 Sanctuaries of the Sun. New Mexico Magazine 11:20-21, 61. July. '); INSERT INTO documentary_instance VALUES (744, 'The Benches of the Great Bowl', NULL, NULL, NULL, NULL, 'n.d.', 0, NULL, NULL, NULL, NULL, NULL, 'Archive 2125J, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. ', NULL, 2562, NULL, 'Griffin, Pat n.d. The Benches of the Great Bowl. Archive 2125J, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. '); INSERT INTO documentary_instance VALUES (745, 'Mummy Mysteries: Tales from North America.', NULL, NULL, 'New York', 'Henry Holt and Company', '1998', 0, NULL, 'Book', NULL, NULL, NULL, NULL, NULL, 733, NULL, 'Guiberson, Brenda Z. 1998 Mummy Mysteries: Tales from North America. Henry Holt and Company, New York. '); INSERT INTO documentary_instance VALUES (746, 'Chacoan Prehistory in a Regional Social and Environmental Context', NULL, NULL, NULL, NULL, '1990', 0, NULL, 'Paper', NULL, NULL, NULL, NULL, NULL, 734, NULL, 'Gumerman, George J. 1990 Chacoan Prehistory in a Regional Social and Environmental Context. Paper presented at the Annual Meeting of the American Association for the Advancement of Science, New Orleans. '); INSERT INTO documentary_instance VALUES (747, 'Archaeological Methodology and Remote Sensing', NULL, NULL, NULL, NULL, '1971', 0, 'Science 172:126-132.', 'Journal', '7 pages', NULL, NULL, NULL, NULL, 735, NULL, 'Gumerman, George J., and Thomas R. Lyons 1971 Archaeological Methodology and Remote Sensing. Science 172:126-132. '); INSERT INTO documentary_instance VALUES (748, 'Prehistory of the Puerco Valley, Eastern Arizona.', NULL, NULL, NULL, NULL, '1968', 0, 'Plateau 40(40:113-127.', 'Journal', '15 pages', NULL, NULL, NULL, NULL, 736, NULL, 'Gumerman, George G., and Alan P. Olson 1968 Prehistory of the Puerco Valley, Eastern Arizona. Plateau 40(40:113-127. '); INSERT INTO documentary_instance VALUES (749, 'Remote Sensing Methodology and Chaco Canyon Prehistoric Road Systems', NULL, NULL, NULL, NULL, '1972', 0, 'Submitted in fulfillment of Contract 14-10-3-930-246', 'Ms. on file', NULL, NULL, NULL, 'Ms. on file, NPS Chaco Culture NHP Museum Archives, University of New Mexico, Albuquerque.', NULL, 737, NULL, 'Gumerman, George J., and John A. Ware 1972 Remote Sensing Methodology and Chaco Canyon Prehistoric Road Systems. Submitted in fulfillment of Contract 14-10-3-930-246. Ms. on file, NPS Chaco Culture NHP Museum Archives, University of New Mexico, Albuquerque. '); INSERT INTO documentary_instance VALUES (750, 'Pictographs and Rock Paintings of the Southwest', NULL, NULL, NULL, NULL, '1893', 0, 'American Antiquarian 15:223-229.', 'Journal', '7 pages', NULL, NULL, NULL, NULL, 738, NULL, 'Gunckel, Lewis W. 1893 Pictographs and Rock Paintings of the Southwest. American Antiquarian 15:223-229. '); INSERT INTO documentary_instance VALUES (751, 'Channel and Hillslope Geomorphology at Badlands in the San Juan Basin, New Mexico.', NULL, NULL, NULL, NULL, '1980', 0, 'Unpublished M.S. thesis, University of New Mexico, Albuquerque.', 'Unpublished M.S. thesis', NULL, NULL, NULL, NULL, NULL, 739, NULL, 'Gutierrez, Alberto A. 1980 Channel and Hillslope Geomorphology at Badlands in the San Juan Basin, New Mexico. Unpublished M.S. thesis, University of New Mexico, Albuquerque. '); INSERT INTO documentary_instance VALUES (752, 'Geomorphic Processes and Sediment Transport in Badland Watersheds, San Juan County, New Mexico', NULL, NULL, ' Albuquerque', 'Adobe Press', '1983', 0, NULL, 'Book', '8 pages', NULL, NULL, NULL, NULL, 740, NULL, 'Gutierrez, Alberto A. 1983 Geomorphic Processes and Sediment Transport in Badland Watersheds, San Juan County, New Mexico. In Chaco Canyon Country, A Field Guide to the Geomorphology, Quaternary Geology, Paleoecology, and Environmental Geology of Northwestern New Mexico, edited by S. G. Wells, D. W. Love, and F. W. Gardner, pp. 113-120. American Geomorphological Field Group 1983 Field Trip Guide Book. Adobe Press, Albuquerque. '); INSERT INTO documentary_instance VALUES (753, 'The Role of Warfare in the Pueblo III Period.', NULL, NULL, 'Tucson', 'The University of Arizona Press', '1996', 0, NULL, 'Book', '9 pages', NULL, NULL, NULL, NULL, 741, NULL, 'Haas, Jonathan, and Winifred Creamer 1996 The Role of Warfare in the Pueblo III Period. In The Prehistoric Pueblo World A.D. 1150-1350, edited by Michael A. Adler, pp. 205-213. The University of Arizona Press, Tucson. '); INSERT INTO documentary_instance VALUES (754, 'Film Review of "The Sun Dagger" produced by A. E. Sofaer, directed by A. Ihde', NULL, NULL, NULL, NULL, '1984', 0, 'American Anthropologist 86:232-233.', 'Journal', '2 pages', NULL, NULL, NULL, NULL, 742, NULL, 'Hadingham, E. 1984 Film Review of "The Sun Dagger" produced by A. E. Sofaer, directed by A. Ihde. American Anthropologist 86:232-233. '); INSERT INTO documentary_instance VALUES (755, 'Household Production in Chaco Canyon Society. ', NULL, NULL, NULL, NULL, '2001', 0, 'American Antiquity 66(1):47-55.', 'Journal', '9 pages', NULL, NULL, NULL, NULL, 743, NULL, 'Hagstrum, Melissa 2001 Household Production in Chaco Canyon Society. American Antiquity 66(1):47-55. '); INSERT INTO documentary_instance VALUES (756, 'Architecture in Chaco Canyon', NULL, NULL, NULL, NULL, '1967', 1, 'M.S. thesis, Pennsylvania State University.', 'M.S. thesis', NULL, NULL, NULL, NULL, NULL, 744, NULL, 'Hall, C. A. 1967* Architecture in Chaco Canyon. M.S. thesis, Pennsylvania State University. '); INSERT INTO documentary_instance VALUES (758, 'Alluvial Stratigraphy and Palynology of Chaco Canyon National Monument, New Mexico. A Preliminary Report.', NULL, NULL, NULL, NULL, '1973', 0, NULL, 'Ms. on file, report', NULL, NULL, NULL, 'Ms. on file, Archive No. 2126D, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.', NULL, 746, NULL, 'Hall, Stephen A. 1973 Alluvial Stratigraphy and Palynology of Chaco Canyon National Monument, New Mexico. A Preliminary Report. Ms. on file, Archive No. 2126D, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO documentary_instance VALUES (757, 'Alluvial Stratigraphy and Palynology of Chaco Canyon National Monument, New Mexico. A Preliminary Report.', NULL, NULL, NULL, NULL, '1972', 0, NULL, 'Ms. on file, report', NULL, NULL, NULL, 'Ms. on file, Archive No. 2006, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. ', NULL, 745, NULL, 'Hall, Stephen A. 1972 Alluvial Stratigraphy and Palynology of Chaco Canyon National Monument, New Mexico. A Preliminary Report. Ms. on file, Archive No. 2006, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. '); INSERT INTO documentary_instance VALUES (759, 'Stratigraphy and Palynology of Quarternary Alluvium at Chaco Canyon, New Mexico.', NULL, NULL, NULL, NULL, '1975', 0, NULL, 'Unpublished Ph.D. dissertation', NULL, NULL, NULL, NULL, NULL, 747, NULL, 'Hall, Stephen A. 1975 Stratigraphy and Palynology of Quarternary Alluvium at Chaco Canyon, New Mexico. Unpublished Ph.D. dissertation, University of Michigan, Ann Arbor. University Microfilms, Ann Arbor.'); INSERT INTO documentary_instance VALUES (760, 'Late Quaternary Sedimentation and Paleoecological History of Chaco Canyon, New Mexico. GSA MS-5475.', NULL, NULL, NULL, NULL, '1976', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. ', NULL, 748, NULL, 'Hall, Stephen A. 1976 Late Quaternary Sedimentation and Paleoecological History of Chaco Canyon, New Mexico. GSA MS-5475. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published in 1977.'); INSERT INTO documentary_instance VALUES (761, 'Late Quarternary Sedimentation and Paleoecologic History of Chaco Canyon, New Mexico.', NULL, NULL, NULL, NULL, '1977', 0, 'Geological Society of America Bulletin 88(11):1593-1618. Washington.', 'Journal', '26 pages', NULL, NULL, NULL, NULL, 748, NULL, 'Hall, Stephen A. 1977 Late Quarternary Sedimentation and Paleoecologic History of Chaco Canyon, New Mexico. Geological Society of America Bulletin 88(11):1593-1618. Washington.'); INSERT INTO documentary_instance VALUES (762, 'Snails from Quaternary Valley Fill at Chaco Canyon, New Mexico', NULL, NULL, NULL, NULL, '1980', 0, 'The Nautilus 94(2):60-63.', 'Journal', '4 pages', NULL, NULL, NULL, NULL, 750, NULL, 'Hall, Stephen A. 1980 Snails from Quaternary Valley Fill at Chaco Canyon, New Mexico. The Nautilus 94(2):60-63.'); INSERT INTO documentary_instance VALUES (763, 'Combined Pollen and Plant Macrofossil Evidence for Holocene Vegetation at Chaco Canyon, New Mexico', NULL, NULL, NULL, NULL, '1981a', 0, 'Paper presented at the XI INQUA Congress, Moscow, USSR.', 'Paper', NULL, NULL, NULL, NULL, NULL, 751, NULL, 'Hall, Stephen A. 1981a Combined Pollen and Plant Macrofossil Evidence for Holocene Vegetation at Chaco Canyon, New Mexico. Paper presented at the XI INQUA Congress, Moscow, USSR.'); INSERT INTO documentary_instance VALUES (764, 'Deteriorated Pollen Grains and the Interpretation of Quaternary Pollen Diagrams', NULL, NULL, NULL, NULL, '1981b', 0, 'Review of Paleobotany and Palynology 32(2/3):193-206.', 'Journal', '14 pages', NULL, NULL, NULL, NULL, 752, NULL, 'Hall, Stephen A. 1981b Deteriorated Pollen Grains and the Interpretation of Quaternary Pollen Diagrams. Review of Paleobotany and Palynology 32(2/3):193-206.'); INSERT INTO documentary_instance VALUES (765, 'Holocene Vegetation at Chaco Canyon: Pollen Evidence from Alluviation and Packrat Middens.', NULL, NULL, NULL, NULL, '1981c', 0, NULL, 'Paper', NULL, NULL, NULL, NULL, NULL, 753, NULL, 'Hall, Stephen A. 1981c Holocene Vegetation at Chaco Canyon: Pollen Evidence from Alluviation and Packrat Middens. Paper presented at the 46th Annual Meeting of the Society for American Archaeology, San Diego.'); INSERT INTO documentary_instance VALUES (766, 'Reconstruction of Local and Regional Holocene Vegetation in the Arid Southwestern United States Based on Combined Pollen Analytical Results from Neotome Middens and Allivium.', NULL, NULL, NULL, NULL, '1982', 1, '(Abstract) INQUA Abstracts 1(XI INQUA Congress).', 'Journal', NULL, NULL, NULL, NULL, NULL, 754, NULL, 'Hall, Stephen A. 1982* Reconstruction of Local and Regional Holocene Vegetation in the Arid Southwestern United States Based on Combined Pollen Analytical Results from Neotome Middens and Allivium. (Abstract) INQUA Abstracts 1(XI INQUA Congress).'); INSERT INTO documentary_instance VALUES (767, 'Holocene Stratigraphy and Paleoecology of Chaco Canyon. ', NULL, NULL, 'Albuquerque', 'Adobe Press', '1983', 0, NULL, 'Book', '8 pages', NULL, NULL, NULL, NULL, 755, NULL, 'Hall, Stephen A. 1983 Holocene Stratigraphy and Paleoecology of Chaco Canyon. In Chaco Canyon Country. A Field Guide to the Geomorphology, Quaternary Geology, Paleoecology, and Environmental Geology of Northwestern New Mexico, edited by Stephen G. Wells, David W. Love and Thomas W. Gardner, pp. 219-226. American Geomorphological Field Guide 1983 Field Trip Guidebook. Adobe Press, Albuquerque..'); INSERT INTO documentary_instance VALUES (768, 'Quaternary Pollen Analysis and Vegetational History of the Southwest', NULL, NULL, NULL, NULL, '1985', 0, NULL, 'Book', '29 pages', NULL, NULL, NULL, NULL, 756, NULL, 'Hall, Stephen A. 1985 Quaternary Pollen Analysis and Vegetational History of the Southwest. In Pollen Records of Late-Quaternary North American Sediments, edited by V. M. Bryant Jr., and R. G. Holloway, pp. 95-123. American Association of Stratigraphic Palynologists Foundation, Dallas.'); INSERT INTO documentary_instance VALUES (769, 'Prehistoric Vegetation and Environment at Chaco Canyon', NULL, NULL, NULL, NULL, '1988', 0, 'American Antiquity 53(3):582-592.', 'Journal', '11 pages', NULL, NULL, NULL, NULL, NULL, NULL, 'Hall, Stephen A. 1988 Prehistoric Vegetation and Environment at Chaco Canyon. American Antiquity 53(3):582-592.'); INSERT INTO documentary_instance VALUES (770, 'Prehistoric Vegetation and Environment at Chaco Canyon', NULL, NULL, NULL, NULL, '1988', 0, 'American Antiquity 53(3):582-592.', 'Journal', '11 pages', NULL, NULL, NULL, NULL, 757, NULL, 'Hall Stephen A. 1988 Prehistoric Vegetation and Environment at Chaco Canyon. American Antiquity 53(3):582-592.'); INSERT INTO documentary_instance VALUES (771, 'Holocene Landscapes of the San Juan Basin, New Mexico; Geomorphic, Climatic, and Cultural Dynamics', NULL, NULL, NULL, NULL, '1990', 0, NULL, 'Journal', '12 pages', NULL, NULL, NULL, NULL, 758, NULL, 'Hall, Stephen A. 1990 Holocene Landscapes of the San Juan Basin, New Mexico; Geomorphic, Climatic, and Cultural Dynamics. In Archaeological Geology of North America, Centennial Special Volume No. 4. edited by N. P. Lasca and J. Donahue, pp. 323-334. Geological Society of America, Boulder. '); INSERT INTO documentary_instance VALUES (772, 'Further Data on Threatening Rock', NULL, NULL, NULL, NULL, '1938a', 0, 'Southwestern Monuments Report, Supplement for April, pp. 371-372. Coolidge.', 'Journal', '2 pages', NULL, NULL, NULL, NULL, 759, NULL, 'Hamilton, J. B. 1938a Further Data on Threatening Rock. Southwestern Monuments Report, Supplement for April, pp. 371-372. Coolidge. '); INSERT INTO documentary_instance VALUES (773, 'Further Studies of Stabilization of Threatening Rock.', NULL, NULL, NULL, NULL, '1938b', 0, 'Southwestern Monuments Report, Supplement for April, pp. 366-371. Coolidge.', 'Journal', '6 pages', NULL, NULL, NULL, NULL, 760, NULL, 'Hamilton, J.B. 1938b Further Studies of Stabilization of Threatening Rock. Southwestern Monuments Report, Supplement for April, pp. 366-371. Coolidge.'); INSERT INTO documentary_instance VALUES (774, 'The Weight and Stability of Threatening Rock', NULL, NULL, NULL, NULL, '1938c', 0, 'Southwestern Monuments Reports, Supplement for April, pp. 347-352. Coolidge.', 'Journal', '6 pages', NULL, NULL, NULL, NULL, 761, NULL, 'Hamilton, J.B. 1938c The Weight and Stability of Threatening Rock. Southwestern Monuments Reports, Supplement for April, pp. 347-352. Coolidge.'); INSERT INTO documentary_instance VALUES (775, 'Threatening Rock', NULL, NULL, NULL, NULL, '1938', 0, 'National Park Service Region 3 Quarterly 1(1):8. Santa Fe.', 'Journal', '1 page', NULL, NULL, NULL, NULL, 762, NULL, 'Hamilton, J.B. 1939 Threatening Rock. National Park Service Region 3 Quarterly 1(1):8. Santa Fe. '); INSERT INTO documentary_instance VALUES (776, 'A Room among the Ruins of Pueblo Bonito. ', NULL, NULL, NULL, NULL, '1850', 0, NULL, 'Journal', '114 pages', NULL, NULL, NULL, NULL, 763, NULL, 'Hammond J. F. 1850 A Room among the Ruins of Pueblo Bonito. In Journal of a Military Reconnaissance from Santa Fe, New Mexico, to the Navajo Country, by Lt. James H. Simpson. Report of the Secretary of the War to the 31st Congress, 1st Session, Senate Executive Document No. 65. Washington D.C. pp. 55-168. '); INSERT INTO documentary_instance VALUES (777, 'Paper presented at the Fifth International Congress of Radiation Research, Seattle. ', NULL, NULL, NULL, NULL, '1974', 1, NULL, 'Paper', NULL, NULL, NULL, NULL, NULL, 764, NULL, 'Harbottle, Garman 1974* Paper presented at the Fifth International Congress of Radiation Research, Seattle. '); INSERT INTO documentary_instance VALUES (778, 'Reports on Neutron Activation Analysis of Turquoise Artifacts and Numerical Taxonomy Based on the Chemical Analytical Profiles. ', NULL, NULL, NULL, NULL, '1987', 0, NULL, 'Book', '6 pages', NULL, NULL, NULL, NULL, 765, NULL, 'Harbottle, Garman, and Phil C. Weigand 1987 Reports on Neutron Activation Analysis of Turquoise Artifacts and Numerical Taxonomy Based on the Chemical Analytical Profiles. In The Archaeology of the San Xavier Bridge Site (Z BB:13:14), Tucson Basin, Southern Arizona, edited by John C. Ravesloot, pp. 437-442. Cultural Resources Management Division, Archaeological Series No. 171. University of Arizona, Tucson. '); INSERT INTO documentary_instance VALUES (779, 'Turquoise in Pre-Columbian America', NULL, NULL, NULL, NULL, '1992', 0, 'Scientific American 266(2):78-85.', 'Journal', '8 pages', NULL, NULL, NULL, NULL, 766, NULL, 'Harbottle, Garman, and Phil C. Weigand 1992 Turquoise in Pre-Columbian America. Scientific American 266(2):78-85.'); INSERT INTO documentary_instance VALUES (780, 'The Cliff-Dwellers', NULL, NULL, NULL, NULL, '1878', 0, 'Scribner’s Magazine 17:266-276.', 'Journal', '11 pages', NULL, NULL, NULL, NULL, 767, NULL, 'Hardacre, Emma C. 1878 The Cliff-Dwellers. Scribner’s Magazine 17:266-276. '); INSERT INTO documentary_instance VALUES (781, 'Observations on Kiva Designs in Chaco Canyon.', NULL, NULL, NULL, NULL, '1998', 0, 'NewsMac 2a:2-3.', 'Journal', '2 pages', NULL, NULL, NULL, NULL, 768, NULL, 'Hardaker, Chris 1998 Observations on Kiva Designs in Chaco Canyon. NewsMac 2a:2-3. '); INSERT INTO documentary_instance VALUES (782, 'Canid Remains from Pueblo Bonito and Pueblo del Arroyo', NULL, NULL, NULL, NULL, '1954', 0, NULL, 'Book, appendix', '4 pages', NULL, NULL, NULL, NULL, 720, NULL, 'Glover, M. Allen 1954 Canid Remains from Pueblo Bonito and Pueblo del Arroyo. Appendix B in The Material Culture of Pueblo Bonito by Neil M. Judd, pp. 385-388. Smithsonian Miscellaneous Collections Vol. 124. Smithsonian Institution, Washington, D.C. '); INSERT INTO documentary_instance VALUES (783, 'Indians of the Southwest', NULL, NULL, NULL, NULL, '1913', 0, 'Handbook Series No. 2. American Museum of Natural History, New York.', 'Book', NULL, NULL, NULL, NULL, NULL, 721, NULL, 'Goddard, Pliny E. 1913 Indians of the Southwest. Handbook Series No. 2. American Museum of Natural History, New York. '); INSERT INTO documentary_instance VALUES (784, 'Pottery of the Southwestern Indians', NULL, NULL, NULL, NULL, '1928', 0, 'Guide Leaflet No. 73. American Museum of Natural History, New York.', 'Leaflet', NULL, NULL, NULL, NULL, NULL, 722, NULL, 'Goddard, Pliny E. 1928 Pottery of the Southwestern Indians. Guide Leaflet No. 73. American Museum of Natural History, New York. '); INSERT INTO documentary_instance VALUES (785, 'Architectural Details of Chetro Ketl.', NULL, NULL, NULL, NULL, '1929', 0, NULL, NULL, NULL, NULL, NULL, 'Archive 2125J, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. ', NULL, 769, NULL, 'Harding, Mabel 1929 Architectural Details of Chetro Ketl. Archive 2125J, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. '); INSERT INTO documentary_instance VALUES (786, 'Bird Bones from Bc 236, Chaco Canyon National Monument', NULL, NULL, NULL, NULL, '1959a', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'Ms. on file, National Park Service, Western Archaeological and Conservation Center, Tucson.', NULL, 770, NULL, 'Hargrave, Lyndon L. 1959a Bird Bones from Bc 236, Chaco Canyon National Monument. Ms. on file, National Park Service, Western Archaeological and Conservation Center, Tucson.'); INSERT INTO documentary_instance VALUES (787, 'Bird Bones from Chaco Canyon National Monument [Talus Unit]. ', NULL, NULL, NULL, NULL, '1959b', 0, NULL, 'Memorandum on file', NULL, NULL, NULL, 'Memorandum on file, National Park Service, Western Archaeological and Conservation Center, Tucson.', NULL, 771, NULL, 'Hargrave, Lyndon L. 1959b Bird Bones from Chaco Canyon National Monument [Talus Unit]. Memorandum on file, National Park Service, Western Archaeological and Conservation Center, Tucson.'); INSERT INTO documentary_instance VALUES (788, 'Bones from Chetro Ketl.', NULL, NULL, NULL, NULL, '1960a', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'Ms. on file, National Park Service, Western Archaeological and Conservation Center, Tucson.', NULL, 772, NULL, 'Hargrave, Lyndon L. 1960a Bones from Chetro Ketl. Ms. on file, National Park Service, Western Archaeological and Conservation Center, Tucson.'); INSERT INTO documentary_instance VALUES (789, 'Report on Bird Bones from Tseh So (Bc 50), Chaco Canyon National Monument, New Mexico.', NULL, NULL, NULL, NULL, '1960b', 0, NULL, 'Ms. on file, report', NULL, NULL, NULL, 'Ms. on file, National Park Service, Western Archaeological and Conservation Center, Tucson.', NULL, 773, NULL, 'Hargrave, Lyndon L. 1960b Report on Bird Bones from Tseh So (Bc 50), Chaco Canyon National Monument, New Mexico. Ms. on file, National Park Service, Western Archaeological and Conservation Center, Tucson.'); INSERT INTO documentary_instance VALUES (790, 'Bird Bone Artifacts from Bc-51', NULL, NULL, NULL, NULL, '1960c', 0, NULL, 'Memorandum on file', NULL, NULL, NULL, 'Memorandum on file, National Park Service, Western Archaeological and Conservation Center, Tucson..', NULL, 774, NULL, 'Hargrave, Lyndon L. 1960c Bird Bone Artifacts from Bc-51. Memorandum on file, National Park Service, Western Archaeological and Conservation Center, Tucson..'); INSERT INTO documentary_instance VALUES (791, 'Wild Birds Identified from Bones from Una Vida Pueblo in Chaco Canyon National Monument', NULL, NULL, NULL, NULL, '1961a', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'Ms. on file, National Park Service, Western Archaeological and Conservation Center, Tucson.', NULL, 775, NULL, 'Hargrave, Lyndon L. 1961a Wild Birds Identified from Bones from Una Vida Pueblo in Chaco Canyon National Monument. Ms. on file, National Park Service, Western Archaeological and Conservation Center, Tucson.'); INSERT INTO documentary_instance VALUES (792, 'Bird Species Identified from Bones from Southwestern Archaeological Sites by Lyndon L. Hargrave since 1956', NULL, NULL, NULL, NULL, '1961b', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'Ms. on file, National Park Service, Western Archaeological and Conservation Center, Tucson.', NULL, 776, NULL, 'Hargrave, Lyndon L. 1961b Bird Species Identified from Bones from Southwestern Archaeological Sites by Lyndon L. Hargrave since 1956. Ms. on file, National Park Service, Western Archaeological and Conservation Center, Tucson.'); INSERT INTO documentary_instance VALUES (793, 'Some Archeological Bird Bones from Pueblo Bonito, Chaco Canyon National Monument, New Mexico.', NULL, NULL, NULL, NULL, '1961c', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'Ms. on file, National Park Service, Western Archaeological and Conservation Center, Tucson.', NULL, 777, NULL, 'Hargrave, Lyndon L. 1961c Some Archeological Bird Bones from Pueblo Bonito, Chaco Canyon National Monument, New Mexico. Ms. on file, National Park Service, Western Archaeological and Conservation Center, Tucson.'); INSERT INTO documentary_instance VALUES (794, 'Some Bird Bones from Chaco Canyon (Bc 53). ', NULL, NULL, NULL, NULL, '1962', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'Ms. on file, National Park Service, Western Archaeological and Conservation Center, Tucson.', NULL, 778, NULL, 'Hargrave, Lyndon L. 1962 Some Bird Bones from Chaco Canyon (Bc 53). Ms. on file, National Park Service, Western Archaeological and Conservation Center, Tucson.'); INSERT INTO documentary_instance VALUES (795, 'A Report on Bird Bones from Kin Kletso, A Pueblo in Chaco Canyon, New Mexico. ', NULL, NULL, NULL, NULL, '1963a', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'Ms. on file, National Park Service, Western Archaeological and Conservation Center, Tucson.', NULL, 779, NULL, 'Hargrave, Lyndon L. 1963a A Report on Bird Bones from Kin Kletso, A Pueblo in Chaco Canyon, New Mexico. Ms. on file, National Park Service, Western Archaeological and Conservation Center, Tucson.'); INSERT INTO documentary_instance VALUES (796, 'Additional Bird Bones from Kin Kletso', NULL, NULL, NULL, NULL, '1963b', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'Ms. on file, National Park Service, Western Archaeological and Conservation Center, Tucson.', NULL, 780, NULL, 'Hargrave, Lyndon L. 1963b Additional Bird Bones from Kin Kletso. Ms. on file, National Park Service, Western Archaeological and Conservation Center, Tucson.'); INSERT INTO documentary_instance VALUES (797, 'Mexican Macaws, Comparative Osteology and Survey of Remains from the Southwest.', NULL, NULL, 'Tucson', 'University of Arizona Press ', '1970', 0, NULL, 'Paper', NULL, NULL, NULL, NULL, NULL, 781, NULL, 'Hargrave, Lyndon L. 1970 Mexican Macaws, Comparative Osteology and Survey of Remains from the Southwest. Anthropological Papers of the University of Arizona No. 20. University of Arizona Press Tucson.'); INSERT INTO documentary_instance VALUES (798, 'Bird Bones', NULL, NULL, NULL, NULL, '1971', 0, NULL, 'Book', '5 pages', NULL, NULL, NULL, NULL, 782, NULL, 'Hargrave, Lyndon L. 1971 Bird Bones. In Site Bc 236, Chaco Canyon National Monument, New Mexico, by Zorro A. Bradley, pp.89-93. Division of Archeology, Office of Archeology and Historic Preservation, National Park Service, Washington, D.C.'); INSERT INTO documentary_instance VALUES (799, 'The Casamero and Pierre’s Outliers Survey: An Archaeological Class III Inventory of the BLM Lands Surrounding the Outliers.', NULL, NULL, NULL, NULL, '1988', 0, 'Office of Contract Archeology, University of New Mexico, Albuquerque.', 'Report', NULL, NULL, NULL, NULL, NULL, 783, NULL, 'Harper, Randy, Marilyn K. Swift, Barbara J. Mills, James Brandi, and Joseph C. Winter 1988 The Casamero and Pierre’s Outliers Survey: An Archaeological Class III Inventory of the BLM Lands Surrounding the Outliers. Office of Contract Archeology, University of New Mexico, Albuquerque. '); INSERT INTO documentary_instance VALUES (800, 'Ecological Distribution of Some Vertebrates in the San Juan Basin, New Mexico.', NULL, NULL, NULL, NULL, '1963', 0, 'Musuem of New Mexico, Papers in Anthropology, No. 8, p. 64. Santa Fe.', 'Paper', '1 page', NULL, NULL, NULL, NULL, 784, NULL, 'Harris, A. H. 1963 Ecological Distribution of Some Vertebrates in the San Juan Basin, New Mexico. Musuem of New Mexico, Papers in Anthropology, No. 8, p. 64. Santa Fe. '); INSERT INTO documentary_instance VALUES (801, 'The Origin of the Grassland Amphibian, Reptilian, and Mammalian Faunas of the San Juan Chaco River Drainage', NULL, NULL, NULL, NULL, '1965', 0, NULL, 'Unpublished Ph.D. dissertation', NULL, NULL, NULL, NULL, NULL, 785, NULL, 'Harris, A.H. 1965 The Origin of the Grassland Amphibian, Reptilian, and Mammalian Faunas of the San Juan Chaco River Drainage. Unpublished Ph.D. dissertation, Department of Biology, University of New Mexico, Albuquerque.'); INSERT INTO documentary_instance VALUES (802, 'An Archaeological Survey of the Chuska Valley and the Chaco Plateau', NULL, NULL, NULL, NULL, '1968', 0, NULL, 'Report', NULL, NULL, NULL, 'Museum of New Mexico Research Records No. 4. Santa Fe. ', NULL, 786, NULL, 'Harris, A. H., J. Schoenwetter, and A. H. Warren 1968 An Archaeological Survey of the Chuska Valley and the Chaco Plateau. Museum of New Mexico Research Records No. 4. Santa Fe. '); INSERT INTO documentary_instance VALUES (803, 'Acrylic-Modified Earthen Mortar. A Program of Investigation and Laboratory Research into Acrylic-Modified Earthen Mortar Used at Three Prehistoric Pueblo Sites', NULL, NULL, NULL, NULL, '1996', 0, NULL, 'Paper', NULL, NULL, NULL, NULL, NULL, 787, NULL, 'Hartzler, Robert 1996 Acrylic-Modified Earthen Mortar. A Program of Investigation and Laboratory Research into Acrylic-Modified Earthen Mortar Used at Three Prehistoric Pueblo Sites. Intermountain Cultural Resource Center Professional Paper No. 61. National Park Service, Santa Fe. '); INSERT INTO documentary_instance VALUES (804, 'Kiva G [Chetro Ketl]. ', NULL, NULL, NULL, NULL, '1932', 0, NULL, NULL, NULL, NULL, NULL, 'Archive 1877, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. ', NULL, 788, NULL, 'Harwood, Katherine 1932 Kiva G [Chetro Ketl]. Archive 1877, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. '); INSERT INTO documentary_instance VALUES (805, 'Chaco Flora', NULL, NULL, NULL, NULL, '1938', 0, 'Southwestern Monuments Report, Supplements for July-October. Coolidge.', 'Report', NULL, NULL, NULL, NULL, NULL, 789, NULL, 'Hastings, H. F. 1938 Chaco Flora. Southwestern Monuments Report, Supplements for July-October. Coolidge. '); INSERT INTO documentary_instance VALUES (806, 'A Wood Sourcing Study at the Chimney Rock Archaeological Area', NULL, NULL, NULL, NULL, '1994', 0, 'Unpublished M.A. thesis, Northern Arizona University, Flagstaff', 'Unpublished M.A. thesis', NULL, NULL, NULL, NULL, NULL, 790, NULL, 'Hatch, Sharon K. 1994 A Wood Sourcing Study at the Chimney Rock Archaeological Area. Unpublished M.A. thesis, Northern Arizona University, Flagstaff. '); INSERT INTO documentary_instance VALUES (807, 'Review of Dating Pueblo Bonito and Other Ruins of the Southwest by A. E. Douglas', NULL, NULL, NULL, NULL, '1936', 0, 'American Antiquity 1(3):248-249.', 'Journal', '2 pages', NULL, NULL, NULL, NULL, 791, NULL, 'Haury, Emil W. 1936 Review of Dating Pueblo Bonito and Other Ruins of the Southwest by A. E. Douglas. American Antiquity 1(3):248-249. '); INSERT INTO documentary_instance VALUES (808, 'Prehistoric Pottery Pigments in the Southwest.', NULL, NULL, NULL, NULL, '1929', 0, 'American Anthropologist 31:731-754.', 'Journal', '24 pages', NULL, NULL, NULL, NULL, 793, NULL, 'Hawley, Florence M. 1929 Prehistoric Pottery Pigments in the Southwest. American Anthropologist 31:731-754. '); INSERT INTO documentary_instance VALUES (809, 'Field Report. Tree-Ring Resarch 1931. ', NULL, NULL, NULL, NULL, '1931a', 0, NULL, 'Field report', NULL, NULL, NULL, 'Archive 1867, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.', NULL, 794, NULL, 'Hawley, Florence M. 1931a Field Report. Tree-Ring Resarch 1931. Archive 1867, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO documentary_instance VALUES (810, 'Preliminary Field Report on Chettro Ketl Dump-1931.', NULL, NULL, NULL, NULL, '1931b', 0, NULL, 'Field report', NULL, NULL, NULL, 'Archive 1841, 1867, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque', NULL, 795, NULL, 'Hawley, Florence M. 1931b Preliminary Field Report on Chettro Ketl Dump-1931. Archive 1841, 1867, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. '); INSERT INTO documentary_instance VALUES (811, 'Oldest Tree Ring Record of Ancient Pueblos. ', NULL, NULL, NULL, NULL, '1932', 0, 'El Palacio 32:108-110.', 'Journal', '3 pages', NULL, NULL, NULL, NULL, 796, NULL, 'Hawley, Floence M. 1932 Oldest Tree Ring Record of Ancient Pueblos. El Palacio 32:108-110.'); INSERT INTO documentary_instance VALUES (812, 'Tree Ring Chronology in Chaco Canyon', NULL, NULL, NULL, NULL, '1933', 0, 'El Palacio 34:204.', 'Journal', '1 page', NULL, NULL, NULL, NULL, 797, NULL, 'Hawley, Florence M. 1933 Tree Ring Chronology in Chaco Canyon. El Palacio 34:204.'); INSERT INTO documentary_instance VALUES (813, 'The Significance of the Dated Prehistory of Chetro Ketl', NULL, NULL, NULL, NULL, '1934a', 0, 'Ph.D. Dissertation, University of Chicago.', 'Ph.D. dissertation', NULL, NULL, NULL, NULL, NULL, 798, NULL, 'Hawley, Florence M. 1934a The Significance of the Dated Prehistory of Chetro Ketl. Ph.D. Dissertation, University of Chicago.'); INSERT INTO documentary_instance VALUES (814, 'The Significance of the Dated Prehistory of Chetro Ketl', NULL, NULL, 'Albuquerque', ' University of New Mexico Press', '1934b', 0, NULL, 'Journal', NULL, NULL, NULL, NULL, NULL, 799, NULL, 'Hawley, Floence M. 1934b The Significance of the Dated Prehistory of Chetro Ketl. University of New Mexico Bulletin 246, Monograph Series 1(1). University of New Mexico and School of American Research, Santa Fe. University of New Mexico Press, Albuquerque.'); INSERT INTO documentary_instance VALUES (815, 'Field Manual of Prehistoric Southwestern Pottery Types', NULL, NULL, NULL, NULL, '1936', 0, NULL, 'Journal', NULL, NULL, NULL, NULL, NULL, 800, NULL, 'Hawley, Florence M. 1936 Field Manual of Prehistoric Southwestern Pottery Types. University of New Mexico Bulletin No. 291, Anthropological Series 1(4). University of New Mexico, Albuquerque. Revised Nov. 1, 1950.'); INSERT INTO documentary_instance VALUES (816, 'Kokopelli of the Prehistoric Southwestern Pueblo Pantheon', NULL, NULL, NULL, NULL, '1937a', 0, ' American Anthropologist 39:644-646.', 'Journal', '3 pages', NULL, NULL, NULL, NULL, 801, NULL, 'Hawley, Florence M. 1937a Kokopelli of the Prehistoric Southwestern Pueblo Pantheon. American Anthropologist 39:644-646.'); INSERT INTO documentary_instance VALUES (817, 'Reversed Stratigraphy.', NULL, NULL, NULL, NULL, '1937b', 0, ' American Antiquity 2(4):297-299.', 'Journal', '3 pages', NULL, NULL, NULL, NULL, 802, NULL, 'Hawley, Florence M. 1937b Reversed Stratigraphy. American Antiquity 2(4):297-299.'); INSERT INTO documentary_instance VALUES (818, 'Succession of Chaco Canyon Masonry Styles.', NULL, NULL, NULL, NULL, '1937c', 0, NULL, 'Report', '2 pages', NULL, NULL, NULL, NULL, 803, NULL, 'Hawley, Florence M. 1937c Succession of Chaco Canyon Masonry Styles. In Tseh So, a Small House Ruin, Chaco Canyon, New Mexico. Preliminary Report, by Donald Brand, Florence M. Hawley, and Frank C. Hibben et al., pp. 88-89. University of New Mexico Bulletin No. 308, Anthropological Series 2(2). University of New Mexico, Albuquerque.'); INSERT INTO documentary_instance VALUES (819, 'Summary of Pottery from Tseh So', NULL, NULL, NULL, NULL, '1937d', 0, NULL, 'Report', '3 pages', NULL, NULL, NULL, NULL, 804, NULL, 'Hawley, Florence M. 1937d Summary of Pottery from Tseh So. In Tseh So, a Small House, Ruin, Chaco Canyon, New Mexico. Preliminary Report, by Donald Brand, Florence M. Hawley, and Frank C. Hibben et al. Pp. 85-87. University of New Mexico Bulletin No. 308, Anthropological Series 2(2). University of New Mexico, Albuquerque.'); INSERT INTO documentary_instance VALUES (820, 'The Place of Tseh So in Chaco Culture Pattern. ', NULL, NULL, NULL, NULL, '1937e', 0, NULL, 'Report', '5 pages', NULL, NULL, NULL, NULL, 805, NULL, 'Hawley, Florence M. 1937e The Place of Tseh So in Chaco Culture Pattern. In Tseh So, a Small House Ruin in Chaco Canyon, New Mexico. Preliminary Report, by Donald D. Brand, Florence M. Hawley, and Frank C. Hibben et al., pp. 115-119. University of New Mexico Bulletin No. 308, Anthropological Series 2(2). University of New Mexico, Albuquerque.'); INSERT INTO documentary_instance VALUES (821, 'The Refuse Dump at Mound 50', NULL, NULL, NULL, NULL, '1937f', 0, NULL, 'Report', '10 pages', NULL, NULL, NULL, NULL, 806, NULL, 'Hawley, Florence M. 1937f The Refuse Dump at Mound 50. In Tseh So, a Small House Ruin in Chaco Canyon, New Mexico. Preliminary Report, by Donald D. Brand, Florence M. Hawley, and Frank C. Hibben et al., pp. 163-172. University of New Mexico Bulletin No. 308, Anthropological Series 2(2). University of New Mexico, Albuquerque.'); INSERT INTO documentary_instance VALUES (822, 'The Family Tree of Chaco Canyon Masonry.', NULL, NULL, NULL, NULL, '1938a', 0, 'American Antiquity 3(3):247-255.', 'Journal', '9 pages', NULL, NULL, NULL, NULL, 807, NULL, 'Hawley, Florence M. 1938a The Family Tree of Chaco Canyon Masonry. American Antiquity 3(3):247-255.'); INSERT INTO documentary_instance VALUES (823, 'Additions to Descriptions of Chaco Pottery Types.', NULL, NULL, NULL, NULL, '1939a', 0, NULL, 'Report', '5 pages', NULL, NULL, NULL, NULL, 809, NULL, 'Hawley, Florence M. 1939a Additions to Descriptions of Chaco Pottery Types. In Preliminary Report on the 1937 Excavations, Bc 50-51, Chaco Canyon, New Mexico, edited by Clyde Kluckhohn and Paul Reiter, pp. 49-53. University of New Mexico Bulletin No. 345, Anthropological Series 3(2). University of New Mexico, Albuquerque.'); INSERT INTO documentary_instance VALUES (824, 'Mummy Dusters, New Nexico Style', NULL, NULL, NULL, NULL, '1939b', 0, 'New Mexico 17:20-24 and 34:37.', 'Journal', '6 pages', NULL, NULL, NULL, NULL, 810, NULL, 'Hawley, Florence M. 1939b Mummy Dusters, New Nexico Style. New Mexico 17:20-24 and 34:37.'); INSERT INTO documentary_instance VALUES (825, 'Remembering Chaco’s First Digs', NULL, NULL, NULL, NULL, '1998', 0, 'New Mexico Magazine 76(4). April.', 'Journal', NULL, NULL, NULL, NULL, NULL, 811, NULL, 'Hawley, Florence M. 1998 Remembering Chaco’s First Digs. New Mexico Magazine 76(4). April.'); INSERT INTO documentary_instance VALUES (826, 'Trees Do Not Lie', NULL, NULL, NULL, NULL, '1940', 0, 'American Forests 46(1):66-68, 95-96.', 'Journal', '5 pages', NULL, NULL, NULL, NULL, 2620, NULL, 'Hawley, Florence M., and Neil M. Clark 1940 Trees Do Not Lie. American Forests 46(1):66-68, 95-96. '); INSERT INTO documentary_instance VALUES (827, 'A Cache of Gardening Tools: Chaco Canyon. ', NULL, NULL, NULL, NULL, '1975a', 0, NULL, 'Paper', '10 pages', NULL, NULL, NULL, NULL, 813, NULL, 'Hayes, Alden C. 1975a A Cache of Gardening Tools: Chaco Canyon. In Collected Papers in Honor of Marjorie Ferguson Lambert, edited by Albert H. Schroeder, pp. 73-84. Papers of the Archaeological Society of New Mexico: 3. Albuquerque. '); INSERT INTO documentary_instance VALUES (828, 'Southwestern Dated Ruins, Chaco Canyon, New Mexico', NULL, NULL, NULL, NULL, '1938b', 0, 'Tree-Ring Bulletin 5(1):6-7. University of Arizona, Tucson.', 'Journal', '2 pages', NULL, NULL, NULL, NULL, 808, NULL, 'Hawley, Florence M. 1938b Southwestern Dated Ruins, Chaco Canyon, New Mexico. Tree-Ring Bulletin 5(1):6-7. University of Arizona, Tucson.'); INSERT INTO documentary_instance VALUES (829, 'A Survey of Chaco Canyon Archeology. ', NULL, NULL, NULL, NULL, '1975b', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico', NULL, 814, NULL, 'Hayes, alden C. 1975b A Survey of Chaco Canyon Archeology. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico. Published in 1981'); INSERT INTO documentary_instance VALUES (830, 'Pithouse Y at Shabikeschee (29 SJ 1659).', NULL, NULL, NULL, NULL, '1975c', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.', NULL, 815, NULL, 'Hayes, Alden C. 1975c Pithouse Y at Shabikeschee (29 SJ 1659). Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO documentary_instance VALUES (831, NULL, NULL, NULL, NULL, NULL, '1976', 0, NULL, 'Ms. on file', NULL, NULL, NULL, ' Ms. on file, Archive No. 2071C, Chaco Culture NHP Museum Archive, NPS Chaco Archive, University of New Mexico, Albuquerque.', NULL, 816, NULL, 'Hayes, Alden C. 1976 Chaco Canyon Survey Report. Ms. on file, Archive No. 2071C, Chaco Culture NHP Museum Archive, NPS Chaco Archive, University of New Mexico, Albuquerque.'); INSERT INTO documentary_instance VALUES (832, 'A Survey of Chaco Canyon Archeology. ', NULL, NULL, NULL, NULL, '1978', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. ', NULL, 817, NULL, 'Hayes, Alden C. 1978 A Survey of Chaco Canyon Archeology. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published in 1981.'); INSERT INTO documentary_instance VALUES (833, 'A Survey of Chaco Canyon Archeology.', NULL, NULL, NULL, NULL, '1981', 0, NULL, 'Book', '68 pages', NULL, NULL, NULL, NULL, 818, NULL, 'Hayes, Alden C. 1981 A Survey of Chaco Canyon Archeology. In Archeological Surveys of Chaco Canyon, by Alden C. Hayes, David M. Brugge, and W. James Judge, pp. 1-68. Publications in Archeology 18A, Chaco Canyon Studies. National Park Service, Washignton, D.C. '); INSERT INTO documentary_instance VALUES (834, 'Archeological Surveys of Chaco Canyon, New Mexico', NULL, NULL, NULL, NULL, '1981', 0, NULL, 'Book', NULL, NULL, NULL, NULL, NULL, 819, NULL, 'Hayes, Alden C., David M. Brugge, and W. James Judge 1981 Archeological Surveys of Chaco Canyon, New Mexico. Publications in Archeology 18A, Chaco Canyon Studies. National Park Service, Washington, D.C. '); INSERT INTO documentary_instance VALUES (835, 'An Anasazi Shrine in Chaco Canyon.', NULL, NULL, 'Norman, OK', 'Hooper Press', '1975', 0, NULL, 'Book', '14 pages', NULL, NULL, NULL, NULL, 820, NULL, 'Hayes, Alden C., and Thomas C. Windes 1975 An Anasazi Shrine in Chaco Canyon. In Collected Papers in Honor of Florence Hawley Ellis, edited by Theodore R. Frisbie, pp. 143-156. Papers of the Archaeological Society of New Mexico: 2. Hooper Press, Norman, OK. '); INSERT INTO documentary_instance VALUES (836, 'Prehistoric Ceramics of the Puerco Valley.', NULL, NULL, NULL, NULL, '1998', 0, NULL, 'Journal', NULL, NULL, NULL, NULL, NULL, 821, NULL, 'Hays-Gilpin, Kelley, and Eric von Hartesveldt (editors) 1998 Prehistoric Ceramics of the Puerco Valley. The 1995 Chambers-Sanders Trust Lands Ceramic Conference. Museum of Northern Arizona Ceramic Series No.7, and Navajo Nation, Flagstaff. '); INSERT INTO documentary_instance VALUES (837, 'Anasazi Trails', NULL, NULL, NULL, NULL, '1987', 0, 'Archaeology 40(3):22-29.', 'Journal', '8 pages', NULL, NULL, NULL, NULL, 822, NULL, 'Hecht, Robert 1987 Anasazi Trails. Archaeology 40(3):22-29. '); INSERT INTO documentary_instance VALUES (838, 'Regional Social Interaction in the Northern Southwest: Evidence and Issues', NULL, NULL, NULL, NULL, '1996', 0, NULL, 'Paper', '12 pages', NULL, NULL, NULL, NULL, 823, NULL, 'Hegmon, Michelle, and Stephen Plog 1996 Regional Social Interaction in the Northern Southwest: Evidence and Issues. In Interpreting Southwestern Diversity: Underlying Principles and Overarching Patterns, edited by Paul R. Fish, and J. J. Reed, pp. 23-34. Anthropological Research Papers No. 48. Arizona State University, Tempe. '); INSERT INTO documentary_instance VALUES (839, 'Floral Survey for Mesa Verde Cactus (Sclerocactus mesae-verdae). ', NULL, NULL, NULL, NULL, '1981', 0, 'Submitted in fulfillment of Contract PX 7029-1-0110', 'Ms. on file', NULL, NULL, NULL, 'Ms. on file, Natural Resources Office, National Park Service, Intermountain Region, Santa Fe Office. ', NULL, 824, NULL, 'Heil, Ken 1981 Floral Survey for Mesa Verde Cactus (Sclerocactus mesae-verdae). Submitted in fulfillment of Contract PX 7029-1-0110. Ms. on file, Natural Resources Office, National Park Service, Intermountain Region, Santa Fe Office. '); INSERT INTO documentary_instance VALUES (840, 'Hungo Pavie Ruin, Chaco Canyon National Monument, Stabilization Report, 1971', NULL, NULL, NULL, NULL, '1971', 0, NULL, 'Ms. on file, report', NULL, NULL, NULL, 'Ms. on file, Chaco Culture National Historical Park and NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.', NULL, 825, NULL, 'Henderson, Sam R. 1971 Hungo Pavie Ruin, Chaco Canyon National Monument, Stabilization Report, 1971. Ms. on file, Chaco Culture National Historical Park and NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. '); INSERT INTO documentary_instance VALUES (841, 'Pueblo Pintado Ruin, Chaco Canyon National Monument, New Mexico, Stabilization Report, 1972.', NULL, NULL, NULL, NULL, '1972', 0, NULL, 'Ms. on file, report', NULL, NULL, NULL, 'Ms. on file, Chaco Culture National Historical Park and NPS Chaco Archive, University of New Mexico, Albuquerque. ', NULL, 826, NULL, 'Henderson, Sam R., and Martin T. Mayer 1972 Pueblo Pintado Ruin, Chaco Canyon National Monument, New Mexico, Stabilization Report, 1972. Ms. on file, Chaco Culture National Historical Park and NPS Chaco Archive, University of New Mexico, Albuquerque. '); INSERT INTO documentary_instance VALUES (842, 'Laying Out a Non-meridian, Large-scale Alignment and Possibilities of Pre-Chacoan ‘Georitual’ Lines Focused at Canyon de Chelly, Kin Bineola, and Hopi Second Mesa. ', NULL, NULL, NULL, NULL, '1999', 0, 'Poster presented at the 72nd Pecos Conference, Pinedale, AZ.', 'Poster', NULL, NULL, NULL, NULL, NULL, 827, NULL, 'Hensler, Kathy, and Dennis Doxtater 1999 Laying Out a Non-meridian, Large-scale Alignment and Possibilities of Pre-Chacoan ‘Georitual’ Lines Focused at Canyon de Chelly, Kin Bineola, and Hopi Second Mesa. Poster presented at the 72nd Pecos Conference, Pinedale, AZ. '); INSERT INTO documentary_instance VALUES (843, 'The Organization of Migrant Communities on the Chacoan Frontier', NULL, NULL, NULL, NULL, '1997', 0, NULL, 'Paper', NULL, NULL, NULL, NULL, NULL, 828, NULL, 'Herr, Sarah A. 1997 The Organization of Migrant Communities on the Chacoan Frontier. Paper presented at the 62nd Annual Meeting of the Society for American Archaeology, Nashville. '); INSERT INTO documentary_instance VALUES (844, 'Beyond Chaco: Great Kiva Communities on the Mogollon Rim Frontier', NULL, NULL, NULL, NULL, '2001', 0, NULL, 'Paper', NULL, NULL, NULL, NULL, NULL, 829, NULL, 'Herr, Sarah A. 2001 Beyond Chaco: Great Kiva Communities on the Mogollon Rim Frontier. Anthropological Papers of the University of Arizona, No. 66. University of Arizona Press, Tucson. '); INSERT INTO documentary_instance VALUES (845, 'Historic and Prehistoric Ruins of the Southwest and Their Preservation', NULL, NULL, NULL, NULL, '1904', 0, ' U.S. Department of Interior. General Land Office Circular. Washington, D.C.', NULL, NULL, NULL, NULL, NULL, NULL, 830, NULL, 'Hewett, Edgar L. 1904 Historic and Prehistoric Ruins of the Southwest and Their Preservation. U.S. Department of Interior. General Land Office Circular. Washington, D.C. '); INSERT INTO documentary_instance VALUES (846, 'A General View of the Archaeology of the Pueblo Region', NULL, NULL, NULL, NULL, '1905a', 0, 'In Smithsonian Institution Annual Report 1904, pp. 583-605.', 'Report', '23 pages', NULL, NULL, NULL, NULL, 831, NULL, 'Hewett, Edgar L. 1905a A General View of the Archaeology of the Pueblo Region. In Smithsonian Institution Annual Report 1904, pp. 583-605.'); INSERT INTO documentary_instance VALUES (847, 'Prehistoric Irrigation in the Navajo Desert. ', NULL, NULL, NULL, NULL, '1905b', 0, 'Records of the Past 4:323-329.', 'Journal', '7 pages', NULL, NULL, NULL, NULL, 832, NULL, 'Hewett, Edgar L. 1905b Prehistoric Irrigation in the Navajo Desert. Records of the Past 4:323-329.'); INSERT INTO documentary_instance VALUES (848, 'Les Communautes Anciennes dans le Desert Americain.', NULL, NULL, NULL, NULL, '1908', 0, 'Ph.D. dissertation, Sociology, University of Geneva', 'Ph.D. dissertation', NULL, NULL, NULL, NULL, NULL, 833, NULL, 'Hewett, Edgar L. 1908 Les Communautes Anciennes dans le Desert Americain. Ph.D. dissertation, Sociology, University of Geneva.'); INSERT INTO documentary_instance VALUES (849, 'The Chaco Canyon and Its Monuments.', NULL, NULL, NULL, NULL, '1921a', 0, ' Art and Archaeology 11(1-2):3-28.', 'Journal', '26 pages', NULL, NULL, NULL, NULL, 834, NULL, 'Hewett, Edgar L. 1921a The Chaco Canyon and Its Monuments. Art and Archaeology 11(1-2):3-28.'); INSERT INTO documentary_instance VALUES (850, 'The Excavation of Chetro Kettle, Chaco Canyon, 1920', NULL, NULL, NULL, NULL, '1921b', 0, 'Art and Archaeology 11(1-2):45-62.', 'Journal', '18 pages', NULL, NULL, NULL, NULL, 835, NULL, 'Hewett, Edgar L. 1921b The Excavation of Chetro Kettle, Chaco Canyon, 1920. Art and Archaeology 11(1-2):45-62.'); INSERT INTO documentary_instance VALUES (851, 'The Chaco Canyon in 1921', NULL, NULL, NULL, NULL, '1922', 0, 'Art and Archaeology 14(3):115-131.', 'Journal', '17 pages', NULL, NULL, NULL, NULL, 836, NULL, 'Hewett, Edgar L. 1922 The Chaco Canyon in 1921. Art and Archaeology 14(3):115-131.'); INSERT INTO documentary_instance VALUES (852, 'Resumé of the Work of the School for 1929.', NULL, NULL, NULL, NULL, '1929a', 0, NULL, 'Paper', NULL, NULL, NULL, NULL, NULL, 837, NULL, 'Hewett, Edgar L. 1929a Resumé of the Work of the School for 1929. School of American Research, Santa Fe.'); INSERT INTO documentary_instance VALUES (853, 'Chaco Canyon', NULL, NULL, NULL, NULL, '1929b', 0, 'El Palacio 26:19-25.', 'Journal', '7 pages', NULL, NULL, NULL, NULL, 838, NULL, 'Hewett, Edgar L. 1929b Chaco Canyon. El Palacio 26:19-25.'); INSERT INTO documentary_instance VALUES (854, 'Chaco Canyon Past and Present', NULL, NULL, NULL, NULL, '1929c', 0, 'El Palacio 26:313-315.', 'Journal', '3 pages', NULL, NULL, NULL, NULL, 839, NULL, 'Hewett, Edgar L. 1929c Chaco Canyon Past and Present. El Palacio 26:313-315.'); INSERT INTO documentary_instance VALUES (855, 'Ancient Life in the American Southwest, with an Introduction on the General History of the American Race', NULL, NULL, NULL, NULL, '1930', 0, 'Pp. 289-322. Bobbs-Merrill, Indianapolis.', 'Book', '34 pages', NULL, NULL, NULL, NULL, 840, NULL, 'Hewett, Edgar L. 1930 Ancient Life in the American Southwest, with an Introduction on the General History of the American Race. Pp. 289-322. Bobbs-Merrill, Indianapolis.'); INSERT INTO documentary_instance VALUES (856, 'The Significance of the Deeper Excavations at Chetro Ketl', NULL, NULL, NULL, NULL, '1931', 0, ' American Journal of Archaeology 35:58.', 'Journal', NULL, NULL, NULL, NULL, NULL, 841, NULL, 'Hewett, Edgar L. 1931 The Significance of the Deeper Excavations at Chetro Ketl. American Journal of Archaeology 35:58.'); INSERT INTO documentary_instance VALUES (857, 'Dr. Hewett Announces Discoveries.', NULL, NULL, NULL, NULL, '1932a', 0, ' El Palacio 32(19-20):255-257.', 'Journal', '3 pages', NULL, NULL, NULL, NULL, 2621, NULL, 'Hewett, Edgar L. 1932a Dr. Hewett Announces Discoveries. El Palacio 32(19-20):255-257.'); INSERT INTO documentary_instance VALUES (858, 'New Dates from Chaco Canyon', NULL, NULL, NULL, NULL, '1932b', 0, 'El Palacio 32(13-14):185-186.', 'Journal', '2 pages', NULL, NULL, NULL, NULL, 843, NULL, 'Hewett, Edgar L. 1932b New Dates from Chaco Canyon. El Palacio 32(13-14):185-186.'); INSERT INTO documentary_instance VALUES (859, 'Report on Chaco Excavations, 1932', NULL, NULL, NULL, NULL, '1932c', 0, 'Southwest Monuments, December, pp. 9-11, Globe.', 'Journal', '3 pages', NULL, NULL, NULL, NULL, 844, NULL, 'Hewett, Edgar L. 1932c Report on Chaco Excavations, 1932. Southwest Monuments, December, pp. 9-11, Globe.'); INSERT INTO documentary_instance VALUES (860, 'The Chaco Cañon in 1932', NULL, NULL, NULL, NULL, '1932d', 0, 'Art and Archaeology 33(3):147-158.', 'Journal', '12 pages', NULL, NULL, NULL, NULL, 845, NULL, 'Hewett, Edgar L. 1932d The Chaco Cañon in 1932. Art and Archaeology 33(3):147-158.'); INSERT INTO documentary_instance VALUES (861, 'The Excavation of Chetro Ketl, Chaco Canyon, 1932-33', NULL, NULL, NULL, NULL, '1934', 0, ' Art and Archaeology 35(2):51-58, 68.', 'Journal', '10 pages', NULL, NULL, NULL, NULL, 846, NULL, 'Hewett, Edgar L. 1934 The Excavation of Chetro Ketl, Chaco Canyon, 1932-33. Art and Archaeology 35(2):51-58, 68.'); INSERT INTO documentary_instance VALUES (862, 'Fieldwork in the Chaco during 1934.', NULL, NULL, NULL, NULL, '1935', 0, 'American Antiquity 1(2):120-121.', 'Journal', '2 pages', NULL, NULL, NULL, NULL, 847, NULL, 'Hewett, Edgar L. 1935 Fieldwork in the Chaco during 1934. American Antiquity 1(2):120-121.'); INSERT INTO documentary_instance VALUES (863, 'The Chaco Canyon and Its Monuments', NULL, NULL, NULL, NULL, '1936', 0, NULL, 'Book', NULL, NULL, NULL, NULL, NULL, 848, NULL, 'Hewett, Edgar L. 1936 The Chaco Canyon and Its Monuments. Handbooks of Archaeological History. University of New Mexico and School of American Research, Albuquerque. '); INSERT INTO documentary_instance VALUES (864, 'Wijiji at Chaco Canyon: A Winter Solstice Sunrise and Sunset Location', NULL, NULL, NULL, NULL, '1983', 0, 'Archaeoastronomy VI (1-4): 66-73.', NULL, NULL, NULL, NULL, NULL, NULL, 2610, NULL, 'Zeilik, Michael, and Richard Elston 1983 Wijiji at Chaco Canyon: A Winter Solstice Sunrise and Sunset Location. Archaeoastronomy VI(1-4):66-73. '); INSERT INTO documentary_instance VALUES (865, 'The Pueblo Indian World', NULL, NULL, 'Albuquerque', 'University of New Mexico Press', '1945', 0, NULL, 'Book', NULL, NULL, NULL, NULL, NULL, 849, NULL, 'Hewett, Edgar L., and Bertha P. Dutton 1945 The Pueblo Indian World. University of New Mexico Press, Albuquerque. '); INSERT INTO documentary_instance VALUES (866, 'Landmarks of New Mexico', NULL, NULL, 'Albuquerque', 'University of New Mexico Press', '1940', 0, NULL, 'Book', NULL, NULL, NULL, NULL, NULL, 850, NULL, 'Hewett, Edgar L., and Wayne L. Mauzy 1940 Landmarks of New Mexico. University of New Mexico Press, Albuquerque. '); INSERT INTO documentary_instance VALUES (867, 'All in Sacred Time. Archaeoastronomy in the Pueblo Southwest.', NULL, NULL, NULL, NULL, '1993', 0, 'Mirage Summer/Fall 3-6.', NULL, NULL, NULL, NULL, NULL, NULL, 2609, NULL, '1993 All in Sacred Time. Archaeoastronomy in the Pueblo Southwest. Mirage Summer/Fall 3-6.'); INSERT INTO documentary_instance VALUES (868, 'Mammals and Bird Remains.', NULL, NULL, NULL, NULL, '1937a', 0, NULL, 'Journal', '6 pages', NULL, NULL, NULL, NULL, 851, NULL, 'Hibben, Frank C. 1937a Mammals and Bird Remains. In Tseh So, a Small House Ruin, Chaco Canyon, New Mexico, Preliminary Report, by Donald D. Brand, Florence M. Hawley, and Frank C. Hibben, et al., pp. 101-106. University of New Mexico Bulletin No. 308, Anthropological Series 2(2). University of New Mexico, Albuquerque. '); INSERT INTO documentary_instance VALUES (869, 'Stone and Other Artifacts', NULL, NULL, NULL, NULL, '1937b', 0, NULL, 'Journal', '11 pages', NULL, NULL, NULL, NULL, 852, NULL, 'Hibben, Frank C. 1937b Stone and Other Artifacts. In Tseh So, a Small House Ruin, Chaco Canyon, New Mexico, Preliminary Report, by Donald D. Brand, Florence M. Hawley, and Frank C. Hibben, et al., pp. 90-100. University of New Mexico Bulletin No. 308, Anthropological Series 2(2). University of New Mexico, Albuquerque.'); INSERT INTO documentary_instance VALUES (870, 'The Site and Excavations', NULL, NULL, NULL, NULL, '1937c', 0, NULL, 'Book', '18 pages', NULL, NULL, NULL, NULL, 853, NULL, 'Hibben, Frank C. 1937c The Site and Excavations. In Tseh So, a Small House Ruin, Chaco Canyon, New Mexico. Preliminary Report, by Donald D. Brand, Florence M. Hawley, and Frank C. Hibben et al, pp. 67-84. University of New Mexico Bulletin No. 308, Anthropological Series 2(2). University of New Mexico, Albuquerque.'); INSERT INTO documentary_instance VALUES (871, 'Astronomy and Ritual: The Rhythm of the Social Calendar in the U.S. Southwest.', NULL, NULL, NULL, NULL, '1988', 0, 'BAR International Series, No. 454.', NULL, NULL, NULL, NULL, NULL, NULL, 2608, NULL, '1988 Astronomy and Ritual: The Rhythm of the Social Calendar in the U.S. Southwest. In New Directions in American Archaeoastromony (Proceedings of the 46 International Congress of Americanists, Amsterday, Netherlands, 1988), edited by Anthony F. Aveni, pp. 183-198. BAR International Series, No. 454. Oxford.'); INSERT INTO documentary_instance VALUES (872, 'Vegetal Remains', NULL, NULL, NULL, NULL, '1937d', 0, NULL, 'Journal', '5 pages', NULL, NULL, NULL, NULL, 854, NULL, 'Hibben, Frank C. 1937d Vegetal Remains. In Tseh So, a Small House Ruin, Chaco Canyon, New Mexico. Preliminary Report, by Donald D. Brand, Florence M. Hawley, and Frank C. Hibben et al., pp. 107-111. University of New Mexico Bulletin No. 308, Anthropological Series 2(2). University of New Mexico, Albuquerque. '); INSERT INTO documentary_instance VALUES (873, 'The Prehistoric Road System of the Chacoan Culture', NULL, NULL, NULL, NULL, '1990', 0, 'The Artifact 28(2):43-54', 'Journal', '12 pages', NULL, NULL, NULL, NULL, 855, NULL, 'Hill, Roger A. 1990 The Prehistoric Road System of the Chacoan Culture. The Artifact 28(2):43-54. '); INSERT INTO documentary_instance VALUES (874, '[Pueblo Bonito, Chaco Canyon.] ', NULL, NULL, NULL, NULL, '1878', 0, NULL, 'Book', '2 pages', NULL, NULL, NULL, NULL, 856, NULL, 'Hinton, Richard J. 1878 [Pueblo Bonito, Chaco Canyon.] In The Hand-Book to Arizona: Its Resources, History, Towns, Mines, Ruins, and Scenery, by Richard J. Hinton, pp. 428-429. Payot, Upham, San Francisco. '); INSERT INTO documentary_instance VALUES (875, 'Some Plant Materials Used Medicinally and Otherwise by the Navaho Indians in the Chaco Canyon, New Mexico', NULL, NULL, NULL, NULL, '1956', 0, 'El Palacio 63(5-6):146-165.', 'Journal', '20 pages', NULL, NULL, NULL, NULL, 857, NULL, 'Hocking, George M. 1956 Some Plant Materials Used Medicinally and Otherwise by the Navaho Indians in the Chaco Canyon, New Mexico. El Palacio 63(5-6):146-165. '); INSERT INTO documentary_instance VALUES (876, 'Review of G. H. Pepper: Ceremonial Deposits Found in an Ancient Pueblo Estufa in Northern New Mexico', NULL, NULL, NULL, NULL, '1900', 0, 'American Anthropologist 2:169-170.', 'Journal', '2 pages', NULL, NULL, NULL, NULL, 858, NULL, 'Hodge, Frederick W. 1900 Review of G. H. Pepper: Ceremonial Deposits Found in an Ancient Pueblo Estufa in Northern New Mexico. American Anthropologist 2:169-170. '); INSERT INTO documentary_instance VALUES (877, 'Anticipation in Ceremony: The Readiness is All.', NULL, NULL, NULL, NULL, '1987', 0, 'Astronomy and Ceremony in the Prehistoric Southwest, p. 25-41.', NULL, NULL, NULL, NULL, NULL, NULL, 2607, NULL, '1987 Anticipation in Ceremony: The Readiness is All. In Astronomy and Ceremony in the Prehistoric Southwest, edited by John B. Carlson and W. James Judge, pp. 25-41. Papers of the Maxwell Museum of Anthropology No. 2. University of New Mexico, Albuquerque.'); INSERT INTO documentary_instance VALUES (878, 'Arroyo and Wash Development in the Chaco Canyon Country and Contiguous Areas of Northwestern New Mexico and Northeastern Arizona.', NULL, NULL, NULL, NULL, '1974', 0, NULL, 'Ms. on file, report', NULL, NULL, NULL, 'Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. ', NULL, 859, NULL, 'Hodges, W. K. 1974 Arroyo and Wash Development in the Chaco Canyon Country and Contiguous Areas of Northwestern New Mexico and Northeastern Arizona. Project Report to the National Park Service for Contract CX-7000-3-0101 to the Geography Department of the University of New Mexico. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. '); INSERT INTO documentary_instance VALUES (879, 'Underground Kiva Passages', NULL, NULL, NULL, NULL, '1953', 0, 'American Anthropologist 29:76.', 'Journal', NULL, NULL, NULL, NULL, NULL, 860, NULL, 'Hoebel, E. A. 1953 Underground Kiva Passages. American Anthropologist 29:76. '); INSERT INTO documentary_instance VALUES (880, 'Report on Chaco Cranium', NULL, NULL, 'Washington, D.C.', 'Government Printing Office', '1878', 0, NULL, 'Book', '7 pages', NULL, NULL, NULL, NULL, 861, NULL, 'Hoffman, W. J. 1878 Report on Chaco Cranium. In Tenth Annual Report of the United States Geological and Geographical Survey of the Territories, Embracing Colorado and Parts of Adjacent Territories, Being a Report on the Progress of the Exploration for the Year 1876, by F. V. Hayden. Part III. Archeology, pp. 451-457. Government Printing Office, Washington, D.C. '); INSERT INTO documentary_instance VALUES (881, 'Archaeology of the San Juan Breaks: The Navajo Occupation', NULL, NULL, NULL, NULL, '1991', 0, 'Office of Contract Archeology, University of New Mexico, Albuquerque.', 'Paper', NULL, NULL, NULL, NULL, NULL, 863, NULL, 'Hogan, Patrick 1991 Archaeology of the San Juan Breaks: The Navajo Occupation. Office of Contract Archeology, University of New Mexico, Albuquerque. '); INSERT INTO documentary_instance VALUES (882, 'The Ethnoastronomy of the Historic Pueblos. II. Moon Watching.', NULL, NULL, NULL, NULL, '1986', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2606, NULL, '1986e The Ethnoastronomy of the Historic Pueblos. II. Moon Watching. Archaeoastronomy (Supplement to the Journal of the History of Astronomy) 10:1-22.'); INSERT INTO documentary_instance VALUES (883, 'Archaeology of the San Juan Breaks: The Anasazi Occupation', NULL, NULL, NULL, NULL, '1991', 0, 'Office of Contract Archaeology, University of New Mexico, Albuquerque.', 'Journal', NULL, NULL, NULL, NULL, NULL, 862, NULL, 'Hogan, Patrick, and Lynne Sebastian (editors) 1991 Archaeology of the San Juan Breaks: The Anasazi Occupation. Office of Contract Archaeology, University of New Mexico, Albuquerque. '); INSERT INTO documentary_instance VALUES (884, 'Response', NULL, NULL, NULL, NULL, '1986', 0, 'Science 231: 1058', NULL, NULL, NULL, NULL, NULL, NULL, 2605, NULL, '1986d Response. Science 231:1058.'); INSERT INTO documentary_instance VALUES (885, 'Economy and Interaction along the Lower Chaco River: The Navajo Mine Archaeological Program Mining Area III', NULL, NULL, NULL, NULL, '1982', 0, 'Office of Contract Archeology, University of New Mexico, Albuquerque.', 'Report', NULL, NULL, NULL, NULL, NULL, 864, NULL, 'Hogan, Patrick, and Joseph C. Winter (editors) 1982 Economy and Interaction along the Lower Chaco River: The Navajo Mine Archaeological Program Mining Area III. Office of Contract Archeology, University of New Mexico, Albuquerque. '); INSERT INTO documentary_instance VALUES (887, 'Comparing Southwestern and Southeastern Great Towns', NULL, NULL, 'Dragoon and Albuquerque', 'The Amerind Foundation and University of New Mexico Press', '1999', 0, NULL, 'Book', '6 pages', NULL, NULL, NULL, NULL, 865, NULL, 'Holley, George R., and Stephen H. Lekson 1999 Comparing Southwestern and Southeastern Great Towns. In Great Towns and Regional Polities in the Prehistoric American Southwest and Southeast, edited by Jill E. Neitzel, pp. 39-44. The Amerind Foundation, Dragoon, and University of New Mexico Press, Albuquerque. '); INSERT INTO documentary_instance VALUES (886, 'Response.', NULL, NULL, NULL, NULL, '1986', 0, 'Archaeoastronomy 10:66-68.', NULL, NULL, NULL, NULL, NULL, NULL, 2604, NULL, '1986c Response. Archaeoastronomy (Supplement to the Journal of the History of Astronomy) 10:66-68.'); INSERT INTO documentary_instance VALUES (888, 'Excavation of Mound No. 21', NULL, NULL, NULL, NULL, '1934', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'Ms. on file, School of American Research. ', NULL, 866, NULL, 'Hollenbach, M. 1934 Excavation of Mound No. 21. Ms. on file, School of American Research. '); INSERT INTO documentary_instance VALUES (889, 'The Prehistoric Southwest', NULL, NULL, NULL, NULL, '1923', 0, 'El Palacio 15:35-39.', 'Journal', '5 pages', NULL, NULL, NULL, NULL, 867, NULL, 'Holmquist, Adela C. 1923 The Prehistoric Southwest. El Palacio 15:35-39. '); INSERT INTO documentary_instance VALUES (890, 'Keeping the Sacred and Planting Calendar: Archaeoastronomy in the Pueblo Southwest.', NULL, NULL, NULL, NULL, '1986', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2603, NULL, '1986b Keeping the Sacred and Planting Calendar: Archaeoastronomy in the Pueblo Southwest. In World Archaeoastronomy. Selected Papers from the 2nd Oxford International Conference on Archaeoastronomy, Held at Merida, Yucatan, Mexico, 13-17 January 1986, edited by Anthony F. Aveni, pp. 143-166. Cambridge University Press, New York.'); INSERT INTO documentary_instance VALUES (891, 'Report on Prehistoric Ruins of Chaco Canyon, New Mexico', NULL, NULL, NULL, NULL, '1901', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'Ms. on file, National Anthropological Archive, Washington, D.C. ', NULL, 868, NULL, 'Holsinger, S. J. 1901 Report on Prehistoric Ruins of Chaco Canyon, New Mexico. Ordered by General Land Office Letter "P," December 18, 1900. General Land Office. Ms. on file, National Anthropological Archive, Washington, D.C. '); INSERT INTO documentary_instance VALUES (892, 'An Archaeological Reconnaissance of the Kin Ya''a Locality near Crownpoint , New Mexico, Conducted for Camp Dresser & McKee, Inc., Farmington. ', NULL, NULL, NULL, NULL, '1979', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'Ms. on file, San Juan Campus, New Mexico State University, Farmington', NULL, 869, NULL, 'Hooten, L. Jean 1979 An Archaeological Reconnaissance of the Kin Ya''a Locality near Crownpoint , New Mexico, Conducted for Camp Dresser & McKee, Inc., Farmington. Ms. on file, San Juan Campus, New Mexico State University, Farmington. '); INSERT INTO documentary_instance VALUES (893, 'Keeping a Seasonal Calendar at Pueblo Bonito', NULL, NULL, NULL, NULL, '1986', 0, 'Archaeoastronomy 8:79-87', NULL, NULL, NULL, NULL, NULL, NULL, 2602, NULL, '1986a Keeping a Seasonal Calendar at Pueblo Bonito. Archaeoastronomy 8:79-87.'); INSERT INTO documentary_instance VALUES (894, 'An Archaeological Reconnaissance near Crownpoint, New Mexico,Conducted for Camp Dresser & McKee, Inc.', NULL, NULL, NULL, NULL, '1978', 0, NULL, 'Ms .on file', NULL, NULL, NULL, ' Ms. on file, San Juan Campus, New Mexico State University, Farmington', NULL, 870, NULL, 'Hooten, L. Jean, and Scott W. Andrae 1978 An Archaeological Reconnaissance near Crownpoint, New Mexico,Conducted for Camp Dresser & McKee, Inc. Ms. on file, San Juan Campus, New Mexico State University, Farmington. '); INSERT INTO documentary_instance VALUES (895, 'Report on the South Wall Enclosing the Plaza at Chetro Ketl', NULL, NULL, NULL, NULL, '1933', 0, NULL, 'Report', NULL, NULL, NULL, 'Archive 1876, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.', NULL, 871, NULL, 'Howe, Gertrude D. 1933 Report on the South Wall Enclosing the Plaza at Chetro Ketl. Archive 1876, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. '); INSERT INTO documentary_instance VALUES (896, 'Sun Shrines and Sun Symbols in the U.S. Southwest', NULL, NULL, NULL, NULL, '1985', 0, 'Archaeoastronomy 9:86-96.', NULL, NULL, NULL, NULL, NULL, NULL, 2601, NULL, '1985d Sun Shrines and Sun Symbols in the U.S. Southwest. Archaeoastronomy (Supplement to the Journal for the History of Astronomy) 9:86-96.'); INSERT INTO documentary_instance VALUES (897, 'My Story of the Aztec Ruins', NULL, NULL, NULL, NULL, '1955', 0, 'The Basin Spokesman, Farmington.', 'Journal', NULL, NULL, NULL, NULL, NULL, 872, NULL, 'Howe, Sherman S. 1955 My Story of the Aztec Ruins. The Basin Spokesman, Farmington. '); INSERT INTO documentary_instance VALUES (898, 'The Fajada Butte Solar Marker: A Reevaluation', NULL, NULL, NULL, NULL, '1985', 0, 'Science 228:1311-1313.', NULL, NULL, NULL, NULL, NULL, NULL, 2600, NULL, '1985c The Fajada Butte Solar Marker: A Reevaluation. Science 228:1311-1313.'); INSERT INTO documentary_instance VALUES (899, 'The Spacing of Chaco Canyon Towns', NULL, NULL, NULL, NULL, '1971', 0, 'Paper for Anthropology 544, Arizona State University.', 'Ms. on file, paper', NULL, NULL, NULL, 'Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. ', NULL, 874, NULL, 'Hudson, Dee T. 1971 The Spacing of Chaco Canyon Towns. Paper for Anthropology 544, Arizona State University. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. '); INSERT INTO documentary_instance VALUES (900, 'Anasazi Measurement Systems at Chaco Canyon, New Mexico', NULL, NULL, NULL, NULL, '1972', 0, 'The Kiva 38(1):27-42', 'Journal', '16 pages', NULL, NULL, NULL, NULL, 875, NULL, 'Hudson, Dee T. 1972 Anasazi Measurement Systems at Chaco Canyon, New Mexico. The Kiva 38(1):27-42.'); INSERT INTO documentary_instance VALUES (901, 'The Ethnoastronomy of the Historic Pueblos I. Calendrical Sun Watching.', NULL, NULL, NULL, NULL, '1985', 0, 'Archaeoastronomy 8:1-26.', NULL, NULL, NULL, NULL, NULL, NULL, 2599, NULL, '1985b The Ethnoastronomy of the Historic Pueblos I. Calendrical Sun Watching. Archaeoastronomy (Supplement to the Journal for the History of Astronomy) 8:1-26.'); INSERT INTO documentary_instance VALUES (902, 'Indications from Rabbit Mandible Bones regarding Forestation at Chaco Canyon between A.D. 750 and 1200.', NULL, NULL, NULL, NULL, '1978', 1, NULL, 'Ms. on file', NULL, NULL, NULL, 'Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. ', NULL, 876, NULL, 'Hunter, William C. 1978* Indications from Rabbit Mandible Bones regarding Forestation at Chaco Canyon between A.D. 750 and 1200. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. '); INSERT INTO documentary_instance VALUES (903, 'Journal Notes, April 14-July 15, 1922', NULL, NULL, NULL, NULL, '1911', 0, NULL, 'Journal notes', NULL, NULL, NULL, 'Original at Yale University, New Haven. ', NULL, 877, NULL, 'Huntington, Ellsworth 1911 Journal Notes, April 14-July 15, 1922. Original at Yale University, New Haven. '); INSERT INTO documentary_instance VALUES (904, 'A Reassessment of the Fajada Butte Solar Marker', NULL, NULL, NULL, NULL, '1985', 0, 'Archaeoastronomy 9:69-85.', NULL, NULL, NULL, NULL, NULL, NULL, 2598, NULL, '1985a A Reassessment of the Fajada Butte Solar Marker. Archaeoastronomy (Supplement to the Journal of the History of Astronomy) 9:69-85.'); INSERT INTO documentary_instance VALUES (905, 'The Climatic Factor as Illustrated in Arid America', NULL, NULL, NULL, NULL, '1914', 0, 'Carnegie Institute of Washington Publication No. 192, pp. 75-82.', 'Report', '8 pages', NULL, NULL, NULL, NULL, 878, NULL, 'Huntington, Ellsworth 1914 The Climatic Factor as Illustrated in Arid America. Carnegie Institute of Washington Publication No. 192, pp. 75-82. '); INSERT INTO documentary_instance VALUES (906, 'Chaco Outlier or Wannabe? Comments and Observations on a Provincial Chacoesque Great House at Edge of the Cedars Ruin, Utah', NULL, NULL, NULL, NULL, '1998', 0, NULL, 'Paper', NULL, NULL, NULL, NULL, NULL, 879, NULL, 'Hurst Winston 1998 Chaco Outlier or Wannabe? Comments and Observations on a Provincial Chacoesque Great House at Edge of the Cedars Ruin, Utah. Paper presented at the 63rd Annual Meeting of the Society for American Archaeology, Seattle. '); INSERT INTO documentary_instance VALUES (907, 'Chaco Outlier or Backwoods Pretender? A Provincial Great House at Edge of the Cedars Ruin, Utah.', NULL, NULL, 'Tucson', 'The University of Arizona Press', '2000', 0, NULL, 'Book', '16 pages', NULL, NULL, NULL, NULL, 880, NULL, 'Hurst, Winston 2000 Chaco Outlier or Backwoods Pretender? A Provincial Great House at Edge of the Cedars Ruin, Utah. In Great House Communities Across the Chacoan Landscape, edited by John Kantner and Nancy M. Mahoney, pp. 63-78. Anthropological Papers of the University of Arizona No. 64. The University of Arizona, Press, Tucson.'); INSERT INTO documentary_instance VALUES (908, 'The Ethnoastronomy of the Historical Pueblos. I. Calendrical Sun Watching.', NULL, NULL, NULL, 'University of New Mexico, Albuquerque', '1984', 0, NULL, NULL, NULL, NULL, NULL, 'NPS Chaco Culture NHP Museum Archive', NULL, 2597, NULL, '1984e The Ethnoastronomy of the Historical Pueblos. I. Calendrical Sun Watching. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published in 1985.'); INSERT INTO documentary_instance VALUES (909, 'Some Observations Regarding the “Chaco Phenomenon” in the Northwestern San Juan Provinces.', NULL, NULL, NULL, NULL, '2002', 0, NULL, 'Paper', NULL, NULL, NULL, NULL, NULL, 881, NULL, 'Hurst, Winston 2002 Some Observations Regarding the “Chaco Phenomenon” in the Northwestern San Juan Provinces. Paper presented at the 67th Annual Meeting of the Society for American Archaeology, Denver. '); INSERT INTO documentary_instance VALUES (910, 'Uncle Albert’s Ancient Roads', NULL, NULL, NULL, NULL, '1993', 0, 'Blue Mountain Shadows 12.', 'Book', NULL, NULL, NULL, NULL, NULL, 882, NULL, 'Hurst, Winston, Owen Severance, and Dale Davidson 1993 Uncle Albert’s Ancient Roads. Blue Mountain Shadows 12. '); INSERT INTO documentary_instance VALUES (911, 'Some Observations Regarding the “Chaco Phenomenon” in the Northwestern San Juan Provinces. ', NULL, NULL, NULL, NULL, '2002', 0, NULL, 'Paper', NULL, NULL, NULL, NULL, NULL, 881, NULL, 'Hurst, Winston, and Jonathan Till 2002 Some Observations Regarding the “Chaco Phenomenon” in the Northwestern San Juan Provinces. Paper presented at the 67th Annual Meeting of the Society for American Archaeology, Denver. '); INSERT INTO documentary_instance VALUES (912, 'Dogoszhi Ceramics: A Chaco Elite Style Wanna-be', NULL, NULL, NULL, NULL, '1996', 0, 'Paper for Anthrop 570, University of New Mexico, December', 'Ms. on file, paper', NULL, NULL, NULL, 'Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. ', NULL, 884, NULL, 'Hurt, Teresa D. 1996 Dogoszhi Ceramics: A Chaco Elite Style Wanna-be. Paper for Anthrop 570, University of New Mexico, December. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. '); INSERT INTO documentary_instance VALUES (913, 'The Bisti-Star Lake Project–A Sample Survey of Cultural Resources in Northwestern New Mexico.', NULL, NULL, NULL, NULL, '1978', 0, NULL, 'Report', NULL, NULL, NULL, NULL, NULL, 885, NULL, 'Huse, H., B. A. Noisat, and J. A. Halasi 1978 The Bisti-Star Lake Project–A Sample Survey of Cultural Resources in Northwestern New Mexico. Bureau of Land Management, Albuquerque District No. 1. '); INSERT INTO documentary_instance VALUES (914, 'Excavation of Small House Unit No. 8', NULL, NULL, NULL, NULL, '1934', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'Ms. on file, School of American Research, Santa Fe.', NULL, 886, NULL, 'Hutchinson, C. E. 1934 Excavation of Small House Unit No. 8. '); INSERT INTO documentary_instance VALUES (915, 'Chaco Cañon', NULL, NULL, NULL, NULL, '1933', 0, 'In Mesa Land, by Anna W. Ickes, pp. 92-94. Houghton Mifflin, New York.', 'Book', '3 pages', NULL, NULL, NULL, NULL, 887, NULL, 'Ickes, Anna W. 1933 Chaco Cañon. In Mesa Land, by Anna W. Ickes, pp. 92-94. Houghton Mifflin, New York. '); INSERT INTO documentary_instance VALUES (916, 'An Examinaton of Adobe Roof Impressions from Site 29SJ389: Pueblo Alto, Chaco Canyon, New Mexico.', NULL, NULL, NULL, NULL, '1979', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. ', NULL, 888, NULL, 'Ingbar, Eric 1979 An Examinaton of Adobe Roof Impressions from Site 29SJ389: Pueblo Alto, Chaco Canyon, New Mexico. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published in 1987. '); INSERT INTO documentary_instance VALUES (917, 'Adobe Roof Impressions from Pueblo Alto.', NULL, NULL, NULL, NULL, '1987', 0, NULL, 'Book', '15 pages', NULL, NULL, NULL, NULL, 889, NULL, 'Ingbar, Eric 1987 Adobe Roof Impressions from Pueblo Alto. In Investigations at the Pueblo Alto Complex, Chaco Canyon, New Mexico, 1975-1979. Volume III: Artifactual and Biological Analyses, edited by Frances Joan Mathien and Thomas C. Windes, pp. 429-443. Publications in Archeology 18F, Chaco Canyon Studies. National Park Service, Santa Fe.'); INSERT INTO documentary_instance VALUES (918, 'Village Indians of New Mexico', NULL, NULL, NULL, NULL, 'n.d.', 0, 'Journal of the American Geographical Society Vol. 6.?', 'Journal', NULL, NULL, NULL, NULL, NULL, 2622, NULL, 'Ingersoll, E. n.d.* Village Indians of New Mexico. Journal of the American Geographical Society Vol. 6.? '); INSERT INTO documentary_instance VALUES (919, 'Chacoan Outliers/San Juan Basin Communities Known and Unknown', NULL, NULL, NULL, NULL, '1979', 0, 'Paper for Anthropology 597, University of New Mexico', 'Ms. on file, paper', NULL, NULL, NULL, 'Ms. on file, Branch of Remote Sensing, National Park Service, Intermountain Region, Santa Fe Office. ', NULL, 890, NULL, 'Ireland, Arthur K. 1979 Chacoan Outliers/San Juan Basin Communities Known and Unknown. Paper for Anthropology 597, University of New Mexico. Ms. on file, Branch of Remote Sensing, National Park Service, Intermountain Region, Santa Fe Office. '); INSERT INTO documentary_instance VALUES (920, 'Cost-Effective Mapping', NULL, NULL, NULL, NULL, '1980', 0, NULL, 'Book', '17 pages', NULL, NULL, NULL, NULL, 891, NULL, 'Ireland, Arthur K. 1980 Cost-Effective Mapping. In Cultural Resources Remote Sensing, edited by Thomas R. Lyons and Frances Joan Mathien, pp. 371-387. Cultural Resources Management Division, National Park Service, Washington, D.C.'); INSERT INTO documentary_instance VALUES (921, 'The Surface Geology and Precipitation Contours of the San Juan Basin', NULL, NULL, NULL, NULL, '1983', 0, NULL, 'Book', '5 pages', NULL, NULL, NULL, NULL, 892, NULL, 'Ireland, Arthur K. 1983 The Surface Geology and Precipitation Contours of the San Juan Basin. In Remote Sensing in Cultural Resource Management: The San Juan Basin Project, edited by Dwight L. Drager and Thomas R. Lyons, pp. 33-37. Cultural Resources Management Division, National Park Service, Washington, D.C.'); INSERT INTO documentary_instance VALUES (922, 'Space-Age Archeology', NULL, NULL, NULL, NULL, '1984', 0, NULL, 'Presentation', NULL, NULL, NULL, NULL, NULL, 893, NULL, 'Ireland, Arthur K. 1984 Space-Age Archeology. Presentation for Orientation to National Park Service Operations class, Glorieta, NM. Nov.'); INSERT INTO documentary_instance VALUES (923, 'Environmental Mapping of the San Juan Basin.', NULL, NULL, NULL, NULL, 'n.d.', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'Ms. on file, NPS, Intermountain Region, Santa Fe Office. ', NULL, 2624, NULL, 'Ireland, Arthur K. n.d.* Environmental Mapping of the San Juan Basin. Ms. on file, NPS, Intermountain Region, Santa Fe Office. '); INSERT INTO documentary_instance VALUES (924, 'Remote Sensing Assessment of the Environmental Setting of the Navajo Indian Irrigation Project', NULL, NULL, NULL, NULL, '1983', 0, NULL, 'Book', '25 pages', NULL, NULL, NULL, NULL, 894, NULL, 'Ireland, Arthur K., and Dwight L. Drager 1983 Remote Sensing Assessment of the Environmental Setting of the Navajo Indian Irrigation Project. In Remote Sensing in Cultural Resource Management: The San Juan Basin Project, edited by Dwight L. Drager and Thomas R. Lyons, pp, 77-101. Cultural Resources Management Division, National Park Service, Washington, D.C. '); INSERT INTO documentary_instance VALUES (925, 'The Structure of Chacoan Society in the Northern Southwest: Investigations at the Salmon Site—1972', NULL, NULL, NULL, NULL, '1972', 0, 'Eastern New Mexico University Contributions in Anthropology 4(3). Portales.', 'Book', NULL, NULL, NULL, NULL, NULL, 900, NULL, 'Irwin-Williams, Cynthia 1972 (editor). The Structure of Chacoan Society in the Northern Southwest: Investigations at the Salmon Site—1972. Eastern New Mexico University Contributions in Anthropology 4(3). Portales. '); INSERT INTO documentary_instance VALUES (926, 'A Model of Chacoan Society', NULL, NULL, NULL, NULL, '1977', 1, NULL, 'Ms. on file', NULL, NULL, NULL, 'Ms. on file, Department of Anthropology, Eastern New Mexico University, Portales.', NULL, 896, NULL, 'Irwin-Williams, Cynthia 1977* A Model of Chacoan Society. Ms. on file, Department of Anthropology, Eastern New Mexico University, Portales.'); INSERT INTO documentary_instance VALUES (927, 'A View of the Chaco from Salmon Ruins. Update 1980.', NULL, NULL, NULL, NULL, '1980', 0, 'Paper presented at the 53rd Pecos Conference, Mesa Verde National Park, CO.', 'Paper', NULL, NULL, NULL, NULL, NULL, 897, NULL, 'Irwin-Williams, Cynthia 1980 A View of the Chaco from Salmon Ruins. Update 1980. Paper presented at the 53rd Pecos Conference, Mesa Verde National Park, CO.'); INSERT INTO documentary_instance VALUES (928, 'Socio-economic Order and Authority Structure in the Chacoan Community at Salmon Ruin.', NULL, NULL, NULL, NULL, '1983', 0, 'Paper presented at the Second Anasazi Symposium, Salmon Ruin, Bloomfield.', 'Paper', NULL, NULL, NULL, NULL, NULL, 898, NULL, 'Irwin-Williams, Cynthia 1983 Socio-economic Order and Authority Structure in the Chacoan Community at Salmon Ruin. Paper presented at the Second Anasazi Symposium, Salmon Ruin, Bloomfield. '); INSERT INTO documentary_instance VALUES (929, 'The San Juan Valley Archaeological Program: Investigations at the Salmon Site, 1973.', NULL, NULL, NULL, NULL, '1973', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'Ms. on file, National Park Service, Intermountain Region, Santa Fe Office. ', NULL, 899, NULL, 'Irwin-Williams, Cynthia, et al. 1973 The San Juan Valley Archaeological Program: Investigations at the Salmon Site, 1973. Ms. on file, National Park Service, Intermountain Region, Santa Fe Office. '); INSERT INTO documentary_instance VALUES (930, 'The Structure of Chacoan Society in the Northern Southwest: Investigations at the Salmon Site, 1974-1975', NULL, NULL, NULL, NULL, '1975', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'Ms. on file, National Park Service, Intermountain Region, Santa Fe Office.', NULL, 900, NULL, 'Irwin-Williams, Cynthia, et al. 1975 The Structure of Chacoan Society in the Northern Southwest: Investigations at the Salmon Site, 1974-1975. Ms. on file, National Park Service, Intermountain Region, Santa Fe Office.'); INSERT INTO documentary_instance VALUES (931, 'The San Juan Valley Archaeological Program, 1976', NULL, NULL, NULL, NULL, '1976', 0, NULL, 'Ms. on file', NULL, NULL, NULL, 'Ms. on file, National Park Service, Intermountain Region, Santa Fe Office', NULL, 901, NULL, 'Irwin-Williams, Cynthia, et. al 1976 The San Juan Valley Archaeological Program, 1976. Ms. on file, National Park Service, Intermountain Region, Santa Fe Office.'); INSERT INTO documentary_instance VALUES (932, 'San Juan Valley Archaeological Resource Development Program, Salmon Ruin Development: 1977. ', NULL, NULL, NULL, NULL, '1977', 0, NULL, 'Ms. on file', NULL, NULL, NULL, ' Ms. on file, National Park Service, Intermountain Region, Santa Fe Office.', NULL, 902, NULL, 'Irwin-Williams, Cynthis, et.al 1977 San Juan Valley Archaeological Resource Development Program, Salmon Ruin Development: 1977. Ms. on file, National Park Service, Intermountain Region, Santa Fe Office.'); INSERT INTO documentary_instance VALUES (933, 'San Juan Valley Archaeological Resource Development Program: 1978-9. Final Report', NULL, NULL, NULL, NULL, '1979', 0, NULL, 'Report', NULL, NULL, NULL, NULL, NULL, 903, NULL, 'Irwin-Williams, Cynthis, et al. 1979 San Juan Valley Archaeological Resource Development Program: 1978-9. Final Report. Eastern New Mexico University III.'); INSERT INTO documentary_instance VALUES (934, 'Anasazi Puebloan Adaptation in Response to Climatic Stress: Prehistory of the Middle Rio Puerco Valley', NULL, NULL, NULL, NULL, '1991', 0, NULL, 'Ms. on file', NULL, NULL, NULL, ' Ms. on file, Bureau of Land Management, Albuquerque', NULL, 904, NULL, 'Irwin-Williams, Cynthia, and Larry L. Baker (editors) 1991 Anasazi Puebloan Adaptation in Response to Climatic Stress: Prehistory of the Middle Rio Puerco Valley. . '); INSERT INTO documentary_instance VALUES (935, 'Investigations at Salmon Ruin: The Structure of Chacoan Society in the Northern Southwest. Volumes I-IV.', NULL, NULL, 'Portales', 'Eastern New Mexico University Printing Services', '1980', 0, NULL, 'Book', NULL, NULL, NULL, NULL, NULL, 905, NULL, 'Irwin-Williams, Cynthia, and Phillip H. Shelley (editors) 1980 Investigations at Salmon Ruin: The Structure of Chacoan Society in the Northern Southwest. Volumes I-IV. Eastern New Mexico University Printing Services, Portales. '); INSERT INTO documentary_instance VALUES (937, 'Sunwatching and Calendars: A Southwestern-Mesoamerican Contrast in a Distant, Smoky Mirror.', NULL, NULL, NULL, NULL, '1984', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2596, NULL, '1984d Sunwatching and Calendars: A Southwestern-Mesoamerican Contrast in a Distant, Smoky Mirror. Paper presented at the Symposium on Archaeoastronomy and Ethnoastronomy in Mesoamerica, Mexico.'); INSERT INTO documentary_instance VALUES (936, 'The Kiva and Its Functions', NULL, NULL, NULL, NULL, '1954', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2625, NULL, 'Jackson, Earl n.d. The Kiva and Its Functions. Archive 1954, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. '); INSERT INTO documentary_instance VALUES (938, 'Summer Solstice at Casa Rinconada: Calendar, Hierophany, or Nothing?', NULL, NULL, NULL, NULL, '1984', 0, 'Archaeoastronomy 7(1-4):76-81.', NULL, 'p. 76-81', NULL, NULL, NULL, NULL, 2595, NULL, '1984c Summer Solstice at Casa Rinconada: Calender, Hierophany, or Nothing? Archaeoastronomy 7(1-4):76-81.'); INSERT INTO documentary_instance VALUES (939, 'Report on the Ancient Ruins Examined in 1875 and 1877', NULL, NULL, 'Washington, D.C.', 'U.S. Government Printing Office', '1878', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 906, NULL, 'Jackson, William H. 1878 Report on the Ancient Ruins Examined in 1875 and 1877. In Tenth Annual Report of the United States Geological and Geographical Survey of the Territories Embracing Colorado and Parts of Adjacent Territories, Being a Report on the Progress of the Exploration for the Year 1876, by F. V. Hayden, Part III, pp. 411-450. U.S. Government Printing Office, Washington, D.C. '); INSERT INTO documentary_instance VALUES (940, 'Keeping the Seasonal Calendar at Pueblo Bonito.', NULL, NULL, 'Albuquerque', 'University of New Mexico', '1986', 0, NULL, NULL, NULL, NULL, NULL, 'Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.', NULL, 2594, NULL, '1984b Keeping the Seasonal Calendar at Pueblo Bonito. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. Published in 1986.'); INSERT INTO documentary_instance VALUES (941, 'Archaeoastronomy at Chaco Canyon.', NULL, NULL, 'Santa Fe', 'School of American Research', '1984', 0, NULL, NULL, 'p. 65-72', NULL, NULL, NULL, NULL, 2593, NULL, '1984a Archaeoastronomy at Chaco Canyon. In New Light on Chaco Canyon, edited by David Grant Noble, pp. 65-72. Exploration, School of American Research, Santa Fe.'); INSERT INTO documentary_instance VALUES (942, 'Photographic Work in Chaco Canyon', NULL, NULL, NULL, 'World Book Co., Yonkers-on-Hudson', '1929', 0, 'The Pioneer Photographer', NULL, NULL, NULL, NULL, NULL, NULL, 907, NULL, 'Jackson, William H., and Howard R. Driggs 1929 [Photographic Work in Chaco Canyon.] In The Pioneer Photographer, by William H. Jackson and Howard L. Driggs, pp. 286-289. World Book Co., Yonkers-on-Hudson. '); INSERT INTO documentary_instance VALUES (943, 'Materials Source for the Chaco Survey', NULL, NULL, 'Albuquerque', 'University of New Mexico', '1977', 0, NULL, NULL, NULL, NULL, NULL, 'NPS Chaco Culture NHP Museum Archive', NULL, 908, 45, 'Jacobson, LouAnn 1977 Materials Source for the Chaco Survey. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. '); INSERT INTO documentary_instance VALUES (944, 'An Application and Test of Remote Sensing in Archeology', NULL, NULL, 'Santa Fe ', 'National Park Service', '1978', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 909, 45, 'Jacobson, LouAnn 1978 29SJ633: An Application and Test of Remote Sensing in Archeology. Ms. on file, Branch of Remote Sensing, National Park Service, Intermountain Region, Santa Fe Office.'); INSERT INTO documentary_instance VALUES (945, 'A Remote Sensing Evaluation of 29SJ633', NULL, NULL, 'Albuquerque', 'NPS Chaco Culture NHP Museum Archive', '1979', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 910, 45, 'Jacobson, LouAnn 1979 A Remote Sensing Evaluation of 29SJ633. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque.'); INSERT INTO documentary_instance VALUES (946, 'Chipped Stone in the San Juan Basin: A Distributional Analysis', NULL, NULL, 'Department of Anthropology, University of New Mexico, Albuquerque', 'Unpublished M.A. thesis', '1984', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2626, 25, 'Jacobson, LouAnn 1984 Chipped Stone in the San Juan Basin: A Distributional Analysis. Unpublished M.A. thesis, Department of Anthropology, University of New Mexico, Albuquerque.'); INSERT INTO documentary_instance VALUES (947, 'Chacra Mesa Site Inventory: National Register Nomination by BLM', NULL, NULL, 'Albuquerque', 'Bureau of Land Management', '1985', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2627, 45, 'Jacobson, LouAnn, and John Roney 1985 Chacra Mesa Site Inventory: National Register Nomination by BLM. Ms. on file, Bureau of Land Management, Albuquerque, and NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. '); INSERT INTO documentary_instance VALUES (948, 'Chaco Canyon’s Star Power', NULL, NULL, NULL, NULL, '2001', 0, 'Sunset Magazine', NULL, NULL, NULL, NULL, NULL, NULL, 2628, NULL, 'Jaffe, Matthew 2001 Chaco Canyon’s Star Power. Sunset Magazine April. '); INSERT INTO documentary_instance VALUES (949, 'Chacoan Communities in the Northern San Juan Region', NULL, NULL, 'Seattle', NULL, '1998', 0, NULL, 'paper', NULL, NULL, NULL, NULL, NULL, 914, NULL, 'Jalbert, Peter 1998 Chacoan Communities in the Northern San Juan Region. Paper presented at the 63rd Annual Meeting of the Society for American Archaeology, Seattle. '); INSERT INTO documentary_instance VALUES (950, 'Chacoan and Local Influences in Three Great House Communities in the Northern San Juan Region', NULL, NULL, 'Tucson', 'University of Arizona Press', '2000', 0, 'Great House Communities Across the Chacoan Landscape', NULL, NULL, NULL, NULL, NULL, NULL, 915, NULL, 'Jalbert, J. Peter, and Catherine M. Cameron 2000 Chacoan and Local Influences in Three Great House Communities in the Northern San Juan Region. In Great House Communities Across the Chacoan Landscape, edited by John Kantner and Nancy M. Mahoney, pp. 79-90. Anthropological Papers of the University of Arizona No. 64. University of Arizona Press, Tucson. '); INSERT INTO documentary_instance VALUES (951, '[Chaco Canyon.] ', NULL, NULL, 'Boston', 'Page', '1920', 0, 'New Mexico: The Land of the Delight Makers', NULL, NULL, NULL, NULL, NULL, NULL, 2629, NULL, 'James, George Wharton 1920 [Chaco Canyon.] In New Mexico: The Land of the Delight Makers, by George Wharton James, p. 246. Page, Boston. '); INSERT INTO documentary_instance VALUES (952, 'A Note on Navajo Pottery Making', NULL, NULL, NULL, NULL, '1937', 0, 'El Palacio 43', NULL, NULL, NULL, NULL, NULL, NULL, 917, NULL, 'James, Marjorie 1937 A Note on Navajo Pottery Making. El Palacio 43(13-15):85-86. '); INSERT INTO documentary_instance VALUES (953, 'Periods of Pueblo Culture and History', NULL, NULL, 'Denver', 'Denver Art Museum ', '1930', 0, 'Denver Art Museum Leaflet No. 11', NULL, NULL, NULL, NULL, 'Denver Art Museum', NULL, 918, NULL, 'Jeançon, Jean A., and F. H. Douglas (compilers) 1930a Periods of Pueblo Culture and History. Denver Art Museum Leaflet No. 11. Denver '); INSERT INTO documentary_instance VALUES (954, 'The Pueblo Golden Age', NULL, NULL, 'Denver', 'Denver Art Museum ', '1930', 0, 'Denver Art Museum Leaflet 14', NULL, NULL, NULL, NULL, 'Denver Art Museum', NULL, 919, NULL, 'Jeançon, Jean A., and F. H. Douglas (compilers) 1930b The Pueblo Golden Age. Denver Art Museum Leaflet 14. Denver. Jernigan, E. Wesley '); INSERT INTO documentary_instance VALUES (955, 'Jewelry of the Prehistoric Southwest', NULL, NULL, 'Santa Fe and Albuquerque', 'School of American Research and University of New Mexico Press', '1978', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 920, NULL, 'Jernigan, E. Wesley 1978 Jewelry of the Prehistoric Southwest. School of American Research and University of New Mexico Press, Santa Fe and Albuquerque. '); INSERT INTO documentary_instance VALUES (956, 'Pueblo Indian Migrations: An Evaluation of the Possible Physical and Cultural Determinants', NULL, NULL, NULL, NULL, '1964', 0, 'American Antiquity 29', NULL, NULL, NULL, NULL, NULL, NULL, 921, NULL, 'Jett, S. C. 1964 Pueblo Indian Migrations: An Evaluation of the Possible Physical and Cultural Determinants. American Antiquity 29(3):281-300. '); INSERT INTO documentary_instance VALUES (957, 'Cliff Cavities and Marking', NULL, NULL, 'Albuquerque', 'University of New Mexico', '1941', 0, 'Archive 235', NULL, NULL, NULL, NULL, NULL, NULL, 922, 45, 'Johns, Kay 1941 Cliff Cavities and Marking. Archive 235, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. '); INSERT INTO documentary_instance VALUES (958, 'Primary Function of Anasazi Towers: A GIS and Remote Sensing Analysis', NULL, NULL, 'Seattle', NULL, '1998', 0, NULL, NULL, 'paper', NULL, NULL, NULL, NULL, 923, NULL, 'Johnson, Charles David 1998 Primary Function of Anasazi Towers: A GIS and Remote Sensing Analysis. Paper presented at the 63rd Annual Meeting of the Society for American Archaeology, Seattle. '); INSERT INTO documentary_instance VALUES (959, 'A Month’s Work in Chaco Canyon (June 10 to July 8, 1931)', NULL, NULL, 'Albuquerque', 'University of New Mexico', '1931', 0, 'Archive 1860, 1949, NPS Chaco Culture NHP Museum Archive', NULL, NULL, NULL, NULL, NULL, NULL, 2630, 45, 'Johnson, Fern 1931 A Month’s Work in Chaco Canyon (June 10 to July 8, 1931). Archive 1860, 1949, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. '); INSERT INTO documentary_instance VALUES (960, 'Dynamics of Southwestern Prehistory: Far Outside—Looking In', NULL, NULL, 'Washington, D.C.', 'Smithsonian Institution Press', '1989', 0, 'Dynamics of Southwest Prehistory', NULL, 'pp. 371-389', NULL, NULL, NULL, NULL, 2631, NULL, 'Johnson, Gregory A. 1989 Dynamics of Southwestern Prehistory: Far Outside—Looking In. In Dynamics of Southwest Prehistory, edited by Linda S. Cordell and George J. Gumerman, pp. 371-389. Smithsonian Institution Press, Washington, D.C. '); INSERT INTO documentary_instance VALUES (961, 'Survey of Petroglyphs in Chaco Canyon Region: Part I: North Walls of Canyon in Chaco Canyon National Monument', NULL, NULL, 'Albuquerque', 'University of New Mexico', '1946', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2632, 45, 'Johnston, E. Clark 1946 Survey of Petroglyphs in Chaco Canyon Region: Part I: North Walls of Canyon in Chaco Canyon National Monument. Ms. on file, NPS Chaco Culture NHP Museum Archive, University of New Mexico, Albuquerque. '); INSERT INTO documentary_instance VALUES (962, 'The Boys and Girls of Summer: The University of New Mexico Archaeological Field School in Chaco Canyon', NULL, NULL, NULL, NULL, '1992', 0, 'Journal of Anthropological Research 48(1)', NULL, 'pp. 49-66', NULL, NULL, NULL, NULL, 2633, NULL, 'Joiner, Carol 1992 The Boys and Girls of Summer: The University of New Mexico Archaeological Field School in Chaco Canyon. Journal of Anthropological Research 48(1):49-66. '); INSERT INTO documentary_instance VALUES (963, 'An Ecological Survey of the Reptiles and Amphibians of Chaco Canyon National Monument, San Juan County, New Mexico', NULL, NULL, 'Department of Biology, University of New Mexico, Albuquerque', 'Unpublished M.S. thesis', '1970', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 928, 25, 'Jones, Kirtland 1970 An Ecological Survey of the Reptiles and Amphibians of Chaco Canyon National Monument, San Juan County, New Mexico. Unpublished M.S. thesis, Department of Biology, University of New Mexico, Albuq