2016 icd update doesn't seem the same without an i9 file included
[openemr.git] / sql / 4_2_0-to-4_2_1_upgrade.sql
blob4b73701c645ea702d4afac5fda0343275580cda6
1 --
2 --  Comment Meta Language Constructs:
3 --
4 --  #IfNotTable
5 --    argument: table_name
6 --    behavior: if the table_name does not exist,  the block will be executed
8 --  #IfTable
9 --    argument: table_name
10 --    behavior: if the table_name does exist, the block will be executed
12 --  #IfMissingColumn
13 --    arguments: table_name colname
14 --    behavior:  if the table exists but the column does not,  the block will be executed
16 --  #IfNotColumnType
17 --    arguments: table_name colname value
18 --    behavior:  If the table table_name does not have a column colname with a data type equal to value, then the block will be executed
20 --  #IfNotRow
21 --    arguments: table_name colname value
22 --    behavior:  If the table table_name does not have a row where colname = value, the block will be executed.
24 --  #IfNotRow2D
25 --    arguments: table_name colname value colname2 value2
26 --    behavior:  If the table table_name does not have a row where colname = value AND colname2 = value2, the block will be executed.
28 --  #IfNotRow3D
29 --    arguments: table_name colname value colname2 value2 colname3 value3
30 --    behavior:  If the table table_name does not have a row where colname = value AND colname2 = value2 AND colname3 = value3, the block will be executed.
32 --  #IfNotRow4D
33 --    arguments: table_name colname value colname2 value2 colname3 value3 colname4 value4
34 --    behavior:  If the table table_name does not have a row where colname = value AND colname2 = value2 AND colname3 = value3 AND colname4 = value4, the block will be executed.
36 --  #IfNotRow2Dx2
37 --    desc:      This is a very specialized function to allow adding items to the list_options table to avoid both redundant option_id and title in each element.
38 --    arguments: table_name colname value colname2 value2 colname3 value3
39 --    behavior:  The block will be executed if both statements below are true:
40 --               1) The table table_name does not have a row where colname = value AND colname2 = value2.
41 --               2) The table table_name does not have a row where colname = value AND colname3 = value3.
43 --  #IfRow2D
44 --    arguments: table_name colname value colname2 value2
45 --    behavior:  If the table table_name does have a row where colname = value AND colname2 = value2, the block will be executed.
47 --  #IfRow3D
48 --        arguments: table_name colname value colname2 value2 colname3 value3
49 --        behavior:  If the table table_name does have a row where colname = value AND colname2 = value2 AND colname3 = value3, the block will be executed.
51 --  #IfIndex
52 --    desc:      This function is most often used for dropping of indexes/keys.
53 --    arguments: table_name colname
54 --    behavior:  If the table and index exist the relevant statements are executed, otherwise not.
56 --  #IfNotIndex
57 --    desc:      This function will allow adding of indexes/keys.
58 --    arguments: table_name colname
59 --    behavior:  If the index does not exist, it will be created
61 --  #EndIf
62 --    all blocks are terminated with a #EndIf statement.
64 --  #IfNotListReaction
65 --    Custom function for creating Reaction List
67 --  #IfNotListOccupation
68 --    Custom function for creating Occupation List
70 #IfNotIndex form_encounter encounter_date
71     CREATE INDEX encounter_date on form_encounter (`date`);
72 #EndIf
74 #IfNotColumnType prescriptions size varchar(16)
75 ALTER TABLE `prescriptions` CHANGE `size` `size` varchar(16) DEFAULT NULL;
76 #EndIf
78 #IfNotRow globals gl_name erx_newcrop_path
79 UPDATE `globals` SET `gl_name` = 'erx_newcrop_path' WHERE `gl_name` = 'erx_path_production';
80 #EndIf
82 #IfNotRow globals gl_name erx_newcrop_path_soap
83 UPDATE `globals` SET `gl_name` = 'erx_newcrop_path_soap' WHERE `gl_name` = 'erx_path_soap_production';
84 #EndIf
86 #IfNotRow globals gl_name erx_account_partner_name
87 UPDATE `globals` SET `gl_name` = 'erx_account_partner_name' WHERE `gl_name` = 'partner_name_production';
88 #EndIf
90 #IfNotRow globals gl_name erx_account_name
91 UPDATE `globals` SET `gl_name` = 'erx_account_name' WHERE `gl_name` = 'erx_name_production';
92 #EndIf
94 #IfNotRow globals gl_name erx_account_password
95 UPDATE `globals` SET `gl_name` = 'erx_account_password' WHERE `gl_name` = 'erx_password_production';
96 #EndIf
98 #IfNotColumnType lang_custom constant_name mediumtext
99 ALTER TABLE `lang_custom` CHANGE `constant_name` `constant_name` mediumtext NOT NULL default '';
100 #EndIf
102 #IfNotTable patient_tracker
103 CREATE TABLE `patient_tracker` (
104   `id`                     bigint(20)   NOT NULL auto_increment,
105   `date`                   datetime     DEFAULT NULL,
106   `apptdate`               date         DEFAULT NULL,
107   `appttime`               time         DEFAULT NULL,
108   `eid`                    bigint(20)   NOT NULL default '0',
109   `pid`                    bigint(20)   NOT NULL default '0',
110   `original_user`          varchar(255) NOT NULL default '' COMMENT 'This is the user that created the original record',
111   `encounter`              bigint(20)   NOT NULL default '0',
112   `lastseq`                varchar(4)   NOT NULL default '' COMMENT 'The element file should contain this number of elements',
113   `random_drug_test`       TINYINT(1)   DEFAULT NULL COMMENT 'NULL if not randomized. If randomized, 0 is no, 1 is yes', 
114   `drug_screen_completed`  TINYINT(1)   NOT NULL DEFAULT '0',
115   PRIMARY KEY (`id`),
116   KEY (`eid`),
117   KEY (`pid`)
118 ) ENGINE=MyISAM AUTO_INCREMENT=1;
119 #EndIf
121 #IfNotTable patient_tracker_element
122 CREATE TABLE `patient_tracker_element` (
123   `pt_tracker_id`      bigint(20)   NOT NULL default '0' COMMENT 'maps to id column in patient_tracker table',
124   `start_datetime`     datetime     DEFAULT NULL,
125   `room`               varchar(20)  NOT NULL default '',
126   `status`             varchar(31)  NOT NULL default '',
127   `seq`                varchar(4)   NOT NULL default '' COMMENT 'This is a numerical sequence for this pt_tracker_id events',
128   `user`               varchar(255) NOT NULL default '' COMMENT 'This is the user that created this element',
129   KEY  (`pt_tracker_id`,`seq`)
130 ) ENGINE=MyISAM;
131 #EndIf
133 #IfMissingColumn openemr_postcalendar_events pc_room
134 ALTER TABLE `openemr_postcalendar_events` ADD `pc_room` varchar(20) NOT NULL DEFAULT '' ;
135 #EndIf
137 #IfMissingColumn list_options toggle_setting_1
138 ALTER TABLE `list_options` ADD COLUMN `toggle_setting_1` tinyint(1) NOT NULL default '0';
139 UPDATE `list_options` SET `notes`='FF2414|10' , `toggle_setting_1`='1' WHERE `option_id`='@' AND `list_id` = 'apptstat';
140 UPDATE `list_options` SET `notes`='FF6619|10' , `toggle_setting_1`='1' WHERE `option_id`='~' AND `list_id` = 'apptstat';
141 #EndIf
143 #IfMissingColumn list_options toggle_setting_2
144 ALTER TABLE `list_options` ADD COLUMN `toggle_setting_2` tinyint(1) NOT NULL DEFAULT '0';
145 UPDATE `list_options` SET `notes`='0BBA34|0' , `toggle_setting_2`='1' WHERE `option_id`='!' AND `list_id` = 'apptstat';
146 UPDATE `list_options` SET `notes`='FEFDCF|0' , `toggle_setting_2`='1' WHERE `option_id`='>' AND `list_id` = 'apptstat';
147 UPDATE `list_options` SET `notes`='FEFDCF|0' WHERE `option_id`='-' AND `list_id` = 'apptstat';
148 UPDATE `list_options` SET `notes`='FFC9F8|0' WHERE `option_id`='*' AND `list_id` = 'apptstat';
149 UPDATE `list_options` SET `notes`='87FF1F|0' WHERE `option_id`='+' AND `list_id` = 'apptstat';
150 UPDATE `list_options` SET `notes`='BFBFBF|0' WHERE `option_id`='x' AND `list_id` = 'apptstat';
151 UPDATE `list_options` SET `notes`='BFBFBF|0' WHERE `option_id`='?' AND `list_id` = 'apptstat';
152 UPDATE `list_options` SET `notes`='FFFF2B|0' WHERE `option_id`='#' AND `list_id` = 'apptstat';
153 UPDATE `list_options` SET `notes`='52D9DE|10' WHERE `option_id`='<' AND `list_id` = 'apptstat';
154 UPDATE `list_options` SET `notes`='C0FF96|0' WHERE `option_id`='$' AND `list_id` = 'apptstat';
155 UPDATE `list_options` SET `notes`='BFBFBF|0' WHERE `option_id`='%' AND `list_id` = 'apptstat';
156 #EndIf
158 #IfNotRow2D list_options list_id lists option_id patient_flow_board_rooms
159 INSERT INTO list_options (list_id,option_id,title) VALUES ('lists','patient_flow_board_rooms','Patient Flow Board Rooms');
160 INSERT INTO list_options (list_id,option_id,title,seq) VALUES ('patient_flow_board_rooms', '1', 'Room 1', 10);
161 INSERT INTO list_options (list_id,option_id,title,seq) VALUES ('patient_flow_board_rooms', '2', 'Room 2', 20);
162 INSERT INTO list_options (list_id,option_id,title,seq) VALUES ('patient_flow_board_rooms', '3', 'Room 3', 30);
163 #EndIf
165 #IfMissingColumn clinical_rules developer
166 ALTER TABLE  `clinical_rules` ADD  `developer` VARCHAR(255) NOT NULL DEFAULT '' COMMENT 'Clinical Rule Developer';
167 #EndIf
169 #IfMissingColumn clinical_rules funding_source
170 ALTER TABLE  `clinical_rules` ADD  `funding_source` VARCHAR(255) NOT NULL DEFAULT '' COMMENT 'Clinical Rule Funding Source';
171 #EndIf
173 #IfMissingColumn clinical_rules release_version
174 ALTER TABLE  `clinical_rules` ADD  `release_version` VARCHAR(255) NOT NULL DEFAULT '' COMMENT 'Clinical Rule Release Version';
175 #EndIf
177 #IfNotRow2D list_options list_id proc_res_abnormal option_id vhigh
178 INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`) VALUES ('proc_res_abnormal', 'vhigh', 'Above upper panic limits', 50);
179 #EndIf
181 #IfNotRow2D list_options list_id proc_res_abnormal option_id vlow
182 INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`) VALUES ('proc_res_abnormal', 'vlow', 'Below lower panic limits', 60);
183 #EndIf
185 #IfNotRow code_types ct_key LOINC
186 DROP TABLE IF EXISTS `temp_table_one`;
187 CREATE TABLE `temp_table_one` (`id` int(11) NOT NULL DEFAULT '0',`seq` int(11) NOT NULL DEFAULT '0') ENGINE=MyISAM;
188 INSERT INTO `temp_table_one` (`id`, `seq`) VALUES (
189   IF(((SELECT MAX(`ct_id` ) FROM `code_types`) >= 100), ((SELECT MAX(`ct_id` ) FROM `code_types`) + 1), 100),
190   IF(((SELECT MAX(`ct_seq`) FROM `code_types`) >= 100), ((SELECT MAX(`ct_seq`) FROM `code_types`) + 1), 100));
191 INSERT INTO code_types (ct_key, ct_id, ct_seq, ct_mod, ct_just, ct_fee, ct_rel, ct_nofs, ct_diag, ct_active, ct_label, ct_external, ct_claim, ct_proc, ct_term, ct_problem ) VALUES ('LOINC', (SELECT MAX(`id`) FROM `temp_table_one`), (SELECT MAX(`seq`) FROM `temp_table_one`), 0, '', 0, 0, 1, 0, 1, 'LOINC', 0, 0, 0, 0, 0);
192 DROP TABLE `temp_table_one`;
193 #EndIf
195 #IfNotRow code_types ct_key PHIN Questions
196 DROP TABLE IF EXISTS `temp_table_one`;
197 CREATE TABLE `temp_table_one` (`id` int(11) NOT NULL DEFAULT '0',`seq` int(11) NOT NULL DEFAULT '0') ENGINE=MyISAM;
198 INSERT INTO `temp_table_one` (`id`, `seq`) VALUES (
199   IF(((SELECT MAX(`ct_id` ) FROM `code_types`) >= 100), ((SELECT MAX(`ct_id` ) FROM `code_types`) + 1), 100),
200   IF(((SELECT MAX(`ct_seq`) FROM `code_types`) >= 100), ((SELECT MAX(`ct_seq`) FROM `code_types`) + 1), 100));
201 INSERT INTO code_types (ct_key, ct_id, ct_seq, ct_mod, ct_just, ct_fee, ct_rel, ct_nofs, ct_diag, ct_active, ct_label, ct_external, ct_claim, ct_proc, ct_term, ct_problem ) VALUES ('PHIN Questions', (SELECT MAX(`id`) FROM `temp_table_one`), (SELECT MAX(`seq`) FROM `temp_table_one`), 0, '', 0, 0, 1, 0, 1, 'PHIN Questions', 0, 0, 0, 0, 0);
202 DROP TABLE `temp_table_one`;
203 #EndIf
205 #IfMissingColumn list_options activity
206 ALTER TABLE `list_options` ADD COLUMN `activity` TINYINT DEFAULT 1 NOT NULL;
207 #EndIf
209 #IfNotTable ccda_components
210 CREATE TABLE ccda_components (
211   ccda_components_id int(11) NOT NULL AUTO_INCREMENT,
212   ccda_components_field varchar(100) DEFAULT NULL,
213   ccda_components_name varchar(100) DEFAULT NULL,
214   PRIMARY KEY (ccda_components_id)
215 ) ENGINE=InnoDB AUTO_INCREMENT=10 ;
216 insert into ccda_components (ccda_components_id, ccda_components_field, ccda_components_name) values('1','progress_note','Progress Notes');
217 insert into ccda_components (ccda_components_id, ccda_components_field, ccda_components_name) values('2','consultation_note','Consultation Note');
218 insert into ccda_components (ccda_components_id, ccda_components_field, ccda_components_name) values('3','continuity_care_document','Continuity Care Document');
219 insert into ccda_components (ccda_components_id, ccda_components_field, ccda_components_name) values('4','diagnostic_image_reporting','Diagnostic Image Reporting');
220 insert into ccda_components (ccda_components_id, ccda_components_field, ccda_components_name) values('5','discharge_summary','Discharge Summary');
221 insert into ccda_components (ccda_components_id, ccda_components_field, ccda_components_name) values('6','history_physical_note','History and Physical Note');
222 insert into ccda_components (ccda_components_id, ccda_components_field, ccda_components_name) values('7','operative_note','Operative Note');
223 insert into ccda_components (ccda_components_id, ccda_components_field, ccda_components_name) values('8','procedure_note','Procedure Note');
224 insert into ccda_components (ccda_components_id, ccda_components_field, ccda_components_name) values('9','unstructured_document','Unstructured Document');
225 #EndIf
227 #IfNotTable ccda_sections
228 CREATE TABLE ccda_sections (
229   ccda_sections_id int(11) NOT NULL AUTO_INCREMENT,
230   ccda_components_id int(11) DEFAULT NULL,
231   ccda_sections_field varchar(100) DEFAULT NULL,
232   ccda_sections_name varchar(100) DEFAULT NULL,
233   ccda_sections_req_mapping tinyint(4) NOT NULL DEFAULT '1',
234   PRIMARY KEY (ccda_sections_id)
235 ) ENGINE=InnoDB AUTO_INCREMENT=46;
236 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('1','1','assessment_plan','Assessment and Plan','1');
237 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('2','2','assessment_plan','Assessment and Plan','1');
238 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('3','2','history_of_present_illness','History of Present Illness','1');
239 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('4','2','physical_exam','Physical Exam','1');
240 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('5','2','reason_of_visit','Reason for Referral/Reason for Visit','1');
241 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('6','3','allergies','Allergies','0');
242 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('7','3','medications','Medications','0');
243 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('8','3','problem_list','Problem List','0');
244 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('9','3','procedures','Procedures','0');
245 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('10','3','results','Results','0');
246 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('11','4','report','Report','0');
247 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('12','5','allergies','Allergies','0');
248 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('13','5','hospital_course','Hospital Course','0');
249 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('14','5','hospital_discharge_diagnosis','Hospital Discharge Diagnosis','0');
250 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('15','5','hospital_discharge_medications','Hospital Discharge Medications','0');
251 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('16','5','plan_of_care','Plan of Care','1');
252 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('17','6','allergies','Allergies','0');
253 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('19','6','chief_complaint','Chief Complaint / Reason for Visit','1');
254 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('21','6','family_history','Family History','1');
255 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('22','6','general_status','General Status','1');
256 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('23','6','hpi_past_med','History of Past Illness (Past Medical History)','1');
257 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('24','6','hpi','History of Present Illness','1');
258 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('25','6','medications','Medications','0');
259 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('26','6','physical_exam','Physical Exam','1');
260 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('28','6','results','Results','0');
261 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('29','6','review_of_systems','Review of Systems','1');
262 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('30','6','social_history','Social History','1');
263 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('31','6','vital_signs','Vital Signs','0');
264 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('32','7','anesthesia','Anesthesia','1');
265 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('33','7','complications','Complications','1');
266 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('34','7','post_operative_diagnosis','Post Operative Diagnosis','0');
267 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('35','7','pre_operative_diagnosis','Pre Operative Diagnosis','0');
268 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('36','7','procedure_estimated_blood_loss','Procedure Estimated Blood Loss','0');
269 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('37','7','procedure_findings','Procedure Findings','0');
270 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('38','7','procedure_specimens_taken','Procedure Specimens Taken','0');
271 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('39','7','procedure_description','Procedure Description','1');
272 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('40','8','assessment_plan','Assessment and Plan','1');
273 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('41','8','complications','Complications','1');
274 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('42','8','postprocedure_diagnosis','Postprocedure Diagnosis','0');
275 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('43','8','procedure_description','Procedure Description','0');
276 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('44','8','procedure_indications','Procedure Indications','0');
277 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('45','9','unstructured_doc','Document','0');
278 #EndIf
280 #IfNotTable ccda_table_mapping
281 CREATE TABLE ccda_table_mapping (
282   id int(11) NOT NULL AUTO_INCREMENT,
283   ccda_component varchar(100) DEFAULT NULL,
284   ccda_component_section varchar(100) DEFAULT NULL,
285   form_dir varchar(100) DEFAULT NULL,
286   form_type smallint(6) DEFAULT NULL,
287   form_table varchar(100) DEFAULT NULL,
288   user_id int(11) DEFAULT NULL,
289   deleted tinyint(4) NOT NULL DEFAULT '0',
290   timestamp timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
291   PRIMARY KEY (id)
292 ) ENGINE=InnoDB AUTO_INCREMENT=1 ;
293 #EndIf
295 #IfNotTable ccda_field_mapping
296 CREATE TABLE ccda_field_mapping (
297   id int(11) NOT NULL AUTO_INCREMENT,
298   table_id int(11) DEFAULT NULL,
299   ccda_field varchar(100) DEFAULT NULL,
300   PRIMARY KEY (id)
301 ) ENGINE=InnoDB AUTO_INCREMENT=1 ;
302 #EndIf
304 #IfNotTable ccda
305 CREATE TABLE ccda (
306   id INT(11) NOT NULL AUTO_INCREMENT,
307   pid BIGINT(20) DEFAULT NULL,
308   encounter BIGINT(20) DEFAULT NULL,
309   ccda_data MEDIUMTEXT,
310   time VARCHAR(50) DEFAULT NULL,
311   status SMALLINT(6) DEFAULT NULL,
312   updated_date TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
313   user_id VARCHAR(50) null,
314   couch_docid VARCHAR(100) NULL,
315   couch_revid VARCHAR(100) NULL,
316   `view` tinyint(4) NOT NULL DEFAULT '0',
317   `transfer` tinyint(4) NOT NULL DEFAULT '0',
318   `type` VARCHAR(15),
319   `emr_transfer` tinyint(4) NOT NULL DEFAULT '0',
320   PRIMARY KEY (id),
321   UNIQUE KEY unique_key (pid,encounter,time)
322 ) ENGINE=InnoDB AUTO_INCREMENT=1 ;
323 #EndIf
325 #IfNotRow2D list_options list_id lists option_id religious_affiliation
326 INSERT INTO list_options(list_id,option_id,title) VALUES ('lists','religious_affiliation','Religious Affiliation');
327 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','adventist','1001','Adventist','5');
328 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','african_religions','1002','African Religions','15');
329 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','afro-caribbean_religions','1003','Afro-Caribbean Religions','25');
330 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','agnosticism','1004','Agnosticism','35');
331 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','anglican','1005','Anglican','45');
332 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','animism','1006','Animism','55');
333 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','assembly_of_god','1061','Assembly of God','65');
334 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','atheism','1007','Atheism','75');
335 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','babi_bahai_faiths','1008','Babi & Baha\'I faiths','85');
336 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','baptist','1009','Baptist','95');
337 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','bon','1010','Bon','105');
338 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','brethren','1062','Brethren','115');
339 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','cao_dai','1011','Cao Dai','125');
340 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','celticism','1012','Celticism','135');
341 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','christiannoncatholicnonspecifc','1013','Christian (non-Catholic, non-specific)','145');
342 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','christian_scientist','1063','Christian Scientist','155');
343 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','church_of_christ','1064','Church of Christ','165');
344 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','church_of_god','1065','Church of God','175');
345 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','confucianism','1014','Confucianism','185');
346 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','congregational','1066','Congregational','195');
347 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','cyberculture_religions','1015','Cyberculture Religions','205');
348 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','disciples_of_christ','1067','Disciples of Christ','215');
349 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','divination','1016','Divination','225');
350 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','eastern_orthodox','1068','Eastern Orthodox','235');
351 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','episcopalian','1069','Episcopalian','245');
352 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','evangelical_covenant','1070','Evangelical Covenant','255');
353 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','fourth_way','1017','Fourth Way','265');
354 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','free_daism','1018','Free Daism','275');
355 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','friends','1071','Friends','285');
356 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','full_gospel','1072','Full Gospel','295');
357 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','gnosis','1019','Gnosis','305');
358 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','hinduism','1020','Hinduism','315');
359 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','humanism','1021','Humanism','325');
360 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','independent','1022','Independent','335');
361 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','islam','1023','Islam','345');
362 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','jainism','1024','Jainism','355');
363 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','jehovahs_witnesses','1025','Jehovah\'s Witnesses','365');
364 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','judaism','1026','Judaism','375');
365 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','latter_day_saints','1027','Latter Day Saints','385');
366 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','lutheran','1028','Lutheran','395');
367 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','mahayana','1029','Mahayana','405');
368 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','meditation','1030','Meditation','415');
369 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','messianic_judaism','1031','Messianic Judaism','425');
370 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','methodist','1073','Methodist','435');
371 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','mitraism','1032','Mitraism','445');
372 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','native_american','1074','Native American','455');
373 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','nazarene','1075','Nazarene','465');
374 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','new_age','1033','New Age','475');
375 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','non-roman_catholic','1034','non-Roman Catholic','485');
376 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','occult','1035','Occult','495');
377 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','orthodox','1036','Orthodox','505');
378 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','paganism','1037','Paganism','515');
379 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','pentecostal','1038','Pentecostal','525');
380 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','presbyterian','1076','Presbyterian','535');
381 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','process_the','1039','Process, The','545');
382 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','protestant','1077','Protestant','555');
383 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','protestant_no_denomination','1078','Protestant, No Denomination','565');
384 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','reformed','1079','Reformed','575');
385 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','reformed_presbyterian','1040','Reformed/Presbyterian','585');
386 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','roman_catholic_church','1041','Roman Catholic Church','595');
387 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','salvation_army','1080','Salvation Army','605');
388 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','satanism','1042','Satanism','615');
389 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','scientology','1043','Scientology','625');
390 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','shamanism','1044','Shamanism','635');
391 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','shiite_islam','1045','Shiite (Islam)','645');
392 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','shinto','1046','Shinto','655');
393 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','sikism','1047','Sikism','665');
394 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','spiritualism','1048','Spiritualism','675');
395 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','sunni_islam','1049','Sunni (Islam)','685');
396 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','taoism','1050','Taoism','695');
397 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','theravada','1051','Theravada','705');
398 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','unitarian_universalist','1081','Unitarian Universalist','715');
399 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','unitarian-universalism','1052','Unitarian-Universalism','725');
400 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','united_church_of_christ','1082','United Church of Christ','735');
401 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','universal_life_church','1053','Universal Life Church','745');
402 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','vajrayana_tibetan','1054','Vajrayana (Tibetan)','755');
403 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','veda','1055','Veda','765');
404 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','voodoo','1056','Voodoo','775');
405 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','wicca','1057','Wicca','785');
406 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','yaohushua','1058','Yaohushua','795');
407 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','zen_buddhism','1059','Zen Buddhism','805');
408 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','zoroastrianism','1060','Zoroastrianism','815');
410 #EndIf
412 #IfNotRow2D list_options list_id lists option_id personal_relationship
413 INSERT INTO list_options(list_id,option_id,title) VALUES ('lists','personal_relationship','Relationship');
414 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','ADOPT','Adopted Child','ADOPT','10');
415 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','AUNT','Aunt','AUNT','20');
416 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','CHILD','Child','CHILD','30');
417 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','CHLDINLAW','Child in-law','CHLDINLAW','40');
418 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','COUSN','Cousin','COUSN','50');
419 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','DOMPART','Domestic Partner','DOMPART','60');
420 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','FAMMEMB','Family Member','FAMMEMB','70');
421 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','CHLDFOST','Foster Child','CHLDFOST','80');
422 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','GRNDCHILD','Grandchild','GRNDCHILD','90');
423 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','GPARNT','Grandparent','GPARNT','100');
424 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','GRPRN','Grandparent','GRPRN','110');
425 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','GGRPRN','Great Grandparent','GGRPRN','120');
426 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','HSIB','Half-Sibling','HSIB','130');
427 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','MAUNT','MaternalAunt','MAUNT','140');
428 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','MCOUSN','MaternalCousin','MCOUSN','150');
429 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','MGRPRN','MaternalGrandparent','MGRPRN','160');
430 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','MGGRPRN','MaternalGreatgrandparent','MGGRPRN','170');
431 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','MUNCLE','MaternalUncle','MUNCLE','180');
432 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','NCHILD','Natural Child','NCHILD','190');
433 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','NPRN','Natural Parent','NPRN','200');
434 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','NSIB','Natural Sibling','NSIB','210');
435 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','NBOR','Neighbor','NBOR','220');
436 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','NIENEPH','Niece/Nephew','NIENEPH','230');
437 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','PRN','Parent','PRN','240');
438 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','PRNINLAW','parent in-law','PRNINLAW','250');
439 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','PAUNT','PaternalAunt','PAUNT','260');
440 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','PCOUSN','PaternalCousin','PCOUSN','270');
441 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','PGRPRN','PaternalGrandparent','PGRPRN','280');
442 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','PGGRPRN','PaternalGreatgrandparent','PGGRPRN','290');
443 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','PUNCLE','PaternalUncle','PUNCLE','300');
444 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','ROOM','Roommate','ROOM','310');
445 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','SIB','Sibling','SIB','320');
446 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','SIBINLAW','Sibling in-law','SIBINLAW','330');
447 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','SIGOTHR','Significant Other','SIGOTHR','340');
448 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','SPS','Spouse','SPS','350');
449 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','STEP','Step Child','STEP','360');
450 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','STPPRN','Step Parent','STPPRN','370');
451 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','STPSIB','Step Sibling','STPSIB','380');
452 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','UNCLE','Uncle','UNCLE','390');
453 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','FRND','Unrelated Friend','FRND','400');
454 #EndIf
456 #IfNotRow3D list_options list_id ethnicity option_id hisp_or_latin notes 2135-2
457 UPDATE `list_options` SET `notes` = '2135-2' WHERE `option_id` = 'hisp_or_latin' AND `list_id` = 'ethnicity';
458 #EndIf
461 #IfNotRow3D list_options list_id ethnicity option_id not_hisp_or_latin notes 2186-5
462 UPDATE `list_options` SET `notes` = '2186-5' WHERE `option_id` = 'not_hisp_or_latin' AND `list_id` = 'ethnicity';
463 #EndIf
465 #IfNotRow3D list_options list_id race option_id amer_ind_or_alaska_native notes 1002-5
466 UPDATE `list_options` SET `notes` = '1002-5' WHERE `option_id` = 'amer_ind_or_alaska_native' AND `list_id` = 'race';
467 #EndIf
469 #IfNotRow3D list_options list_id race option_id Asian notes 2028-9
470 UPDATE `list_options` SET `notes` = '2028-9' WHERE `option_id` = 'Asian' AND `list_id` = 'race';
471 #EndIf
473 #IfNotRow3D list_options list_id race option_id black_or_afri_amer notes 2054-5
474 UPDATE `list_options` SET `notes` = '2054-5' WHERE `option_id` = 'black_or_afri_amer' AND `list_id` = 'race';
475 #EndIf
477 #IfNotRow3D list_options list_id race option_id native_hawai_or_pac_island notes 2076-8
478 UPDATE `list_options` SET `notes` = '2076-8' WHERE `option_id` = 'native_hawai_or_pac_island' AND `list_id` = 'race';
479 #EndIf
481 #IfNotRow3D list_options list_id race option_id white notes 2106-3
482 UPDATE `list_options` SET `notes` = '2106-3' WHERE `option_id` = 'white' AND `list_id` = 'race';
483 #EndIf
485 #IfNotRow2Dx2 list_options list_id race option_id abenaki title Abenaki
486 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','abenaki','Abenaki','60', '0',' 1006-6', 0);
487 #EndIf
489 #IfRow2D list_options list_id race option_id abenaki
490 UPDATE `list_options` SET `notes` = '1006-6' WHERE `option_id` = 'abenaki' AND `list_id` = 'race';
491 #EndIf
493 #IfRow2D list_options list_id race title Abenaki
494 UPDATE `list_options` SET `notes` = '1006-6' WHERE `title` = 'Abenaki' AND `list_id` = 'race';
495 #EndIf
497 #IfNotRow2Dx2 list_options list_id race option_id absentee_shawnee title Absentee Shawnee
498 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','absentee_shawnee','Absentee Shawnee','70', '0',' 1579-2', 0);
499 #EndIf
501 #IfRow2D list_options list_id race option_id absentee_shawnee
502 UPDATE `list_options` SET `notes` = '1579-2' WHERE `option_id` = 'absentee_shawnee' AND `list_id` = 'race';
503 #EndIf
505 #IfRow2D list_options list_id race title Absentee Shawnee
506 UPDATE `list_options` SET `notes` = '1579-2' WHERE `title` = 'Absentee Shawnee' AND `list_id` = 'race';
507 #EndIf
509 #IfNotRow2Dx2 list_options list_id race option_id acoma title Acoma
510 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','acoma','Acoma','80', '0',' 1490-2', 0);
511 #EndIf
513 #IfRow2D list_options list_id race option_id acoma
514 UPDATE `list_options` SET `notes` = '1490-2' WHERE `option_id` = 'acoma' AND `list_id` = 'race';
515 #EndIf
517 #IfRow2D list_options list_id race title Acoma
518 UPDATE `list_options` SET `notes` = '1490-2' WHERE `title` = 'Acoma' AND `list_id` = 'race';
519 #EndIf
521 #IfNotRow2Dx2 list_options list_id race option_id afghanistani title Afghanistani
522 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','afghanistani','Afghanistani','90', '0',' 2126-1', 0);
523 #EndIf
525 #IfRow2D list_options list_id race option_id afghanistani
526 UPDATE `list_options` SET `notes` = '2126-1' WHERE `option_id` = 'afghanistani' AND `list_id` = 'race';
527 #EndIf
529 #IfRow2D list_options list_id race title Afghanistani
530 UPDATE `list_options` SET `notes` = '2126-1' WHERE `title` = 'Afghanistani' AND `list_id` = 'race';
531 #EndIf
533 #IfNotRow2Dx2 list_options list_id race option_id african title African
534 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','african','African','100', '0',' 2060-2', 0);
535 #EndIf
537 #IfRow2D list_options list_id race option_id african
538 UPDATE `list_options` SET `notes` = '2060-2' WHERE `option_id` = 'african' AND `list_id` = 'race';
539 #EndIf
541 #IfRow2D list_options list_id race title African
542 UPDATE `list_options` SET `notes` = '2060-2' WHERE `title` = 'African' AND `list_id` = 'race';
543 #EndIf
545 #IfNotRow2Dx2 list_options list_id race option_id african_american title African American
546 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','african_american','African American','110', '0',' 2058-6', 0);
547 #EndIf
549 #IfRow2D list_options list_id race option_id african_american
550 UPDATE `list_options` SET `notes` = '2058-6' WHERE `option_id` = 'african_american' AND `list_id` = 'race';
551 #EndIf
553 #IfRow2D list_options list_id race title African American
554 UPDATE `list_options` SET `notes` = '2058-6' WHERE `title` = 'African American' AND `list_id` = 'race';
555 #EndIf
557 #IfNotRow2Dx2 list_options list_id race option_id agdaagux title Agdaagux
558 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','agdaagux','Agdaagux','120', '0',' 1994-3', 0);
559 #EndIf
561 #IfRow2D list_options list_id race option_id agdaagux
562 UPDATE `list_options` SET `notes` = '1994-3' WHERE `option_id` = 'agdaagux' AND `list_id` = 'race';
563 #EndIf
565 #IfRow2D list_options list_id race title Agdaagux
566 UPDATE `list_options` SET `notes` = '1994-3' WHERE `title` = 'Agdaagux' AND `list_id` = 'race';
567 #EndIf
569 #IfNotRow2Dx2 list_options list_id race option_id agua_caliente title Agua Caliente
570 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','agua_caliente','Agua Caliente','130', '0',' 1212-0', 0);
571 #EndIf
573 #IfRow2D list_options list_id race option_id agua_caliente
574 UPDATE `list_options` SET `notes` = '1212-0' WHERE `option_id` = 'agua_caliente' AND `list_id` = 'race';
575 #EndIf
577 #IfRow2D list_options list_id race title Agua Caliente
578 UPDATE `list_options` SET `notes` = '1212-0' WHERE `title` = 'Agua Caliente' AND `list_id` = 'race';
579 #EndIf
581 #IfNotRow2Dx2 list_options list_id race option_id agua_caliente_cahuilla title Agua Caliente Cahuilla
582 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','agua_caliente_cahuilla','Agua Caliente Cahuilla','140', '0',' 1045-4', 0);
583 #EndIf
585 #IfRow2D list_options list_id race option_id agua_caliente_cahuilla
586 UPDATE `list_options` SET `notes` = '1045-4' WHERE `option_id` = 'agua_caliente_cahuilla' AND `list_id` = 'race';
587 #EndIf
589 #IfRow2D list_options list_id race title Agua Caliente Cahuilla
590 UPDATE `list_options` SET `notes` = '1045-4' WHERE `title` = 'Agua Caliente Cahuilla' AND `list_id` = 'race';
591 #EndIf
593 #IfNotRow2Dx2 list_options list_id race option_id ahtna title Ahtna
594 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','ahtna','Ahtna','150', '0',' 1740-0', 0);
595 #EndIf
597 #IfRow2D list_options list_id race option_id ahtna
598 UPDATE `list_options` SET `notes` = '1740-0' WHERE `option_id` = 'ahtna' AND `list_id` = 'race';
599 #EndIf
601 #IfRow2D list_options list_id race title Ahtna
602 UPDATE `list_options` SET `notes` = '1740-0' WHERE `title` = 'Ahtna' AND `list_id` = 'race';
603 #EndIf
605 #IfNotRow2Dx2 list_options list_id race option_id ak-chin title Ak-Chin
606 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','ak-chin','Ak-Chin','160', '0',' 1654-3', 0);
607 #EndIf
609 #IfRow2D list_options list_id race option_id ak-chin
610 UPDATE `list_options` SET `notes` = '1654-3' WHERE `option_id` = 'ak-chin' AND `list_id` = 'race';
611 #EndIf
613 #IfRow2D list_options list_id race title Ak-Chin
614 UPDATE `list_options` SET `notes` = '1654-3' WHERE `title` = 'Ak-Chin' AND `list_id` = 'race';
615 #EndIf
617 #IfNotRow2Dx2 list_options list_id race option_id akhiok title Akhiok
618 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','akhiok','Akhiok','170', '0',' 1993-5', 0);
619 #EndIf
621 #IfRow2D list_options list_id race option_id akhiok
622 UPDATE `list_options` SET `notes` = '1993-5' WHERE `option_id` = 'akhiok' AND `list_id` = 'race';
623 #EndIf
625 #IfRow2D list_options list_id race title Akhiok
626 UPDATE `list_options` SET `notes` = '1993-5' WHERE `title` = 'Akhiok' AND `list_id` = 'race';
627 #EndIf
629 #IfNotRow2Dx2 list_options list_id race option_id akiachak title Akiachak
630 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','akiachak','Akiachak','180', '0',' 1897-8', 0);
631 #EndIf
633 #IfRow2D list_options list_id race option_id akiachak
634 UPDATE `list_options` SET `notes` = '1897-8' WHERE `option_id` = 'akiachak' AND `list_id` = 'race';
635 #EndIf
637 #IfRow2D list_options list_id race title Akiachak
638 UPDATE `list_options` SET `notes` = '1897-8' WHERE `title` = 'Akiachak' AND `list_id` = 'race';
639 #EndIf
641 #IfNotRow2Dx2 list_options list_id race option_id akiak title Akiak
642 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','akiak','Akiak','190', '0',' 1898-6', 0);
643 #EndIf
645 #IfRow2D list_options list_id race option_id akiak
646 UPDATE `list_options` SET `notes` = '1898-6' WHERE `option_id` = 'akiak' AND `list_id` = 'race';
647 #EndIf
649 #IfRow2D list_options list_id race title Akiak
650 UPDATE `list_options` SET `notes` = '1898-6' WHERE `title` = 'Akiak' AND `list_id` = 'race';
651 #EndIf
653 #IfNotRow2Dx2 list_options list_id race option_id akutan title Akutan
654 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','akutan','Akutan','200', '0',' 2007-3', 0);
655 #EndIf
657 #IfRow2D list_options list_id race option_id akutan
658 UPDATE `list_options` SET `notes` = '2007-3' WHERE `option_id` = 'akutan' AND `list_id` = 'race';
659 #EndIf
661 #IfRow2D list_options list_id race title Akutan
662 UPDATE `list_options` SET `notes` = '2007-3' WHERE `title` = 'Akutan' AND `list_id` = 'race';
663 #EndIf
665 #IfNotRow2Dx2 list_options list_id race option_id alabama_coushatta title Alabama Coushatta
666 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','alabama_coushatta','Alabama Coushatta','210', '0',' 1187-4', 0);
667 #EndIf
669 #IfRow2D list_options list_id race option_id alabama_coushatta
670 UPDATE `list_options` SET `notes` = '1187-4' WHERE `option_id` = 'alabama_coushatta' AND `list_id` = 'race';
671 #EndIf
673 #IfRow2D list_options list_id race title Alabama Coushatta
674 UPDATE `list_options` SET `notes` = '1187-4' WHERE `title` = 'Alabama Coushatta' AND `list_id` = 'race';
675 #EndIf
677 #IfNotRow2Dx2 list_options list_id race option_id alabama_creek title Alabama Creek
678 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','alabama_creek','Alabama Creek','220', '0',' 1194-0', 0);
679 #EndIf
681 #IfRow2D list_options list_id race option_id alabama_creek
682 UPDATE `list_options` SET `notes` = '1194-0' WHERE `option_id` = 'alabama_creek' AND `list_id` = 'race';
683 #EndIf
685 #IfRow2D list_options list_id race title Alabama Creek
686 UPDATE `list_options` SET `notes` = '1194-0' WHERE `title` = 'Alabama Creek' AND `list_id` = 'race';
687 #EndIf
689 #IfNotRow2Dx2 list_options list_id race option_id alabama_quassarte title Alabama Quassarte
690 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','alabama_quassarte','Alabama Quassarte','230', '0',' 1195-7', 0);
691 #EndIf
693 #IfRow2D list_options list_id race option_id alabama_quassarte
694 UPDATE `list_options` SET `notes` = '1195-7' WHERE `option_id` = 'alabama_quassarte' AND `list_id` = 'race';
695 #EndIf
697 #IfRow2D list_options list_id race title Alabama Quassarte
698 UPDATE `list_options` SET `notes` = '1195-7' WHERE `title` = 'Alabama Quassarte' AND `list_id` = 'race';
699 #EndIf
701 #IfNotRow2Dx2 list_options list_id race option_id alakanuk title Alakanuk
702 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','alakanuk','Alakanuk','240', '0',' 1899-4', 0);
703 #EndIf
705 #IfRow2D list_options list_id race option_id alakanuk
706 UPDATE `list_options` SET `notes` = '1899-4' WHERE `option_id` = 'alakanuk' AND `list_id` = 'race';
707 #EndIf
709 #IfRow2D list_options list_id race title Alakanuk
710 UPDATE `list_options` SET `notes` = '1899-4' WHERE `title` = 'Alakanuk' AND `list_id` = 'race';
711 #EndIf
713 #IfNotRow2Dx2 list_options list_id race option_id alamo_navajo title Alamo Navajo
714 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','alamo_navajo','Alamo Navajo','250', '0',' 1383-9', 0);
715 #EndIf
717 #IfRow2D list_options list_id race option_id alamo_navajo
718 UPDATE `list_options` SET `notes` = '1383-9' WHERE `option_id` = 'alamo_navajo' AND `list_id` = 'race';
719 #EndIf
721 #IfRow2D list_options list_id race title Alamo Navajo
722 UPDATE `list_options` SET `notes` = '1383-9' WHERE `title` = 'Alamo Navajo' AND `list_id` = 'race';
723 #EndIf
725 #IfNotRow2Dx2 list_options list_id race option_id alanvik title Alanvik
726 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','alanvik','Alanvik','260', '0',' 1744-2', 0);
727 #EndIf
729 #IfRow2D list_options list_id race option_id alanvik
730 UPDATE `list_options` SET `notes` = '1744-2' WHERE `option_id` = 'alanvik' AND `list_id` = 'race';
731 #EndIf
733 #IfRow2D list_options list_id race title Alanvik
734 UPDATE `list_options` SET `notes` = '1744-2' WHERE `title` = 'Alanvik' AND `list_id` = 'race';
735 #EndIf
737 #IfNotRow2Dx2 list_options list_id race option_id alaska_indian title Alaska Indian
738 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','alaska_indian','Alaska Indian','270', '0',' 1737-6', 0);
739 #EndIf
741 #IfRow2D list_options list_id race option_id alaska_indian
742 UPDATE `list_options` SET `notes` = '1737-6' WHERE `option_id` = 'alaska_indian' AND `list_id` = 'race';
743 #EndIf
745 #IfRow2D list_options list_id race title Alaska Indian
746 UPDATE `list_options` SET `notes` = '1737-6' WHERE `title` = 'Alaska Indian' AND `list_id` = 'race';
747 #EndIf
749 #IfNotRow2Dx2 list_options list_id race option_id alaska_native title Alaska Native
750 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','alaska_native','Alaska Native','280', '0',' 1735-0', 0);
751 #EndIf
753 #IfRow2D list_options list_id race option_id alaska_native
754 UPDATE `list_options` SET `notes` = '1735-0' WHERE `option_id` = 'alaska_native' AND `list_id` = 'race';
755 #EndIf
757 #IfRow2D list_options list_id race title Alaska Native
758 UPDATE `list_options` SET `notes` = '1735-0' WHERE `title` = 'Alaska Native' AND `list_id` = 'race';
759 #EndIf
761 #IfNotRow2Dx2 list_options list_id race option_id alaskan_athabascan title Alaskan Athabascan
762 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','alaskan_athabascan','Alaskan Athabascan','290', '0',' 1739-2', 0);
763 #EndIf
765 #IfRow2D list_options list_id race option_id alaskan_athabascan
766 UPDATE `list_options` SET `notes` = '1739-2' WHERE `option_id` = 'alaskan_athabascan' AND `list_id` = 'race';
767 #EndIf
769 #IfRow2D list_options list_id race title Alaskan Athabascan
770 UPDATE `list_options` SET `notes` = '1739-2' WHERE `title` = 'Alaskan Athabascan' AND `list_id` = 'race';
771 #EndIf
773 #IfNotRow2Dx2 list_options list_id race option_id alatna title Alatna
774 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','alatna','Alatna','300', '0',' 1741-8', 0);
775 #EndIf
777 #IfRow2D list_options list_id race option_id alatna
778 UPDATE `list_options` SET `notes` = '1741-8' WHERE `option_id` = 'alatna' AND `list_id` = 'race';
779 #EndIf
781 #IfRow2D list_options list_id race title Alatna
782 UPDATE `list_options` SET `notes` = '1741-8' WHERE `title` = 'Alatna' AND `list_id` = 'race';
783 #EndIf
785 #IfNotRow2Dx2 list_options list_id race option_id aleknagik title Aleknagik
786 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','aleknagik','Aleknagik','310', '0',' 1900-0', 0);
787 #EndIf
789 #IfRow2D list_options list_id race option_id aleknagik
790 UPDATE `list_options` SET `notes` = '1900-0' WHERE `option_id` = 'aleknagik' AND `list_id` = 'race';
791 #EndIf
793 #IfRow2D list_options list_id race title Aleknagik
794 UPDATE `list_options` SET `notes` = '1900-0' WHERE `title` = 'Aleknagik' AND `list_id` = 'race';
795 #EndIf
797 #IfNotRow2Dx2 list_options list_id race option_id aleut title Aleut
798 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','aleut','Aleut','320', '0',' 1966-1', 0);
799 #EndIf
801 #IfRow2D list_options list_id race option_id aleut
802 UPDATE `list_options` SET `notes` = '1966-1' WHERE `option_id` = 'aleut' AND `list_id` = 'race';
803 #EndIf
805 #IfRow2D list_options list_id race title Aleut
806 UPDATE `list_options` SET `notes` = '1966-1' WHERE `title` = 'Aleut' AND `list_id` = 'race';
807 #EndIf
809 #IfNotRow2Dx2 list_options list_id race option_id aleut_corporation title Aleut Corporation
810 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','aleut_corporation','Aleut Corporation','330', '0',' 2008-1', 0);
811 #EndIf
813 #IfRow2D list_options list_id race option_id aleut_corporation
814 UPDATE `list_options` SET `notes` = '2008-1' WHERE `option_id` = 'aleut_corporation' AND `list_id` = 'race';
815 #EndIf
817 #IfRow2D list_options list_id race title Aleut Corporation
818 UPDATE `list_options` SET `notes` = '2008-1' WHERE `title` = 'Aleut Corporation' AND `list_id` = 'race';
819 #EndIf
821 #IfNotRow2Dx2 list_options list_id race option_id aleutian title Aleutian
822 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','aleutian','Aleutian','340', '0',' 2009-9', 0);
823 #EndIf
825 #IfRow2D list_options list_id race option_id aleutian
826 UPDATE `list_options` SET `notes` = '2009-9' WHERE `option_id` = 'aleutian' AND `list_id` = 'race';
827 #EndIf
829 #IfRow2D list_options list_id race title Aleutian
830 UPDATE `list_options` SET `notes` = '2009-9' WHERE `title` = 'Aleutian' AND `list_id` = 'race';
831 #EndIf
833 #IfNotRow2Dx2 list_options list_id race option_id aleutian_islander title Aleutian Islander
834 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','aleutian_islander','Aleutian Islander','350', '0',' 2010-7', 0);
835 #EndIf
837 #IfRow2D list_options list_id race option_id aleutian_islander
838 UPDATE `list_options` SET `notes` = '2010-7' WHERE `option_id` = 'aleutian_islander' AND `list_id` = 'race';
839 #EndIf
841 #IfRow2D list_options list_id race title Aleutian Islander
842 UPDATE `list_options` SET `notes` = '2010-7' WHERE `title` = 'Aleutian Islander' AND `list_id` = 'race';
843 #EndIf
845 #IfNotRow2Dx2 list_options list_id race option_id alexander title Alexander
846 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','alexander','Alexander','360', '0',' 1742-6', 0);
847 #EndIf
849 #IfRow2D list_options list_id race option_id alexander
850 UPDATE `list_options` SET `notes` = '1742-6' WHERE `option_id` = 'alexander' AND `list_id` = 'race';
851 #EndIf
853 #IfRow2D list_options list_id race title Alexander
854 UPDATE `list_options` SET `notes` = '1742-6' WHERE `title` = 'Alexander' AND `list_id` = 'race';
855 #EndIf
857 #IfNotRow2Dx2 list_options list_id race option_id algonquian title Algonquian
858 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','algonquian','Algonquian','370', '0',' 1008-2', 0);
859 #EndIf
861 #IfRow2D list_options list_id race option_id algonquian
862 UPDATE `list_options` SET `notes` = '1008-2' WHERE `option_id` = 'algonquian' AND `list_id` = 'race';
863 #EndIf
865 #IfRow2D list_options list_id race title Algonquian
866 UPDATE `list_options` SET `notes` = '1008-2' WHERE `title` = 'Algonquian' AND `list_id` = 'race';
867 #EndIf
869 #IfNotRow2Dx2 list_options list_id race option_id allakaket title Allakaket
870 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','allakaket','Allakaket','380', '0',' 1743-4', 0);
871 #EndIf
873 #IfRow2D list_options list_id race option_id allakaket
874 UPDATE `list_options` SET `notes` = '1743-4' WHERE `option_id` = 'allakaket' AND `list_id` = 'race';
875 #EndIf
877 #IfRow2D list_options list_id race title Allakaket
878 UPDATE `list_options` SET `notes` = '1743-4' WHERE `title` = 'Allakaket' AND `list_id` = 'race';
879 #EndIf
881 #IfNotRow2Dx2 list_options list_id race option_id allen_canyon title Allen Canyon
882 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','allen_canyon','Allen Canyon','390', '0',' 1671-7', 0);
883 #EndIf
885 #IfRow2D list_options list_id race option_id allen_canyon
886 UPDATE `list_options` SET `notes` = '1671-7' WHERE `option_id` = 'allen_canyon' AND `list_id` = 'race';
887 #EndIf
889 #IfRow2D list_options list_id race title Allen Canyon
890 UPDATE `list_options` SET `notes` = '1671-7' WHERE `title` = 'Allen Canyon' AND `list_id` = 'race';
891 #EndIf
893 #IfNotRow2Dx2 list_options list_id race option_id alpine title Alpine
894 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','alpine','Alpine','400', '0',' 1688-1', 0);
895 #EndIf
897 #IfRow2D list_options list_id race option_id alpine
898 UPDATE `list_options` SET `notes` = '1688-1' WHERE `option_id` = 'alpine' AND `list_id` = 'race';
899 #EndIf
901 #IfRow2D list_options list_id race title Alpine
902 UPDATE `list_options` SET `notes` = '1688-1' WHERE `title` = 'Alpine' AND `list_id` = 'race';
903 #EndIf
905 #IfNotRow2Dx2 list_options list_id race option_id alsea title Alsea
906 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','alsea','Alsea','410', '0',' 1392-0', 0);
907 #EndIf
909 #IfRow2D list_options list_id race option_id alsea
910 UPDATE `list_options` SET `notes` = '1392-0' WHERE `option_id` = 'alsea' AND `list_id` = 'race';
911 #EndIf
913 #IfRow2D list_options list_id race title Alsea
914 UPDATE `list_options` SET `notes` = '1392-0' WHERE `title` = 'Alsea' AND `list_id` = 'race';
915 #EndIf
917 #IfNotRow2Dx2 list_options list_id race option_id alutiiq_aleut title Alutiiq Aleut
918 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','alutiiq_aleut','Alutiiq Aleut','420', '0',' 1968-7', 0);
919 #EndIf
921 #IfRow2D list_options list_id race option_id alutiiq_aleut
922 UPDATE `list_options` SET `notes` = '1968-7' WHERE `option_id` = 'alutiiq_aleut' AND `list_id` = 'race';
923 #EndIf
925 #IfRow2D list_options list_id race title Alutiiq Aleut
926 UPDATE `list_options` SET `notes` = '1968-7' WHERE `title` = 'Alutiiq Aleut' AND `list_id` = 'race';
927 #EndIf
929 #IfNotRow2Dx2 list_options list_id race option_id ambler title Ambler
930 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','ambler','Ambler','430', '0',' 1845-7', 0);
931 #EndIf
933 #IfRow2D list_options list_id race option_id ambler
934 UPDATE `list_options` SET `notes` = '1845-7' WHERE `option_id` = 'ambler' AND `list_id` = 'race';
935 #EndIf
937 #IfRow2D list_options list_id race title Ambler
938 UPDATE `list_options` SET `notes` = '1845-7' WHERE `title` = 'Ambler' AND `list_id` = 'race';
939 #EndIf
941 #IfNotRow2Dx2 list_options list_id race option_id american_indian title American Indian
942 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','american_indian','American Indian','440', '0',' 1004-1', 0);
943 #EndIf
945 #IfRow2D list_options list_id race option_id american_indian
946 UPDATE `list_options` SET `notes` = '1004-1' WHERE `option_id` = 'american_indian' AND `list_id` = 'race';
947 #EndIf
949 #IfRow2D list_options list_id race title American Indian
950 UPDATE `list_options` SET `notes` = '1004-1' WHERE `title` = 'American Indian' AND `list_id` = 'race';
951 #EndIf
953 #IfNotRow2Dx2 list_options list_id race option_id anaktuvuk title Anaktuvuk
954 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','anaktuvuk','Anaktuvuk','460', '0',' 1846-5', 0);
955 #EndIf
957 #IfRow2D list_options list_id race option_id anaktuvuk
958 UPDATE `list_options` SET `notes` = '1846-5' WHERE `option_id` = 'anaktuvuk' AND `list_id` = 'race';
959 #EndIf
961 #IfRow2D list_options list_id race title Anaktuvuk
962 UPDATE `list_options` SET `notes` = '1846-5' WHERE `title` = 'Anaktuvuk' AND `list_id` = 'race';
963 #EndIf
965 #IfNotRow2Dx2 list_options list_id race option_id anaktuvuk_pass title Anaktuvuk Pass
966 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','anaktuvuk_pass','Anaktuvuk Pass','470', '0',' 1847-3', 0);
967 #EndIf
969 #IfRow2D list_options list_id race option_id anaktuvuk_pass
970 UPDATE `list_options` SET `notes` = '1847-3' WHERE `option_id` = 'anaktuvuk_pass' AND `list_id` = 'race';
971 #EndIf
973 #IfRow2D list_options list_id race title Anaktuvuk Pass
974 UPDATE `list_options` SET `notes` = '1847-3' WHERE `title` = 'Anaktuvuk Pass' AND `list_id` = 'race';
975 #EndIf
977 #IfNotRow2Dx2 list_options list_id race option_id andreafsky title Andreafsky
978 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','andreafsky','Andreafsky','480', '0',' 1901-8', 0);
979 #EndIf
981 #IfRow2D list_options list_id race option_id andreafsky
982 UPDATE `list_options` SET `notes` = '1901-8' WHERE `option_id` = 'andreafsky' AND `list_id` = 'race';
983 #EndIf
985 #IfRow2D list_options list_id race title Andreafsky
986 UPDATE `list_options` SET `notes` = '1901-8' WHERE `title` = 'Andreafsky' AND `list_id` = 'race';
987 #EndIf
989 #IfNotRow2Dx2 list_options list_id race option_id angoon title Angoon
990 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','angoon','Angoon','490', '0',' 1814-3', 0);
991 #EndIf
993 #IfRow2D list_options list_id race option_id angoon
994 UPDATE `list_options` SET `notes` = '1814-3' WHERE `option_id` = 'angoon' AND `list_id` = 'race';
995 #EndIf
997 #IfRow2D list_options list_id race title Angoon
998 UPDATE `list_options` SET `notes` = '1814-3' WHERE `title` = 'Angoon' AND `list_id` = 'race';
999 #EndIf
1001 #IfNotRow2Dx2 list_options list_id race option_id aniak title Aniak
1002 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','aniak','Aniak','500', '0',' 1902-6', 0);
1003 #EndIf
1005 #IfRow2D list_options list_id race option_id aniak
1006 UPDATE `list_options` SET `notes` = '1902-6' WHERE `option_id` = 'aniak' AND `list_id` = 'race';
1007 #EndIf
1009 #IfRow2D list_options list_id race title Aniak
1010 UPDATE `list_options` SET `notes` = '1902-6' WHERE `title` = 'Aniak' AND `list_id` = 'race';
1011 #EndIf
1013 #IfNotRow2Dx2 list_options list_id race option_id anvik title Anvik
1014 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','anvik','Anvik','510', '0',' 1745-9', 0);
1015 #EndIf
1017 #IfRow2D list_options list_id race option_id anvik
1018 UPDATE `list_options` SET `notes` = '1745-9' WHERE `option_id` = 'anvik' AND `list_id` = 'race';
1019 #EndIf
1021 #IfRow2D list_options list_id race title Anvik
1022 UPDATE `list_options` SET `notes` = '1745-9' WHERE `title` = 'Anvik' AND `list_id` = 'race';
1023 #EndIf
1025 #IfNotRow2Dx2 list_options list_id race option_id apache title Apache
1026 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','apache','Apache','520', '0',' 1010-8', 0);
1027 #EndIf
1029 #IfRow2D list_options list_id race option_id apache
1030 UPDATE `list_options` SET `notes` = '1010-8' WHERE `option_id` = 'apache' AND `list_id` = 'race';
1031 #EndIf
1033 #IfRow2D list_options list_id race title Apache
1034 UPDATE `list_options` SET `notes` = '1010-8' WHERE `title` = 'Apache' AND `list_id` = 'race';
1035 #EndIf
1037 #IfNotRow2Dx2 list_options list_id race option_id arab title Arab
1038 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','arab','Arab','530', '0',' 2129-5', 0);
1039 #EndIf
1041 #IfRow2D list_options list_id race option_id arab
1042 UPDATE `list_options` SET `notes` = '2129-5' WHERE `option_id` = 'arab' AND `list_id` = 'race';
1043 #EndIf
1045 #IfRow2D list_options list_id race title Arab
1046 UPDATE `list_options` SET `notes` = '2129-5' WHERE `title` = 'Arab' AND `list_id` = 'race';
1047 #EndIf
1049 #IfNotRow2Dx2 list_options list_id race option_id arapaho title Arapaho
1050 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','arapaho','Arapaho','540', '0',' 1021-5', 0);
1051 #EndIf
1053 #IfRow2D list_options list_id race option_id arapaho
1054 UPDATE `list_options` SET `notes` = '1021-5' WHERE `option_id` = 'arapaho' AND `list_id` = 'race';
1055 #EndIf
1057 #IfRow2D list_options list_id race title Arapaho
1058 UPDATE `list_options` SET `notes` = '1021-5' WHERE `title` = 'Arapaho' AND `list_id` = 'race';
1059 #EndIf
1061 #IfNotRow2Dx2 list_options list_id race option_id arctic title Arctic
1062 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','arctic','Arctic','550', '0',' 1746-7', 0);
1063 #EndIf
1065 #IfRow2D list_options list_id race option_id arctic
1066 UPDATE `list_options` SET `notes` = '1746-7' WHERE `option_id` = 'arctic' AND `list_id` = 'race';
1067 #EndIf
1069 #IfRow2D list_options list_id race title Arctic
1070 UPDATE `list_options` SET `notes` = '1746-7' WHERE `title` = 'Arctic' AND `list_id` = 'race';
1071 #EndIf
1073 #IfNotRow2Dx2 list_options list_id race option_id arctic_slope_corporation title Arctic Slope Corporation
1074 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','arctic_slope_corporation','Arctic Slope Corporation','560', '0',' 1849-9', 0);
1075 #EndIf
1077 #IfRow2D list_options list_id race option_id arctic_slope_corporation
1078 UPDATE `list_options` SET `notes` = '1849-9' WHERE `option_id` = 'arctic_slope_corporation' AND `list_id` = 'race';
1079 #EndIf
1081 #IfRow2D list_options list_id race title Arctic Slope Corporation
1082 UPDATE `list_options` SET `notes` = '1849-9' WHERE `title` = 'Arctic Slope Corporation' AND `list_id` = 'race';
1083 #EndIf
1085 #IfNotRow2Dx2 list_options list_id race option_id arctic_slope_inupiat title Arctic Slope Inupiat
1086 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','arctic_slope_inupiat','Arctic Slope Inupiat','570', '0',' 1848-1', 0);
1087 #EndIf
1089 #IfRow2D list_options list_id race option_id arctic_slope_inupiat
1090 UPDATE `list_options` SET `notes` = '1848-1' WHERE `option_id` = 'arctic_slope_inupiat' AND `list_id` = 'race';
1091 #EndIf
1093 #IfRow2D list_options list_id race title Arctic Slope Inupiat
1094 UPDATE `list_options` SET `notes` = '1848-1' WHERE `title` = 'Arctic Slope Inupiat' AND `list_id` = 'race';
1095 #EndIf
1097 #IfNotRow2Dx2 list_options list_id race option_id arikara title Arikara
1098 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','arikara','Arikara','580', '0',' 1026-4', 0);
1099 #EndIf
1101 #IfRow2D list_options list_id race option_id arikara
1102 UPDATE `list_options` SET `notes` = '1026-4' WHERE `option_id` = 'arikara' AND `list_id` = 'race';
1103 #EndIf
1105 #IfRow2D list_options list_id race title Arikara
1106 UPDATE `list_options` SET `notes` = '1026-4' WHERE `title` = 'Arikara' AND `list_id` = 'race';
1107 #EndIf
1109 #IfNotRow2Dx2 list_options list_id race option_id arizona_tewa title Arizona Tewa
1110 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','arizona_tewa','Arizona Tewa','590', '0',' 1491-0', 0);
1111 #EndIf
1113 #IfRow2D list_options list_id race option_id arizona_tewa
1114 UPDATE `list_options` SET `notes` = '1491-0' WHERE `option_id` = 'arizona_tewa' AND `list_id` = 'race';
1115 #EndIf
1117 #IfRow2D list_options list_id race title Arizona Tewa
1118 UPDATE `list_options` SET `notes` = '1491-0' WHERE `title` = 'Arizona Tewa' AND `list_id` = 'race';
1119 #EndIf
1121 #IfNotRow2Dx2 list_options list_id race option_id armenian title Armenian
1122 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','armenian','Armenian','600', '0',' 2109-7', 0);
1123 #EndIf
1125 #IfRow2D list_options list_id race option_id armenian
1126 UPDATE `list_options` SET `notes` = '2109-7' WHERE `option_id` = 'armenian' AND `list_id` = 'race';
1127 #EndIf
1129 #IfRow2D list_options list_id race title Armenian
1130 UPDATE `list_options` SET `notes` = '2109-7' WHERE `title` = 'Armenian' AND `list_id` = 'race';
1131 #EndIf
1133 #IfNotRow2Dx2 list_options list_id race option_id aroostook title Aroostook
1134 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','aroostook','Aroostook','610', '0',' 1366-4', 0);
1135 #EndIf
1137 #IfRow2D list_options list_id race option_id aroostook
1138 UPDATE `list_options` SET `notes` = '1366-4' WHERE `option_id` = 'aroostook' AND `list_id` = 'race';
1139 #EndIf
1141 #IfRow2D list_options list_id race title Aroostook
1142 UPDATE `list_options` SET `notes` = '1366-4' WHERE `title` = 'Aroostook' AND `list_id` = 'race';
1143 #EndIf
1145 #IfNotRow2Dx2 list_options list_id race option_id asian_indian title Asian Indian
1146 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','asian_indian','Asian Indian','630', '0',' 2029-7', 0);
1147 #EndIf
1149 #IfRow2D list_options list_id race option_id asian_indian
1150 UPDATE `list_options` SET `notes` = '2029-7' WHERE `option_id` = 'asian_indian' AND `list_id` = 'race';
1151 #EndIf
1153 #IfRow2D list_options list_id race title Asian Indian
1154 UPDATE `list_options` SET `notes` = '2029-7' WHERE `title` = 'Asian Indian' AND `list_id` = 'race';
1155 #EndIf
1157 #IfNotRow2Dx2 list_options list_id race option_id assiniboine title Assiniboine
1158 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','assiniboine','Assiniboine','640', '0',' 1028-0', 0);
1159 #EndIf
1161 #IfRow2D list_options list_id race option_id assiniboine
1162 UPDATE `list_options` SET `notes` = '1028-0' WHERE `option_id` = 'assiniboine' AND `list_id` = 'race';
1163 #EndIf
1165 #IfRow2D list_options list_id race title Assiniboine
1166 UPDATE `list_options` SET `notes` = '1028-0' WHERE `title` = 'Assiniboine' AND `list_id` = 'race';
1167 #EndIf
1169 #IfNotRow2Dx2 list_options list_id race option_id assiniboine_sioux title Assiniboine Sioux
1170 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','assiniboine_sioux','Assiniboine Sioux','650', '0',' 1030-6', 0);
1171 #EndIf
1173 #IfRow2D list_options list_id race option_id assiniboine_sioux
1174 UPDATE `list_options` SET `notes` = '1030-6' WHERE `option_id` = 'assiniboine_sioux' AND `list_id` = 'race';
1175 #EndIf
1177 #IfRow2D list_options list_id race title Assiniboine Sioux
1178 UPDATE `list_options` SET `notes` = '1030-6' WHERE `title` = 'Assiniboine Sioux' AND `list_id` = 'race';
1179 #EndIf
1181 #IfNotRow2Dx2 list_options list_id race option_id assyrian title Assyrian
1182 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','assyrian','Assyrian','660', '0',' 2119-6', 0);
1183 #EndIf
1185 #IfRow2D list_options list_id race option_id assyrian
1186 UPDATE `list_options` SET `notes` = '2119-6' WHERE `option_id` = 'assyrian' AND `list_id` = 'race';
1187 #EndIf
1189 #IfRow2D list_options list_id race title Assyrian
1190 UPDATE `list_options` SET `notes` = '2119-6' WHERE `title` = 'Assyrian' AND `list_id` = 'race';
1191 #EndIf
1193 #IfNotRow2Dx2 list_options list_id race option_id atka title Atka
1194 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','atka','Atka','670', '0',' 2011-5', 0);
1195 #EndIf
1197 #IfRow2D list_options list_id race option_id atka
1198 UPDATE `list_options` SET `notes` = '2011-5' WHERE `option_id` = 'atka' AND `list_id` = 'race';
1199 #EndIf
1201 #IfRow2D list_options list_id race title Atka
1202 UPDATE `list_options` SET `notes` = '2011-5' WHERE `title` = 'Atka' AND `list_id` = 'race';
1203 #EndIf
1205 #IfNotRow2Dx2 list_options list_id race option_id atmautluak title Atmautluak
1206 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','atmautluak','Atmautluak','680', '0',' 1903-4', 0);
1207 #EndIf
1209 #IfRow2D list_options list_id race option_id atmautluak
1210 UPDATE `list_options` SET `notes` = '1903-4' WHERE `option_id` = 'atmautluak' AND `list_id` = 'race';
1211 #EndIf
1213 #IfRow2D list_options list_id race title Atmautluak
1214 UPDATE `list_options` SET `notes` = '1903-4' WHERE `title` = 'Atmautluak' AND `list_id` = 'race';
1215 #EndIf
1217 #IfNotRow2Dx2 list_options list_id race option_id atqasuk title Atqasuk
1218 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','atqasuk','Atqasuk','690', '0',' 1850-7', 0);
1219 #EndIf
1221 #IfRow2D list_options list_id race option_id atqasuk
1222 UPDATE `list_options` SET `notes` = '1850-7' WHERE `option_id` = 'atqasuk' AND `list_id` = 'race';
1223 #EndIf
1225 #IfRow2D list_options list_id race title Atqasuk
1226 UPDATE `list_options` SET `notes` = '1850-7' WHERE `title` = 'Atqasuk' AND `list_id` = 'race';
1227 #EndIf
1229 #IfNotRow2Dx2 list_options list_id race option_id atsina title Atsina
1230 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','atsina','Atsina','700', '0',' 1265-8', 0);
1231 #EndIf
1233 #IfRow2D list_options list_id race option_id atsina
1234 UPDATE `list_options` SET `notes` = '1265-8' WHERE `option_id` = 'atsina' AND `list_id` = 'race';
1235 #EndIf
1237 #IfRow2D list_options list_id race title Atsina
1238 UPDATE `list_options` SET `notes` = '1265-8' WHERE `title` = 'Atsina' AND `list_id` = 'race';
1239 #EndIf
1241 #IfNotRow2Dx2 list_options list_id race option_id attacapa title Attacapa
1242 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','attacapa','Attacapa','710', '0',' 1234-4', 0);
1243 #EndIf
1245 #IfRow2D list_options list_id race option_id attacapa
1246 UPDATE `list_options` SET `notes` = '1234-4' WHERE `option_id` = 'attacapa' AND `list_id` = 'race';
1247 #EndIf
1249 #IfRow2D list_options list_id race title Attacapa
1250 UPDATE `list_options` SET `notes` = '1234-4' WHERE `title` = 'Attacapa' AND `list_id` = 'race';
1251 #EndIf
1253 #IfNotRow2Dx2 list_options list_id race option_id augustine title Augustine
1254 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','augustine','Augustine','720', '0',' 1046-2', 0);
1255 #EndIf
1257 #IfRow2D list_options list_id race option_id augustine
1258 UPDATE `list_options` SET `notes` = '1046-2' WHERE `option_id` = 'augustine' AND `list_id` = 'race';
1259 #EndIf
1261 #IfRow2D list_options list_id race title Augustine
1262 UPDATE `list_options` SET `notes` = '1046-2' WHERE `title` = 'Augustine' AND `list_id` = 'race';
1263 #EndIf
1265 #IfNotRow2Dx2 list_options list_id race option_id bad_river title Bad River
1266 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','bad_river','Bad River','730', '0',' 1124-7', 0);
1267 #EndIf
1269 #IfRow2D list_options list_id race option_id bad_river
1270 UPDATE `list_options` SET `notes` = '1124-7' WHERE `option_id` = 'bad_river' AND `list_id` = 'race';
1271 #EndIf
1273 #IfRow2D list_options list_id race title Bad River
1274 UPDATE `list_options` SET `notes` = '1124-7' WHERE `title` = 'Bad River' AND `list_id` = 'race';
1275 #EndIf
1277 #IfNotRow2Dx2 list_options list_id race option_id bahamian title Bahamian
1278 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','bahamian','Bahamian','740', '0',' 2067-7', 0);
1279 #EndIf
1281 #IfRow2D list_options list_id race option_id bahamian
1282 UPDATE `list_options` SET `notes` = '2067-7' WHERE `option_id` = 'bahamian' AND `list_id` = 'race';
1283 #EndIf
1285 #IfRow2D list_options list_id race title Bahamian
1286 UPDATE `list_options` SET `notes` = '2067-7' WHERE `title` = 'Bahamian' AND `list_id` = 'race';
1287 #EndIf
1289 #IfNotRow2Dx2 list_options list_id race option_id bangladeshi title Bangladeshi
1290 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','bangladeshi','Bangladeshi','750', '0',' 2030-5', 0);
1291 #EndIf
1293 #IfRow2D list_options list_id race option_id bangladeshi
1294 UPDATE `list_options` SET `notes` = '2030-5' WHERE `option_id` = 'bangladeshi' AND `list_id` = 'race';
1295 #EndIf
1297 #IfRow2D list_options list_id race title Bangladeshi
1298 UPDATE `list_options` SET `notes` = '2030-5' WHERE `title` = 'Bangladeshi' AND `list_id` = 'race';
1299 #EndIf
1301 #IfNotRow2Dx2 list_options list_id race option_id bannock title Bannock
1302 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','bannock','Bannock','760', '0',' 1033-0', 0);
1303 #EndIf
1305 #IfRow2D list_options list_id race option_id bannock
1306 UPDATE `list_options` SET `notes` = '1033-0' WHERE `option_id` = 'bannock' AND `list_id` = 'race';
1307 #EndIf
1309 #IfRow2D list_options list_id race title Bannock
1310 UPDATE `list_options` SET `notes` = '1033-0' WHERE `title` = 'Bannock' AND `list_id` = 'race';
1311 #EndIf
1313 #IfNotRow2Dx2 list_options list_id race option_id barbadian title Barbadian
1314 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','barbadian','Barbadian','770', '0',' 2068-5', 0);
1315 #EndIf
1317 #IfRow2D list_options list_id race option_id barbadian
1318 UPDATE `list_options` SET `notes` = '2068-5' WHERE `option_id` = 'barbadian' AND `list_id` = 'race';
1319 #EndIf
1321 #IfRow2D list_options list_id race title Barbadian
1322 UPDATE `list_options` SET `notes` = '2068-5' WHERE `title` = 'Barbadian' AND `list_id` = 'race';
1323 #EndIf
1325 #IfNotRow2Dx2 list_options list_id race option_id barrio_libre title Barrio Libre
1326 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','barrio_libre','Barrio Libre','780', '0',' 1712-9', 0);
1327 #EndIf
1329 #IfRow2D list_options list_id race option_id barrio_libre
1330 UPDATE `list_options` SET `notes` = '1712-9' WHERE `option_id` = 'barrio_libre' AND `list_id` = 'race';
1331 #EndIf
1333 #IfRow2D list_options list_id race title Barrio Libre
1334 UPDATE `list_options` SET `notes` = '1712-9' WHERE `title` = 'Barrio Libre' AND `list_id` = 'race';
1335 #EndIf
1337 #IfNotRow2Dx2 list_options list_id race option_id barrow title Barrow
1338 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','barrow','Barrow','790', '0',' 1851-5', 0);
1339 #EndIf
1341 #IfRow2D list_options list_id race option_id barrow
1342 UPDATE `list_options` SET `notes` = '1851-5' WHERE `option_id` = 'barrow' AND `list_id` = 'race';
1343 #EndIf
1345 #IfRow2D list_options list_id race title Barrow
1346 UPDATE `list_options` SET `notes` = '1851-5' WHERE `title` = 'Barrow' AND `list_id` = 'race';
1347 #EndIf
1349 #IfNotRow2Dx2 list_options list_id race option_id battle_mountain title Battle Mountain
1350 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','battle_mountain','Battle Mountain','800', '0',' 1587-5', 0);
1351 #EndIf
1353 #IfRow2D list_options list_id race option_id battle_mountain
1354 UPDATE `list_options` SET `notes` = '1587-5' WHERE `option_id` = 'battle_mountain' AND `list_id` = 'race';
1355 #EndIf
1357 #IfRow2D list_options list_id race title Battle Mountain
1358 UPDATE `list_options` SET `notes` = '1587-5' WHERE `title` = 'Battle Mountain' AND `list_id` = 'race';
1359 #EndIf
1361 #IfNotRow2Dx2 list_options list_id race option_id bay_mills_chippewa title Bay Mills Chippewa
1362 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','bay_mills_chippewa','Bay Mills Chippewa','810', '0',' 1125-4', 0);
1363 #EndIf
1365 #IfRow2D list_options list_id race option_id bay_mills_chippewa
1366 UPDATE `list_options` SET `notes` = '1125-4' WHERE `option_id` = 'bay_mills_chippewa' AND `list_id` = 'race';
1367 #EndIf
1369 #IfRow2D list_options list_id race title Bay Mills Chippewa
1370 UPDATE `list_options` SET `notes` = '1125-4' WHERE `title` = 'Bay Mills Chippewa' AND `list_id` = 'race';
1371 #EndIf
1373 #IfNotRow2Dx2 list_options list_id race option_id beaver title Beaver
1374 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','beaver','Beaver','820', '0',' 1747-5', 0);
1375 #EndIf
1377 #IfRow2D list_options list_id race option_id beaver
1378 UPDATE `list_options` SET `notes` = '1747-5' WHERE `option_id` = 'beaver' AND `list_id` = 'race';
1379 #EndIf
1381 #IfRow2D list_options list_id race title Beaver
1382 UPDATE `list_options` SET `notes` = '1747-5' WHERE `title` = 'Beaver' AND `list_id` = 'race';
1383 #EndIf
1385 #IfNotRow2Dx2 list_options list_id race option_id belkofski title Belkofski
1386 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','belkofski','Belkofski','830', '0',' 2012-3', 0);
1387 #EndIf
1389 #IfRow2D list_options list_id race option_id belkofski
1390 UPDATE `list_options` SET `notes` = '2012-3' WHERE `option_id` = 'belkofski' AND `list_id` = 'race';
1391 #EndIf
1393 #IfRow2D list_options list_id race title Belkofski
1394 UPDATE `list_options` SET `notes` = '2012-3' WHERE `title` = 'Belkofski' AND `list_id` = 'race';
1395 #EndIf
1397 #IfNotRow2Dx2 list_options list_id race option_id bering_straits_inupiat title Bering Straits Inupiat
1398 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','bering_straits_inupiat','Bering Straits Inupiat','840', '0',' 1852-3', 0);
1399 #EndIf
1401 #IfRow2D list_options list_id race option_id bering_straits_inupiat
1402 UPDATE `list_options` SET `notes` = '1852-3' WHERE `option_id` = 'bering_straits_inupiat' AND `list_id` = 'race';
1403 #EndIf
1405 #IfRow2D list_options list_id race title Bering Straits Inupiat
1406 UPDATE `list_options` SET `notes` = '1852-3' WHERE `title` = 'Bering Straits Inupiat' AND `list_id` = 'race';
1407 #EndIf
1409 #IfNotRow2Dx2 list_options list_id race option_id bethel title Bethel
1410 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','bethel','Bethel','850', '0',' 1904-2', 0);
1411 #EndIf
1413 #IfRow2D list_options list_id race option_id bethel
1414 UPDATE `list_options` SET `notes` = '1904-2' WHERE `option_id` = 'bethel' AND `list_id` = 'race';
1415 #EndIf
1417 #IfRow2D list_options list_id race title Bethel
1418 UPDATE `list_options` SET `notes` = '1904-2' WHERE `title` = 'Bethel' AND `list_id` = 'race';
1419 #EndIf
1421 #IfNotRow2Dx2 list_options list_id race option_id bhutanese title Bhutanese
1422 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','bhutanese','Bhutanese','860', '0',' 2031-3', 0);
1423 #EndIf
1425 #IfRow2D list_options list_id race option_id bhutanese
1426 UPDATE `list_options` SET `notes` = '2031-3' WHERE `option_id` = 'bhutanese' AND `list_id` = 'race';
1427 #EndIf
1429 #IfRow2D list_options list_id race title Bhutanese
1430 UPDATE `list_options` SET `notes` = '2031-3' WHERE `title` = 'Bhutanese' AND `list_id` = 'race';
1431 #EndIf
1433 #IfNotRow2Dx2 list_options list_id race option_id big_cypress title Big Cypress
1434 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','big_cypress','Big Cypress','870', '0',' 1567-7', 0);
1435 #EndIf
1437 #IfRow2D list_options list_id race option_id big_cypress
1438 UPDATE `list_options` SET `notes` = '1567-7' WHERE `option_id` = 'big_cypress' AND `list_id` = 'race';
1439 #EndIf
1441 #IfRow2D list_options list_id race title Big Cypress
1442 UPDATE `list_options` SET `notes` = '1567-7' WHERE `title` = 'Big Cypress' AND `list_id` = 'race';
1443 #EndIf
1445 #IfNotRow2D list_options list_id race option_id bill_moores_slough
1446 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','bill_moores_slough',"Bill Moore's Slough",'880', '0',' 1905-9', 0);
1447 #EndIf
1449 #IfRow2D list_options list_id race option_id bill_moores_slough
1450 UPDATE `list_options` SET `notes` = '1905-9' WHERE `option_id` = 'bill_moores_slough' AND `list_id` = 'race';
1451 #EndIf
1453 #IfNotRow2Dx2 list_options list_id race option_id biloxi title Biloxi
1454 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','biloxi','Biloxi','890', '0',' 1235-1', 0);
1455 #EndIf
1457 #IfRow2D list_options list_id race option_id biloxi
1458 UPDATE `list_options` SET `notes` = '1235-1' WHERE `option_id` = 'biloxi' AND `list_id` = 'race';
1459 #EndIf
1461 #IfRow2D list_options list_id race title Biloxi
1462 UPDATE `list_options` SET `notes` = '1235-1' WHERE `title` = 'Biloxi' AND `list_id` = 'race';
1463 #EndIf
1465 #IfNotRow2Dx2 list_options list_id race option_id birch_creek title Birch Creek
1466 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','birch_creek','Birch Creek','900', '0',' 1748-3', 0);
1467 #EndIf
1469 #IfRow2D list_options list_id race option_id birch_creek
1470 UPDATE `list_options` SET `notes` = '1748-3' WHERE `option_id` = 'birch_creek' AND `list_id` = 'race';
1471 #EndIf
1473 #IfRow2D list_options list_id race title Birch Creek
1474 UPDATE `list_options` SET `notes` = '1748-3' WHERE `title` = 'Birch Creek' AND `list_id` = 'race';
1475 #EndIf
1477 #IfNotRow2Dx2 list_options list_id race option_id bishop title Bishop
1478 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','bishop','Bishop','910', '0',' 1417-5', 0);
1479 #EndIf
1481 #IfRow2D list_options list_id race option_id bishop
1482 UPDATE `list_options` SET `notes` = '1417-5' WHERE `option_id` = 'bishop' AND `list_id` = 'race';
1483 #EndIf
1485 #IfRow2D list_options list_id race title Bishop
1486 UPDATE `list_options` SET `notes` = '1417-5' WHERE `title` = 'Bishop' AND `list_id` = 'race';
1487 #EndIf
1489 #IfNotRow2Dx2 list_options list_id race option_id black title Black
1490 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','black','Black','920', '0',' 2056-0', 0);
1491 #EndIf
1493 #IfRow2D list_options list_id race option_id black
1494 UPDATE `list_options` SET `notes` = '2056-0' WHERE `option_id` = 'black' AND `list_id` = 'race';
1495 #EndIf
1497 #IfRow2D list_options list_id race title Black
1498 UPDATE `list_options` SET `notes` = '2056-0' WHERE `title` = 'Black' AND `list_id` = 'race';
1499 #EndIf
1501 #IfNotRow2Dx2 list_options list_id race option_id blackfeet title Blackfeet
1502 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','blackfeet','Blackfeet','940', '0',' 1035-5', 0);
1503 #EndIf
1505 #IfRow2D list_options list_id race option_id blackfeet
1506 UPDATE `list_options` SET `notes` = '1035-5' WHERE `option_id` = 'blackfeet' AND `list_id` = 'race';
1507 #EndIf
1509 #IfRow2D list_options list_id race title Blackfeet
1510 UPDATE `list_options` SET `notes` = '1035-5' WHERE `title` = 'Blackfeet' AND `list_id` = 'race';
1511 #EndIf
1513 #IfNotRow2Dx2 list_options list_id race option_id blackfoot_sioux title Blackfoot Sioux
1514 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','blackfoot_sioux','Blackfoot Sioux','950', '0',' 1610-5', 0);
1515 #EndIf
1517 #IfRow2D list_options list_id race option_id blackfoot_sioux
1518 UPDATE `list_options` SET `notes` = '1610-5' WHERE `option_id` = 'blackfoot_sioux' AND `list_id` = 'race';
1519 #EndIf
1521 #IfRow2D list_options list_id race title Blackfoot Sioux
1522 UPDATE `list_options` SET `notes` = '1610-5' WHERE `title` = 'Blackfoot Sioux' AND `list_id` = 'race';
1523 #EndIf
1525 #IfNotRow2Dx2 list_options list_id race option_id bois_forte title Bois Forte
1526 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','bois_forte','Bois Forte','960', '0',' 1126-2', 0);
1527 #EndIf
1529 #IfRow2D list_options list_id race option_id bois_forte
1530 UPDATE `list_options` SET `notes` = '1126-2' WHERE `option_id` = 'bois_forte' AND `list_id` = 'race';
1531 #EndIf
1533 #IfRow2D list_options list_id race title Bois Forte
1534 UPDATE `list_options` SET `notes` = '1126-2' WHERE `title` = 'Bois Forte' AND `list_id` = 'race';
1535 #EndIf
1537 #IfNotRow2Dx2 list_options list_id race option_id botswanan title Botswanan
1538 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','botswanan','Botswanan','970', '0',' 2061-0', 0);
1539 #EndIf
1541 #IfRow2D list_options list_id race option_id botswanan
1542 UPDATE `list_options` SET `notes` = '2061-0' WHERE `option_id` = 'botswanan' AND `list_id` = 'race';
1543 #EndIf
1545 #IfRow2D list_options list_id race title Botswanan
1546 UPDATE `list_options` SET `notes` = '2061-0' WHERE `title` = 'Botswanan' AND `list_id` = 'race';
1547 #EndIf
1549 #IfNotRow2Dx2 list_options list_id race option_id brevig_mission title Brevig Mission
1550 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','brevig_mission','Brevig Mission','980', '0',' 1853-1', 0);
1551 #EndIf
1553 #IfRow2D list_options list_id race option_id brevig_mission
1554 UPDATE `list_options` SET `notes` = '1853-1' WHERE `option_id` = 'brevig_mission' AND `list_id` = 'race';
1555 #EndIf
1557 #IfRow2D list_options list_id race title Brevig Mission
1558 UPDATE `list_options` SET `notes` = '1853-1' WHERE `title` = 'Brevig Mission' AND `list_id` = 'race';
1559 #EndIf
1561 #IfNotRow2Dx2 list_options list_id race option_id bridgeport title Bridgeport
1562 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','bridgeport','Bridgeport','990', '0',' 1418-3', 0);
1563 #EndIf
1565 #IfRow2D list_options list_id race option_id bridgeport
1566 UPDATE `list_options` SET `notes` = '1418-3' WHERE `option_id` = 'bridgeport' AND `list_id` = 'race';
1567 #EndIf
1569 #IfRow2D list_options list_id race title Bridgeport
1570 UPDATE `list_options` SET `notes` = '1418-3' WHERE `title` = 'Bridgeport' AND `list_id` = 'race';
1571 #EndIf
1573 #IfNotRow2Dx2 list_options list_id race option_id brighton title Brighton
1574 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','brighton','Brighton','1000', '0',' 1568-5', 0);
1575 #EndIf
1577 #IfRow2D list_options list_id race option_id brighton
1578 UPDATE `list_options` SET `notes` = '1568-5' WHERE `option_id` = 'brighton' AND `list_id` = 'race';
1579 #EndIf
1581 #IfRow2D list_options list_id race title Brighton
1582 UPDATE `list_options` SET `notes` = '1568-5' WHERE `title` = 'Brighton' AND `list_id` = 'race';
1583 #EndIf
1585 #IfNotRow2Dx2 list_options list_id race option_id bristol_bay_aleut title Bristol Bay Aleut
1586 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','bristol_bay_aleut','Bristol Bay Aleut','1010', '0',' 1972-9', 0);
1587 #EndIf
1589 #IfRow2D list_options list_id race option_id bristol_bay_aleut
1590 UPDATE `list_options` SET `notes` = '1972-9' WHERE `option_id` = 'bristol_bay_aleut' AND `list_id` = 'race';
1591 #EndIf
1593 #IfRow2D list_options list_id race title Bristol Bay Aleut
1594 UPDATE `list_options` SET `notes` = '1972-9' WHERE `title` = 'Bristol Bay Aleut' AND `list_id` = 'race';
1595 #EndIf
1597 #IfNotRow2Dx2 list_options list_id race option_id bristol_bay_yupik title Bristol Bay Yupik
1598 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','bristol_bay_yupik','Bristol Bay Yupik','1020', '0',' 1906-7', 0);
1599 #EndIf
1601 #IfRow2D list_options list_id race option_id bristol_bay_yupik
1602 UPDATE `list_options` SET `notes` = '1906-7' WHERE `option_id` = 'bristol_bay_yupik' AND `list_id` = 'race';
1603 #EndIf
1605 #IfRow2D list_options list_id race title Bristol Bay Yupik
1606 UPDATE `list_options` SET `notes` = '1906-7' WHERE `title` = 'Bristol Bay Yupik' AND `list_id` = 'race';
1607 #EndIf
1609 #IfNotRow2Dx2 list_options list_id race option_id brotherton title Brotherton
1610 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','brotherton','Brotherton','1030', '0',' 1037-1', 0);
1611 #EndIf
1613 #IfRow2D list_options list_id race option_id brotherton
1614 UPDATE `list_options` SET `notes` = '1037-1' WHERE `option_id` = 'brotherton' AND `list_id` = 'race';
1615 #EndIf
1617 #IfRow2D list_options list_id race title Brotherton
1618 UPDATE `list_options` SET `notes` = '1037-1' WHERE `title` = 'Brotherton' AND `list_id` = 'race';
1619 #EndIf
1621 #IfNotRow2Dx2 list_options list_id race option_id brule_sioux title Brule Sioux
1622 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','brule_sioux','Brule Sioux','1040', '0',' 1611-3', 0);
1623 #EndIf
1625 #IfRow2D list_options list_id race option_id brule_sioux
1626 UPDATE `list_options` SET `notes` = '1611-3' WHERE `option_id` = 'brule_sioux' AND `list_id` = 'race';
1627 #EndIf
1629 #IfRow2D list_options list_id race title Brule Sioux
1630 UPDATE `list_options` SET `notes` = '1611-3' WHERE `title` = 'Brule Sioux' AND `list_id` = 'race';
1631 #EndIf
1633 #IfNotRow2Dx2 list_options list_id race option_id buckland title Buckland
1634 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','buckland','Buckland','1050', '0',' 1854-9', 0);
1635 #EndIf
1637 #IfRow2D list_options list_id race option_id buckland
1638 UPDATE `list_options` SET `notes` = '1854-9' WHERE `option_id` = 'buckland' AND `list_id` = 'race';
1639 #EndIf
1641 #IfRow2D list_options list_id race title Buckland
1642 UPDATE `list_options` SET `notes` = '1854-9' WHERE `title` = 'Buckland' AND `list_id` = 'race';
1643 #EndIf
1645 #IfNotRow2Dx2 list_options list_id race option_id burmese title Burmese
1646 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','burmese','Burmese','1060', '0',' 2032-1', 0);
1647 #EndIf
1649 #IfRow2D list_options list_id race option_id burmese
1650 UPDATE `list_options` SET `notes` = '2032-1' WHERE `option_id` = 'burmese' AND `list_id` = 'race';
1651 #EndIf
1653 #IfRow2D list_options list_id race title Burmese
1654 UPDATE `list_options` SET `notes` = '2032-1' WHERE `title` = 'Burmese' AND `list_id` = 'race';
1655 #EndIf
1657 #IfNotRow2Dx2 list_options list_id race option_id burns_paiute title Burns Paiute
1658 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','burns_paiute','Burns Paiute','1070', '0',' 1419-1', 0);
1659 #EndIf
1661 #IfRow2D list_options list_id race option_id burns_paiute
1662 UPDATE `list_options` SET `notes` = '1419-1' WHERE `option_id` = 'burns_paiute' AND `list_id` = 'race';
1663 #EndIf
1665 #IfRow2D list_options list_id race title Burns Paiute
1666 UPDATE `list_options` SET `notes` = '1419-1' WHERE `title` = 'Burns Paiute' AND `list_id` = 'race';
1667 #EndIf
1669 #IfNotRow2Dx2 list_options list_id race option_id burt_lake_band title Burt Lake Band
1670 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','burt_lake_band','Burt Lake Band','1080', '0',' 1039-7', 0);
1671 #EndIf
1673 #IfRow2D list_options list_id race option_id burt_lake_band
1674 UPDATE `list_options` SET `notes` = '1039-7' WHERE `option_id` = 'burt_lake_band' AND `list_id` = 'race';
1675 #EndIf
1677 #IfRow2D list_options list_id race title Burt Lake Band
1678 UPDATE `list_options` SET `notes` = '1039-7' WHERE `title` = 'Burt Lake Band' AND `list_id` = 'race';
1679 #EndIf
1681 #IfNotRow2Dx2 list_options list_id race option_id burt_lake_chippewa title Burt Lake Chippewa
1682 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','burt_lake_chippewa','Burt Lake Chippewa','1090', '0',' 1127-0', 0);
1683 #EndIf
1685 #IfRow2D list_options list_id race option_id burt_lake_chippewa
1686 UPDATE `list_options` SET `notes` = '1127-0' WHERE `option_id` = 'burt_lake_chippewa' AND `list_id` = 'race';
1687 #EndIf
1689 #IfRow2D list_options list_id race title Burt Lake Chippewa
1690 UPDATE `list_options` SET `notes` = '1127-0' WHERE `title` = 'Burt Lake Chippewa' AND `list_id` = 'race';
1691 #EndIf
1693 #IfNotRow2Dx2 list_options list_id race option_id burt_lake_ottawa title Burt Lake Ottawa
1694 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','burt_lake_ottawa','Burt Lake Ottawa','1100', '0',' 1412-6', 0);
1695 #EndIf
1697 #IfRow2D list_options list_id race option_id burt_lake_ottawa
1698 UPDATE `list_options` SET `notes` = '1412-6' WHERE `option_id` = 'burt_lake_ottawa' AND `list_id` = 'race';
1699 #EndIf
1701 #IfRow2D list_options list_id race title Burt Lake Ottawa
1702 UPDATE `list_options` SET `notes` = '1412-6' WHERE `title` = 'Burt Lake Ottawa' AND `list_id` = 'race';
1703 #EndIf
1705 #IfNotRow2Dx2 list_options list_id race option_id cabazon title Cabazon
1706 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','cabazon','Cabazon','1110', '0',' 1047-0', 0);
1707 #EndIf
1709 #IfRow2D list_options list_id race option_id cabazon
1710 UPDATE `list_options` SET `notes` = '1047-0' WHERE `option_id` = 'cabazon' AND `list_id` = 'race';
1711 #EndIf
1713 #IfRow2D list_options list_id race title Cabazon
1714 UPDATE `list_options` SET `notes` = '1047-0' WHERE `title` = 'Cabazon' AND `list_id` = 'race';
1715 #EndIf
1717 #IfNotRow2Dx2 list_options list_id race option_id caddo title Caddo
1718 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','caddo','Caddo','1120', '0',' 1041-3', 0);
1719 #EndIf
1721 #IfRow2D list_options list_id race option_id caddo
1722 UPDATE `list_options` SET `notes` = '1041-3' WHERE `option_id` = 'caddo' AND `list_id` = 'race';
1723 #EndIf
1725 #IfRow2D list_options list_id race title Caddo
1726 UPDATE `list_options` SET `notes` = '1041-3' WHERE `title` = 'Caddo' AND `list_id` = 'race';
1727 #EndIf
1729 #IfNotRow2Dx2 list_options list_id race option_id cahto title Cahto
1730 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','cahto','Cahto','1130', '0',' 1054-6', 0);
1731 #EndIf
1733 #IfRow2D list_options list_id race option_id cahto
1734 UPDATE `list_options` SET `notes` = '1054-6' WHERE `option_id` = 'cahto' AND `list_id` = 'race';
1735 #EndIf
1737 #IfRow2D list_options list_id race title Cahto
1738 UPDATE `list_options` SET `notes` = '1054-6' WHERE `title` = 'Cahto' AND `list_id` = 'race';
1739 #EndIf
1741 #IfNotRow2Dx2 list_options list_id race option_id cahuilla title Cahuilla
1742 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','cahuilla','Cahuilla','1140', '0',' 1044-7', 0);
1743 #EndIf
1745 #IfRow2D list_options list_id race option_id cahuilla
1746 UPDATE `list_options` SET `notes` = '1044-7' WHERE `option_id` = 'cahuilla' AND `list_id` = 'race';
1747 #EndIf
1749 #IfRow2D list_options list_id race title Cahuilla
1750 UPDATE `list_options` SET `notes` = '1044-7' WHERE `title` = 'Cahuilla' AND `list_id` = 'race';
1751 #EndIf
1753 #IfNotRow2Dx2 list_options list_id race option_id california_tribes title California Tribes
1754 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','california_tribes','California Tribes','1150', '0',' 1053-8', 0);
1755 #EndIf
1757 #IfRow2D list_options list_id race option_id california_tribes
1758 UPDATE `list_options` SET `notes` = '1053-8' WHERE `option_id` = 'california_tribes' AND `list_id` = 'race';
1759 #EndIf
1761 #IfRow2D list_options list_id race title California Tribes
1762 UPDATE `list_options` SET `notes` = '1053-8' WHERE `title` = 'California Tribes' AND `list_id` = 'race';
1763 #EndIf
1765 #IfNotRow2Dx2 list_options list_id race option_id calista_yupik title Calista Yupik
1766 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','calista_yupik','Calista Yupik','1160', '0',' 1907-5', 0);
1767 #EndIf
1769 #IfRow2D list_options list_id race option_id calista_yupik
1770 UPDATE `list_options` SET `notes` = '1907-5' WHERE `option_id` = 'calista_yupik' AND `list_id` = 'race';
1771 #EndIf
1773 #IfRow2D list_options list_id race title Calista Yupik
1774 UPDATE `list_options` SET `notes` = '1907-5' WHERE `title` = 'Calista Yupik' AND `list_id` = 'race';
1775 #EndIf
1777 #IfNotRow2Dx2 list_options list_id race option_id cambodian title Cambodian
1778 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','cambodian','Cambodian','1170', '0',' 2033-9', 0);
1779 #EndIf
1781 #IfRow2D list_options list_id race option_id cambodian
1782 UPDATE `list_options` SET `notes` = '2033-9' WHERE `option_id` = 'cambodian' AND `list_id` = 'race';
1783 #EndIf
1785 #IfRow2D list_options list_id race title Cambodian
1786 UPDATE `list_options` SET `notes` = '2033-9' WHERE `title` = 'Cambodian' AND `list_id` = 'race';
1787 #EndIf
1789 #IfNotRow2Dx2 list_options list_id race option_id campo title Campo
1790 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','campo','Campo','1180', '0',' 1223-7', 0);
1791 #EndIf
1793 #IfRow2D list_options list_id race option_id campo
1794 UPDATE `list_options` SET `notes` = '1223-7' WHERE `option_id` = 'campo' AND `list_id` = 'race';
1795 #EndIf
1797 #IfRow2D list_options list_id race title Campo
1798 UPDATE `list_options` SET `notes` = '1223-7' WHERE `title` = 'Campo' AND `list_id` = 'race';
1799 #EndIf
1801 #IfNotRow2Dx2 list_options list_id race option_id canadian_latinamerican_indian title Canadian and Latin American Indian
1802 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','canadian_latinamerican_indian','Canadian and Latin American Indian','1190', '0',' 1068-6', 0);
1803 #EndIf
1805 #IfRow2D list_options list_id race option_id canadian_latinamerican_indian
1806 UPDATE `list_options` SET `notes` = '1068-6' WHERE `option_id` = 'canadian_latinamerican_indian' AND `list_id` = 'race';
1807 #EndIf
1809 #IfRow2D list_options list_id race title Canadian and Latin American Indian
1810 UPDATE `list_options` SET `notes` = '1068-6' WHERE `title` = 'Canadian and Latin American Indian' AND `list_id` = 'race';
1811 #EndIf
1813 #IfNotRow2Dx2 list_options list_id race option_id canadian_indian title Canadian Indian
1814 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','canadian_indian','Canadian Indian','1200', '0',' 1069-4', 0);
1815 #EndIf
1817 #IfRow2D list_options list_id race option_id canadian_indian
1818 UPDATE `list_options` SET `notes` = '1069-4' WHERE `option_id` = 'canadian_indian' AND `list_id` = 'race';
1819 #EndIf
1821 #IfRow2D list_options list_id race title Canadian Indian
1822 UPDATE `list_options` SET `notes` = '1069-4' WHERE `title` = 'Canadian Indian' AND `list_id` = 'race';
1823 #EndIf
1825 #IfNotRow2Dx2 list_options list_id race option_id canoncito_navajo title Canoncito Navajo
1826 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','canoncito_navajo','Canoncito Navajo','1210', '0',' 1384-7', 0);
1827 #EndIf
1829 #IfRow2D list_options list_id race option_id canoncito_navajo
1830 UPDATE `list_options` SET `notes` = '1384-7' WHERE `option_id` = 'canoncito_navajo' AND `list_id` = 'race';
1831 #EndIf
1833 #IfRow2D list_options list_id race title Canoncito Navajo
1834 UPDATE `list_options` SET `notes` = '1384-7' WHERE `title` = 'Canoncito Navajo' AND `list_id` = 'race';
1835 #EndIf
1837 #IfNotRow2Dx2 list_options list_id race option_id cantwell title Cantwell
1838 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','cantwell','Cantwell','1220', '0',' 1749-1', 0);
1839 #EndIf
1841 #IfRow2D list_options list_id race option_id cantwell
1842 UPDATE `list_options` SET `notes` = '1749-1' WHERE `option_id` = 'cantwell' AND `list_id` = 'race';
1843 #EndIf
1845 #IfRow2D list_options list_id race title Cantwell
1846 UPDATE `list_options` SET `notes` = '1749-1' WHERE `title` = 'Cantwell' AND `list_id` = 'race';
1847 #EndIf
1849 #IfNotRow2Dx2 list_options list_id race option_id capitan_grande title Capitan Grande
1850 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','capitan_grande','Capitan Grande','1230', '0',' 1224-5', 0);
1851 #EndIf
1853 #IfRow2D list_options list_id race option_id capitan_grande
1854 UPDATE `list_options` SET `notes` = '1224-5' WHERE `option_id` = 'capitan_grande' AND `list_id` = 'race';
1855 #EndIf
1857 #IfRow2D list_options list_id race title Capitan Grande
1858 UPDATE `list_options` SET `notes` = '1224-5' WHERE `title` = 'Capitan Grande' AND `list_id` = 'race';
1859 #EndIf
1861 #IfNotRow2Dx2 list_options list_id race option_id carolinian title Carolinian
1862 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','carolinian','Carolinian','1240', '0',' 2092-5', 0);
1863 #EndIf
1865 #IfRow2D list_options list_id race option_id carolinian
1866 UPDATE `list_options` SET `notes` = '2092-5' WHERE `option_id` = 'carolinian' AND `list_id` = 'race';
1867 #EndIf
1869 #IfRow2D list_options list_id race title Carolinian
1870 UPDATE `list_options` SET `notes` = '2092-5' WHERE `title` = 'Carolinian' AND `list_id` = 'race';
1871 #EndIf
1873 #IfNotRow2Dx2 list_options list_id race option_id carson title Carson
1874 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','carson','Carson','1250', '0',' 1689-9', 0);
1875 #EndIf
1877 #IfRow2D list_options list_id race option_id carson
1878 UPDATE `list_options` SET `notes` = '1689-9' WHERE `option_id` = 'carson' AND `list_id` = 'race';
1879 #EndIf
1881 #IfRow2D list_options list_id race title Carson
1882 UPDATE `list_options` SET `notes` = '1689-9' WHERE `title` = 'Carson' AND `list_id` = 'race';
1883 #EndIf
1885 #IfNotRow2Dx2 list_options list_id race option_id catawba title Catawba
1886 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','catawba','Catawba','1260', '0',' 1076-9', 0);
1887 #EndIf
1889 #IfRow2D list_options list_id race option_id catawba
1890 UPDATE `list_options` SET `notes` = '1076-9' WHERE `option_id` = 'catawba' AND `list_id` = 'race';
1891 #EndIf
1893 #IfRow2D list_options list_id race title Catawba
1894 UPDATE `list_options` SET `notes` = '1076-9' WHERE `title` = 'Catawba' AND `list_id` = 'race';
1895 #EndIf
1897 #IfNotRow2Dx2 list_options list_id race option_id cayuga title Cayuga
1898 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','cayuga','Cayuga','1270', '0',' 1286-4', 0);
1899 #EndIf
1901 #IfRow2D list_options list_id race option_id cayuga
1902 UPDATE `list_options` SET `notes` = '1286-4' WHERE `option_id` = 'cayuga' AND `list_id` = 'race';
1903 #EndIf
1905 #IfRow2D list_options list_id race title Cayuga
1906 UPDATE `list_options` SET `notes` = '1286-4' WHERE `title` = 'Cayuga' AND `list_id` = 'race';
1907 #EndIf
1909 #IfNotRow2Dx2 list_options list_id race option_id cayuse title Cayuse
1910 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','cayuse','Cayuse','1280', '0',' 1078-5', 0);
1911 #EndIf
1913 #IfRow2D list_options list_id race option_id cayuse
1914 UPDATE `list_options` SET `notes` = '1078-5' WHERE `option_id` = 'cayuse' AND `list_id` = 'race';
1915 #EndIf
1917 #IfRow2D list_options list_id race title Cayuse
1918 UPDATE `list_options` SET `notes` = '1078-5' WHERE `title` = 'Cayuse' AND `list_id` = 'race';
1919 #EndIf
1921 #IfNotRow2Dx2 list_options list_id race option_id cedarville title Cedarville
1922 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','cedarville','Cedarville','1290', '0',' 1420-9', 0);
1923 #EndIf
1925 #IfRow2D list_options list_id race option_id cedarville
1926 UPDATE `list_options` SET `notes` = '1420-9' WHERE `option_id` = 'cedarville' AND `list_id` = 'race';
1927 #EndIf
1929 #IfRow2D list_options list_id race title Cedarville
1930 UPDATE `list_options` SET `notes` = '1420-9' WHERE `title` = 'Cedarville' AND `list_id` = 'race';
1931 #EndIf
1933 #IfNotRow2Dx2 list_options list_id race option_id celilo title Celilo
1934 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','celilo','Celilo','1300', '0',' 1393-8', 0);
1935 #EndIf
1937 #IfRow2D list_options list_id race option_id celilo
1938 UPDATE `list_options` SET `notes` = '1393-8' WHERE `option_id` = 'celilo' AND `list_id` = 'race';
1939 #EndIf
1941 #IfRow2D list_options list_id race title Celilo
1942 UPDATE `list_options` SET `notes` = '1393-8' WHERE `title` = 'Celilo' AND `list_id` = 'race';
1943 #EndIf
1945 #IfNotRow2Dx2 list_options list_id race option_id central_american_indian title Central American Indian
1946 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','central_american_indian','Central American Indian','1310', '0',' 1070-2', 0);
1947 #EndIf
1949 #IfRow2D list_options list_id race option_id central_american_indian
1950 UPDATE `list_options` SET `notes` = '1070-2' WHERE `option_id` = 'central_american_indian' AND `list_id` = 'race';
1951 #EndIf
1953 #IfRow2D list_options list_id race title Central American Indian
1954 UPDATE `list_options` SET `notes` = '1070-2' WHERE `title` = 'Central American Indian' AND `list_id` = 'race';
1955 #EndIf
1957 #IfNotRow2Dx2 list_options list_id race option_id tlingit_and_haida_tribes title Central Council of Tlingit and Haida Tribes
1958 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','tlingit_and_haida_tribes','Central Council of Tlingit and Haida Tribes','1320', '0',' 1815-0', 0);
1959 #EndIf
1961 #IfRow2D list_options list_id race option_id tlingit_and_haida_tribes
1962 UPDATE `list_options` SET `notes` = '1815-0' WHERE `option_id` = 'tlingit_and_haida_tribes' AND `list_id` = 'race';
1963 #EndIf
1965 #IfRow2D list_options list_id race title Central Council of Tlingit and Haida Tribes
1966 UPDATE `list_options` SET `notes` = '1815-0' WHERE `title` = 'Central Council of Tlingit and Haida Tribes' AND `list_id` = 'race';
1967 #EndIf
1969 #IfNotRow2Dx2 list_options list_id race option_id central_pomo title Central Pomo
1970 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','central_pomo','Central Pomo','1330', '0',' 1465-4', 0);
1971 #EndIf
1973 #IfRow2D list_options list_id race option_id central_pomo
1974 UPDATE `list_options` SET `notes` = '1465-4' WHERE `option_id` = 'central_pomo' AND `list_id` = 'race';
1975 #EndIf
1977 #IfRow2D list_options list_id race title Central Pomo
1978 UPDATE `list_options` SET `notes` = '1465-4' WHERE `title` = 'Central Pomo' AND `list_id` = 'race';
1979 #EndIf
1981 #IfNotRow2Dx2 list_options list_id race option_id chalkyitsik title Chalkyitsik
1982 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','chalkyitsik','Chalkyitsik','1340', '0',' 1750-9', 0);
1983 #EndIf
1985 #IfRow2D list_options list_id race option_id chalkyitsik
1986 UPDATE `list_options` SET `notes` = '1750-9' WHERE `option_id` = 'chalkyitsik' AND `list_id` = 'race';
1987 #EndIf
1989 #IfRow2D list_options list_id race title Chalkyitsik
1990 UPDATE `list_options` SET `notes` = '1750-9' WHERE `title` = 'Chalkyitsik' AND `list_id` = 'race';
1991 #EndIf
1993 #IfNotRow2Dx2 list_options list_id race option_id chamorro title Chamorro
1994 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','chamorro','Chamorro','1350', '0',' 2088-3', 0);
1995 #EndIf
1997 #IfRow2D list_options list_id race option_id chamorro
1998 UPDATE `list_options` SET `notes` = '2088-3' WHERE `option_id` = 'chamorro' AND `list_id` = 'race';
1999 #EndIf
2001 #IfRow2D list_options list_id race title Chamorro
2002 UPDATE `list_options` SET `notes` = '2088-3' WHERE `title` = 'Chamorro' AND `list_id` = 'race';
2003 #EndIf
2005 #IfNotRow2Dx2 list_options list_id race option_id chefornak title Chefornak
2006 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','chefornak','Chefornak','1360', '0',' 1908-3', 0);
2007 #EndIf
2009 #IfRow2D list_options list_id race option_id chefornak
2010 UPDATE `list_options` SET `notes` = '1908-3' WHERE `option_id` = 'chefornak' AND `list_id` = 'race';
2011 #EndIf
2013 #IfRow2D list_options list_id race title Chefornak
2014 UPDATE `list_options` SET `notes` = '1908-3' WHERE `title` = 'Chefornak' AND `list_id` = 'race';
2015 #EndIf
2017 #IfNotRow2Dx2 list_options list_id race option_id chehalis title Chehalis
2018 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','chehalis','Chehalis','1370', '0',' 1080-1', 0);
2019 #EndIf
2021 #IfRow2D list_options list_id race option_id chehalis
2022 UPDATE `list_options` SET `notes` = '1080-1' WHERE `option_id` = 'chehalis' AND `list_id` = 'race';
2023 #EndIf
2025 #IfRow2D list_options list_id race title Chehalis
2026 UPDATE `list_options` SET `notes` = '1080-1' WHERE `title` = 'Chehalis' AND `list_id` = 'race';
2027 #EndIf
2029 #IfNotRow2Dx2 list_options list_id race option_id chemakuan title Chemakuan
2030 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','chemakuan','Chemakuan','1380', '0',' 1082-7', 0);
2031 #EndIf
2033 #IfRow2D list_options list_id race option_id chemakuan
2034 UPDATE `list_options` SET `notes` = '1082-7' WHERE `option_id` = 'chemakuan' AND `list_id` = 'race';
2035 #EndIf
2037 #IfRow2D list_options list_id race title Chemakuan
2038 UPDATE `list_options` SET `notes` = '1082-7' WHERE `title` = 'Chemakuan' AND `list_id` = 'race';
2039 #EndIf
2041 #IfNotRow2Dx2 list_options list_id race option_id chemehuevi title Chemehuevi
2042 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','chemehuevi','Chemehuevi','1390', '0',' 1086-8', 0);
2043 #EndIf
2045 #IfRow2D list_options list_id race option_id chemehuevi
2046 UPDATE `list_options` SET `notes` = '1086-8' WHERE `option_id` = 'chemehuevi' AND `list_id` = 'race';
2047 #EndIf
2049 #IfRow2D list_options list_id race title Chemehuevi
2050 UPDATE `list_options` SET `notes` = '1086-8' WHERE `title` = 'Chemehuevi' AND `list_id` = 'race';
2051 #EndIf
2053 #IfNotRow2Dx2 list_options list_id race option_id chenega title Chenega
2054 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','chenega','Chenega','1400', '0',' 1985-1', 0);
2055 #EndIf
2057 #IfRow2D list_options list_id race option_id chenega
2058 UPDATE `list_options` SET `notes` = '1985-1' WHERE `option_id` = 'chenega' AND `list_id` = 'race';
2059 #EndIf
2061 #IfRow2D list_options list_id race title Chenega
2062 UPDATE `list_options` SET `notes` = '1985-1' WHERE `title` = 'Chenega' AND `list_id` = 'race';
2063 #EndIf
2065 #IfNotRow2Dx2 list_options list_id race option_id cherokee title Cherokee
2066 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','cherokee','Cherokee','1410', '0',' 1088-4', 0);
2067 #EndIf
2069 #IfRow2D list_options list_id race option_id cherokee
2070 UPDATE `list_options` SET `notes` = '1088-4' WHERE `option_id` = 'cherokee' AND `list_id` = 'race';
2071 #EndIf
2073 #IfRow2D list_options list_id race title Cherokee
2074 UPDATE `list_options` SET `notes` = '1088-4' WHERE `title` = 'Cherokee' AND `list_id` = 'race';
2075 #EndIf
2077 #IfNotRow2Dx2 list_options list_id race option_id cherokee_alabama title Cherokee Alabama
2078 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','cherokee_alabama','Cherokee Alabama','1420', '0',' 1089-2', 0);
2079 #EndIf
2081 #IfRow2D list_options list_id race option_id cherokee_alabama
2082 UPDATE `list_options` SET `notes` = '1089-2' WHERE `option_id` = 'cherokee_alabama' AND `list_id` = 'race';
2083 #EndIf
2085 #IfRow2D list_options list_id race title Cherokee Alabama
2086 UPDATE `list_options` SET `notes` = '1089-2' WHERE `title` = 'Cherokee Alabama' AND `list_id` = 'race';
2087 #EndIf
2089 #IfNotRow2Dx2 list_options list_id race option_id cherokee_shawnee title Cherokee Shawnee
2090 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','cherokee_shawnee','Cherokee Shawnee','1430', '0',' 1100-7', 0);
2091 #EndIf
2093 #IfRow2D list_options list_id race option_id cherokee_shawnee
2094 UPDATE `list_options` SET `notes` = '1100-7' WHERE `option_id` = 'cherokee_shawnee' AND `list_id` = 'race';
2095 #EndIf
2097 #IfRow2D list_options list_id race title Cherokee Shawnee
2098 UPDATE `list_options` SET `notes` = '1100-7' WHERE `title` = 'Cherokee Shawnee' AND `list_id` = 'race';
2099 #EndIf
2101 #IfNotRow2Dx2 list_options list_id race option_id cherokees_of_northeast_alabama title Cherokees of Northeast Alabama
2102 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','cherokees_of_northeast_alabama','Cherokees of Northeast Alabama','1440', '0',' 1090-0', 0);
2103 #EndIf
2105 #IfRow2D list_options list_id race option_id cherokees_of_northeast_alabama
2106 UPDATE `list_options` SET `notes` = '1090-0' WHERE `option_id` = 'cherokees_of_northeast_alabama' AND `list_id` = 'race';
2107 #EndIf
2109 #IfRow2D list_options list_id race title Cherokees of Northeast Alabama
2110 UPDATE `list_options` SET `notes` = '1090-0' WHERE `title` = 'Cherokees of Northeast Alabama' AND `list_id` = 'race';
2111 #EndIf
2113 #IfNotRow2Dx2 list_options list_id race option_id cherokees_of_southeast_alabama title Cherokees of Southeast Alabama
2114 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','cherokees_of_southeast_alabama','Cherokees of Southeast Alabama','1450', '0',' 1091-8', 0);
2115 #EndIf
2117 #IfRow2D list_options list_id race option_id cherokees_of_southeast_alabama
2118 UPDATE `list_options` SET `notes` = '1091-8' WHERE `option_id` = 'cherokees_of_southeast_alabama' AND `list_id` = 'race';
2119 #EndIf
2121 #IfRow2D list_options list_id race title Cherokees of Southeast Alabama
2122 UPDATE `list_options` SET `notes` = '1091-8' WHERE `title` = 'Cherokees of Southeast Alabama' AND `list_id` = 'race';
2123 #EndIf
2125 #IfNotRow2Dx2 list_options list_id race option_id chevak title Chevak
2126 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','chevak','Chevak','1460', '0',' 1909-1', 0);
2127 #EndIf
2129 #IfRow2D list_options list_id race option_id chevak
2130 UPDATE `list_options` SET `notes` = '1909-1' WHERE `option_id` = 'chevak' AND `list_id` = 'race';
2131 #EndIf
2133 #IfRow2D list_options list_id race title Chevak
2134 UPDATE `list_options` SET `notes` = '1909-1' WHERE `title` = 'Chevak' AND `list_id` = 'race';
2135 #EndIf
2137 #IfNotRow2Dx2 list_options list_id race option_id cheyenne title Cheyenne
2138 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','cheyenne','Cheyenne','1470', '0',' 1102-3', 0);
2139 #EndIf
2141 #IfRow2D list_options list_id race option_id cheyenne
2142 UPDATE `list_options` SET `notes` = '1102-3' WHERE `option_id` = 'cheyenne' AND `list_id` = 'race';
2143 #EndIf
2145 #IfRow2D list_options list_id race title Cheyenne
2146 UPDATE `list_options` SET `notes` = '1102-3' WHERE `title` = 'Cheyenne' AND `list_id` = 'race';
2147 #EndIf
2149 #IfNotRow2Dx2 list_options list_id race option_id cheyenne_river_sioux title Cheyenne River Sioux
2150 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','cheyenne_river_sioux','Cheyenne River Sioux','1480', '0',' 1612-1', 0);
2151 #EndIf
2153 #IfRow2D list_options list_id race option_id cheyenne_river_sioux
2154 UPDATE `list_options` SET `notes` = '1612-1' WHERE `option_id` = 'cheyenne_river_sioux' AND `list_id` = 'race';
2155 #EndIf
2157 #IfRow2D list_options list_id race title Cheyenne River Sioux
2158 UPDATE `list_options` SET `notes` = '1612-1' WHERE `title` = 'Cheyenne River Sioux' AND `list_id` = 'race';
2159 #EndIf
2161 #IfNotRow2Dx2 list_options list_id race option_id cheyenne-arapaho title Cheyenne-Arapaho
2162 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','cheyenne-arapaho','Cheyenne-Arapaho','1490', '0',' 1106-4', 0);
2163 #EndIf
2165 #IfRow2D list_options list_id race option_id cheyenne-arapaho
2166 UPDATE `list_options` SET `notes` = '1106-4' WHERE `option_id` = 'cheyenne-arapaho' AND `list_id` = 'race';
2167 #EndIf
2169 #IfRow2D list_options list_id race title Cheyenne-Arapaho
2170 UPDATE `list_options` SET `notes` = '1106-4' WHERE `title` = 'Cheyenne-Arapaho' AND `list_id` = 'race';
2171 #EndIf
2173 #IfNotRow2Dx2 list_options list_id race option_id chickahominy title Chickahominy
2174 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','chickahominy','Chickahominy','1500', '0',' 1108-0', 0);
2175 #EndIf
2177 #IfRow2D list_options list_id race option_id chickahominy
2178 UPDATE `list_options` SET `notes` = '1108-0' WHERE `option_id` = 'chickahominy' AND `list_id` = 'race';
2179 #EndIf
2181 #IfRow2D list_options list_id race title Chickahominy
2182 UPDATE `list_options` SET `notes` = '1108-0' WHERE `title` = 'Chickahominy' AND `list_id` = 'race';
2183 #EndIf
2185 #IfNotRow2Dx2 list_options list_id race option_id chickaloon title Chickaloon
2186 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','chickaloon','Chickaloon','1510', '0',' 1751-7', 0);
2187 #EndIf
2189 #IfRow2D list_options list_id race option_id chickaloon
2190 UPDATE `list_options` SET `notes` = '1751-7' WHERE `option_id` = 'chickaloon' AND `list_id` = 'race';
2191 #EndIf
2193 #IfRow2D list_options list_id race title Chickaloon
2194 UPDATE `list_options` SET `notes` = '1751-7' WHERE `title` = 'Chickaloon' AND `list_id` = 'race';
2195 #EndIf
2197 #IfNotRow2Dx2 list_options list_id race option_id chickasaw title Chickasaw
2198 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','chickasaw','Chickasaw','1520', '0',' 1112-2', 0);
2199 #EndIf
2201 #IfRow2D list_options list_id race option_id chickasaw
2202 UPDATE `list_options` SET `notes` = '1112-2' WHERE `option_id` = 'chickasaw' AND `list_id` = 'race';
2203 #EndIf
2205 #IfRow2D list_options list_id race title Chickasaw
2206 UPDATE `list_options` SET `notes` = '1112-2' WHERE `title` = 'Chickasaw' AND `list_id` = 'race';
2207 #EndIf
2209 #IfNotRow2Dx2 list_options list_id race option_id chignik title Chignik
2210 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','chignik','Chignik','1530', '0',' 1973-7', 0);
2211 #EndIf
2213 #IfRow2D list_options list_id race option_id chignik
2214 UPDATE `list_options` SET `notes` = '1973-7' WHERE `option_id` = 'chignik' AND `list_id` = 'race';
2215 #EndIf
2217 #IfRow2D list_options list_id race title Chignik
2218 UPDATE `list_options` SET `notes` = '1973-7' WHERE `title` = 'Chignik' AND `list_id` = 'race';
2219 #EndIf
2221 #IfNotRow2Dx2 list_options list_id race option_id chignik_lagoon title Chignik Lagoon
2222 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','chignik_lagoon','Chignik Lagoon','1540', '0',' 2013-1', 0);
2223 #EndIf
2225 #IfRow2D list_options list_id race option_id chignik_lagoon
2226 UPDATE `list_options` SET `notes` = '2013-1' WHERE `option_id` = 'chignik_lagoon' AND `list_id` = 'race';
2227 #EndIf
2229 #IfRow2D list_options list_id race title Chignik Lagoon
2230 UPDATE `list_options` SET `notes` = '2013-1' WHERE `title` = 'Chignik Lagoon' AND `list_id` = 'race';
2231 #EndIf
2233 #IfNotRow2Dx2 list_options list_id race option_id chignik_lake title Chignik Lake
2234 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','chignik_lake','Chignik Lake','1550', '0',' 1974-5', 0);
2235 #EndIf
2237 #IfRow2D list_options list_id race option_id chignik_lake
2238 UPDATE `list_options` SET `notes` = '1974-5' WHERE `option_id` = 'chignik_lake' AND `list_id` = 'race';
2239 #EndIf
2241 #IfRow2D list_options list_id race title Chignik Lake
2242 UPDATE `list_options` SET `notes` = '1974-5' WHERE `title` = 'Chignik Lake' AND `list_id` = 'race';
2243 #EndIf
2245 #IfNotRow2Dx2 list_options list_id race option_id chilkat title Chilkat
2246 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','chilkat','Chilkat','1560', '0',' 1816-8', 0);
2247 #EndIf
2249 #IfRow2D list_options list_id race option_id chilkat
2250 UPDATE `list_options` SET `notes` = '1816-8' WHERE `option_id` = 'chilkat' AND `list_id` = 'race';
2251 #EndIf
2253 #IfRow2D list_options list_id race title Chilkat
2254 UPDATE `list_options` SET `notes` = '1816-8' WHERE `title` = 'Chilkat' AND `list_id` = 'race';
2255 #EndIf
2257 #IfNotRow2Dx2 list_options list_id race option_id chilkoot title Chilkoot
2258 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','chilkoot','Chilkoot','1570', '0',' 1817-6', 0);
2259 #EndIf
2261 #IfRow2D list_options list_id race option_id chilkoot
2262 UPDATE `list_options` SET `notes` = '1817-6' WHERE `option_id` = 'chilkoot' AND `list_id` = 'race';
2263 #EndIf
2265 #IfRow2D list_options list_id race title Chilkoot
2266 UPDATE `list_options` SET `notes` = '1817-6' WHERE `title` = 'Chilkoot' AND `list_id` = 'race';
2267 #EndIf
2269 #IfNotRow2Dx2 list_options list_id race option_id chimariko title Chimariko
2270 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','chimariko','Chimariko','1580', '0',' 1055-3', 0);
2271 #EndIf
2273 #IfRow2D list_options list_id race option_id chimariko
2274 UPDATE `list_options` SET `notes` = '1055-3' WHERE `option_id` = 'chimariko' AND `list_id` = 'race';
2275 #EndIf
2277 #IfRow2D list_options list_id race title Chimariko
2278 UPDATE `list_options` SET `notes` = '1055-3' WHERE `title` = 'Chimariko' AND `list_id` = 'race';
2279 #EndIf
2281 #IfNotRow2Dx2 list_options list_id race option_id chinese title Chinese
2282 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','chinese','Chinese','1590', '0',' 2034-7', 0);
2283 #EndIf
2285 #IfRow2D list_options list_id race option_id chinese
2286 UPDATE `list_options` SET `notes` = '2034-7' WHERE `option_id` = 'chinese' AND `list_id` = 'race';
2287 #EndIf
2289 #IfRow2D list_options list_id race title Chinese
2290 UPDATE `list_options` SET `notes` = '2034-7' WHERE `title` = 'Chinese' AND `list_id` = 'race';
2291 #EndIf
2293 #IfNotRow2Dx2 list_options list_id race option_id chinik title Chinik
2294 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','chinik','Chinik','1600', '0',' 1855-6', 0);
2295 #EndIf
2297 #IfRow2D list_options list_id race option_id chinik
2298 UPDATE `list_options` SET `notes` = '1855-6' WHERE `option_id` = 'chinik' AND `list_id` = 'race';
2299 #EndIf
2301 #IfRow2D list_options list_id race title Chinik
2302 UPDATE `list_options` SET `notes` = '1855-6' WHERE `title` = 'Chinik' AND `list_id` = 'race';
2303 #EndIf
2305 #IfNotRow2Dx2 list_options list_id race option_id chinook title Chinook
2306 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','chinook','Chinook','1610', '0',' 1114-8', 0);
2307 #EndIf
2309 #IfRow2D list_options list_id race option_id chinook
2310 UPDATE `list_options` SET `notes` = '1114-8' WHERE `option_id` = 'chinook' AND `list_id` = 'race';
2311 #EndIf
2313 #IfRow2D list_options list_id race title Chinook
2314 UPDATE `list_options` SET `notes` = '1114-8' WHERE `title` = 'Chinook' AND `list_id` = 'race';
2315 #EndIf
2317 #IfNotRow2Dx2 list_options list_id race option_id chippewa title Chippewa
2318 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','chippewa','Chippewa','1620', '0',' 1123-9', 0);
2319 #EndIf
2321 #IfRow2D list_options list_id race option_id chippewa
2322 UPDATE `list_options` SET `notes` = '1123-9' WHERE `option_id` = 'chippewa' AND `list_id` = 'race';
2323 #EndIf
2325 #IfRow2D list_options list_id race title Chippewa
2326 UPDATE `list_options` SET `notes` = '1123-9' WHERE `title` = 'Chippewa' AND `list_id` = 'race';
2327 #EndIf
2329 #IfNotRow2Dx2 list_options list_id race option_id chippewa_cree title Chippewa Cree
2330 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','chippewa_cree','Chippewa Cree','1630', '0',' 1150-2', 0);
2331 #EndIf
2333 #IfRow2D list_options list_id race option_id chippewa_cree
2334 UPDATE `list_options` SET `notes` = '1150-2' WHERE `option_id` = 'chippewa_cree' AND `list_id` = 'race';
2335 #EndIf
2337 #IfRow2D list_options list_id race title Chippewa Cree
2338 UPDATE `list_options` SET `notes` = '1150-2' WHERE `title` = 'Chippewa Cree' AND `list_id` = 'race';
2339 #EndIf
2341 #IfNotRow2Dx2 list_options list_id race option_id chiricahua title Chiricahua
2342 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','chiricahua','Chiricahua','1640', '0',' 1011-6', 0);
2343 #EndIf
2345 #IfRow2D list_options list_id race option_id chiricahua
2346 UPDATE `list_options` SET `notes` = '1011-6' WHERE `option_id` = 'chiricahua' AND `list_id` = 'race';
2347 #EndIf
2349 #IfRow2D list_options list_id race title Chiricahua
2350 UPDATE `list_options` SET `notes` = '1011-6' WHERE `title` = 'Chiricahua' AND `list_id` = 'race';
2351 #EndIf
2353 #IfNotRow2Dx2 list_options list_id race option_id chistochina title Chistochina
2354 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','chistochina','Chistochina','1650', '0',' 1752-5', 0);
2355 #EndIf
2357 #IfRow2D list_options list_id race option_id chistochina
2358 UPDATE `list_options` SET `notes` = '1752-5' WHERE `option_id` = 'chistochina' AND `list_id` = 'race';
2359 #EndIf
2361 #IfRow2D list_options list_id race title Chistochina
2362 UPDATE `list_options` SET `notes` = '1752-5' WHERE `title` = 'Chistochina' AND `list_id` = 'race';
2363 #EndIf
2365 #IfNotRow2Dx2 list_options list_id race option_id chitimacha title Chitimacha
2366 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','chitimacha','Chitimacha','1660', '0',' 1153-6', 0);
2367 #EndIf
2369 #IfRow2D list_options list_id race option_id chitimacha
2370 UPDATE `list_options` SET `notes` = '1153-6' WHERE `option_id` = 'chitimacha' AND `list_id` = 'race';
2371 #EndIf
2373 #IfRow2D list_options list_id race title Chitimacha
2374 UPDATE `list_options` SET `notes` = '1153-6' WHERE `title` = 'Chitimacha' AND `list_id` = 'race';
2375 #EndIf
2377 #IfNotRow2Dx2 list_options list_id race option_id chitina title Chitina
2378 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','chitina','Chitina','1670', '0',' 1753-3', 0);
2379 #EndIf
2381 #IfRow2D list_options list_id race option_id chitina
2382 UPDATE `list_options` SET `notes` = '1753-3' WHERE `option_id` = 'chitina' AND `list_id` = 'race';
2383 #EndIf
2385 #IfRow2D list_options list_id race title Chitina
2386 UPDATE `list_options` SET `notes` = '1753-3' WHERE `title` = 'Chitina' AND `list_id` = 'race';
2387 #EndIf
2389 #IfNotRow2Dx2 list_options list_id race option_id choctaw title Choctaw
2390 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','choctaw','Choctaw','1680', '0',' 1155-1', 0);
2391 #EndIf
2393 #IfRow2D list_options list_id race option_id choctaw
2394 UPDATE `list_options` SET `notes` = '1155-1' WHERE `option_id` = 'choctaw' AND `list_id` = 'race';
2395 #EndIf
2397 #IfRow2D list_options list_id race title Choctaw
2398 UPDATE `list_options` SET `notes` = '1155-1' WHERE `title` = 'Choctaw' AND `list_id` = 'race';
2399 #EndIf
2401 #IfNotRow2Dx2 list_options list_id race option_id chuathbaluk title Chuathbaluk
2402 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','chuathbaluk','Chuathbaluk','1690', '0',' 1910-9', 0);
2403 #EndIf
2405 #IfRow2D list_options list_id race option_id chuathbaluk
2406 UPDATE `list_options` SET `notes` = '1910-9' WHERE `option_id` = 'chuathbaluk' AND `list_id` = 'race';
2407 #EndIf
2409 #IfRow2D list_options list_id race title Chuathbaluk
2410 UPDATE `list_options` SET `notes` = '1910-9' WHERE `title` = 'Chuathbaluk' AND `list_id` = 'race';
2411 #EndIf
2413 #IfNotRow2Dx2 list_options list_id race option_id chugach_aleut title Chugach Aleut
2414 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','chugach_aleut','Chugach Aleut','1700', '0',' 1984-4', 0);
2415 #EndIf
2417 #IfRow2D list_options list_id race option_id chugach_aleut
2418 UPDATE `list_options` SET `notes` = '1984-4' WHERE `option_id` = 'chugach_aleut' AND `list_id` = 'race';
2419 #EndIf
2421 #IfRow2D list_options list_id race title Chugach Aleut
2422 UPDATE `list_options` SET `notes` = '1984-4' WHERE `title` = 'Chugach Aleut' AND `list_id` = 'race';
2423 #EndIf
2425 #IfNotRow2Dx2 list_options list_id race option_id chugach_corporation title Chugach Corporation
2426 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','chugach_corporation','Chugach Corporation','1710', '0',' 1986-9', 0);
2427 #EndIf
2429 #IfRow2D list_options list_id race option_id chugach_corporation
2430 UPDATE `list_options` SET `notes` = '1986-9' WHERE `option_id` = 'chugach_corporation' AND `list_id` = 'race';
2431 #EndIf
2433 #IfRow2D list_options list_id race title Chugach Corporation
2434 UPDATE `list_options` SET `notes` = '1986-9' WHERE `title` = 'Chugach Corporation' AND `list_id` = 'race';
2435 #EndIf
2437 #IfNotRow2Dx2 list_options list_id race option_id chukchansi title Chukchansi
2438 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','chukchansi','Chukchansi','1720', '0',' 1718-6', 0);
2439 #EndIf
2441 #IfRow2D list_options list_id race option_id chukchansi
2442 UPDATE `list_options` SET `notes` = '1718-6' WHERE `option_id` = 'chukchansi' AND `list_id` = 'race';
2443 #EndIf
2445 #IfRow2D list_options list_id race title Chukchansi
2446 UPDATE `list_options` SET `notes` = '1718-6' WHERE `title` = 'Chukchansi' AND `list_id` = 'race';
2447 #EndIf
2449 #IfNotRow2Dx2 list_options list_id race option_id chumash title Chumash
2450 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','chumash','Chumash','1730', '0',' 1162-7', 0);
2451 #EndIf
2453 #IfRow2D list_options list_id race option_id chumash
2454 UPDATE `list_options` SET `notes` = '1162-7' WHERE `option_id` = 'chumash' AND `list_id` = 'race';
2455 #EndIf
2457 #IfRow2D list_options list_id race title Chumash
2458 UPDATE `list_options` SET `notes` = '1162-7' WHERE `title` = 'Chumash' AND `list_id` = 'race';
2459 #EndIf
2461 #IfNotRow2Dx2 list_options list_id race option_id chuukese title Chuukese
2462 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','chuukese','Chuukese','1740', '0',' 2097-4', 0);
2463 #EndIf
2465 #IfRow2D list_options list_id race option_id chuukese
2466 UPDATE `list_options` SET `notes` = '2097-4' WHERE `option_id` = 'chuukese' AND `list_id` = 'race';
2467 #EndIf
2469 #IfRow2D list_options list_id race title Chuukese
2470 UPDATE `list_options` SET `notes` = '2097-4' WHERE `title` = 'Chuukese' AND `list_id` = 'race';
2471 #EndIf
2473 #IfNotRow2Dx2 list_options list_id race option_id circle title Circle
2474 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','circle','Circle','1750', '0',' 1754-1', 0);
2475 #EndIf
2477 #IfRow2D list_options list_id race option_id circle
2478 UPDATE `list_options` SET `notes` = '1754-1' WHERE `option_id` = 'circle' AND `list_id` = 'race';
2479 #EndIf
2481 #IfRow2D list_options list_id race title Circle
2482 UPDATE `list_options` SET `notes` = '1754-1' WHERE `title` = 'Circle' AND `list_id` = 'race';
2483 #EndIf
2485 #IfNotRow2Dx2 list_options list_id race option_id citizen_band_potawatomi title Citizen Band Potawatomi
2486 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','citizen_band_potawatomi','Citizen Band Potawatomi','1760', '0',' 1479-5', 0);
2487 #EndIf
2489 #IfRow2D list_options list_id race option_id citizen_band_potawatomi
2490 UPDATE `list_options` SET `notes` = '1479-5' WHERE `option_id` = 'citizen_band_potawatomi' AND `list_id` = 'race';
2491 #EndIf
2493 #IfRow2D list_options list_id race title Citizen Band Potawatomi
2494 UPDATE `list_options` SET `notes` = '1479-5' WHERE `title` = 'Citizen Band Potawatomi' AND `list_id` = 'race';
2495 #EndIf
2497 #IfNotRow2D list_options list_id race option_id clarks_point
2498 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','clarks_point',"Clark's Point",'1770', '0',' 1911-7', 0);
2499 #EndIf
2501 #IfRow2D list_options list_id race option_id clarks_point
2502 UPDATE `list_options` SET `notes` = '1911-7' WHERE `option_id` = 'clarks_point' AND `list_id` = 'race';
2503 #EndIf
2505 #IfNotRow2Dx2 list_options list_id race option_id clatsop title Clatsop
2506 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','clatsop','Clatsop','1780', '0',' 1115-5', 0);
2507 #EndIf
2509 #IfRow2D list_options list_id race option_id clatsop
2510 UPDATE `list_options` SET `notes` = '1115-5' WHERE `option_id` = 'clatsop' AND `list_id` = 'race';
2511 #EndIf
2513 #IfRow2D list_options list_id race title Clatsop
2514 UPDATE `list_options` SET `notes` = '1115-5' WHERE `title` = 'Clatsop' AND `list_id` = 'race';
2515 #EndIf
2517 #IfNotRow2Dx2 list_options list_id race option_id clear_lake title Clear Lake
2518 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','clear_lake','Clear Lake','1790', '0',' 1165-0', 0);
2519 #EndIf
2521 #IfRow2D list_options list_id race option_id clear_lake
2522 UPDATE `list_options` SET `notes` = '1165-0' WHERE `option_id` = 'clear_lake' AND `list_id` = 'race';
2523 #EndIf
2525 #IfRow2D list_options list_id race title Clear Lake
2526 UPDATE `list_options` SET `notes` = '1165-0' WHERE `title` = 'Clear Lake' AND `list_id` = 'race';
2527 #EndIf
2529 #IfNotRow2Dx2 list_options list_id race option_id clifton_choctaw title Clifton Choctaw
2530 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','clifton_choctaw','Clifton Choctaw','1800', '0',' 1156-9', 0);
2531 #EndIf
2533 #IfRow2D list_options list_id race option_id clifton_choctaw
2534 UPDATE `list_options` SET `notes` = '1156-9' WHERE `option_id` = 'clifton_choctaw' AND `list_id` = 'race';
2535 #EndIf
2537 #IfRow2D list_options list_id race title Clifton Choctaw
2538 UPDATE `list_options` SET `notes` = '1156-9' WHERE `title` = 'Clifton Choctaw' AND `list_id` = 'race';
2539 #EndIf
2541 #IfNotRow2Dx2 list_options list_id race option_id coast_miwok title Coast Miwok
2542 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','coast_miwok','Coast Miwok','1810', '0',' 1056-1', 0);
2543 #EndIf
2545 #IfRow2D list_options list_id race option_id coast_miwok
2546 UPDATE `list_options` SET `notes` = '1056-1' WHERE `option_id` = 'coast_miwok' AND `list_id` = 'race';
2547 #EndIf
2549 #IfRow2D list_options list_id race title Coast Miwok
2550 UPDATE `list_options` SET `notes` = '1056-1' WHERE `title` = 'Coast Miwok' AND `list_id` = 'race';
2551 #EndIf
2553 #IfNotRow2Dx2 list_options list_id race option_id coast_yurok title Coast Yurok
2554 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','coast_yurok','Coast Yurok','1820', '0',' 1733-5', 0);
2555 #EndIf
2557 #IfRow2D list_options list_id race option_id coast_yurok
2558 UPDATE `list_options` SET `notes` = '1733-5' WHERE `option_id` = 'coast_yurok' AND `list_id` = 'race';
2559 #EndIf
2561 #IfRow2D list_options list_id race title Coast Yurok
2562 UPDATE `list_options` SET `notes` = '1733-5' WHERE `title` = 'Coast Yurok' AND `list_id` = 'race';
2563 #EndIf
2565 #IfNotRow2Dx2 list_options list_id race option_id cochiti title Cochiti
2566 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','cochiti','Cochiti','1830', '0',' 1492-8', 0);
2567 #EndIf
2569 #IfRow2D list_options list_id race option_id cochiti
2570 UPDATE `list_options` SET `notes` = '1492-8' WHERE `option_id` = 'cochiti' AND `list_id` = 'race';
2571 #EndIf
2573 #IfRow2D list_options list_id race title Cochiti
2574 UPDATE `list_options` SET `notes` = '1492-8' WHERE `title` = 'Cochiti' AND `list_id` = 'race';
2575 #EndIf
2577 #IfNotRow2Dx2 list_options list_id race option_id cocopah title Cocopah
2578 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','cocopah','Cocopah','1840', '0',' 1725-1', 0);
2579 #EndIf
2581 #IfRow2D list_options list_id race option_id cocopah
2582 UPDATE `list_options` SET `notes` = '1725-1' WHERE `option_id` = 'cocopah' AND `list_id` = 'race';
2583 #EndIf
2585 #IfRow2D list_options list_id race title Cocopah
2586 UPDATE `list_options` SET `notes` = '1725-1' WHERE `title` = 'Cocopah' AND `list_id` = 'race';
2587 #EndIf
2589 #IfNotRow2D list_options list_id race option_id coeur_dalene
2590 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','coeur_dalene',"Coeur D'Alene",'1850', '0',' 1167-6', 0);
2591 #EndIf
2593 #IfRow2D list_options list_id race option_id coeur_dalene
2594 UPDATE `list_options` SET `notes` = '1167-6' WHERE `option_id` = 'coeur_dalene' AND `list_id` = 'race';
2595 #EndIf
2597 #IfNotRow2Dx2 list_options list_id race option_id coharie title Coharie
2598 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','coharie','Coharie','1860', '0',' 1169-2', 0);
2599 #EndIf
2601 #IfRow2D list_options list_id race option_id coharie
2602 UPDATE `list_options` SET `notes` = '1169-2' WHERE `option_id` = 'coharie' AND `list_id` = 'race';
2603 #EndIf
2605 #IfRow2D list_options list_id race title Coharie
2606 UPDATE `list_options` SET `notes` = '1169-2' WHERE `title` = 'Coharie' AND `list_id` = 'race';
2607 #EndIf
2609 #IfNotRow2Dx2 list_options list_id race option_id colorado_river title Colorado River
2610 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','colorado_river','Colorado River','1870', '0',' 1171-8', 0);
2611 #EndIf
2613 #IfRow2D list_options list_id race option_id colorado_river
2614 UPDATE `list_options` SET `notes` = '1171-8' WHERE `option_id` = 'colorado_river' AND `list_id` = 'race';
2615 #EndIf
2617 #IfRow2D list_options list_id race title Colorado River
2618 UPDATE `list_options` SET `notes` = '1171-8' WHERE `title` = 'Colorado River' AND `list_id` = 'race';
2619 #EndIf
2621 #IfNotRow2Dx2 list_options list_id race option_id columbia title Columbia
2622 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','columbia','Columbia','1880', '0',' 1394-6', 0);
2623 #EndIf
2625 #IfRow2D list_options list_id race option_id columbia
2626 UPDATE `list_options` SET `notes` = '1394-6' WHERE `option_id` = 'columbia' AND `list_id` = 'race';
2627 #EndIf
2629 #IfRow2D list_options list_id race title Columbia
2630 UPDATE `list_options` SET `notes` = '1394-6' WHERE `title` = 'Columbia' AND `list_id` = 'race';
2631 #EndIf
2633 #IfNotRow2Dx2 list_options list_id race option_id columbia_river_chinook title Columbia River Chinook
2634 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','columbia_river_chinook','Columbia River Chinook','1890', '0',' 1116-3', 0);
2635 #EndIf
2637 #IfRow2D list_options list_id race option_id columbia_river_chinook
2638 UPDATE `list_options` SET `notes` = '1116-3' WHERE `option_id` = 'columbia_river_chinook' AND `list_id` = 'race';
2639 #EndIf
2641 #IfRow2D list_options list_id race title Columbia River Chinook
2642 UPDATE `list_options` SET `notes` = '1116-3' WHERE `title` = 'Columbia River Chinook' AND `list_id` = 'race';
2643 #EndIf
2645 #IfNotRow2Dx2 list_options list_id race option_id colville title Colville
2646 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','colville','Colville','1900', '0',' 1173-4', 0);
2647 #EndIf
2649 #IfRow2D list_options list_id race option_id colville
2650 UPDATE `list_options` SET `notes` = '1173-4' WHERE `option_id` = 'colville' AND `list_id` = 'race';
2651 #EndIf
2653 #IfRow2D list_options list_id race title Colville
2654 UPDATE `list_options` SET `notes` = '1173-4' WHERE `title` = 'Colville' AND `list_id` = 'race';
2655 #EndIf
2657 #IfNotRow2Dx2 list_options list_id race option_id comanche title Comanche
2658 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','comanche','Comanche','1910', '0',' 1175-9', 0);
2659 #EndIf
2661 #IfRow2D list_options list_id race option_id comanche
2662 UPDATE `list_options` SET `notes` = '1175-9' WHERE `option_id` = 'comanche' AND `list_id` = 'race';
2663 #EndIf
2665 #IfRow2D list_options list_id race title Comanche
2666 UPDATE `list_options` SET `notes` = '1175-9' WHERE `title` = 'Comanche' AND `list_id` = 'race';
2667 #EndIf
2669 #IfNotRow2Dx2 list_options list_id race option_id cook_inlet title Cook Inlet
2670 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','cook_inlet','Cook Inlet','1920', '0',' 1755-8', 0);
2671 #EndIf
2673 #IfRow2D list_options list_id race option_id cook_inlet
2674 UPDATE `list_options` SET `notes` = '1755-8' WHERE `option_id` = 'cook_inlet' AND `list_id` = 'race';
2675 #EndIf
2677 #IfRow2D list_options list_id race title Cook Inlet
2678 UPDATE `list_options` SET `notes` = '1755-8' WHERE `title` = 'Cook Inlet' AND `list_id` = 'race';
2679 #EndIf
2681 #IfNotRow2Dx2 list_options list_id race option_id coos title Coos
2682 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','coos','Coos','1930', '0',' 1180-9', 0);
2683 #EndIf
2685 #IfRow2D list_options list_id race option_id coos
2686 UPDATE `list_options` SET `notes` = '1180-9' WHERE `option_id` = 'coos' AND `list_id` = 'race';
2687 #EndIf
2689 #IfRow2D list_options list_id race title Coos
2690 UPDATE `list_options` SET `notes` = '1180-9' WHERE `title` = 'Coos' AND `list_id` = 'race';
2691 #EndIf
2693 #IfNotRow2Dx2 list_options list_id race option_id coos_lower_umpqua_siuslaw title Coos, Lower Umpqua, Siuslaw
2694 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','coos_lower_umpqua_siuslaw','Coos, Lower Umpqua, Siuslaw','1940', '0',' 1178-3', 0);
2695 #EndIf
2697 #IfRow2D list_options list_id race option_id coos_lower_umpqua_siuslaw
2698 UPDATE `list_options` SET `notes` = '1178-3' WHERE `option_id` = 'coos_lower_umpqua_siuslaw' AND `list_id` = 'race';
2699 #EndIf
2701 #IfRow2D list_options list_id race title Coos, Lower Umpqua, Siuslaw
2702 UPDATE `list_options` SET `notes` = '1178-3' WHERE `title` = 'Coos, Lower Umpqua, Siuslaw' AND `list_id` = 'race';
2703 #EndIf
2705 #IfNotRow2Dx2 list_options list_id race option_id copper_center title Copper Center
2706 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','copper_center','Copper Center','1950', '0',' 1756-6', 0);
2707 #EndIf
2709 #IfRow2D list_options list_id race option_id copper_center
2710 UPDATE `list_options` SET `notes` = '1756-6' WHERE `option_id` = 'copper_center' AND `list_id` = 'race';
2711 #EndIf
2713 #IfRow2D list_options list_id race title Copper Center
2714 UPDATE `list_options` SET `notes` = '1756-6' WHERE `title` = 'Copper Center' AND `list_id` = 'race';
2715 #EndIf
2717 #IfNotRow2Dx2 list_options list_id race option_id copper_river title Copper River
2718 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','copper_river','Copper River','1960', '0',' 1757-4', 0);
2719 #EndIf
2721 #IfRow2D list_options list_id race option_id copper_river
2722 UPDATE `list_options` SET `notes` = '1757-4' WHERE `option_id` = 'copper_river' AND `list_id` = 'race';
2723 #EndIf
2725 #IfRow2D list_options list_id race title Copper River
2726 UPDATE `list_options` SET `notes` = '1757-4' WHERE `title` = 'Copper River' AND `list_id` = 'race';
2727 #EndIf
2729 #IfNotRow2Dx2 list_options list_id race option_id coquilles title Coquilles
2730 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','coquilles','Coquilles','1970', '0',' 1182-5', 0);
2731 #EndIf
2733 #IfRow2D list_options list_id race option_id coquilles
2734 UPDATE `list_options` SET `notes` = '1182-5' WHERE `option_id` = 'coquilles' AND `list_id` = 'race';
2735 #EndIf
2737 #IfRow2D list_options list_id race title Coquilles
2738 UPDATE `list_options` SET `notes` = '1182-5' WHERE `title` = 'Coquilles' AND `list_id` = 'race';
2739 #EndIf
2741 #IfNotRow2Dx2 list_options list_id race option_id costanoan title Costanoan
2742 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','costanoan','Costanoan','1980', '0',' 1184-1', 0);
2743 #EndIf
2745 #IfRow2D list_options list_id race option_id costanoan
2746 UPDATE `list_options` SET `notes` = '1184-1' WHERE `option_id` = 'costanoan' AND `list_id` = 'race';
2747 #EndIf
2749 #IfRow2D list_options list_id race title Costanoan
2750 UPDATE `list_options` SET `notes` = '1184-1' WHERE `title` = 'Costanoan' AND `list_id` = 'race';
2751 #EndIf
2753 #IfNotRow2Dx2 list_options list_id race option_id council title Council
2754 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','council','Council','1990', '0',' 1856-4', 0);
2755 #EndIf
2757 #IfRow2D list_options list_id race option_id council
2758 UPDATE `list_options` SET `notes` = '1856-4' WHERE `option_id` = 'council' AND `list_id` = 'race';
2759 #EndIf
2761 #IfRow2D list_options list_id race title Council
2762 UPDATE `list_options` SET `notes` = '1856-4' WHERE `title` = 'Council' AND `list_id` = 'race';
2763 #EndIf
2765 #IfNotRow2Dx2 list_options list_id race option_id coushatta title Coushatta
2766 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','coushatta','Coushatta','2000', '0',' 1186-6', 0);
2767 #EndIf
2769 #IfRow2D list_options list_id race option_id coushatta
2770 UPDATE `list_options` SET `notes` = '1186-6' WHERE `option_id` = 'coushatta' AND `list_id` = 'race';
2771 #EndIf
2773 #IfRow2D list_options list_id race title Coushatta
2774 UPDATE `list_options` SET `notes` = '1186-6' WHERE `title` = 'Coushatta' AND `list_id` = 'race';
2775 #EndIf
2777 #IfNotRow2Dx2 list_options list_id race option_id cow_creek_umpqua title Cow Creek Umpqua
2778 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','cow_creek_umpqua','Cow Creek Umpqua','2010', '0',' 1668-3', 0);
2779 #EndIf
2781 #IfRow2D list_options list_id race option_id cow_creek_umpqua
2782 UPDATE `list_options` SET `notes` = '1668-3' WHERE `option_id` = 'cow_creek_umpqua' AND `list_id` = 'race';
2783 #EndIf
2785 #IfRow2D list_options list_id race title Cow Creek Umpqua
2786 UPDATE `list_options` SET `notes` = '1668-3' WHERE `title` = 'Cow Creek Umpqua' AND `list_id` = 'race';
2787 #EndIf
2789 #IfNotRow2Dx2 list_options list_id race option_id cowlitz title Cowlitz
2790 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','cowlitz','Cowlitz','2020', '0',' 1189-0', 0);
2791 #EndIf
2793 #IfRow2D list_options list_id race option_id cowlitz
2794 UPDATE `list_options` SET `notes` = '1189-0' WHERE `option_id` = 'cowlitz' AND `list_id` = 'race';
2795 #EndIf
2797 #IfRow2D list_options list_id race title Cowlitz
2798 UPDATE `list_options` SET `notes` = '1189-0' WHERE `title` = 'Cowlitz' AND `list_id` = 'race';
2799 #EndIf
2801 #IfNotRow2Dx2 list_options list_id race option_id craig title Craig
2802 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','craig','Craig','2030', '0',' 1818-4', 0);
2803 #EndIf
2805 #IfRow2D list_options list_id race option_id craig
2806 UPDATE `list_options` SET `notes` = '1818-4' WHERE `option_id` = 'craig' AND `list_id` = 'race';
2807 #EndIf
2809 #IfRow2D list_options list_id race title Craig
2810 UPDATE `list_options` SET `notes` = '1818-4' WHERE `title` = 'Craig' AND `list_id` = 'race';
2811 #EndIf
2813 #IfNotRow2Dx2 list_options list_id race option_id cree title Cree
2814 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','cree','Cree','2040', '0',' 1191-6', 0);
2815 #EndIf
2817 #IfRow2D list_options list_id race option_id cree
2818 UPDATE `list_options` SET `notes` = '1191-6' WHERE `option_id` = 'cree' AND `list_id` = 'race';
2819 #EndIf
2821 #IfRow2D list_options list_id race title Cree
2822 UPDATE `list_options` SET `notes` = '1191-6' WHERE `title` = 'Cree' AND `list_id` = 'race';
2823 #EndIf
2825 #IfNotRow2Dx2 list_options list_id race option_id creek title Creek
2826 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','creek','Creek','2050', '0',' 1193-2', 0);
2827 #EndIf
2829 #IfRow2D list_options list_id race option_id creek
2830 UPDATE `list_options` SET `notes` = '1193-2' WHERE `option_id` = 'creek' AND `list_id` = 'race';
2831 #EndIf
2833 #IfRow2D list_options list_id race title Creek
2834 UPDATE `list_options` SET `notes` = '1193-2' WHERE `title` = 'Creek' AND `list_id` = 'race';
2835 #EndIf
2837 #IfNotRow2Dx2 list_options list_id race option_id croatan title Croatan
2838 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','croatan','Croatan','2060', '0',' 1207-0', 0);
2839 #EndIf
2841 #IfRow2D list_options list_id race option_id croatan
2842 UPDATE `list_options` SET `notes` = '1207-0' WHERE `option_id` = 'croatan' AND `list_id` = 'race';
2843 #EndIf
2845 #IfRow2D list_options list_id race title Croatan
2846 UPDATE `list_options` SET `notes` = '1207-0' WHERE `title` = 'Croatan' AND `list_id` = 'race';
2847 #EndIf
2849 #IfNotRow2Dx2 list_options list_id race option_id crooked_creek title Crooked Creek
2850 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','crooked_creek','Crooked Creek','2070', '0',' 1912-5', 0);
2851 #EndIf
2853 #IfRow2D list_options list_id race option_id crooked_creek
2854 UPDATE `list_options` SET `notes` = '1912-5' WHERE `option_id` = 'crooked_creek' AND `list_id` = 'race';
2855 #EndIf
2857 #IfRow2D list_options list_id race title Crooked Creek
2858 UPDATE `list_options` SET `notes` = '1912-5' WHERE `title` = 'Crooked Creek' AND `list_id` = 'race';
2859 #EndIf
2861 #IfNotRow2Dx2 list_options list_id race option_id crow title Crow
2862 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','crow','Crow','2080', '0',' 1209-6', 0);
2863 #EndIf
2865 #IfRow2D list_options list_id race option_id crow
2866 UPDATE `list_options` SET `notes` = '1209-6' WHERE `option_id` = 'crow' AND `list_id` = 'race';
2867 #EndIf
2869 #IfRow2D list_options list_id race title Crow
2870 UPDATE `list_options` SET `notes` = '1209-6' WHERE `title` = 'Crow' AND `list_id` = 'race';
2871 #EndIf
2873 #IfNotRow2Dx2 list_options list_id race option_id crow_creek_sioux title Crow Creek Sioux
2874 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','crow_creek_sioux','Crow Creek Sioux','2090', '0',' 1613-9', 0);
2875 #EndIf
2877 #IfRow2D list_options list_id race option_id crow_creek_sioux
2878 UPDATE `list_options` SET `notes` = '1613-9' WHERE `option_id` = 'crow_creek_sioux' AND `list_id` = 'race';
2879 #EndIf
2881 #IfRow2D list_options list_id race title Crow Creek Sioux
2882 UPDATE `list_options` SET `notes` = '1613-9' WHERE `title` = 'Crow Creek Sioux' AND `list_id` = 'race';
2883 #EndIf
2885 #IfNotRow2Dx2 list_options list_id race option_id cupeno title Cupeno
2886 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','cupeno','Cupeno','2100', '0',' 1211-2', 0);
2887 #EndIf
2889 #IfRow2D list_options list_id race option_id cupeno
2890 UPDATE `list_options` SET `notes` = '1211-2' WHERE `option_id` = 'cupeno' AND `list_id` = 'race';
2891 #EndIf
2893 #IfRow2D list_options list_id race title Cupeno
2894 UPDATE `list_options` SET `notes` = '1211-2' WHERE `title` = 'Cupeno' AND `list_id` = 'race';
2895 #EndIf
2897 #IfNotRow2Dx2 list_options list_id race option_id cuyapaipe title Cuyapaipe
2898 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','cuyapaipe','Cuyapaipe','2110', '0',' 1225-2', 0);
2899 #EndIf
2901 #IfRow2D list_options list_id race option_id cuyapaipe
2902 UPDATE `list_options` SET `notes` = '1225-2' WHERE `option_id` = 'cuyapaipe' AND `list_id` = 'race';
2903 #EndIf
2905 #IfRow2D list_options list_id race title Cuyapaipe
2906 UPDATE `list_options` SET `notes` = '1225-2' WHERE `title` = 'Cuyapaipe' AND `list_id` = 'race';
2907 #EndIf
2909 #IfNotRow2Dx2 list_options list_id race option_id dakota_sioux title Dakota Sioux
2910 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','dakota_sioux','Dakota Sioux','2120', '0',' 1614-7', 0);
2911 #EndIf
2913 #IfRow2D list_options list_id race option_id dakota_sioux
2914 UPDATE `list_options` SET `notes` = '1614-7' WHERE `option_id` = 'dakota_sioux' AND `list_id` = 'race';
2915 #EndIf
2917 #IfRow2D list_options list_id race title Dakota Sioux
2918 UPDATE `list_options` SET `notes` = '1614-7' WHERE `title` = 'Dakota Sioux' AND `list_id` = 'race';
2919 #EndIf
2921 #IfNotRow2Dx2 list_options list_id race option_id deering title Deering
2922 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','deering','Deering','2130', '0',' 1857-2', 0);
2923 #EndIf
2925 #IfRow2D list_options list_id race option_id deering
2926 UPDATE `list_options` SET `notes` = '1857-2' WHERE `option_id` = 'deering' AND `list_id` = 'race';
2927 #EndIf
2929 #IfRow2D list_options list_id race title Deering
2930 UPDATE `list_options` SET `notes` = '1857-2' WHERE `title` = 'Deering' AND `list_id` = 'race';
2931 #EndIf
2933 #IfNotRow2Dx2 list_options list_id race option_id delaware title Delaware
2934 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','delaware','Delaware','2140', '0',' 1214-6', 0);
2935 #EndIf
2937 #IfRow2D list_options list_id race option_id delaware
2938 UPDATE `list_options` SET `notes` = '1214-6' WHERE `option_id` = 'delaware' AND `list_id` = 'race';
2939 #EndIf
2941 #IfRow2D list_options list_id race title Delaware
2942 UPDATE `list_options` SET `notes` = '1214-6' WHERE `title` = 'Delaware' AND `list_id` = 'race';
2943 #EndIf
2945 #IfNotRow2Dx2 list_options list_id race option_id diegueno title Diegueno
2946 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','diegueno','Diegueno','2150', '0',' 1222-9', 0);
2947 #EndIf
2949 #IfRow2D list_options list_id race option_id diegueno
2950 UPDATE `list_options` SET `notes` = '1222-9' WHERE `option_id` = 'diegueno' AND `list_id` = 'race';
2951 #EndIf
2953 #IfRow2D list_options list_id race title Diegueno
2954 UPDATE `list_options` SET `notes` = '1222-9' WHERE `title` = 'Diegueno' AND `list_id` = 'race';
2955 #EndIf
2957 #IfNotRow2Dx2 list_options list_id race option_id digger title Digger
2958 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','digger','Digger','2160', '0',' 1057-9', 0);
2959 #EndIf
2961 #IfRow2D list_options list_id race option_id digger
2962 UPDATE `list_options` SET `notes` = '1057-9' WHERE `option_id` = 'digger' AND `list_id` = 'race';
2963 #EndIf
2965 #IfRow2D list_options list_id race title Digger
2966 UPDATE `list_options` SET `notes` = '1057-9' WHERE `title` = 'Digger' AND `list_id` = 'race';
2967 #EndIf
2969 #IfNotRow2Dx2 list_options list_id race option_id dillingham title Dillingham
2970 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','dillingham','Dillingham','2170', '0',' 1913-3', 0);
2971 #EndIf
2973 #IfRow2D list_options list_id race option_id dillingham
2974 UPDATE `list_options` SET `notes` = '1913-3' WHERE `option_id` = 'dillingham' AND `list_id` = 'race';
2975 #EndIf
2977 #IfRow2D list_options list_id race title Dillingham
2978 UPDATE `list_options` SET `notes` = '1913-3' WHERE `title` = 'Dillingham' AND `list_id` = 'race';
2979 #EndIf
2981 #IfNotRow2Dx2 list_options list_id race option_id dominica_islander title Dominica Islander
2982 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','dominica_islander','Dominica Islander','2180', '0',' 2070-1', 0);
2983 #EndIf
2985 #IfRow2D list_options list_id race option_id dominica_islander
2986 UPDATE `list_options` SET `notes` = '2070-1' WHERE `option_id` = 'dominica_islander' AND `list_id` = 'race';
2987 #EndIf
2989 #IfRow2D list_options list_id race title Dominica Islander
2990 UPDATE `list_options` SET `notes` = '2070-1' WHERE `title` = 'Dominica Islander' AND `list_id` = 'race';
2991 #EndIf
2993 #IfNotRow2Dx2 list_options list_id race option_id dominican title Dominican
2994 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','dominican','Dominican','2190', '0',' 2069-3', 0);
2995 #EndIf
2997 #IfRow2D list_options list_id race option_id dominican
2998 UPDATE `list_options` SET `notes` = '2069-3' WHERE `option_id` = 'dominican' AND `list_id` = 'race';
2999 #EndIf
3001 #IfRow2D list_options list_id race title Dominican
3002 UPDATE `list_options` SET `notes` = '2069-3' WHERE `title` = 'Dominican' AND `list_id` = 'race';
3003 #EndIf
3005 #IfNotRow2Dx2 list_options list_id race option_id dot_lake title Dot Lake
3006 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','dot_lake','Dot Lake','2200', '0',' 1758-2', 0);
3007 #EndIf
3009 #IfRow2D list_options list_id race option_id dot_lake
3010 UPDATE `list_options` SET `notes` = '1758-2' WHERE `option_id` = 'dot_lake' AND `list_id` = 'race';
3011 #EndIf
3013 #IfRow2D list_options list_id race title Dot Lake
3014 UPDATE `list_options` SET `notes` = '1758-2' WHERE `title` = 'Dot Lake' AND `list_id` = 'race';
3015 #EndIf
3017 #IfNotRow2Dx2 list_options list_id race option_id douglas title Douglas
3018 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','douglas','Douglas','2210', '0',' 1819-2', 0);
3019 #EndIf
3021 #IfRow2D list_options list_id race option_id douglas
3022 UPDATE `list_options` SET `notes` = '1819-2' WHERE `option_id` = 'douglas' AND `list_id` = 'race';
3023 #EndIf
3025 #IfRow2D list_options list_id race title Douglas
3026 UPDATE `list_options` SET `notes` = '1819-2' WHERE `title` = 'Douglas' AND `list_id` = 'race';
3027 #EndIf
3029 #IfNotRow2Dx2 list_options list_id race option_id doyon title Doyon
3030 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','doyon','Doyon','2220', '0',' 1759-0', 0);
3031 #EndIf
3033 #IfRow2D list_options list_id race option_id doyon
3034 UPDATE `list_options` SET `notes` = '1759-0' WHERE `option_id` = 'doyon' AND `list_id` = 'race';
3035 #EndIf
3037 #IfRow2D list_options list_id race title Doyon
3038 UPDATE `list_options` SET `notes` = '1759-0' WHERE `title` = 'Doyon' AND `list_id` = 'race';
3039 #EndIf
3041 #IfNotRow2Dx2 list_options list_id race option_id dresslerville title Dresslerville
3042 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','dresslerville','Dresslerville','2230', '0',' 1690-7', 0);
3043 #EndIf
3045 #IfRow2D list_options list_id race option_id dresslerville
3046 UPDATE `list_options` SET `notes` = '1690-7' WHERE `option_id` = 'dresslerville' AND `list_id` = 'race';
3047 #EndIf
3049 #IfRow2D list_options list_id race title Dresslerville
3050 UPDATE `list_options` SET `notes` = '1690-7' WHERE `title` = 'Dresslerville' AND `list_id` = 'race';
3051 #EndIf
3053 #IfNotRow2Dx2 list_options list_id race option_id dry_creek title Dry Creek
3054 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','dry_creek','Dry Creek','2240', '0',' 1466-2', 0);
3055 #EndIf
3057 #IfRow2D list_options list_id race option_id dry_creek
3058 UPDATE `list_options` SET `notes` = '1466-2' WHERE `option_id` = 'dry_creek' AND `list_id` = 'race';
3059 #EndIf
3061 #IfRow2D list_options list_id race title Dry Creek
3062 UPDATE `list_options` SET `notes` = '1466-2' WHERE `title` = 'Dry Creek' AND `list_id` = 'race';
3063 #EndIf
3065 #IfNotRow2Dx2 list_options list_id race option_id duck_valley title Duck Valley
3066 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','duck_valley','Duck Valley','2250', '0',' 1603-0', 0);
3067 #EndIf
3069 #IfRow2D list_options list_id race option_id duck_valley
3070 UPDATE `list_options` SET `notes` = '1603-0' WHERE `option_id` = 'duck_valley' AND `list_id` = 'race';
3071 #EndIf
3073 #IfRow2D list_options list_id race title Duck Valley
3074 UPDATE `list_options` SET `notes` = '1603-0' WHERE `title` = 'Duck Valley' AND `list_id` = 'race';
3075 #EndIf
3077 #IfNotRow2Dx2 list_options list_id race option_id duckwater title Duckwater
3078 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','duckwater','Duckwater','2260', '0',' 1588-3', 0);
3079 #EndIf
3081 #IfRow2D list_options list_id race option_id duckwater
3082 UPDATE `list_options` SET `notes` = '1588-3' WHERE `option_id` = 'duckwater' AND `list_id` = 'race';
3083 #EndIf
3085 #IfRow2D list_options list_id race title Duckwater
3086 UPDATE `list_options` SET `notes` = '1588-3' WHERE `title` = 'Duckwater' AND `list_id` = 'race';
3087 #EndIf
3089 #IfNotRow2Dx2 list_options list_id race option_id duwamish title Duwamish
3090 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','duwamish','Duwamish','2270', '0',' 1519-8', 0);
3091 #EndIf
3093 #IfRow2D list_options list_id race option_id duwamish
3094 UPDATE `list_options` SET `notes` = '1519-8' WHERE `option_id` = 'duwamish' AND `list_id` = 'race';
3095 #EndIf
3097 #IfRow2D list_options list_id race title Duwamish
3098 UPDATE `list_options` SET `notes` = '1519-8' WHERE `title` = 'Duwamish' AND `list_id` = 'race';
3099 #EndIf
3101 #IfNotRow2Dx2 list_options list_id race option_id eagle title Eagle
3102 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','eagle','Eagle','2280', '0',' 1760-8', 0);
3103 #EndIf
3105 #IfRow2D list_options list_id race option_id eagle
3106 UPDATE `list_options` SET `notes` = '1760-8' WHERE `option_id` = 'eagle' AND `list_id` = 'race';
3107 #EndIf
3109 #IfRow2D list_options list_id race title Eagle
3110 UPDATE `list_options` SET `notes` = '1760-8' WHERE `title` = 'Eagle' AND `list_id` = 'race';
3111 #EndIf
3113 #IfNotRow2Dx2 list_options list_id race option_id eastern_cherokee title Eastern Cherokee
3114 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','eastern_cherokee','Eastern Cherokee','2290', '0',' 1092-6', 0);
3115 #EndIf
3117 #IfRow2D list_options list_id race option_id eastern_cherokee
3118 UPDATE `list_options` SET `notes` = '1092-6' WHERE `option_id` = 'eastern_cherokee' AND `list_id` = 'race';
3119 #EndIf
3121 #IfRow2D list_options list_id race title Eastern Cherokee
3122 UPDATE `list_options` SET `notes` = '1092-6' WHERE `title` = 'Eastern Cherokee' AND `list_id` = 'race';
3123 #EndIf
3125 #IfNotRow2Dx2 list_options list_id race option_id eastern_chickahominy title Eastern Chickahominy
3126 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','eastern_chickahominy','Eastern Chickahominy','2300', '0',' 1109-8', 0);
3127 #EndIf
3129 #IfRow2D list_options list_id race option_id eastern_chickahominy
3130 UPDATE `list_options` SET `notes` = '1109-8' WHERE `option_id` = 'eastern_chickahominy' AND `list_id` = 'race';
3131 #EndIf
3133 #IfRow2D list_options list_id race title Eastern Chickahominy
3134 UPDATE `list_options` SET `notes` = '1109-8' WHERE `title` = 'Eastern Chickahominy' AND `list_id` = 'race';
3135 #EndIf
3137 #IfNotRow2Dx2 list_options list_id race option_id eastern_creek title Eastern Creek
3138 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','eastern_creek','Eastern Creek','2310', '0',' 1196-5', 0);
3139 #EndIf
3141 #IfRow2D list_options list_id race option_id eastern_creek
3142 UPDATE `list_options` SET `notes` = '1196-5' WHERE `option_id` = 'eastern_creek' AND `list_id` = 'race';
3143 #EndIf
3145 #IfRow2D list_options list_id race title Eastern Creek
3146 UPDATE `list_options` SET `notes` = '1196-5' WHERE `title` = 'Eastern Creek' AND `list_id` = 'race';
3147 #EndIf
3149 #IfNotRow2Dx2 list_options list_id race option_id eastern_delaware title Eastern Delaware
3150 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','eastern_delaware','Eastern Delaware','2320', '0',' 1215-3', 0);
3151 #EndIf
3153 #IfRow2D list_options list_id race option_id eastern_delaware
3154 UPDATE `list_options` SET `notes` = '1215-3' WHERE `option_id` = 'eastern_delaware' AND `list_id` = 'race';
3155 #EndIf
3157 #IfRow2D list_options list_id race title Eastern Delaware
3158 UPDATE `list_options` SET `notes` = '1215-3' WHERE `title` = 'Eastern Delaware' AND `list_id` = 'race';
3159 #EndIf
3161 #IfNotRow2Dx2 list_options list_id race option_id eastern_muscogee title Eastern Muscogee
3162 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','eastern_muscogee','Eastern Muscogee','2330', '0',' 1197-3', 0);
3163 #EndIf
3165 #IfRow2D list_options list_id race option_id eastern_muscogee
3166 UPDATE `list_options` SET `notes` = '1197-3' WHERE `option_id` = 'eastern_muscogee' AND `list_id` = 'race';
3167 #EndIf
3169 #IfRow2D list_options list_id race title Eastern Muscogee
3170 UPDATE `list_options` SET `notes` = '1197-3' WHERE `title` = 'Eastern Muscogee' AND `list_id` = 'race';
3171 #EndIf
3173 #IfNotRow2Dx2 list_options list_id race option_id eastern_pomo title Eastern Pomo
3174 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','eastern_pomo','Eastern Pomo','2340', '0',' 1467-0', 0);
3175 #EndIf
3177 #IfRow2D list_options list_id race option_id eastern_pomo
3178 UPDATE `list_options` SET `notes` = '1467-0' WHERE `option_id` = 'eastern_pomo' AND `list_id` = 'race';
3179 #EndIf
3181 #IfRow2D list_options list_id race title Eastern Pomo
3182 UPDATE `list_options` SET `notes` = '1467-0' WHERE `title` = 'Eastern Pomo' AND `list_id` = 'race';
3183 #EndIf
3185 #IfNotRow2Dx2 list_options list_id race option_id eastern_shawnee title Eastern Shawnee
3186 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','eastern_shawnee','Eastern Shawnee','2350', '0',' 1580-0', 0);
3187 #EndIf
3189 #IfRow2D list_options list_id race option_id eastern_shawnee
3190 UPDATE `list_options` SET `notes` = '1580-0' WHERE `option_id` = 'eastern_shawnee' AND `list_id` = 'race';
3191 #EndIf
3193 #IfRow2D list_options list_id race title Eastern Shawnee
3194 UPDATE `list_options` SET `notes` = '1580-0' WHERE `title` = 'Eastern Shawnee' AND `list_id` = 'race';
3195 #EndIf
3197 #IfNotRow2Dx2 list_options list_id race option_id eastern_tribes title Eastern Tribes
3198 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','eastern_tribes','Eastern Tribes','2360', '0',' 1233-6', 0);
3199 #EndIf
3201 #IfRow2D list_options list_id race option_id eastern_tribes
3202 UPDATE `list_options` SET `notes` = '1233-6' WHERE `option_id` = 'eastern_tribes' AND `list_id` = 'race';
3203 #EndIf
3205 #IfRow2D list_options list_id race title Eastern Tribes
3206 UPDATE `list_options` SET `notes` = '1233-6' WHERE `title` = 'Eastern Tribes' AND `list_id` = 'race';
3207 #EndIf
3209 #IfNotRow2Dx2 list_options list_id race option_id echota_cherokee title Echota Cherokee
3210 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','echota_cherokee','Echota Cherokee','2370', '0',' 1093-4', 0);
3211 #EndIf
3213 #IfRow2D list_options list_id race option_id echota_cherokee
3214 UPDATE `list_options` SET `notes` = '1093-4' WHERE `option_id` = 'echota_cherokee' AND `list_id` = 'race';
3215 #EndIf
3217 #IfRow2D list_options list_id race title Echota Cherokee
3218 UPDATE `list_options` SET `notes` = '1093-4' WHERE `title` = 'Echota Cherokee' AND `list_id` = 'race';
3219 #EndIf
3221 #IfNotRow2Dx2 list_options list_id race option_id eek title Eek
3222 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','eek','Eek','2380', '0',' 1914-1', 0);
3223 #EndIf
3225 #IfRow2D list_options list_id race option_id eek
3226 UPDATE `list_options` SET `notes` = '1914-1' WHERE `option_id` = 'eek' AND `list_id` = 'race';
3227 #EndIf
3229 #IfRow2D list_options list_id race title Eek
3230 UPDATE `list_options` SET `notes` = '1914-1' WHERE `title` = 'Eek' AND `list_id` = 'race';
3231 #EndIf
3233 #IfNotRow2Dx2 list_options list_id race option_id egegik title Egegik
3234 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','egegik','Egegik','2390', '0',' 1975-2', 0);
3235 #EndIf
3237 #IfRow2D list_options list_id race option_id egegik
3238 UPDATE `list_options` SET `notes` = '1975-2' WHERE `option_id` = 'egegik' AND `list_id` = 'race';
3239 #EndIf
3241 #IfRow2D list_options list_id race title Egegik
3242 UPDATE `list_options` SET `notes` = '1975-2' WHERE `title` = 'Egegik' AND `list_id` = 'race';
3243 #EndIf
3245 #IfNotRow2Dx2 list_options list_id race option_id egyptian title Egyptian
3246 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','egyptian','Egyptian','2400', '0',' 2120-4', 0);
3247 #EndIf
3249 #IfRow2D list_options list_id race option_id egyptian
3250 UPDATE `list_options` SET `notes` = '2120-4' WHERE `option_id` = 'egyptian' AND `list_id` = 'race';
3251 #EndIf
3253 #IfRow2D list_options list_id race title Egyptian
3254 UPDATE `list_options` SET `notes` = '2120-4' WHERE `title` = 'Egyptian' AND `list_id` = 'race';
3255 #EndIf
3257 #IfNotRow2Dx2 list_options list_id race option_id eklutna title Eklutna
3258 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','eklutna','Eklutna','2410', '0',' 1761-6', 0);
3259 #EndIf
3261 #IfRow2D list_options list_id race option_id eklutna
3262 UPDATE `list_options` SET `notes` = '1761-6' WHERE `option_id` = 'eklutna' AND `list_id` = 'race';
3263 #EndIf
3265 #IfRow2D list_options list_id race title Eklutna
3266 UPDATE `list_options` SET `notes` = '1761-6' WHERE `title` = 'Eklutna' AND `list_id` = 'race';
3267 #EndIf
3269 #IfNotRow2Dx2 list_options list_id race option_id ekuk title Ekuk
3270 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','ekuk','Ekuk','2420', '0',' 1915-8', 0);
3271 #EndIf
3273 #IfRow2D list_options list_id race option_id ekuk
3274 UPDATE `list_options` SET `notes` = '1915-8' WHERE `option_id` = 'ekuk' AND `list_id` = 'race';
3275 #EndIf
3277 #IfRow2D list_options list_id race title Ekuk
3278 UPDATE `list_options` SET `notes` = '1915-8' WHERE `title` = 'Ekuk' AND `list_id` = 'race';
3279 #EndIf
3281 #IfNotRow2Dx2 list_options list_id race option_id ekwok title Ekwok
3282 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','ekwok','Ekwok','2430', '0',' 1916-6', 0);
3283 #EndIf
3285 #IfRow2D list_options list_id race option_id ekwok
3286 UPDATE `list_options` SET `notes` = '1916-6' WHERE `option_id` = 'ekwok' AND `list_id` = 'race';
3287 #EndIf
3289 #IfRow2D list_options list_id race title Ekwok
3290 UPDATE `list_options` SET `notes` = '1916-6' WHERE `title` = 'Ekwok' AND `list_id` = 'race';
3291 #EndIf
3293 #IfNotRow2Dx2 list_options list_id race option_id elim title Elim
3294 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','elim','Elim','2440', '0',' 1858-0', 0);
3295 #EndIf
3297 #IfRow2D list_options list_id race option_id elim
3298 UPDATE `list_options` SET `notes` = '1858-0' WHERE `option_id` = 'elim' AND `list_id` = 'race';
3299 #EndIf
3301 #IfRow2D list_options list_id race title Elim
3302 UPDATE `list_options` SET `notes` = '1858-0' WHERE `title` = 'Elim' AND `list_id` = 'race';
3303 #EndIf
3305 #IfNotRow2Dx2 list_options list_id race option_id elko title Elko
3306 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','elko','Elko','2450', '0',' 1589-1', 0);
3307 #EndIf
3309 #IfRow2D list_options list_id race option_id elko
3310 UPDATE `list_options` SET `notes` = '1589-1' WHERE `option_id` = 'elko' AND `list_id` = 'race';
3311 #EndIf
3313 #IfRow2D list_options list_id race title Elko
3314 UPDATE `list_options` SET `notes` = '1589-1' WHERE `title` = 'Elko' AND `list_id` = 'race';
3315 #EndIf
3317 #IfNotRow2Dx2 list_options list_id race option_id ely title Ely
3318 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','ely','Ely','2460', '0',' 1590-9', 0);
3319 #EndIf
3321 #IfRow2D list_options list_id race option_id ely
3322 UPDATE `list_options` SET `notes` = '1590-9' WHERE `option_id` = 'ely' AND `list_id` = 'race';
3323 #EndIf
3325 #IfRow2D list_options list_id race title Ely
3326 UPDATE `list_options` SET `notes` = '1590-9' WHERE `title` = 'Ely' AND `list_id` = 'race';
3327 #EndIf
3329 #IfNotRow2Dx2 list_options list_id race option_id emmonak title Emmonak
3330 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','emmonak','Emmonak','2470', '0',' 1917-4', 0);
3331 #EndIf
3333 #IfRow2D list_options list_id race option_id emmonak
3334 UPDATE `list_options` SET `notes` = '1917-4' WHERE `option_id` = 'emmonak' AND `list_id` = 'race';
3335 #EndIf
3337 #IfRow2D list_options list_id race title Emmonak
3338 UPDATE `list_options` SET `notes` = '1917-4' WHERE `title` = 'Emmonak' AND `list_id` = 'race';
3339 #EndIf
3341 #IfNotRow2Dx2 list_options list_id race option_id english title English
3342 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','english','English','2480', '0',' 2110-5', 0);
3343 #EndIf
3345 #IfRow2D list_options list_id race option_id english
3346 UPDATE `list_options` SET `notes` = '2110-5' WHERE `option_id` = 'english' AND `list_id` = 'race';
3347 #EndIf
3349 #IfRow2D list_options list_id race title English
3350 UPDATE `list_options` SET `notes` = '2110-5' WHERE `title` = 'English' AND `list_id` = 'race';
3351 #EndIf
3353 #IfNotRow2Dx2 list_options list_id race option_id english_bay title English Bay
3354 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','english_bay','English Bay','2490', '0',' 1987-7', 0);
3355 #EndIf
3357 #IfRow2D list_options list_id race option_id english_bay
3358 UPDATE `list_options` SET `notes` = '1987-7' WHERE `option_id` = 'english_bay' AND `list_id` = 'race';
3359 #EndIf
3361 #IfRow2D list_options list_id race title English Bay
3362 UPDATE `list_options` SET `notes` = '1987-7' WHERE `title` = 'English Bay' AND `list_id` = 'race';
3363 #EndIf
3365 #IfNotRow2Dx2 list_options list_id race option_id eskimo title Eskimo
3366 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','eskimo','Eskimo','2500', '0',' 1840-8', 0);
3367 #EndIf
3369 #IfRow2D list_options list_id race option_id eskimo
3370 UPDATE `list_options` SET `notes` = '1840-8' WHERE `option_id` = 'eskimo' AND `list_id` = 'race';
3371 #EndIf
3373 #IfRow2D list_options list_id race title Eskimo
3374 UPDATE `list_options` SET `notes` = '1840-8' WHERE `title` = 'Eskimo' AND `list_id` = 'race';
3375 #EndIf
3377 #IfNotRow2Dx2 list_options list_id race option_id esselen title Esselen
3378 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','esselen','Esselen','2510', '0',' 1250-0', 0);
3379 #EndIf
3381 #IfRow2D list_options list_id race option_id esselen
3382 UPDATE `list_options` SET `notes` = '1250-0' WHERE `option_id` = 'esselen' AND `list_id` = 'race';
3383 #EndIf
3385 #IfRow2D list_options list_id race title Esselen
3386 UPDATE `list_options` SET `notes` = '1250-0' WHERE `title` = 'Esselen' AND `list_id` = 'race';
3387 #EndIf
3389 #IfNotRow2Dx2 list_options list_id race option_id ethiopian title Ethiopian
3390 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','ethiopian','Ethiopian','2520', '0',' 2062-8', 0);
3391 #EndIf
3393 #IfRow2D list_options list_id race option_id ethiopian
3394 UPDATE `list_options` SET `notes` = '2062-8' WHERE `option_id` = 'ethiopian' AND `list_id` = 'race';
3395 #EndIf
3397 #IfRow2D list_options list_id race title Ethiopian
3398 UPDATE `list_options` SET `notes` = '2062-8' WHERE `title` = 'Ethiopian' AND `list_id` = 'race';
3399 #EndIf
3401 #IfNotRow2Dx2 list_options list_id race option_id etowah_cherokee title Etowah Cherokee
3402 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','etowah_cherokee','Etowah Cherokee','2530', '0',' 1094-2', 0);
3403 #EndIf
3405 #IfRow2D list_options list_id race option_id etowah_cherokee
3406 UPDATE `list_options` SET `notes` = '1094-2' WHERE `option_id` = 'etowah_cherokee' AND `list_id` = 'race';
3407 #EndIf
3409 #IfRow2D list_options list_id race title Etowah Cherokee
3410 UPDATE `list_options` SET `notes` = '1094-2' WHERE `title` = 'Etowah Cherokee' AND `list_id` = 'race';
3411 #EndIf
3413 #IfNotRow2Dx2 list_options list_id race option_id european title European
3414 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','european','European','2540', '0',' 2108-9', 0);
3415 #EndIf
3417 #IfRow2D list_options list_id race option_id european
3418 UPDATE `list_options` SET `notes` = '2108-9' WHERE `option_id` = 'european' AND `list_id` = 'race';
3419 #EndIf
3421 #IfRow2D list_options list_id race title European
3422 UPDATE `list_options` SET `notes` = '2108-9' WHERE `title` = 'European' AND `list_id` = 'race';
3423 #EndIf
3425 #IfNotRow2Dx2 list_options list_id race option_id evansville title Evansville
3426 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','evansville','Evansville','2550', '0',' 1762-4', 0);
3427 #EndIf
3429 #IfRow2D list_options list_id race option_id evansville
3430 UPDATE `list_options` SET `notes` = '1762-4' WHERE `option_id` = 'evansville' AND `list_id` = 'race';
3431 #EndIf
3433 #IfRow2D list_options list_id race title Evansville
3434 UPDATE `list_options` SET `notes` = '1762-4' WHERE `title` = 'Evansville' AND `list_id` = 'race';
3435 #EndIf
3437 #IfNotRow2Dx2 list_options list_id race option_id eyak title Eyak
3438 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','eyak','Eyak','2560', '0',' 1990-1', 0);
3439 #EndIf
3441 #IfRow2D list_options list_id race option_id eyak
3442 UPDATE `list_options` SET `notes` = '1990-1' WHERE `option_id` = 'eyak' AND `list_id` = 'race';
3443 #EndIf
3445 #IfRow2D list_options list_id race title Eyak
3446 UPDATE `list_options` SET `notes` = '1990-1' WHERE `title` = 'Eyak' AND `list_id` = 'race';
3447 #EndIf
3449 #IfNotRow2Dx2 list_options list_id race option_id fallon title Fallon
3450 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','fallon','Fallon','2570', '0',' 1604-8', 0);
3451 #EndIf
3453 #IfRow2D list_options list_id race option_id fallon
3454 UPDATE `list_options` SET `notes` = '1604-8' WHERE `option_id` = 'fallon' AND `list_id` = 'race';
3455 #EndIf
3457 #IfRow2D list_options list_id race title Fallon
3458 UPDATE `list_options` SET `notes` = '1604-8' WHERE `title` = 'Fallon' AND `list_id` = 'race';
3459 #EndIf
3461 #IfNotRow2Dx2 list_options list_id race option_id false_pass title False Pass
3462 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','false_pass','False Pass','2580', '0',' 2015-6', 0);
3463 #EndIf
3465 #IfRow2D list_options list_id race option_id false_pass
3466 UPDATE `list_options` SET `notes` = '2015-6' WHERE `option_id` = 'false_pass' AND `list_id` = 'race';
3467 #EndIf
3469 #IfRow2D list_options list_id race title False Pass
3470 UPDATE `list_options` SET `notes` = '2015-6' WHERE `title` = 'False Pass' AND `list_id` = 'race';
3471 #EndIf
3473 #IfNotRow2Dx2 list_options list_id race option_id fijian title Fijian
3474 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','fijian','Fijian','2590', '0',' 2101-4', 0);
3475 #EndIf
3477 #IfRow2D list_options list_id race option_id fijian
3478 UPDATE `list_options` SET `notes` = '2101-4' WHERE `option_id` = 'fijian' AND `list_id` = 'race';
3479 #EndIf
3481 #IfRow2D list_options list_id race title Fijian
3482 UPDATE `list_options` SET `notes` = '2101-4' WHERE `title` = 'Fijian' AND `list_id` = 'race';
3483 #EndIf
3485 #IfNotRow2Dx2 list_options list_id race option_id filipino title Filipino
3486 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','filipino','Filipino','2600', '0',' 2036-2', 0);
3487 #EndIf
3489 #IfRow2D list_options list_id race option_id filipino
3490 UPDATE `list_options` SET `notes` = '2036-2' WHERE `option_id` = 'filipino' AND `list_id` = 'race';
3491 #EndIf
3493 #IfRow2D list_options list_id race title Filipino
3494 UPDATE `list_options` SET `notes` = '2036-2' WHERE `title` = 'Filipino' AND `list_id` = 'race';
3495 #EndIf
3497 #IfNotRow2Dx2 list_options list_id race option_id flandreau_santee title Flandreau Santee
3498 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','flandreau_santee','Flandreau Santee','2610', '0',' 1615-4', 0);
3499 #EndIf
3501 #IfRow2D list_options list_id race option_id flandreau_santee
3502 UPDATE `list_options` SET `notes` = '1615-4' WHERE `option_id` = 'flandreau_santee' AND `list_id` = 'race';
3503 #EndIf
3505 #IfRow2D list_options list_id race title Flandreau Santee
3506 UPDATE `list_options` SET `notes` = '1615-4' WHERE `title` = 'Flandreau Santee' AND `list_id` = 'race';
3507 #EndIf
3509 #IfNotRow2Dx2 list_options list_id race option_id florida_seminole title Florida Seminole
3510 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','florida_seminole','Florida Seminole','2620', '0',' 1569-3', 0);
3511 #EndIf
3513 #IfRow2D list_options list_id race option_id florida_seminole
3514 UPDATE `list_options` SET `notes` = '1569-3' WHERE `option_id` = 'florida_seminole' AND `list_id` = 'race';
3515 #EndIf
3517 #IfRow2D list_options list_id race title Florida Seminole
3518 UPDATE `list_options` SET `notes` = '1569-3' WHERE `title` = 'Florida Seminole' AND `list_id` = 'race';
3519 #EndIf
3521 #IfNotRow2Dx2 list_options list_id race option_id fond_du_lac title Fond du Lac
3522 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','fond_du_lac','Fond du Lac','2630', '0',' 1128-8', 0);
3523 #EndIf
3525 #IfRow2D list_options list_id race option_id fond_du_lac
3526 UPDATE `list_options` SET `notes` = '1128-8' WHERE `option_id` = 'fond_du_lac' AND `list_id` = 'race';
3527 #EndIf
3529 #IfRow2D list_options list_id race title Fond du Lac
3530 UPDATE `list_options` SET `notes` = '1128-8' WHERE `title` = 'Fond du Lac' AND `list_id` = 'race';
3531 #EndIf
3533 #IfNotRow2Dx2 list_options list_id race option_id forest_county title Forest County
3534 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','forest_county','Forest County','2640', '0',' 1480-3', 0);
3535 #EndIf
3537 #IfRow2D list_options list_id race option_id forest_county
3538 UPDATE `list_options` SET `notes` = '1480-3' WHERE `option_id` = 'forest_county' AND `list_id` = 'race';
3539 #EndIf
3541 #IfRow2D list_options list_id race title Forest County
3542 UPDATE `list_options` SET `notes` = '1480-3' WHERE `title` = 'Forest County' AND `list_id` = 'race';
3543 #EndIf
3545 #IfNotRow2Dx2 list_options list_id race option_id fort_belknap title Fort Belknap
3546 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','fort_belknap','Fort Belknap','2650', '0',' 1252-6', 0);
3547 #EndIf
3549 #IfRow2D list_options list_id race option_id fort_belknap
3550 UPDATE `list_options` SET `notes` = '1252-6' WHERE `option_id` = 'fort_belknap' AND `list_id` = 'race';
3551 #EndIf
3553 #IfRow2D list_options list_id race title Fort Belknap
3554 UPDATE `list_options` SET `notes` = '1252-6' WHERE `title` = 'Fort Belknap' AND `list_id` = 'race';
3555 #EndIf
3557 #IfNotRow2Dx2 list_options list_id race option_id fort_berthold title Fort Berthold
3558 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','fort_berthold','Fort Berthold','2660', '0',' 1254-2', 0);
3559 #EndIf
3561 #IfRow2D list_options list_id race option_id fort_berthold
3562 UPDATE `list_options` SET `notes` = '1254-2' WHERE `option_id` = 'fort_berthold' AND `list_id` = 'race';
3563 #EndIf
3565 #IfRow2D list_options list_id race title Fort Berthold
3566 UPDATE `list_options` SET `notes` = '1254-2' WHERE `title` = 'Fort Berthold' AND `list_id` = 'race';
3567 #EndIf
3569 #IfNotRow2Dx2 list_options list_id race option_id fort_bidwell title Fort Bidwell
3570 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','fort_bidwell','Fort Bidwell','2670', '0',' 1421-7', 0);
3571 #EndIf
3573 #IfRow2D list_options list_id race option_id fort_bidwell
3574 UPDATE `list_options` SET `notes` = '1421-7' WHERE `option_id` = 'fort_bidwell' AND `list_id` = 'race';
3575 #EndIf
3577 #IfRow2D list_options list_id race title Fort Bidwell
3578 UPDATE `list_options` SET `notes` = '1421-7' WHERE `title` = 'Fort Bidwell' AND `list_id` = 'race';
3579 #EndIf
3581 #IfNotRow2Dx2 list_options list_id race option_id fort_hall title Fort Hall
3582 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','fort_hall','Fort Hall','2680', '0',' 1258-3', 0);
3583 #EndIf
3585 #IfRow2D list_options list_id race option_id fort_hall
3586 UPDATE `list_options` SET `notes` = '1258-3' WHERE `option_id` = 'fort_hall' AND `list_id` = 'race';
3587 #EndIf
3589 #IfRow2D list_options list_id race title Fort Hall
3590 UPDATE `list_options` SET `notes` = '1258-3' WHERE `title` = 'Fort Hall' AND `list_id` = 'race';
3591 #EndIf
3593 #IfNotRow2Dx2 list_options list_id race option_id fort_independence title Fort Independence
3594 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','fort_independence','Fort Independence','2690', '0',' 1422-5', 0);
3595 #EndIf
3597 #IfRow2D list_options list_id race option_id fort_independence
3598 UPDATE `list_options` SET `notes` = '1422-5' WHERE `option_id` = 'fort_independence' AND `list_id` = 'race';
3599 #EndIf
3601 #IfRow2D list_options list_id race title Fort Independence
3602 UPDATE `list_options` SET `notes` = '1422-5' WHERE `title` = 'Fort Independence' AND `list_id` = 'race';
3603 #EndIf
3605 #IfNotRow2Dx2 list_options list_id race option_id fort_mcdermitt title Fort McDermitt
3606 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','fort_mcdermitt','Fort McDermitt','2700', '0',' 1605-5', 0);
3607 #EndIf
3609 #IfRow2D list_options list_id race option_id fort_mcdermitt
3610 UPDATE `list_options` SET `notes` = '1605-5' WHERE `option_id` = 'fort_mcdermitt' AND `list_id` = 'race';
3611 #EndIf
3613 #IfRow2D list_options list_id race title Fort McDermitt
3614 UPDATE `list_options` SET `notes` = '1605-5' WHERE `title` = 'Fort McDermitt' AND `list_id` = 'race';
3615 #EndIf
3617 #IfNotRow2Dx2 list_options list_id race option_id fort_mcdowell title Fort Mcdowell
3618 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','fort_mcdowell','Fort Mcdowell','2710', '0',' 1256-7', 0);
3619 #EndIf
3621 #IfRow2D list_options list_id race option_id fort_mcdowell
3622 UPDATE `list_options` SET `notes` = '1256-7' WHERE `option_id` = 'fort_mcdowell' AND `list_id` = 'race';
3623 #EndIf
3625 #IfRow2D list_options list_id race title Fort Mcdowell
3626 UPDATE `list_options` SET `notes` = '1256-7' WHERE `title` = 'Fort Mcdowell' AND `list_id` = 'race';
3627 #EndIf
3629 #IfNotRow2Dx2 list_options list_id race option_id fort_peck title Fort Peck
3630 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','fort_peck','Fort Peck','2720', '0',' 1616-2', 0);
3631 #EndIf
3633 #IfRow2D list_options list_id race option_id fort_peck
3634 UPDATE `list_options` SET `notes` = '1616-2' WHERE `option_id` = 'fort_peck' AND `list_id` = 'race';
3635 #EndIf
3637 #IfRow2D list_options list_id race title Fort Peck
3638 UPDATE `list_options` SET `notes` = '1616-2' WHERE `title` = 'Fort Peck' AND `list_id` = 'race';
3639 #EndIf
3641 #IfNotRow2Dx2 list_options list_id race option_id fort_peck_assiniboine_sioux title Fort Peck Assiniboine Sioux
3642 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','fort_peck_assiniboine_sioux','Fort Peck Assiniboine Sioux','2730', '0',' 1031-4', 0);
3643 #EndIf
3645 #IfRow2D list_options list_id race option_id fort_peck_assiniboine_sioux
3646 UPDATE `list_options` SET `notes` = '1031-4' WHERE `option_id` = 'fort_peck_assiniboine_sioux' AND `list_id` = 'race';
3647 #EndIf
3649 #IfRow2D list_options list_id race title Fort Peck Assiniboine Sioux
3650 UPDATE `list_options` SET `notes` = '1031-4' WHERE `title` = 'Fort Peck Assiniboine Sioux' AND `list_id` = 'race';
3651 #EndIf
3653 #IfNotRow2Dx2 list_options list_id race option_id fort_sill_apache title Fort Sill Apache
3654 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','fort_sill_apache','Fort Sill Apache','2740', '0',' 1012-4', 0);
3655 #EndIf
3657 #IfRow2D list_options list_id race option_id fort_sill_apache
3658 UPDATE `list_options` SET `notes` = '1012-4' WHERE `option_id` = 'fort_sill_apache' AND `list_id` = 'race';
3659 #EndIf
3661 #IfRow2D list_options list_id race title Fort Sill Apache
3662 UPDATE `list_options` SET `notes` = '1012-4' WHERE `title` = 'Fort Sill Apache' AND `list_id` = 'race';
3663 #EndIf
3665 #IfNotRow2Dx2 list_options list_id race option_id fort_yukon title Fort Yukon
3666 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','fort_yukon','Fort Yukon','2750', '0',' 1763-2', 0);
3667 #EndIf
3669 #IfRow2D list_options list_id race option_id fort_yukon
3670 UPDATE `list_options` SET `notes` = '1763-2' WHERE `option_id` = 'fort_yukon' AND `list_id` = 'race';
3671 #EndIf
3673 #IfRow2D list_options list_id race title Fort Yukon
3674 UPDATE `list_options` SET `notes` = '1763-2' WHERE `title` = 'Fort Yukon' AND `list_id` = 'race';
3675 #EndIf
3677 #IfNotRow2Dx2 list_options list_id race option_id french title French
3678 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','french','French','2760', '0',' 2111-3', 0);
3679 #EndIf
3681 #IfRow2D list_options list_id race option_id french
3682 UPDATE `list_options` SET `notes` = '2111-3' WHERE `option_id` = 'french' AND `list_id` = 'race';
3683 #EndIf
3685 #IfRow2D list_options list_id race title French
3686 UPDATE `list_options` SET `notes` = '2111-3' WHERE `title` = 'French' AND `list_id` = 'race';
3687 #EndIf
3689 #IfNotRow2Dx2 list_options list_id race option_id french_american_indian title French American Indian
3690 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','french_american_indian','French American Indian','2770', '0',' 1071-0', 0);
3691 #EndIf
3693 #IfRow2D list_options list_id race option_id french_american_indian
3694 UPDATE `list_options` SET `notes` = '1071-0' WHERE `option_id` = 'french_american_indian' AND `list_id` = 'race';
3695 #EndIf
3697 #IfRow2D list_options list_id race title French American Indian
3698 UPDATE `list_options` SET `notes` = '1071-0' WHERE `title` = 'French American Indian' AND `list_id` = 'race';
3699 #EndIf
3701 #IfNotRow2Dx2 list_options list_id race option_id gabrieleno title Gabrieleno
3702 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','gabrieleno','Gabrieleno','2780', '0',' 1260-9', 0);
3703 #EndIf
3705 #IfRow2D list_options list_id race option_id gabrieleno
3706 UPDATE `list_options` SET `notes` = '1260-9' WHERE `option_id` = 'gabrieleno' AND `list_id` = 'race';
3707 #EndIf
3709 #IfRow2D list_options list_id race title Gabrieleno
3710 UPDATE `list_options` SET `notes` = '1260-9' WHERE `title` = 'Gabrieleno' AND `list_id` = 'race';
3711 #EndIf
3713 #IfNotRow2Dx2 list_options list_id race option_id gakona title Gakona
3714 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','gakona','Gakona','2790', '0',' 1764-0', 0);
3715 #EndIf
3717 #IfRow2D list_options list_id race option_id gakona
3718 UPDATE `list_options` SET `notes` = '1764-0' WHERE `option_id` = 'gakona' AND `list_id` = 'race';
3719 #EndIf
3721 #IfRow2D list_options list_id race title Gakona
3722 UPDATE `list_options` SET `notes` = '1764-0' WHERE `title` = 'Gakona' AND `list_id` = 'race';
3723 #EndIf
3725 #IfNotRow2Dx2 list_options list_id race option_id galena title Galena
3726 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','galena','Galena','2800', '0',' 1765-7', 0);
3727 #EndIf
3729 #IfRow2D list_options list_id race option_id galena
3730 UPDATE `list_options` SET `notes` = '1765-7' WHERE `option_id` = 'galena' AND `list_id` = 'race';
3731 #EndIf
3733 #IfRow2D list_options list_id race title Galena
3734 UPDATE `list_options` SET `notes` = '1765-7' WHERE `title` = 'Galena' AND `list_id` = 'race';
3735 #EndIf
3737 #IfNotRow2Dx2 list_options list_id race option_id gambell title Gambell
3738 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','gambell','Gambell','2810', '0',' 1892-9', 0);
3739 #EndIf
3741 #IfRow2D list_options list_id race option_id gambell
3742 UPDATE `list_options` SET `notes` = '1892-9' WHERE `option_id` = 'gambell' AND `list_id` = 'race';
3743 #EndIf
3745 #IfRow2D list_options list_id race title Gambell
3746 UPDATE `list_options` SET `notes` = '1892-9' WHERE `title` = 'Gambell' AND `list_id` = 'race';
3747 #EndIf
3749 #IfNotRow2Dx2 list_options list_id race option_id gay_head_wampanoag title Gay Head Wampanoag
3750 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','gay_head_wampanoag','Gay Head Wampanoag','2820', '0',' 1680-8', 0);
3751 #EndIf
3753 #IfRow2D list_options list_id race option_id gay_head_wampanoag
3754 UPDATE `list_options` SET `notes` = '1680-8' WHERE `option_id` = 'gay_head_wampanoag' AND `list_id` = 'race';
3755 #EndIf
3757 #IfRow2D list_options list_id race title Gay Head Wampanoag
3758 UPDATE `list_options` SET `notes` = '1680-8' WHERE `title` = 'Gay Head Wampanoag' AND `list_id` = 'race';
3759 #EndIf
3761 #IfNotRow2Dx2 list_options list_id race option_id georgetown_eastern_tribes title Georgetown (Eastern Tribes)
3762 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','georgetown_eastern_tribes','Georgetown (Eastern Tribes)','2830', '0',' 1236-9', 0);
3763 #EndIf
3765 #IfRow2D list_options list_id race option_id georgetown_eastern_tribes
3766 UPDATE `list_options` SET `notes` = '1236-9' WHERE `option_id` = 'georgetown_eastern_tribes' AND `list_id` = 'race';
3767 #EndIf
3769 #IfRow2D list_options list_id race title Georgetown (Eastern Tribes)
3770 UPDATE `list_options` SET `notes` = '1236-9' WHERE `title` = 'Georgetown (Eastern Tribes)' AND `list_id` = 'race';
3771 #EndIf
3773 #IfNotRow2Dx2 list_options list_id race option_id georgetown_yupik-eskimo title Georgetown (Yupik-Eskimo)
3774 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','georgetown_yupik-eskimo','Georgetown (Yupik-Eskimo)','2840', '0',' 1962-0', 0);
3775 #EndIf
3777 #IfRow2D list_options list_id race option_id georgetown_yupik-eskimo
3778 UPDATE `list_options` SET `notes` = '1962-0' WHERE `option_id` = 'georgetown_yupik-eskimo' AND `list_id` = 'race';
3779 #EndIf
3781 #IfRow2D list_options list_id race title Georgetown (Yupik-Eskimo)
3782 UPDATE `list_options` SET `notes` = '1962-0' WHERE `title` = 'Georgetown (Yupik-Eskimo)' AND `list_id` = 'race';
3783 #EndIf
3785 #IfNotRow2Dx2 list_options list_id race option_id german title German
3786 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','german','German','2850', '0',' 2112-1', 0);
3787 #EndIf
3789 #IfRow2D list_options list_id race option_id german
3790 UPDATE `list_options` SET `notes` = '2112-1' WHERE `option_id` = 'german' AND `list_id` = 'race';
3791 #EndIf
3793 #IfRow2D list_options list_id race title German
3794 UPDATE `list_options` SET `notes` = '2112-1' WHERE `title` = 'German' AND `list_id` = 'race';
3795 #EndIf
3797 #IfNotRow2Dx2 list_options list_id race option_id gila_bend title Gila Bend
3798 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','gila_bend','Gila Bend','2860', '0',' 1655-0', 0);
3799 #EndIf
3801 #IfRow2D list_options list_id race option_id gila_bend
3802 UPDATE `list_options` SET `notes` = '1655-0' WHERE `option_id` = 'gila_bend' AND `list_id` = 'race';
3803 #EndIf
3805 #IfRow2D list_options list_id race title Gila Bend
3806 UPDATE `list_options` SET `notes` = '1655-0' WHERE `title` = 'Gila Bend' AND `list_id` = 'race';
3807 #EndIf
3809 #IfNotRow2Dx2 list_options list_id race option_id gila_river_pima-maricopa title Gila River Pima-Maricopa
3810 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','gila_river_pima-maricopa','Gila River Pima-Maricopa','2870', '0',' 1457-1', 0);
3811 #EndIf
3813 #IfRow2D list_options list_id race option_id gila_river_pima-maricopa
3814 UPDATE `list_options` SET `notes` = '1457-1' WHERE `option_id` = 'gila_river_pima-maricopa' AND `list_id` = 'race';
3815 #EndIf
3817 #IfRow2D list_options list_id race title Gila River Pima-Maricopa
3818 UPDATE `list_options` SET `notes` = '1457-1' WHERE `title` = 'Gila River Pima-Maricopa' AND `list_id` = 'race';
3819 #EndIf
3821 #IfNotRow2Dx2 list_options list_id race option_id golovin title Golovin
3822 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','golovin','Golovin','2880', '0',' 1859-8', 0);
3823 #EndIf
3825 #IfRow2D list_options list_id race option_id golovin
3826 UPDATE `list_options` SET `notes` = '1859-8' WHERE `option_id` = 'golovin' AND `list_id` = 'race';
3827 #EndIf
3829 #IfRow2D list_options list_id race title Golovin
3830 UPDATE `list_options` SET `notes` = '1859-8' WHERE `title` = 'Golovin' AND `list_id` = 'race';
3831 #EndIf
3833 #IfNotRow2Dx2 list_options list_id race option_id goodnews_bay title Goodnews Bay
3834 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','goodnews_bay','Goodnews Bay','2890', '0',' 1918-2', 0);
3835 #EndIf
3837 #IfRow2D list_options list_id race option_id goodnews_bay
3838 UPDATE `list_options` SET `notes` = '1918-2' WHERE `option_id` = 'goodnews_bay' AND `list_id` = 'race';
3839 #EndIf
3841 #IfRow2D list_options list_id race title Goodnews Bay
3842 UPDATE `list_options` SET `notes` = '1918-2' WHERE `title` = 'Goodnews Bay' AND `list_id` = 'race';
3843 #EndIf
3845 #IfNotRow2Dx2 list_options list_id race option_id goshute title Goshute
3846 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','goshute','Goshute','2900', '0',' 1591-7', 0);
3847 #EndIf
3849 #IfRow2D list_options list_id race option_id goshute
3850 UPDATE `list_options` SET `notes` = '1591-7' WHERE `option_id` = 'goshute' AND `list_id` = 'race';
3851 #EndIf
3853 #IfRow2D list_options list_id race title Goshute
3854 UPDATE `list_options` SET `notes` = '1591-7' WHERE `title` = 'Goshute' AND `list_id` = 'race';
3855 #EndIf
3857 #IfNotRow2Dx2 list_options list_id race option_id grand_portage title Grand Portage
3858 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','grand_portage','Grand Portage','2910', '0',' 1129-6', 0);
3859 #EndIf
3861 #IfRow2D list_options list_id race option_id grand_portage
3862 UPDATE `list_options` SET `notes` = '1129-6' WHERE `option_id` = 'grand_portage' AND `list_id` = 'race';
3863 #EndIf
3865 #IfRow2D list_options list_id race title Grand Portage
3866 UPDATE `list_options` SET `notes` = '1129-6' WHERE `title` = 'Grand Portage' AND `list_id` = 'race';
3867 #EndIf
3869 #IfNotRow2Dx2 list_options list_id race option_id grand_ronde title Grand Ronde
3870 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','grand_ronde','Grand Ronde','2920', '0',' 1262-5', 0);
3871 #EndIf
3873 #IfRow2D list_options list_id race option_id grand_ronde
3874 UPDATE `list_options` SET `notes` = '1262-5' WHERE `option_id` = 'grand_ronde' AND `list_id` = 'race';
3875 #EndIf
3877 #IfRow2D list_options list_id race title Grand Ronde
3878 UPDATE `list_options` SET `notes` = '1262-5' WHERE `title` = 'Grand Ronde' AND `list_id` = 'race';
3879 #EndIf
3881 #IfNotRow2Dx2 list_options list_id race option_id grand_traverse_band title Grand Traverse Band of Ottawa/Chippewa
3882 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','grand_traverse_band','Grand Traverse Band of Ottawa/Chippewa','2930', '0',' 1130-4', 0);
3883 #EndIf
3885 #IfRow2D list_options list_id race option_id grand_traverse_band
3886 UPDATE `list_options` SET `notes` = '1130-4' WHERE `option_id` = 'grand_traverse_band' AND `list_id` = 'race';
3887 #EndIf
3889 #IfRow2D list_options list_id race title Grand Traverse Band of Ottawa/Chippewa
3890 UPDATE `list_options` SET `notes` = '1130-4' WHERE `title` = 'Grand Traverse Band of Ottawa/Chippewa' AND `list_id` = 'race';
3891 #EndIf
3893 #IfNotRow2Dx2 list_options list_id race option_id grayling title Grayling
3894 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','grayling','Grayling','2940', '0',' 1766-5', 0);
3895 #EndIf
3897 #IfRow2D list_options list_id race option_id grayling
3898 UPDATE `list_options` SET `notes` = '1766-5' WHERE `option_id` = 'grayling' AND `list_id` = 'race';
3899 #EndIf
3901 #IfRow2D list_options list_id race title Grayling
3902 UPDATE `list_options` SET `notes` = '1766-5' WHERE `title` = 'Grayling' AND `list_id` = 'race';
3903 #EndIf
3905 #IfNotRow2Dx2 list_options list_id race option_id greenland_eskimo title Greenland Eskimo
3906 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','greenland_eskimo','Greenland Eskimo','2950', '0',' 1842-4', 0);
3907 #EndIf
3909 #IfRow2D list_options list_id race option_id greenland_eskimo
3910 UPDATE `list_options` SET `notes` = '1842-4' WHERE `option_id` = 'greenland_eskimo' AND `list_id` = 'race';
3911 #EndIf
3913 #IfRow2D list_options list_id race title Greenland Eskimo
3914 UPDATE `list_options` SET `notes` = '1842-4' WHERE `title` = 'Greenland Eskimo' AND `list_id` = 'race';
3915 #EndIf
3917 #IfNotRow2Dx2 list_options list_id race option_id gros_ventres title Gros Ventres
3918 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','gros_ventres','Gros Ventres','2960', '0',' 1264-1', 0);
3919 #EndIf
3921 #IfRow2D list_options list_id race option_id gros_ventres
3922 UPDATE `list_options` SET `notes` = '1264-1' WHERE `option_id` = 'gros_ventres' AND `list_id` = 'race';
3923 #EndIf
3925 #IfRow2D list_options list_id race title Gros Ventres
3926 UPDATE `list_options` SET `notes` = '1264-1' WHERE `title` = 'Gros Ventres' AND `list_id` = 'race';
3927 #EndIf
3929 #IfNotRow2Dx2 list_options list_id race option_id guamanian title Guamanian
3930 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','guamanian','Guamanian','2970', '0',' 2087-5', 0);
3931 #EndIf
3933 #IfRow2D list_options list_id race option_id guamanian
3934 UPDATE `list_options` SET `notes` = '2087-5' WHERE `option_id` = 'guamanian' AND `list_id` = 'race';
3935 #EndIf
3937 #IfRow2D list_options list_id race title Guamanian
3938 UPDATE `list_options` SET `notes` = '2087-5' WHERE `title` = 'Guamanian' AND `list_id` = 'race';
3939 #EndIf
3941 #IfNotRow2Dx2 list_options list_id race option_id guamanian_or_chamorro title Guamanian or Chamorro
3942 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','guamanian_or_chamorro','Guamanian or Chamorro','2980', '0',' 2086-7', 0);
3943 #EndIf
3945 #IfRow2D list_options list_id race option_id guamanian_or_chamorro
3946 UPDATE `list_options` SET `notes` = '2086-7' WHERE `option_id` = 'guamanian_or_chamorro' AND `list_id` = 'race';
3947 #EndIf
3949 #IfRow2D list_options list_id race title Guamanian or Chamorro
3950 UPDATE `list_options` SET `notes` = '2086-7' WHERE `title` = 'Guamanian or Chamorro' AND `list_id` = 'race';
3951 #EndIf
3953 #IfNotRow2Dx2 list_options list_id race option_id gulkana title Gulkana
3954 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','gulkana','Gulkana','2990', '0',' 1767-3', 0);
3955 #EndIf
3957 #IfRow2D list_options list_id race option_id gulkana
3958 UPDATE `list_options` SET `notes` = '1767-3' WHERE `option_id` = 'gulkana' AND `list_id` = 'race';
3959 #EndIf
3961 #IfRow2D list_options list_id race title Gulkana
3962 UPDATE `list_options` SET `notes` = '1767-3' WHERE `title` = 'Gulkana' AND `list_id` = 'race';
3963 #EndIf
3965 #IfNotRow2Dx2 list_options list_id race option_id haida title Haida
3966 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','haida','Haida','3000', '0',' 1820-0', 0);
3967 #EndIf
3969 #IfRow2D list_options list_id race option_id haida
3970 UPDATE `list_options` SET `notes` = '1820-0' WHERE `option_id` = 'haida' AND `list_id` = 'race';
3971 #EndIf
3973 #IfRow2D list_options list_id race title Haida
3974 UPDATE `list_options` SET `notes` = '1820-0' WHERE `title` = 'Haida' AND `list_id` = 'race';
3975 #EndIf
3977 #IfNotRow2Dx2 list_options list_id race option_id haitian title Haitian
3978 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','haitian','Haitian','3010', '0',' 2071-9', 0);
3979 #EndIf
3981 #IfRow2D list_options list_id race option_id haitian
3982 UPDATE `list_options` SET `notes` = '2071-9' WHERE `option_id` = 'haitian' AND `list_id` = 'race';
3983 #EndIf
3985 #IfRow2D list_options list_id race title Haitian
3986 UPDATE `list_options` SET `notes` = '2071-9' WHERE `title` = 'Haitian' AND `list_id` = 'race';
3987 #EndIf
3989 #IfNotRow2Dx2 list_options list_id race option_id haliwa title Haliwa
3990 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','haliwa','Haliwa','3020', '0',' 1267-4', 0);
3991 #EndIf
3993 #IfRow2D list_options list_id race option_id haliwa
3994 UPDATE `list_options` SET `notes` = '1267-4' WHERE `option_id` = 'haliwa' AND `list_id` = 'race';
3995 #EndIf
3997 #IfRow2D list_options list_id race title Haliwa
3998 UPDATE `list_options` SET `notes` = '1267-4' WHERE `title` = 'Haliwa' AND `list_id` = 'race';
3999 #EndIf
4001 #IfNotRow2Dx2 list_options list_id race option_id hannahville title Hannahville
4002 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','hannahville','Hannahville','3030', '0',' 1481-1', 0);
4003 #EndIf
4005 #IfRow2D list_options list_id race option_id hannahville
4006 UPDATE `list_options` SET `notes` = '1481-1' WHERE `option_id` = 'hannahville' AND `list_id` = 'race';
4007 #EndIf
4009 #IfRow2D list_options list_id race title Hannahville
4010 UPDATE `list_options` SET `notes` = '1481-1' WHERE `title` = 'Hannahville' AND `list_id` = 'race';
4011 #EndIf
4013 #IfNotRow2Dx2 list_options list_id race option_id havasupai title Havasupai
4014 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','havasupai','Havasupai','3040', '0',' 1726-9', 0);
4015 #EndIf
4017 #IfRow2D list_options list_id race option_id havasupai
4018 UPDATE `list_options` SET `notes` = '1726-9' WHERE `option_id` = 'havasupai' AND `list_id` = 'race';
4019 #EndIf
4021 #IfRow2D list_options list_id race title Havasupai
4022 UPDATE `list_options` SET `notes` = '1726-9' WHERE `title` = 'Havasupai' AND `list_id` = 'race';
4023 #EndIf
4025 #IfNotRow2Dx2 list_options list_id race option_id healy_lake title Healy Lake
4026 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','healy_lake','Healy Lake','3050', '0',' 1768-1', 0);
4027 #EndIf
4029 #IfRow2D list_options list_id race option_id healy_lake
4030 UPDATE `list_options` SET `notes` = '1768-1' WHERE `option_id` = 'healy_lake' AND `list_id` = 'race';
4031 #EndIf
4033 #IfRow2D list_options list_id race title Healy Lake
4034 UPDATE `list_options` SET `notes` = '1768-1' WHERE `title` = 'Healy Lake' AND `list_id` = 'race';
4035 #EndIf
4037 #IfNotRow2Dx2 list_options list_id race option_id hidatsa title Hidatsa
4038 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','hidatsa','Hidatsa','3060', '0',' 1269-0', 0);
4039 #EndIf
4041 #IfRow2D list_options list_id race option_id hidatsa
4042 UPDATE `list_options` SET `notes` = '1269-0' WHERE `option_id` = 'hidatsa' AND `list_id` = 'race';
4043 #EndIf
4045 #IfRow2D list_options list_id race title Hidatsa
4046 UPDATE `list_options` SET `notes` = '1269-0' WHERE `title` = 'Hidatsa' AND `list_id` = 'race';
4047 #EndIf
4049 #IfNotRow2Dx2 list_options list_id race option_id hmong title Hmong
4050 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','hmong','Hmong','3070', '0',' 2037-0', 0);
4051 #EndIf
4053 #IfRow2D list_options list_id race option_id hmong
4054 UPDATE `list_options` SET `notes` = '2037-0' WHERE `option_id` = 'hmong' AND `list_id` = 'race';
4055 #EndIf
4057 #IfRow2D list_options list_id race title Hmong
4058 UPDATE `list_options` SET `notes` = '2037-0' WHERE `title` = 'Hmong' AND `list_id` = 'race';
4059 #EndIf
4061 #IfNotRow2Dx2 list_options list_id race option_id ho-chunk title Ho-chunk
4062 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','ho-chunk','Ho-chunk','3080', '0',' 1697-2', 0);
4063 #EndIf
4065 #IfRow2D list_options list_id race option_id ho-chunk
4066 UPDATE `list_options` SET `notes` = '1697-2' WHERE `option_id` = 'ho-chunk' AND `list_id` = 'race';
4067 #EndIf
4069 #IfRow2D list_options list_id race title Ho-chunk
4070 UPDATE `list_options` SET `notes` = '1697-2' WHERE `title` = 'Ho-chunk' AND `list_id` = 'race';
4071 #EndIf
4073 #IfNotRow2Dx2 list_options list_id race option_id hoh title Hoh
4074 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','hoh','Hoh','3090', '0',' 1083-5', 0);
4075 #EndIf
4077 #IfRow2D list_options list_id race option_id hoh
4078 UPDATE `list_options` SET `notes` = '1083-5' WHERE `option_id` = 'hoh' AND `list_id` = 'race';
4079 #EndIf
4081 #IfRow2D list_options list_id race title Hoh
4082 UPDATE `list_options` SET `notes` = '1083-5' WHERE `title` = 'Hoh' AND `list_id` = 'race';
4083 #EndIf
4085 #IfNotRow2Dx2 list_options list_id race option_id hollywood_seminole title Hollywood Seminole
4086 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','hollywood_seminole','Hollywood Seminole','3100', '0',' 1570-1', 0);
4087 #EndIf
4089 #IfRow2D list_options list_id race option_id hollywood_seminole
4090 UPDATE `list_options` SET `notes` = '1570-1' WHERE `option_id` = 'hollywood_seminole' AND `list_id` = 'race';
4091 #EndIf
4093 #IfRow2D list_options list_id race title Hollywood Seminole
4094 UPDATE `list_options` SET `notes` = '1570-1' WHERE `title` = 'Hollywood Seminole' AND `list_id` = 'race';
4095 #EndIf
4097 #IfNotRow2Dx2 list_options list_id race option_id holy_cross title Holy Cross
4098 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','holy_cross','Holy Cross','3110', '0',' 1769-9', 0);
4099 #EndIf
4101 #IfRow2D list_options list_id race option_id holy_cross
4102 UPDATE `list_options` SET `notes` = '1769-9' WHERE `option_id` = 'holy_cross' AND `list_id` = 'race';
4103 #EndIf
4105 #IfRow2D list_options list_id race title Holy Cross
4106 UPDATE `list_options` SET `notes` = '1769-9' WHERE `title` = 'Holy Cross' AND `list_id` = 'race';
4107 #EndIf
4109 #IfNotRow2Dx2 list_options list_id race option_id hoonah title Hoonah
4110 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','hoonah','Hoonah','3120', '0',' 1821-8', 0);
4111 #EndIf
4113 #IfRow2D list_options list_id race option_id hoonah
4114 UPDATE `list_options` SET `notes` = '1821-8' WHERE `option_id` = 'hoonah' AND `list_id` = 'race';
4115 #EndIf
4117 #IfRow2D list_options list_id race title Hoonah
4118 UPDATE `list_options` SET `notes` = '1821-8' WHERE `title` = 'Hoonah' AND `list_id` = 'race';
4119 #EndIf
4121 #IfNotRow2Dx2 list_options list_id race option_id hoopa title Hoopa
4122 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','hoopa','Hoopa','3130', '0',' 1271-6', 0);
4123 #EndIf
4125 #IfRow2D list_options list_id race option_id hoopa
4126 UPDATE `list_options` SET `notes` = '1271-6' WHERE `option_id` = 'hoopa' AND `list_id` = 'race';
4127 #EndIf
4129 #IfRow2D list_options list_id race title Hoopa
4130 UPDATE `list_options` SET `notes` = '1271-6' WHERE `title` = 'Hoopa' AND `list_id` = 'race';
4131 #EndIf
4133 #IfNotRow2Dx2 list_options list_id race option_id hoopa_extension title Hoopa Extension
4134 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','hoopa_extension','Hoopa Extension','3140', '0',' 1275-7', 0);
4135 #EndIf
4137 #IfRow2D list_options list_id race option_id hoopa_extension
4138 UPDATE `list_options` SET `notes` = '1275-7' WHERE `option_id` = 'hoopa_extension' AND `list_id` = 'race';
4139 #EndIf
4141 #IfRow2D list_options list_id race title Hoopa Extension
4142 UPDATE `list_options` SET `notes` = '1275-7' WHERE `title` = 'Hoopa Extension' AND `list_id` = 'race';
4143 #EndIf
4145 #IfNotRow2Dx2 list_options list_id race option_id hooper_bay title Hooper Bay
4146 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','hooper_bay','Hooper Bay','3150', '0',' 1919-0', 0);
4147 #EndIf
4149 #IfRow2D list_options list_id race option_id hooper_bay
4150 UPDATE `list_options` SET `notes` = '1919-0' WHERE `option_id` = 'hooper_bay' AND `list_id` = 'race';
4151 #EndIf
4153 #IfRow2D list_options list_id race title Hooper Bay
4154 UPDATE `list_options` SET `notes` = '1919-0' WHERE `title` = 'Hooper Bay' AND `list_id` = 'race';
4155 #EndIf
4157 #IfNotRow2Dx2 list_options list_id race option_id hopi title Hopi
4158 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','hopi','Hopi','3160', '0',' 1493-6', 0);
4159 #EndIf
4161 #IfRow2D list_options list_id race option_id hopi
4162 UPDATE `list_options` SET `notes` = '1493-6' WHERE `option_id` = 'hopi' AND `list_id` = 'race';
4163 #EndIf
4165 #IfRow2D list_options list_id race title Hopi
4166 UPDATE `list_options` SET `notes` = '1493-6' WHERE `title` = 'Hopi' AND `list_id` = 'race';
4167 #EndIf
4169 #IfNotRow2Dx2 list_options list_id race option_id houma title Houma
4170 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','houma','Houma','3170', '0',' 1277-3', 0);
4171 #EndIf
4173 #IfRow2D list_options list_id race option_id houma
4174 UPDATE `list_options` SET `notes` = '1277-3' WHERE `option_id` = 'houma' AND `list_id` = 'race';
4175 #EndIf
4177 #IfRow2D list_options list_id race title Houma
4178 UPDATE `list_options` SET `notes` = '1277-3' WHERE `title` = 'Houma' AND `list_id` = 'race';
4179 #EndIf
4181 #IfNotRow2Dx2 list_options list_id race option_id hualapai title Hualapai
4182 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','hualapai','Hualapai','3180', '0',' 1727-7', 0);
4183 #EndIf
4185 #IfRow2D list_options list_id race option_id hualapai
4186 UPDATE `list_options` SET `notes` = '1727-7' WHERE `option_id` = 'hualapai' AND `list_id` = 'race';
4187 #EndIf
4189 #IfRow2D list_options list_id race title Hualapai
4190 UPDATE `list_options` SET `notes` = '1727-7' WHERE `title` = 'Hualapai' AND `list_id` = 'race';
4191 #EndIf
4193 #IfNotRow2Dx2 list_options list_id race option_id hughes title Hughes
4194 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','hughes','Hughes','3190', '0',' 1770-7', 0);
4195 #EndIf
4197 #IfRow2D list_options list_id race option_id hughes
4198 UPDATE `list_options` SET `notes` = '1770-7' WHERE `option_id` = 'hughes' AND `list_id` = 'race';
4199 #EndIf
4201 #IfRow2D list_options list_id race title Hughes
4202 UPDATE `list_options` SET `notes` = '1770-7' WHERE `title` = 'Hughes' AND `list_id` = 'race';
4203 #EndIf
4205 #IfNotRow2Dx2 list_options list_id race option_id huron_potawatomi title Huron Potawatomi
4206 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','huron_potawatomi','Huron Potawatomi','3200', '0',' 1482-9', 0);
4207 #EndIf
4209 #IfRow2D list_options list_id race option_id huron_potawatomi
4210 UPDATE `list_options` SET `notes` = '1482-9' WHERE `option_id` = 'huron_potawatomi' AND `list_id` = 'race';
4211 #EndIf
4213 #IfRow2D list_options list_id race title Huron Potawatomi
4214 UPDATE `list_options` SET `notes` = '1482-9' WHERE `title` = 'Huron Potawatomi' AND `list_id` = 'race';
4215 #EndIf
4217 #IfNotRow2Dx2 list_options list_id race option_id huslia title Huslia
4218 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','huslia','Huslia','3210', '0',' 1771-5', 0);
4219 #EndIf
4221 #IfRow2D list_options list_id race option_id huslia
4222 UPDATE `list_options` SET `notes` = '1771-5' WHERE `option_id` = 'huslia' AND `list_id` = 'race';
4223 #EndIf
4225 #IfRow2D list_options list_id race title Huslia
4226 UPDATE `list_options` SET `notes` = '1771-5' WHERE `title` = 'Huslia' AND `list_id` = 'race';
4227 #EndIf
4229 #IfNotRow2Dx2 list_options list_id race option_id hydaburg title Hydaburg
4230 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','hydaburg','Hydaburg','3220', '0',' 1822-6', 0);
4231 #EndIf
4233 #IfRow2D list_options list_id race option_id hydaburg
4234 UPDATE `list_options` SET `notes` = '1822-6' WHERE `option_id` = 'hydaburg' AND `list_id` = 'race';
4235 #EndIf
4237 #IfRow2D list_options list_id race title Hydaburg
4238 UPDATE `list_options` SET `notes` = '1822-6' WHERE `title` = 'Hydaburg' AND `list_id` = 'race';
4239 #EndIf
4241 #IfNotRow2Dx2 list_options list_id race option_id igiugig title Igiugig
4242 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','igiugig','Igiugig','3230', '0',' 1976-0', 0);
4243 #EndIf
4245 #IfRow2D list_options list_id race option_id igiugig
4246 UPDATE `list_options` SET `notes` = '1976-0' WHERE `option_id` = 'igiugig' AND `list_id` = 'race';
4247 #EndIf
4249 #IfRow2D list_options list_id race title Igiugig
4250 UPDATE `list_options` SET `notes` = '1976-0' WHERE `title` = 'Igiugig' AND `list_id` = 'race';
4251 #EndIf
4253 #IfNotRow2Dx2 list_options list_id race option_id iliamna title Iliamna
4254 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','iliamna','Iliamna','3240', '0',' 1772-3', 0);
4255 #EndIf
4257 #IfRow2D list_options list_id race option_id iliamna
4258 UPDATE `list_options` SET `notes` = '1772-3' WHERE `option_id` = 'iliamna' AND `list_id` = 'race';
4259 #EndIf
4261 #IfRow2D list_options list_id race title Iliamna
4262 UPDATE `list_options` SET `notes` = '1772-3' WHERE `title` = 'Iliamna' AND `list_id` = 'race';
4263 #EndIf
4265 #IfNotRow2Dx2 list_options list_id race option_id illinois_miami title Illinois Miami
4266 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','illinois_miami','Illinois Miami','3250', '0',' 1359-9', 0);
4267 #EndIf
4269 #IfRow2D list_options list_id race option_id illinois_miami
4270 UPDATE `list_options` SET `notes` = '1359-9' WHERE `option_id` = 'illinois_miami' AND `list_id` = 'race';
4271 #EndIf
4273 #IfRow2D list_options list_id race title Illinois Miami
4274 UPDATE `list_options` SET `notes` = '1359-9' WHERE `title` = 'Illinois Miami' AND `list_id` = 'race';
4275 #EndIf
4277 #IfNotRow2Dx2 list_options list_id race option_id inaja-cosmit title Inaja-Cosmit
4278 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','inaja-cosmit','Inaja-Cosmit','3260', '0',' 1279-9', 0);
4279 #EndIf
4281 #IfRow2D list_options list_id race option_id inaja-cosmit
4282 UPDATE `list_options` SET `notes` = '1279-9' WHERE `option_id` = 'inaja-cosmit' AND `list_id` = 'race';
4283 #EndIf
4285 #IfRow2D list_options list_id race title Inaja-Cosmit
4286 UPDATE `list_options` SET `notes` = '1279-9' WHERE `title` = 'Inaja-Cosmit' AND `list_id` = 'race';
4287 #EndIf
4289 #IfNotRow2Dx2 list_options list_id race option_id inalik_diomede title Inalik Diomede
4290 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','inalik_diomede','Inalik Diomede','3270', '0',' 1860-6', 0);
4291 #EndIf
4293 #IfRow2D list_options list_id race option_id inalik_diomede
4294 UPDATE `list_options` SET `notes` = '1860-6' WHERE `option_id` = 'inalik_diomede' AND `list_id` = 'race';
4295 #EndIf
4297 #IfRow2D list_options list_id race title Inalik Diomede
4298 UPDATE `list_options` SET `notes` = '1860-6' WHERE `title` = 'Inalik Diomede' AND `list_id` = 'race';
4299 #EndIf
4301 #IfNotRow2Dx2 list_options list_id race option_id indian_township title Indian Township
4302 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','indian_township','Indian Township','3280', '0',' 1442-3', 0);
4303 #EndIf
4305 #IfRow2D list_options list_id race option_id indian_township
4306 UPDATE `list_options` SET `notes` = '1442-3' WHERE `option_id` = 'indian_township' AND `list_id` = 'race';
4307 #EndIf
4309 #IfRow2D list_options list_id race title Indian Township
4310 UPDATE `list_options` SET `notes` = '1442-3' WHERE `title` = 'Indian Township' AND `list_id` = 'race';
4311 #EndIf
4313 #IfNotRow2Dx2 list_options list_id race option_id indiana_miami title Indiana Miami
4314 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','indiana_miami','Indiana Miami','3290', '0',' 1360-7', 0);
4315 #EndIf
4317 #IfRow2D list_options list_id race option_id indiana_miami
4318 UPDATE `list_options` SET `notes` = '1360-7' WHERE `option_id` = 'indiana_miami' AND `list_id` = 'race';
4319 #EndIf
4321 #IfRow2D list_options list_id race title Indiana Miami
4322 UPDATE `list_options` SET `notes` = '1360-7' WHERE `title` = 'Indiana Miami' AND `list_id` = 'race';
4323 #EndIf
4325 #IfNotRow2Dx2 list_options list_id race option_id indonesian title Indonesian
4326 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','indonesian','Indonesian','3300', '0',' 2038-8', 0);
4327 #EndIf
4329 #IfRow2D list_options list_id race option_id indonesian
4330 UPDATE `list_options` SET `notes` = '2038-8' WHERE `option_id` = 'indonesian' AND `list_id` = 'race';
4331 #EndIf
4333 #IfRow2D list_options list_id race title Indonesian
4334 UPDATE `list_options` SET `notes` = '2038-8' WHERE `title` = 'Indonesian' AND `list_id` = 'race';
4335 #EndIf
4337 #IfNotRow2Dx2 list_options list_id race option_id inupiaq title Inupiaq
4338 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','inupiaq','Inupiaq','3310', '0',' 1861-4', 0);
4339 #EndIf
4341 #IfRow2D list_options list_id race option_id inupiaq
4342 UPDATE `list_options` SET `notes` = '1861-4' WHERE `option_id` = 'inupiaq' AND `list_id` = 'race';
4343 #EndIf
4345 #IfRow2D list_options list_id race title Inupiaq
4346 UPDATE `list_options` SET `notes` = '1861-4' WHERE `title` = 'Inupiaq' AND `list_id` = 'race';
4347 #EndIf
4349 #IfNotRow2Dx2 list_options list_id race option_id inupiat_eskimo title Inupiat Eskimo
4350 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','inupiat_eskimo','Inupiat Eskimo','3320', '0',' 1844-0', 0);
4351 #EndIf
4353 #IfRow2D list_options list_id race option_id inupiat_eskimo
4354 UPDATE `list_options` SET `notes` = '1844-0' WHERE `option_id` = 'inupiat_eskimo' AND `list_id` = 'race';
4355 #EndIf
4357 #IfRow2D list_options list_id race title Inupiat Eskimo
4358 UPDATE `list_options` SET `notes` = '1844-0' WHERE `title` = 'Inupiat Eskimo' AND `list_id` = 'race';
4359 #EndIf
4361 #IfNotRow2Dx2 list_options list_id race option_id iowa title Iowa
4362 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','iowa','Iowa','3330', '0',' 1281-5', 0);
4363 #EndIf
4365 #IfRow2D list_options list_id race option_id iowa
4366 UPDATE `list_options` SET `notes` = '1281-5' WHERE `option_id` = 'iowa' AND `list_id` = 'race';
4367 #EndIf
4369 #IfRow2D list_options list_id race title Iowa
4370 UPDATE `list_options` SET `notes` = '1281-5' WHERE `title` = 'Iowa' AND `list_id` = 'race';
4371 #EndIf
4373 #IfNotRow2Dx2 list_options list_id race option_id iowa_of_kansas-nebraska title Iowa of Kansas-Nebraska
4374 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','iowa_of_kansas-nebraska','Iowa of Kansas-Nebraska','3340', '0',' 1282-3', 0);
4375 #EndIf
4377 #IfRow2D list_options list_id race option_id iowa_of_kansas-nebraska
4378 UPDATE `list_options` SET `notes` = '1282-3' WHERE `option_id` = 'iowa_of_kansas-nebraska' AND `list_id` = 'race';
4379 #EndIf
4381 #IfRow2D list_options list_id race title Iowa of Kansas-Nebraska
4382 UPDATE `list_options` SET `notes` = '1282-3' WHERE `title` = 'Iowa of Kansas-Nebraska' AND `list_id` = 'race';
4383 #EndIf
4385 #IfNotRow2Dx2 list_options list_id race option_id iowa_of_oklahoma title Iowa of Oklahoma
4386 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','iowa_of_oklahoma','Iowa of Oklahoma','3350', '0',' 1283-1', 0);
4387 #EndIf
4389 #IfRow2D list_options list_id race option_id iowa_of_oklahoma
4390 UPDATE `list_options` SET `notes` = '1283-1' WHERE `option_id` = 'iowa_of_oklahoma' AND `list_id` = 'race';
4391 #EndIf
4393 #IfRow2D list_options list_id race title Iowa of Oklahoma
4394 UPDATE `list_options` SET `notes` = '1283-1' WHERE `title` = 'Iowa of Oklahoma' AND `list_id` = 'race';
4395 #EndIf
4397 #IfNotRow2Dx2 list_options list_id race option_id iowa_sac_and_fox title Iowa Sac and Fox
4398 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','iowa_sac_and_fox','Iowa Sac and Fox','3360', '0',' 1552-9', 0);
4399 #EndIf
4401 #IfRow2D list_options list_id race option_id iowa_sac_and_fox
4402 UPDATE `list_options` SET `notes` = '1552-9' WHERE `option_id` = 'iowa_sac_and_fox' AND `list_id` = 'race';
4403 #EndIf
4405 #IfRow2D list_options list_id race title Iowa Sac and Fox
4406 UPDATE `list_options` SET `notes` = '1552-9' WHERE `title` = 'Iowa Sac and Fox' AND `list_id` = 'race';
4407 #EndIf
4409 #IfNotRow2Dx2 list_options list_id race option_id iqurmuit_russian_mission title Iqurmuit (Russian Mission)
4410 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','iqurmuit_russian_mission','Iqurmuit (Russian Mission)','3370', '0',' 1920-8', 0);
4411 #EndIf
4413 #IfRow2D list_options list_id race option_id iqurmuit_russian_mission
4414 UPDATE `list_options` SET `notes` = '1920-8' WHERE `option_id` = 'iqurmuit_russian_mission' AND `list_id` = 'race';
4415 #EndIf
4417 #IfRow2D list_options list_id race title Iqurmuit (Russian Mission)
4418 UPDATE `list_options` SET `notes` = '1920-8' WHERE `title` = 'Iqurmuit (Russian Mission)' AND `list_id` = 'race';
4419 #EndIf
4421 #IfNotRow2Dx2 list_options list_id race option_id iranian title Iranian
4422 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','iranian','Iranian','3380', '0',' 2121-2', 0);
4423 #EndIf
4425 #IfRow2D list_options list_id race option_id iranian
4426 UPDATE `list_options` SET `notes` = '2121-2' WHERE `option_id` = 'iranian' AND `list_id` = 'race';
4427 #EndIf
4429 #IfRow2D list_options list_id race title Iranian
4430 UPDATE `list_options` SET `notes` = '2121-2' WHERE `title` = 'Iranian' AND `list_id` = 'race';
4431 #EndIf
4433 #IfNotRow2Dx2 list_options list_id race option_id iraqi title Iraqi
4434 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','iraqi','Iraqi','3390', '0',' 2122-0', 0);
4435 #EndIf
4437 #IfRow2D list_options list_id race option_id iraqi
4438 UPDATE `list_options` SET `notes` = '2122-0' WHERE `option_id` = 'iraqi' AND `list_id` = 'race';
4439 #EndIf
4441 #IfRow2D list_options list_id race title Iraqi
4442 UPDATE `list_options` SET `notes` = '2122-0' WHERE `title` = 'Iraqi' AND `list_id` = 'race';
4443 #EndIf
4445 #IfNotRow2Dx2 list_options list_id race option_id irish title Irish
4446 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','irish','Irish','3400', '0',' 2113-9', 0);
4447 #EndIf
4449 #IfRow2D list_options list_id race option_id irish
4450 UPDATE `list_options` SET `notes` = '2113-9' WHERE `option_id` = 'irish' AND `list_id` = 'race';
4451 #EndIf
4453 #IfRow2D list_options list_id race title Irish
4454 UPDATE `list_options` SET `notes` = '2113-9' WHERE `title` = 'Irish' AND `list_id` = 'race';
4455 #EndIf
4457 #IfNotRow2Dx2 list_options list_id race option_id iroquois title Iroquois
4458 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','iroquois','Iroquois','3410', '0',' 1285-6', 0);
4459 #EndIf
4461 #IfRow2D list_options list_id race option_id iroquois
4462 UPDATE `list_options` SET `notes` = '1285-6' WHERE `option_id` = 'iroquois' AND `list_id` = 'race';
4463 #EndIf
4465 #IfRow2D list_options list_id race title Iroquois
4466 UPDATE `list_options` SET `notes` = '1285-6' WHERE `title` = 'Iroquois' AND `list_id` = 'race';
4467 #EndIf
4469 #IfNotRow2Dx2 list_options list_id race option_id isleta title Isleta
4470 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','isleta','Isleta','3420', '0',' 1494-4', 0);
4471 #EndIf
4473 #IfRow2D list_options list_id race option_id isleta
4474 UPDATE `list_options` SET `notes` = '1494-4' WHERE `option_id` = 'isleta' AND `list_id` = 'race';
4475 #EndIf
4477 #IfRow2D list_options list_id race title Isleta
4478 UPDATE `list_options` SET `notes` = '1494-4' WHERE `title` = 'Isleta' AND `list_id` = 'race';
4479 #EndIf
4481 #IfNotRow2Dx2 list_options list_id race option_id israeili title Israeili
4482 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','israeili','Israeili','3430', '0',' 2127-9', 0);
4483 #EndIf
4485 #IfRow2D list_options list_id race option_id israeili
4486 UPDATE `list_options` SET `notes` = '2127-9' WHERE `option_id` = 'israeili' AND `list_id` = 'race';
4487 #EndIf
4489 #IfRow2D list_options list_id race title Israeili
4490 UPDATE `list_options` SET `notes` = '2127-9' WHERE `title` = 'Israeili' AND `list_id` = 'race';
4491 #EndIf
4493 #IfNotRow2Dx2 list_options list_id race option_id italian title Italian
4494 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','italian','Italian','3440', '0',' 2114-7', 0);
4495 #EndIf
4497 #IfRow2D list_options list_id race option_id italian
4498 UPDATE `list_options` SET `notes` = '2114-7' WHERE `option_id` = 'italian' AND `list_id` = 'race';
4499 #EndIf
4501 #IfRow2D list_options list_id race title Italian
4502 UPDATE `list_options` SET `notes` = '2114-7' WHERE `title` = 'Italian' AND `list_id` = 'race';
4503 #EndIf
4505 #IfNotRow2Dx2 list_options list_id race option_id ivanof_bay title Ivanof Bay
4506 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','ivanof_bay','Ivanof Bay','3450', '0',' 1977-8', 0);
4507 #EndIf
4509 #IfRow2D list_options list_id race option_id ivanof_bay
4510 UPDATE `list_options` SET `notes` = '1977-8' WHERE `option_id` = 'ivanof_bay' AND `list_id` = 'race';
4511 #EndIf
4513 #IfRow2D list_options list_id race title Ivanof Bay
4514 UPDATE `list_options` SET `notes` = '1977-8' WHERE `title` = 'Ivanof Bay' AND `list_id` = 'race';
4515 #EndIf
4517 #IfNotRow2Dx2 list_options list_id race option_id iwo_jiman title Iwo Jiman
4518 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','iwo_jiman','Iwo Jiman','3460', '0',' 2048-7', 0);
4519 #EndIf
4521 #IfRow2D list_options list_id race option_id iwo_jiman
4522 UPDATE `list_options` SET `notes` = '2048-7' WHERE `option_id` = 'iwo_jiman' AND `list_id` = 'race';
4523 #EndIf
4525 #IfRow2D list_options list_id race title Iwo Jiman
4526 UPDATE `list_options` SET `notes` = '2048-7' WHERE `title` = 'Iwo Jiman' AND `list_id` = 'race';
4527 #EndIf
4529 #IfNotRow2Dx2 list_options list_id race option_id jamaican title Jamaican
4530 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','jamaican','Jamaican','3470', '0',' 2072-7', 0);
4531 #EndIf
4533 #IfRow2D list_options list_id race option_id jamaican
4534 UPDATE `list_options` SET `notes` = '2072-7' WHERE `option_id` = 'jamaican' AND `list_id` = 'race';
4535 #EndIf
4537 #IfRow2D list_options list_id race title Jamaican
4538 UPDATE `list_options` SET `notes` = '2072-7' WHERE `title` = 'Jamaican' AND `list_id` = 'race';
4539 #EndIf
4541 #IfNotRow2Dx2 list_options list_id race option_id jamestown title Jamestown
4542 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','jamestown','Jamestown','3480', '0',' 1313-6', 0);
4543 #EndIf
4545 #IfRow2D list_options list_id race option_id jamestown
4546 UPDATE `list_options` SET `notes` = '1313-6' WHERE `option_id` = 'jamestown' AND `list_id` = 'race';
4547 #EndIf
4549 #IfRow2D list_options list_id race title Jamestown
4550 UPDATE `list_options` SET `notes` = '1313-6' WHERE `title` = 'Jamestown' AND `list_id` = 'race';
4551 #EndIf
4553 #IfNotRow2Dx2 list_options list_id race option_id japanese title Japanese
4554 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','japanese','Japanese','3490', '0',' 2039-6', 0);
4555 #EndIf
4557 #IfRow2D list_options list_id race option_id japanese
4558 UPDATE `list_options` SET `notes` = '2039-6' WHERE `option_id` = 'japanese' AND `list_id` = 'race';
4559 #EndIf
4561 #IfRow2D list_options list_id race title Japanese
4562 UPDATE `list_options` SET `notes` = '2039-6' WHERE `title` = 'Japanese' AND `list_id` = 'race';
4563 #EndIf
4565 #IfNotRow2Dx2 list_options list_id race option_id jemez title Jemez
4566 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','jemez','Jemez','3500', '0',' 1495-1', 0);
4567 #EndIf
4569 #IfRow2D list_options list_id race option_id jemez
4570 UPDATE `list_options` SET `notes` = '1495-1' WHERE `option_id` = 'jemez' AND `list_id` = 'race';
4571 #EndIf
4573 #IfRow2D list_options list_id race title Jemez
4574 UPDATE `list_options` SET `notes` = '1495-1' WHERE `title` = 'Jemez' AND `list_id` = 'race';
4575 #EndIf
4577 #IfNotRow2Dx2 list_options list_id race option_id jena_choctaw title Jena Choctaw
4578 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','jena_choctaw','Jena Choctaw','3510', '0',' 1157-7', 0);
4579 #EndIf
4581 #IfRow2D list_options list_id race option_id jena_choctaw
4582 UPDATE `list_options` SET `notes` = '1157-7' WHERE `option_id` = 'jena_choctaw' AND `list_id` = 'race';
4583 #EndIf
4585 #IfRow2D list_options list_id race title Jena Choctaw
4586 UPDATE `list_options` SET `notes` = '1157-7' WHERE `title` = 'Jena Choctaw' AND `list_id` = 'race';
4587 #EndIf
4589 #IfNotRow2Dx2 list_options list_id race option_id jicarilla_apache title Jicarilla Apache
4590 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','jicarilla_apache','Jicarilla Apache','3520', '0',' 1013-2', 0);
4591 #EndIf
4593 #IfRow2D list_options list_id race option_id jicarilla_apache
4594 UPDATE `list_options` SET `notes` = '1013-2' WHERE `option_id` = 'jicarilla_apache' AND `list_id` = 'race';
4595 #EndIf
4597 #IfRow2D list_options list_id race title Jicarilla Apache
4598 UPDATE `list_options` SET `notes` = '1013-2' WHERE `title` = 'Jicarilla Apache' AND `list_id` = 'race';
4599 #EndIf
4601 #IfNotRow2Dx2 list_options list_id race option_id juaneno title Juaneno
4602 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','juaneno','Juaneno','3530', '0',' 1297-1', 0);
4603 #EndIf
4605 #IfRow2D list_options list_id race option_id juaneno
4606 UPDATE `list_options` SET `notes` = '1297-1' WHERE `option_id` = 'juaneno' AND `list_id` = 'race';
4607 #EndIf
4609 #IfRow2D list_options list_id race title Juaneno
4610 UPDATE `list_options` SET `notes` = '1297-1' WHERE `title` = 'Juaneno' AND `list_id` = 'race';
4611 #EndIf
4613 #IfNotRow2Dx2 list_options list_id race option_id kaibab title Kaibab
4614 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','kaibab','Kaibab','3540', '0',' 1423-3', 0);
4615 #EndIf
4617 #IfRow2D list_options list_id race option_id kaibab
4618 UPDATE `list_options` SET `notes` = '1423-3' WHERE `option_id` = 'kaibab' AND `list_id` = 'race';
4619 #EndIf
4621 #IfRow2D list_options list_id race title Kaibab
4622 UPDATE `list_options` SET `notes` = '1423-3' WHERE `title` = 'Kaibab' AND `list_id` = 'race';
4623 #EndIf
4625 #IfNotRow2Dx2 list_options list_id race option_id kake title Kake
4626 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','kake','Kake','3550', '0',' 1823-4', 0);
4627 #EndIf
4629 #IfRow2D list_options list_id race option_id kake
4630 UPDATE `list_options` SET `notes` = '1823-4' WHERE `option_id` = 'kake' AND `list_id` = 'race';
4631 #EndIf
4633 #IfRow2D list_options list_id race title Kake
4634 UPDATE `list_options` SET `notes` = '1823-4' WHERE `title` = 'Kake' AND `list_id` = 'race';
4635 #EndIf
4637 #IfNotRow2Dx2 list_options list_id race option_id kaktovik title Kaktovik
4638 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','kaktovik','Kaktovik','3560', '0',' 1862-2', 0);
4639 #EndIf
4641 #IfRow2D list_options list_id race option_id kaktovik
4642 UPDATE `list_options` SET `notes` = '1862-2' WHERE `option_id` = 'kaktovik' AND `list_id` = 'race';
4643 #EndIf
4645 #IfRow2D list_options list_id race title Kaktovik
4646 UPDATE `list_options` SET `notes` = '1862-2' WHERE `title` = 'Kaktovik' AND `list_id` = 'race';
4647 #EndIf
4649 #IfNotRow2Dx2 list_options list_id race option_id kalapuya title Kalapuya
4650 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','kalapuya','Kalapuya','3570', '0',' 1395-3', 0);
4651 #EndIf
4653 #IfRow2D list_options list_id race option_id kalapuya
4654 UPDATE `list_options` SET `notes` = '1395-3' WHERE `option_id` = 'kalapuya' AND `list_id` = 'race';
4655 #EndIf
4657 #IfRow2D list_options list_id race title Kalapuya
4658 UPDATE `list_options` SET `notes` = '1395-3' WHERE `title` = 'Kalapuya' AND `list_id` = 'race';
4659 #EndIf
4661 #IfNotRow2Dx2 list_options list_id race option_id kalispel title Kalispel
4662 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','kalispel','Kalispel','3580', '0',' 1299-7', 0);
4663 #EndIf
4665 #IfRow2D list_options list_id race option_id kalispel
4666 UPDATE `list_options` SET `notes` = '1299-7' WHERE `option_id` = 'kalispel' AND `list_id` = 'race';
4667 #EndIf
4669 #IfRow2D list_options list_id race title Kalispel
4670 UPDATE `list_options` SET `notes` = '1299-7' WHERE `title` = 'Kalispel' AND `list_id` = 'race';
4671 #EndIf
4673 #IfNotRow2Dx2 list_options list_id race option_id kalskag title Kalskag
4674 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','kalskag','Kalskag','3590', '0',' 1921-6', 0);
4675 #EndIf
4677 #IfRow2D list_options list_id race option_id kalskag
4678 UPDATE `list_options` SET `notes` = '1921-6' WHERE `option_id` = 'kalskag' AND `list_id` = 'race';
4679 #EndIf
4681 #IfRow2D list_options list_id race title Kalskag
4682 UPDATE `list_options` SET `notes` = '1921-6' WHERE `title` = 'Kalskag' AND `list_id` = 'race';
4683 #EndIf
4685 #IfNotRow2Dx2 list_options list_id race option_id kaltag title Kaltag
4686 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','kaltag','Kaltag','3600', '0',' 1773-1', 0);
4687 #EndIf
4689 #IfRow2D list_options list_id race option_id kaltag
4690 UPDATE `list_options` SET `notes` = '1773-1' WHERE `option_id` = 'kaltag' AND `list_id` = 'race';
4691 #EndIf
4693 #IfRow2D list_options list_id race title Kaltag
4694 UPDATE `list_options` SET `notes` = '1773-1' WHERE `title` = 'Kaltag' AND `list_id` = 'race';
4695 #EndIf
4697 #IfNotRow2Dx2 list_options list_id race option_id karluk title Karluk
4698 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','karluk','Karluk','3610', '0',' 1995-0', 0);
4699 #EndIf
4701 #IfRow2D list_options list_id race option_id karluk
4702 UPDATE `list_options` SET `notes` = '1995-0' WHERE `option_id` = 'karluk' AND `list_id` = 'race';
4703 #EndIf
4705 #IfRow2D list_options list_id race title Karluk
4706 UPDATE `list_options` SET `notes` = '1995-0' WHERE `title` = 'Karluk' AND `list_id` = 'race';
4707 #EndIf
4709 #IfNotRow2Dx2 list_options list_id race option_id karuk title Karuk
4710 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','karuk','Karuk','3620', '0',' 1301-1', 0);
4711 #EndIf
4713 #IfRow2D list_options list_id race option_id karuk
4714 UPDATE `list_options` SET `notes` = '1301-1' WHERE `option_id` = 'karuk' AND `list_id` = 'race';
4715 #EndIf
4717 #IfRow2D list_options list_id race title Karuk
4718 UPDATE `list_options` SET `notes` = '1301-1' WHERE `title` = 'Karuk' AND `list_id` = 'race';
4719 #EndIf
4721 #IfNotRow2Dx2 list_options list_id race option_id kasaan title Kasaan
4722 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','kasaan','Kasaan','3630', '0',' 1824-2', 0);
4723 #EndIf
4725 #IfRow2D list_options list_id race option_id kasaan
4726 UPDATE `list_options` SET `notes` = '1824-2' WHERE `option_id` = 'kasaan' AND `list_id` = 'race';
4727 #EndIf
4729 #IfRow2D list_options list_id race title Kasaan
4730 UPDATE `list_options` SET `notes` = '1824-2' WHERE `title` = 'Kasaan' AND `list_id` = 'race';
4731 #EndIf
4733 #IfNotRow2Dx2 list_options list_id race option_id kashia title Kashia
4734 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','kashia','Kashia','3640', '0',' 1468-8', 0);
4735 #EndIf
4737 #IfRow2D list_options list_id race option_id kashia
4738 UPDATE `list_options` SET `notes` = '1468-8' WHERE `option_id` = 'kashia' AND `list_id` = 'race';
4739 #EndIf
4741 #IfRow2D list_options list_id race title Kashia
4742 UPDATE `list_options` SET `notes` = '1468-8' WHERE `title` = 'Kashia' AND `list_id` = 'race';
4743 #EndIf
4745 #IfNotRow2Dx2 list_options list_id race option_id kasigluk title Kasigluk
4746 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','kasigluk','Kasigluk','3650', '0',' 1922-4', 0);
4747 #EndIf
4749 #IfRow2D list_options list_id race option_id kasigluk
4750 UPDATE `list_options` SET `notes` = '1922-4' WHERE `option_id` = 'kasigluk' AND `list_id` = 'race';
4751 #EndIf
4753 #IfRow2D list_options list_id race title Kasigluk
4754 UPDATE `list_options` SET `notes` = '1922-4' WHERE `title` = 'Kasigluk' AND `list_id` = 'race';
4755 #EndIf
4757 #IfNotRow2Dx2 list_options list_id race option_id kathlamet title Kathlamet
4758 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','kathlamet','Kathlamet','3660', '0',' 1117-1', 0);
4759 #EndIf
4761 #IfRow2D list_options list_id race option_id kathlamet
4762 UPDATE `list_options` SET `notes` = '1117-1' WHERE `option_id` = 'kathlamet' AND `list_id` = 'race';
4763 #EndIf
4765 #IfRow2D list_options list_id race title Kathlamet
4766 UPDATE `list_options` SET `notes` = '1117-1' WHERE `title` = 'Kathlamet' AND `list_id` = 'race';
4767 #EndIf
4769 #IfNotRow2Dx2 list_options list_id race option_id kaw title Kaw
4770 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','kaw','Kaw','3670', '0',' 1303-7', 0);
4771 #EndIf
4773 #IfRow2D list_options list_id race option_id kaw
4774 UPDATE `list_options` SET `notes` = '1303-7' WHERE `option_id` = 'kaw' AND `list_id` = 'race';
4775 #EndIf
4777 #IfRow2D list_options list_id race title Kaw
4778 UPDATE `list_options` SET `notes` = '1303-7' WHERE `title` = 'Kaw' AND `list_id` = 'race';
4779 #EndIf
4781 #IfNotRow2Dx2 list_options list_id race option_id kawaiisu title Kawaiisu
4782 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','kawaiisu','Kawaiisu','3680', '0',' 1058-7', 0);
4783 #EndIf
4785 #IfRow2D list_options list_id race option_id kawaiisu
4786 UPDATE `list_options` SET `notes` = '1058-7' WHERE `option_id` = 'kawaiisu' AND `list_id` = 'race';
4787 #EndIf
4789 #IfRow2D list_options list_id race title Kawaiisu
4790 UPDATE `list_options` SET `notes` = '1058-7' WHERE `title` = 'Kawaiisu' AND `list_id` = 'race';
4791 #EndIf
4793 #IfNotRow2Dx2 list_options list_id race option_id kawerak title Kawerak
4794 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','kawerak','Kawerak','3690', '0',' 1863-0', 0);
4795 #EndIf
4797 #IfRow2D list_options list_id race option_id kawerak
4798 UPDATE `list_options` SET `notes` = '1863-0' WHERE `option_id` = 'kawerak' AND `list_id` = 'race';
4799 #EndIf
4801 #IfRow2D list_options list_id race title Kawerak
4802 UPDATE `list_options` SET `notes` = '1863-0' WHERE `title` = 'Kawerak' AND `list_id` = 'race';
4803 #EndIf
4805 #IfNotRow2Dx2 list_options list_id race option_id kenaitze title Kenaitze
4806 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','kenaitze','Kenaitze','3700', '0',' 1825-9', 0);
4807 #EndIf
4809 #IfRow2D list_options list_id race option_id kenaitze
4810 UPDATE `list_options` SET `notes` = '1825-9' WHERE `option_id` = 'kenaitze' AND `list_id` = 'race';
4811 #EndIf
4813 #IfRow2D list_options list_id race title Kenaitze
4814 UPDATE `list_options` SET `notes` = '1825-9' WHERE `title` = 'Kenaitze' AND `list_id` = 'race';
4815 #EndIf
4817 #IfNotRow2Dx2 list_options list_id race option_id keres title Keres
4818 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','keres','Keres','3710', '0',' 1496-9', 0);
4819 #EndIf
4821 #IfRow2D list_options list_id race option_id keres
4822 UPDATE `list_options` SET `notes` = '1496-9' WHERE `option_id` = 'keres' AND `list_id` = 'race';
4823 #EndIf
4825 #IfRow2D list_options list_id race title Keres
4826 UPDATE `list_options` SET `notes` = '1496-9' WHERE `title` = 'Keres' AND `list_id` = 'race';
4827 #EndIf
4829 #IfNotRow2Dx2 list_options list_id race option_id kern_river title Kern River
4830 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','kern_river','Kern River','3720', '0',' 1059-5', 0);
4831 #EndIf
4833 #IfRow2D list_options list_id race option_id kern_river
4834 UPDATE `list_options` SET `notes` = '1059-5' WHERE `option_id` = 'kern_river' AND `list_id` = 'race';
4835 #EndIf
4837 #IfRow2D list_options list_id race title Kern River
4838 UPDATE `list_options` SET `notes` = '1059-5' WHERE `title` = 'Kern River' AND `list_id` = 'race';
4839 #EndIf
4841 #IfNotRow2Dx2 list_options list_id race option_id ketchikan title Ketchikan
4842 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','ketchikan','Ketchikan','3730', '0',' 1826-7', 0);
4843 #EndIf
4845 #IfRow2D list_options list_id race option_id ketchikan
4846 UPDATE `list_options` SET `notes` = '1826-7' WHERE `option_id` = 'ketchikan' AND `list_id` = 'race';
4847 #EndIf
4849 #IfRow2D list_options list_id race title Ketchikan
4850 UPDATE `list_options` SET `notes` = '1826-7' WHERE `title` = 'Ketchikan' AND `list_id` = 'race';
4851 #EndIf
4853 #IfNotRow2Dx2 list_options list_id race option_id keweenaw title Keweenaw
4854 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','keweenaw','Keweenaw','3740', '0',' 1131-2', 0);
4855 #EndIf
4857 #IfRow2D list_options list_id race option_id keweenaw
4858 UPDATE `list_options` SET `notes` = '1131-2' WHERE `option_id` = 'keweenaw' AND `list_id` = 'race';
4859 #EndIf
4861 #IfRow2D list_options list_id race title Keweenaw
4862 UPDATE `list_options` SET `notes` = '1131-2' WHERE `title` = 'Keweenaw' AND `list_id` = 'race';
4863 #EndIf
4865 #IfNotRow2Dx2 list_options list_id race option_id kialegee title Kialegee
4866 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','kialegee','Kialegee','3750', '0',' 1198-1', 0);
4867 #EndIf
4869 #IfRow2D list_options list_id race option_id kialegee
4870 UPDATE `list_options` SET `notes` = '1198-1' WHERE `option_id` = 'kialegee' AND `list_id` = 'race';
4871 #EndIf
4873 #IfRow2D list_options list_id race title Kialegee
4874 UPDATE `list_options` SET `notes` = '1198-1' WHERE `title` = 'Kialegee' AND `list_id` = 'race';
4875 #EndIf
4877 #IfNotRow2Dx2 list_options list_id race option_id kiana title Kiana
4878 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','kiana','Kiana','3760', '0',' 1864-8', 0);
4879 #EndIf
4881 #IfRow2D list_options list_id race option_id kiana
4882 UPDATE `list_options` SET `notes` = '1864-8' WHERE `option_id` = 'kiana' AND `list_id` = 'race';
4883 #EndIf
4885 #IfRow2D list_options list_id race title Kiana
4886 UPDATE `list_options` SET `notes` = '1864-8' WHERE `title` = 'Kiana' AND `list_id` = 'race';
4887 #EndIf
4889 #IfNotRow2Dx2 list_options list_id race option_id kickapoo title Kickapoo
4890 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','kickapoo','Kickapoo','3770', '0',' 1305-2', 0);
4891 #EndIf
4893 #IfRow2D list_options list_id race option_id kickapoo
4894 UPDATE `list_options` SET `notes` = '1305-2' WHERE `option_id` = 'kickapoo' AND `list_id` = 'race';
4895 #EndIf
4897 #IfRow2D list_options list_id race title Kickapoo
4898 UPDATE `list_options` SET `notes` = '1305-2' WHERE `title` = 'Kickapoo' AND `list_id` = 'race';
4899 #EndIf
4901 #IfNotRow2Dx2 list_options list_id race option_id kikiallus title Kikiallus
4902 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','kikiallus','Kikiallus','3780', '0',' 1520-6', 0);
4903 #EndIf
4905 #IfRow2D list_options list_id race option_id kikiallus
4906 UPDATE `list_options` SET `notes` = '1520-6' WHERE `option_id` = 'kikiallus' AND `list_id` = 'race';
4907 #EndIf
4909 #IfRow2D list_options list_id race title Kikiallus
4910 UPDATE `list_options` SET `notes` = '1520-6' WHERE `title` = 'Kikiallus' AND `list_id` = 'race';
4911 #EndIf
4913 #IfNotRow2Dx2 list_options list_id race option_id king_cove title King Cove
4914 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','king_cove','King Cove','3790', '0',' 2014-9', 0);
4915 #EndIf
4917 #IfRow2D list_options list_id race option_id king_cove
4918 UPDATE `list_options` SET `notes` = '2014-9' WHERE `option_id` = 'king_cove' AND `list_id` = 'race';
4919 #EndIf
4921 #IfRow2D list_options list_id race title King Cove
4922 UPDATE `list_options` SET `notes` = '2014-9' WHERE `title` = 'King Cove' AND `list_id` = 'race';
4923 #EndIf
4925 #IfNotRow2Dx2 list_options list_id race option_id king_salmon title King Salmon
4926 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','king_salmon','King Salmon','3800', '0',' 1978-6', 0);
4927 #EndIf
4929 #IfRow2D list_options list_id race option_id king_salmon
4930 UPDATE `list_options` SET `notes` = '1978-6' WHERE `option_id` = 'king_salmon' AND `list_id` = 'race';
4931 #EndIf
4933 #IfRow2D list_options list_id race title King Salmon
4934 UPDATE `list_options` SET `notes` = '1978-6' WHERE `title` = 'King Salmon' AND `list_id` = 'race';
4935 #EndIf
4937 #IfNotRow2Dx2 list_options list_id race option_id kiowa title Kiowa
4938 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','kiowa','Kiowa','3810', '0',' 1309-4', 0);
4939 #EndIf
4941 #IfRow2D list_options list_id race option_id kiowa
4942 UPDATE `list_options` SET `notes` = '1309-4' WHERE `option_id` = 'kiowa' AND `list_id` = 'race';
4943 #EndIf
4945 #IfRow2D list_options list_id race title Kiowa
4946 UPDATE `list_options` SET `notes` = '1309-4' WHERE `title` = 'Kiowa' AND `list_id` = 'race';
4947 #EndIf
4949 #IfNotRow2Dx2 list_options list_id race option_id kipnuk title Kipnuk
4950 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','kipnuk','Kipnuk','3820', '0',' 1923-2', 0);
4951 #EndIf
4953 #IfRow2D list_options list_id race option_id kipnuk
4954 UPDATE `list_options` SET `notes` = '1923-2' WHERE `option_id` = 'kipnuk' AND `list_id` = 'race';
4955 #EndIf
4957 #IfRow2D list_options list_id race title Kipnuk
4958 UPDATE `list_options` SET `notes` = '1923-2' WHERE `title` = 'Kipnuk' AND `list_id` = 'race';
4959 #EndIf
4961 #IfNotRow2Dx2 list_options list_id race option_id kiribati title Kiribati
4962 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','kiribati','Kiribati','3830', '0',' 2096-6', 0);
4963 #EndIf
4965 #IfRow2D list_options list_id race option_id kiribati
4966 UPDATE `list_options` SET `notes` = '2096-6' WHERE `option_id` = 'kiribati' AND `list_id` = 'race';
4967 #EndIf
4969 #IfRow2D list_options list_id race title Kiribati
4970 UPDATE `list_options` SET `notes` = '2096-6' WHERE `title` = 'Kiribati' AND `list_id` = 'race';
4971 #EndIf
4973 #IfNotRow2Dx2 list_options list_id race option_id kivalina title Kivalina
4974 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','kivalina','Kivalina','3840', '0',' 1865-5', 0);
4975 #EndIf
4977 #IfRow2D list_options list_id race option_id kivalina
4978 UPDATE `list_options` SET `notes` = '1865-5' WHERE `option_id` = 'kivalina' AND `list_id` = 'race';
4979 #EndIf
4981 #IfRow2D list_options list_id race title Kivalina
4982 UPDATE `list_options` SET `notes` = '1865-5' WHERE `title` = 'Kivalina' AND `list_id` = 'race';
4983 #EndIf
4985 #IfNotRow2Dx2 list_options list_id race option_id klallam title Klallam
4986 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','klallam','Klallam','3850', '0',' 1312-8', 0);
4987 #EndIf
4989 #IfRow2D list_options list_id race option_id klallam
4990 UPDATE `list_options` SET `notes` = '1312-8' WHERE `option_id` = 'klallam' AND `list_id` = 'race';
4991 #EndIf
4993 #IfRow2D list_options list_id race title Klallam
4994 UPDATE `list_options` SET `notes` = '1312-8' WHERE `title` = 'Klallam' AND `list_id` = 'race';
4995 #EndIf
4997 #IfNotRow2Dx2 list_options list_id race option_id klamath title Klamath
4998 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','klamath','Klamath','3860', '0',' 1317-7', 0);
4999 #EndIf
5001 #IfRow2D list_options list_id race option_id klamath
5002 UPDATE `list_options` SET `notes` = '1317-7' WHERE `option_id` = 'klamath' AND `list_id` = 'race';
5003 #EndIf
5005 #IfRow2D list_options list_id race title Klamath
5006 UPDATE `list_options` SET `notes` = '1317-7' WHERE `title` = 'Klamath' AND `list_id` = 'race';
5007 #EndIf
5009 #IfNotRow2Dx2 list_options list_id race option_id klawock title Klawock
5010 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','klawock','Klawock','3870', '0',' 1827-5', 0);
5011 #EndIf
5013 #IfRow2D list_options list_id race option_id klawock
5014 UPDATE `list_options` SET `notes` = '1827-5' WHERE `option_id` = 'klawock' AND `list_id` = 'race';
5015 #EndIf
5017 #IfRow2D list_options list_id race title Klawock
5018 UPDATE `list_options` SET `notes` = '1827-5' WHERE `title` = 'Klawock' AND `list_id` = 'race';
5019 #EndIf
5021 #IfNotRow2Dx2 list_options list_id race option_id kluti_kaah title Kluti Kaah
5022 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','kluti_kaah','Kluti Kaah','3880', '0',' 1774-9', 0);
5023 #EndIf
5025 #IfRow2D list_options list_id race option_id kluti_kaah
5026 UPDATE `list_options` SET `notes` = '1774-9' WHERE `option_id` = 'kluti_kaah' AND `list_id` = 'race';
5027 #EndIf
5029 #IfRow2D list_options list_id race title Kluti Kaah
5030 UPDATE `list_options` SET `notes` = '1774-9' WHERE `title` = 'Kluti Kaah' AND `list_id` = 'race';
5031 #EndIf
5033 #IfNotRow2Dx2 list_options list_id race option_id knik title Knik
5034 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','knik','Knik','3890', '0',' 1775-6', 0);
5035 #EndIf
5037 #IfRow2D list_options list_id race option_id knik
5038 UPDATE `list_options` SET `notes` = '1775-6' WHERE `option_id` = 'knik' AND `list_id` = 'race';
5039 #EndIf
5041 #IfRow2D list_options list_id race title Knik
5042 UPDATE `list_options` SET `notes` = '1775-6' WHERE `title` = 'Knik' AND `list_id` = 'race';
5043 #EndIf
5045 #IfNotRow2Dx2 list_options list_id race option_id kobuk title Kobuk
5046 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','kobuk','Kobuk','3900', '0',' 1866-3', 0);
5047 #EndIf
5049 #IfRow2D list_options list_id race option_id kobuk
5050 UPDATE `list_options` SET `notes` = '1866-3' WHERE `option_id` = 'kobuk' AND `list_id` = 'race';
5051 #EndIf
5053 #IfRow2D list_options list_id race title Kobuk
5054 UPDATE `list_options` SET `notes` = '1866-3' WHERE `title` = 'Kobuk' AND `list_id` = 'race';
5055 #EndIf
5057 #IfNotRow2Dx2 list_options list_id race option_id kodiak title Kodiak
5058 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','kodiak','Kodiak','3910', '0',' 1996-8', 0);
5059 #EndIf
5061 #IfRow2D list_options list_id race option_id kodiak
5062 UPDATE `list_options` SET `notes` = '1996-8' WHERE `option_id` = 'kodiak' AND `list_id` = 'race';
5063 #EndIf
5065 #IfRow2D list_options list_id race title Kodiak
5066 UPDATE `list_options` SET `notes` = '1996-8' WHERE `title` = 'Kodiak' AND `list_id` = 'race';
5067 #EndIf
5069 #IfNotRow2Dx2 list_options list_id race option_id kokhanok title Kokhanok
5070 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','kokhanok','Kokhanok','3920', '0',' 1979-4', 0);
5071 #EndIf
5073 #IfRow2D list_options list_id race option_id kokhanok
5074 UPDATE `list_options` SET `notes` = '1979-4' WHERE `option_id` = 'kokhanok' AND `list_id` = 'race';
5075 #EndIf
5077 #IfRow2D list_options list_id race title Kokhanok
5078 UPDATE `list_options` SET `notes` = '1979-4' WHERE `title` = 'Kokhanok' AND `list_id` = 'race';
5079 #EndIf
5081 #IfNotRow2Dx2 list_options list_id race option_id koliganek title Koliganek
5082 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','koliganek','Koliganek','3930', '0',' 1924-0', 0);
5083 #EndIf
5085 #IfRow2D list_options list_id race option_id koliganek
5086 UPDATE `list_options` SET `notes` = '1924-0' WHERE `option_id` = 'koliganek' AND `list_id` = 'race';
5087 #EndIf
5089 #IfRow2D list_options list_id race title Koliganek
5090 UPDATE `list_options` SET `notes` = '1924-0' WHERE `title` = 'Koliganek' AND `list_id` = 'race';
5091 #EndIf
5093 #IfNotRow2Dx2 list_options list_id race option_id kongiganak title Kongiganak
5094 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','kongiganak','Kongiganak','3940', '0',' 1925-7', 0);
5095 #EndIf
5097 #IfRow2D list_options list_id race option_id kongiganak
5098 UPDATE `list_options` SET `notes` = '1925-7' WHERE `option_id` = 'kongiganak' AND `list_id` = 'race';
5099 #EndIf
5101 #IfRow2D list_options list_id race title Kongiganak
5102 UPDATE `list_options` SET `notes` = '1925-7' WHERE `title` = 'Kongiganak' AND `list_id` = 'race';
5103 #EndIf
5105 #IfNotRow2Dx2 list_options list_id race option_id koniag_aleut title Koniag Aleut
5106 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','koniag_aleut','Koniag Aleut','3950', '0',' 1992-7', 0);
5107 #EndIf
5109 #IfRow2D list_options list_id race option_id koniag_aleut
5110 UPDATE `list_options` SET `notes` = '1992-7' WHERE `option_id` = 'koniag_aleut' AND `list_id` = 'race';
5111 #EndIf
5113 #IfRow2D list_options list_id race title Koniag Aleut
5114 UPDATE `list_options` SET `notes` = '1992-7' WHERE `title` = 'Koniag Aleut' AND `list_id` = 'race';
5115 #EndIf
5117 #IfNotRow2Dx2 list_options list_id race option_id konkow title Konkow
5118 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','konkow','Konkow','3960', '0',' 1319-3', 0);
5119 #EndIf
5121 #IfRow2D list_options list_id race option_id konkow
5122 UPDATE `list_options` SET `notes` = '1319-3' WHERE `option_id` = 'konkow' AND `list_id` = 'race';
5123 #EndIf
5125 #IfRow2D list_options list_id race title Konkow
5126 UPDATE `list_options` SET `notes` = '1319-3' WHERE `title` = 'Konkow' AND `list_id` = 'race';
5127 #EndIf
5129 #IfNotRow2Dx2 list_options list_id race option_id kootenai title Kootenai
5130 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','kootenai','Kootenai','3970', '0',' 1321-9', 0);
5131 #EndIf
5133 #IfRow2D list_options list_id race option_id kootenai
5134 UPDATE `list_options` SET `notes` = '1321-9' WHERE `option_id` = 'kootenai' AND `list_id` = 'race';
5135 #EndIf
5137 #IfRow2D list_options list_id race title Kootenai
5138 UPDATE `list_options` SET `notes` = '1321-9' WHERE `title` = 'Kootenai' AND `list_id` = 'race';
5139 #EndIf
5141 #IfNotRow2Dx2 list_options list_id race option_id korean title Korean
5142 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','korean','Korean','3980', '0',' 2040-4', 0);
5143 #EndIf
5145 #IfRow2D list_options list_id race option_id korean
5146 UPDATE `list_options` SET `notes` = '2040-4' WHERE `option_id` = 'korean' AND `list_id` = 'race';
5147 #EndIf
5149 #IfRow2D list_options list_id race title Korean
5150 UPDATE `list_options` SET `notes` = '2040-4' WHERE `title` = 'Korean' AND `list_id` = 'race';
5151 #EndIf
5153 #IfNotRow2Dx2 list_options list_id race option_id kosraean title Kosraean
5154 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','kosraean','Kosraean','3990', '0',' 2093-3', 0);
5155 #EndIf
5157 #IfRow2D list_options list_id race option_id kosraean
5158 UPDATE `list_options` SET `notes` = '2093-3' WHERE `option_id` = 'kosraean' AND `list_id` = 'race';
5159 #EndIf
5161 #IfRow2D list_options list_id race title Kosraean
5162 UPDATE `list_options` SET `notes` = '2093-3' WHERE `title` = 'Kosraean' AND `list_id` = 'race';
5163 #EndIf
5165 #IfNotRow2Dx2 list_options list_id race option_id kotlik title Kotlik
5166 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','kotlik','Kotlik','4000', '0',' 1926-5', 0);
5167 #EndIf
5169 #IfRow2D list_options list_id race option_id kotlik
5170 UPDATE `list_options` SET `notes` = '1926-5' WHERE `option_id` = 'kotlik' AND `list_id` = 'race';
5171 #EndIf
5173 #IfRow2D list_options list_id race title Kotlik
5174 UPDATE `list_options` SET `notes` = '1926-5' WHERE `title` = 'Kotlik' AND `list_id` = 'race';
5175 #EndIf
5177 #IfNotRow2Dx2 list_options list_id race option_id kotzebue title Kotzebue
5178 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','kotzebue','Kotzebue','4010', '0',' 1867-1', 0);
5179 #EndIf
5181 #IfRow2D list_options list_id race option_id kotzebue
5182 UPDATE `list_options` SET `notes` = '1867-1' WHERE `option_id` = 'kotzebue' AND `list_id` = 'race';
5183 #EndIf
5185 #IfRow2D list_options list_id race title Kotzebue
5186 UPDATE `list_options` SET `notes` = '1867-1' WHERE `title` = 'Kotzebue' AND `list_id` = 'race';
5187 #EndIf
5189 #IfNotRow2Dx2 list_options list_id race option_id koyuk title Koyuk
5190 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','koyuk','Koyuk','4020', '0',' 1868-9', 0);
5191 #EndIf
5193 #IfRow2D list_options list_id race option_id koyuk
5194 UPDATE `list_options` SET `notes` = '1868-9' WHERE `option_id` = 'koyuk' AND `list_id` = 'race';
5195 #EndIf
5197 #IfRow2D list_options list_id race title Koyuk
5198 UPDATE `list_options` SET `notes` = '1868-9' WHERE `title` = 'Koyuk' AND `list_id` = 'race';
5199 #EndIf
5201 #IfNotRow2Dx2 list_options list_id race option_id koyukuk title Koyukuk
5202 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','koyukuk','Koyukuk','4030', '0',' 1776-4', 0);
5203 #EndIf
5205 #IfRow2D list_options list_id race option_id koyukuk
5206 UPDATE `list_options` SET `notes` = '1776-4' WHERE `option_id` = 'koyukuk' AND `list_id` = 'race';
5207 #EndIf
5209 #IfRow2D list_options list_id race title Koyukuk
5210 UPDATE `list_options` SET `notes` = '1776-4' WHERE `title` = 'Koyukuk' AND `list_id` = 'race';
5211 #EndIf
5213 #IfNotRow2Dx2 list_options list_id race option_id kwethluk title Kwethluk
5214 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','kwethluk','Kwethluk','4040', '0',' 1927-3', 0);
5215 #EndIf
5217 #IfRow2D list_options list_id race option_id kwethluk
5218 UPDATE `list_options` SET `notes` = '1927-3' WHERE `option_id` = 'kwethluk' AND `list_id` = 'race';
5219 #EndIf
5221 #IfRow2D list_options list_id race title Kwethluk
5222 UPDATE `list_options` SET `notes` = '1927-3' WHERE `title` = 'Kwethluk' AND `list_id` = 'race';
5223 #EndIf
5225 #IfNotRow2Dx2 list_options list_id race option_id kwigillingok title Kwigillingok
5226 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','kwigillingok','Kwigillingok','4050', '0',' 1928-1', 0);
5227 #EndIf
5229 #IfRow2D list_options list_id race option_id kwigillingok
5230 UPDATE `list_options` SET `notes` = '1928-1' WHERE `option_id` = 'kwigillingok' AND `list_id` = 'race';
5231 #EndIf
5233 #IfRow2D list_options list_id race title Kwigillingok
5234 UPDATE `list_options` SET `notes` = '1928-1' WHERE `title` = 'Kwigillingok' AND `list_id` = 'race';
5235 #EndIf
5237 #IfNotRow2Dx2 list_options list_id race option_id kwiguk title Kwiguk
5238 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','kwiguk','Kwiguk','4060', '0',' 1869-7', 0);
5239 #EndIf
5241 #IfRow2D list_options list_id race option_id kwiguk
5242 UPDATE `list_options` SET `notes` = '1869-7' WHERE `option_id` = 'kwiguk' AND `list_id` = 'race';
5243 #EndIf
5245 #IfRow2D list_options list_id race title Kwiguk
5246 UPDATE `list_options` SET `notes` = '1869-7' WHERE `title` = 'Kwiguk' AND `list_id` = 'race';
5247 #EndIf
5249 #IfNotRow2Dx2 list_options list_id race option_id la_jolla title La Jolla
5250 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','la_jolla','La Jolla','4070', '0',' 1332-6', 0);
5251 #EndIf
5253 #IfRow2D list_options list_id race option_id la_jolla
5254 UPDATE `list_options` SET `notes` = '1332-6' WHERE `option_id` = 'la_jolla' AND `list_id` = 'race';
5255 #EndIf
5257 #IfRow2D list_options list_id race title La Jolla
5258 UPDATE `list_options` SET `notes` = '1332-6' WHERE `title` = 'La Jolla' AND `list_id` = 'race';
5259 #EndIf
5261 #IfNotRow2Dx2 list_options list_id race option_id la_posta title La Posta
5262 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','la_posta','La Posta','4080', '0',' 1226-0', 0);
5263 #EndIf
5265 #IfRow2D list_options list_id race option_id la_posta
5266 UPDATE `list_options` SET `notes` = '1226-0' WHERE `option_id` = 'la_posta' AND `list_id` = 'race';
5267 #EndIf
5269 #IfRow2D list_options list_id race title La Posta
5270 UPDATE `list_options` SET `notes` = '1226-0' WHERE `title` = 'La Posta' AND `list_id` = 'race';
5271 #EndIf
5273 #IfNotRow2Dx2 list_options list_id race option_id lac_courte_oreilles title Lac Courte Oreilles
5274 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','lac_courte_oreilles','Lac Courte Oreilles','4090', '0',' 1132-0', 0);
5275 #EndIf
5277 #IfRow2D list_options list_id race option_id lac_courte_oreilles
5278 UPDATE `list_options` SET `notes` = '1132-0' WHERE `option_id` = 'lac_courte_oreilles' AND `list_id` = 'race';
5279 #EndIf
5281 #IfRow2D list_options list_id race title Lac Courte Oreilles
5282 UPDATE `list_options` SET `notes` = '1132-0' WHERE `title` = 'Lac Courte Oreilles' AND `list_id` = 'race';
5283 #EndIf
5285 #IfNotRow2Dx2 list_options list_id race option_id lac_du_flambeau title Lac du Flambeau
5286 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','lac_du_flambeau','Lac du Flambeau','4100', '0',' 1133-8', 0);
5287 #EndIf
5289 #IfRow2D list_options list_id race option_id lac_du_flambeau
5290 UPDATE `list_options` SET `notes` = '1133-8' WHERE `option_id` = 'lac_du_flambeau' AND `list_id` = 'race';
5291 #EndIf
5293 #IfRow2D list_options list_id race title Lac du Flambeau
5294 UPDATE `list_options` SET `notes` = '1133-8' WHERE `title` = 'Lac du Flambeau' AND `list_id` = 'race';
5295 #EndIf
5297 #IfNotRow2Dx2 list_options list_id race option_id lac_vieux_desert_chippewa title Lac Vieux Desert Chippewa
5298 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','lac_vieux_desert_chippewa','Lac Vieux Desert Chippewa','4110', '0',' 1134-6', 0);
5299 #EndIf
5301 #IfRow2D list_options list_id race option_id lac_vieux_desert_chippewa
5302 UPDATE `list_options` SET `notes` = '1134-6' WHERE `option_id` = 'lac_vieux_desert_chippewa' AND `list_id` = 'race';
5303 #EndIf
5305 #IfRow2D list_options list_id race title Lac Vieux Desert Chippewa
5306 UPDATE `list_options` SET `notes` = '1134-6' WHERE `title` = 'Lac Vieux Desert Chippewa' AND `list_id` = 'race';
5307 #EndIf
5309 #IfNotRow2Dx2 list_options list_id race option_id laguna title Laguna
5310 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','laguna','Laguna','4120', '0',' 1497-7', 0);
5311 #EndIf
5313 #IfRow2D list_options list_id race option_id laguna
5314 UPDATE `list_options` SET `notes` = '1497-7' WHERE `option_id` = 'laguna' AND `list_id` = 'race';
5315 #EndIf
5317 #IfRow2D list_options list_id race title Laguna
5318 UPDATE `list_options` SET `notes` = '1497-7' WHERE `title` = 'Laguna' AND `list_id` = 'race';
5319 #EndIf
5321 #IfNotRow2Dx2 list_options list_id race option_id lake_minchumina title Lake Minchumina
5322 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','lake_minchumina','Lake Minchumina','4130', '0',' 1777-2', 0);
5323 #EndIf
5325 #IfRow2D list_options list_id race option_id lake_minchumina
5326 UPDATE `list_options` SET `notes` = '1777-2' WHERE `option_id` = 'lake_minchumina' AND `list_id` = 'race';
5327 #EndIf
5329 #IfRow2D list_options list_id race title Lake Minchumina
5330 UPDATE `list_options` SET `notes` = '1777-2' WHERE `title` = 'Lake Minchumina' AND `list_id` = 'race';
5331 #EndIf
5333 #IfNotRow2Dx2 list_options list_id race option_id lake_superior title Lake Superior
5334 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','lake_superior','Lake Superior','4140', '0',' 1135-3', 0);
5335 #EndIf
5337 #IfRow2D list_options list_id race option_id lake_superior
5338 UPDATE `list_options` SET `notes` = '1135-3' WHERE `option_id` = 'lake_superior' AND `list_id` = 'race';
5339 #EndIf
5341 #IfRow2D list_options list_id race title Lake Superior
5342 UPDATE `list_options` SET `notes` = '1135-3' WHERE `title` = 'Lake Superior' AND `list_id` = 'race';
5343 #EndIf
5345 #IfNotRow2Dx2 list_options list_id race option_id lake_traverse_sioux title Lake Traverse Sioux
5346 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','lake_traverse_sioux','Lake Traverse Sioux','4150', '0',' 1617-0', 0);
5347 #EndIf
5349 #IfRow2D list_options list_id race option_id lake_traverse_sioux
5350 UPDATE `list_options` SET `notes` = '1617-0' WHERE `option_id` = 'lake_traverse_sioux' AND `list_id` = 'race';
5351 #EndIf
5353 #IfRow2D list_options list_id race title Lake Traverse Sioux
5354 UPDATE `list_options` SET `notes` = '1617-0' WHERE `title` = 'Lake Traverse Sioux' AND `list_id` = 'race';
5355 #EndIf
5357 #IfNotRow2Dx2 list_options list_id race option_id laotian title Laotian
5358 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','laotian','Laotian','4160', '0',' 2041-2', 0);
5359 #EndIf
5361 #IfRow2D list_options list_id race option_id laotian
5362 UPDATE `list_options` SET `notes` = '2041-2' WHERE `option_id` = 'laotian' AND `list_id` = 'race';
5363 #EndIf
5365 #IfRow2D list_options list_id race title Laotian
5366 UPDATE `list_options` SET `notes` = '2041-2' WHERE `title` = 'Laotian' AND `list_id` = 'race';
5367 #EndIf
5369 #IfNotRow2Dx2 list_options list_id race option_id larsen_bay title Larsen Bay
5370 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','larsen_bay','Larsen Bay','4170', '0',' 1997-6', 0);
5371 #EndIf
5373 #IfRow2D list_options list_id race option_id larsen_bay
5374 UPDATE `list_options` SET `notes` = '1997-6' WHERE `option_id` = 'larsen_bay' AND `list_id` = 'race';
5375 #EndIf
5377 #IfRow2D list_options list_id race title Larsen Bay
5378 UPDATE `list_options` SET `notes` = '1997-6' WHERE `title` = 'Larsen Bay' AND `list_id` = 'race';
5379 #EndIf
5381 #IfNotRow2Dx2 list_options list_id race option_id las_vegas title Las Vegas
5382 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','las_vegas','Las Vegas','4180', '0',' 1424-1', 0);
5383 #EndIf
5385 #IfRow2D list_options list_id race option_id las_vegas
5386 UPDATE `list_options` SET `notes` = '1424-1' WHERE `option_id` = 'las_vegas' AND `list_id` = 'race';
5387 #EndIf
5389 #IfRow2D list_options list_id race title Las Vegas
5390 UPDATE `list_options` SET `notes` = '1424-1' WHERE `title` = 'Las Vegas' AND `list_id` = 'race';
5391 #EndIf
5393 #IfNotRow2Dx2 list_options list_id race option_id lassik title Lassik
5394 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','lassik','Lassik','4190', '0',' 1323-5', 0);
5395 #EndIf
5397 #IfRow2D list_options list_id race option_id lassik
5398 UPDATE `list_options` SET `notes` = '1323-5' WHERE `option_id` = 'lassik' AND `list_id` = 'race';
5399 #EndIf
5401 #IfRow2D list_options list_id race title Lassik
5402 UPDATE `list_options` SET `notes` = '1323-5' WHERE `title` = 'Lassik' AND `list_id` = 'race';
5403 #EndIf
5405 #IfNotRow2Dx2 list_options list_id race option_id lebanese title Lebanese
5406 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','lebanese','Lebanese','4200', '0',' 2123-8', 0);
5407 #EndIf
5409 #IfRow2D list_options list_id race option_id lebanese
5410 UPDATE `list_options` SET `notes` = '2123-8' WHERE `option_id` = 'lebanese' AND `list_id` = 'race';
5411 #EndIf
5413 #IfRow2D list_options list_id race title Lebanese
5414 UPDATE `list_options` SET `notes` = '2123-8' WHERE `title` = 'Lebanese' AND `list_id` = 'race';
5415 #EndIf
5417 #IfNotRow2Dx2 list_options list_id race option_id leech_lake title Leech Lake
5418 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','leech_lake','Leech Lake','4210', '0',' 1136-1', 0);
5419 #EndIf
5421 #IfRow2D list_options list_id race option_id leech_lake
5422 UPDATE `list_options` SET `notes` = '1136-1' WHERE `option_id` = 'leech_lake' AND `list_id` = 'race';
5423 #EndIf
5425 #IfRow2D list_options list_id race title Leech Lake
5426 UPDATE `list_options` SET `notes` = '1136-1' WHERE `title` = 'Leech Lake' AND `list_id` = 'race';
5427 #EndIf
5429 #IfNotRow2Dx2 list_options list_id race option_id lenni-lenape title Lenni-Lenape
5430 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','lenni-lenape','Lenni-Lenape','4220', '0',' 1216-1', 0);
5431 #EndIf
5433 #IfRow2D list_options list_id race option_id lenni-lenape
5434 UPDATE `list_options` SET `notes` = '1216-1' WHERE `option_id` = 'lenni-lenape' AND `list_id` = 'race';
5435 #EndIf
5437 #IfRow2D list_options list_id race title Lenni-Lenape
5438 UPDATE `list_options` SET `notes` = '1216-1' WHERE `title` = 'Lenni-Lenape' AND `list_id` = 'race';
5439 #EndIf
5441 #IfNotRow2Dx2 list_options list_id race option_id levelock title Levelock
5442 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','levelock','Levelock','4230', '0',' 1929-9', 0);
5443 #EndIf
5445 #IfRow2D list_options list_id race option_id levelock
5446 UPDATE `list_options` SET `notes` = '1929-9' WHERE `option_id` = 'levelock' AND `list_id` = 'race';
5447 #EndIf
5449 #IfRow2D list_options list_id race title Levelock
5450 UPDATE `list_options` SET `notes` = '1929-9' WHERE `title` = 'Levelock' AND `list_id` = 'race';
5451 #EndIf
5453 #IfNotRow2Dx2 list_options list_id race option_id liberian title Liberian
5454 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','liberian','Liberian','4240', '0',' 2063-6', 0);
5455 #EndIf
5457 #IfRow2D list_options list_id race option_id liberian
5458 UPDATE `list_options` SET `notes` = '2063-6' WHERE `option_id` = 'liberian' AND `list_id` = 'race';
5459 #EndIf
5461 #IfRow2D list_options list_id race title Liberian
5462 UPDATE `list_options` SET `notes` = '2063-6' WHERE `title` = 'Liberian' AND `list_id` = 'race';
5463 #EndIf
5465 #IfNotRow2Dx2 list_options list_id race option_id lime title Lime
5466 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','lime','Lime','4250', '0',' 1778-0', 0);
5467 #EndIf
5469 #IfRow2D list_options list_id race option_id lime
5470 UPDATE `list_options` SET `notes` = '1778-0' WHERE `option_id` = 'lime' AND `list_id` = 'race';
5471 #EndIf
5473 #IfRow2D list_options list_id race title Lime
5474 UPDATE `list_options` SET `notes` = '1778-0' WHERE `title` = 'Lime' AND `list_id` = 'race';
5475 #EndIf
5477 #IfNotRow2Dx2 list_options list_id race option_id lipan_apache title Lipan Apache
5478 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','lipan_apache','Lipan Apache','4260', '0',' 1014-0', 0);
5479 #EndIf
5481 #IfRow2D list_options list_id race option_id lipan_apache
5482 UPDATE `list_options` SET `notes` = '1014-0' WHERE `option_id` = 'lipan_apache' AND `list_id` = 'race';
5483 #EndIf
5485 #IfRow2D list_options list_id race title Lipan Apache
5486 UPDATE `list_options` SET `notes` = '1014-0' WHERE `title` = 'Lipan Apache' AND `list_id` = 'race';
5487 #EndIf
5489 #IfNotRow2Dx2 list_options list_id race option_id little_shell_chippewa title Little Shell Chippewa
5490 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','little_shell_chippewa','Little Shell Chippewa','4270', '0',' 1137-9', 0);
5491 #EndIf
5493 #IfRow2D list_options list_id race option_id little_shell_chippewa
5494 UPDATE `list_options` SET `notes` = '1137-9' WHERE `option_id` = 'little_shell_chippewa' AND `list_id` = 'race';
5495 #EndIf
5497 #IfRow2D list_options list_id race title Little Shell Chippewa
5498 UPDATE `list_options` SET `notes` = '1137-9' WHERE `title` = 'Little Shell Chippewa' AND `list_id` = 'race';
5499 #EndIf
5501 #IfNotRow2Dx2 list_options list_id race option_id lone_pine title Lone Pine
5502 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','lone_pine','Lone Pine','4280', '0',' 1425-8', 0);
5503 #EndIf
5505 #IfRow2D list_options list_id race option_id lone_pine
5506 UPDATE `list_options` SET `notes` = '1425-8' WHERE `option_id` = 'lone_pine' AND `list_id` = 'race';
5507 #EndIf
5509 #IfRow2D list_options list_id race title Lone Pine
5510 UPDATE `list_options` SET `notes` = '1425-8' WHERE `title` = 'Lone Pine' AND `list_id` = 'race';
5511 #EndIf
5513 #IfNotRow2Dx2 list_options list_id race option_id long_island title Long Island
5514 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','long_island','Long Island','4290', '0',' 1325-0', 0);
5515 #EndIf
5517 #IfRow2D list_options list_id race option_id long_island
5518 UPDATE `list_options` SET `notes` = '1325-0' WHERE `option_id` = 'long_island' AND `list_id` = 'race';
5519 #EndIf
5521 #IfRow2D list_options list_id race title Long Island
5522 UPDATE `list_options` SET `notes` = '1325-0' WHERE `title` = 'Long Island' AND `list_id` = 'race';
5523 #EndIf
5525 #IfNotRow2Dx2 list_options list_id race option_id los_coyotes title Los Coyotes
5526 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','los_coyotes','Los Coyotes','4300', '0',' 1048-8', 0);
5527 #EndIf
5529 #IfRow2D list_options list_id race option_id los_coyotes
5530 UPDATE `list_options` SET `notes` = '1048-8' WHERE `option_id` = 'los_coyotes' AND `list_id` = 'race';
5531 #EndIf
5533 #IfRow2D list_options list_id race title Los Coyotes
5534 UPDATE `list_options` SET `notes` = '1048-8' WHERE `title` = 'Los Coyotes' AND `list_id` = 'race';
5535 #EndIf
5537 #IfNotRow2Dx2 list_options list_id race option_id lovelock title Lovelock
5538 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','lovelock','Lovelock','4310', '0',' 1426-6', 0);
5539 #EndIf
5541 #IfRow2D list_options list_id race option_id lovelock
5542 UPDATE `list_options` SET `notes` = '1426-6' WHERE `option_id` = 'lovelock' AND `list_id` = 'race';
5543 #EndIf
5545 #IfRow2D list_options list_id race title Lovelock
5546 UPDATE `list_options` SET `notes` = '1426-6' WHERE `title` = 'Lovelock' AND `list_id` = 'race';
5547 #EndIf
5549 #IfNotRow2Dx2 list_options list_id race option_id lower_brule_sioux title Lower Brule Sioux
5550 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','lower_brule_sioux','Lower Brule Sioux','4320', '0',' 1618-8', 0);
5551 #EndIf
5553 #IfRow2D list_options list_id race option_id lower_brule_sioux
5554 UPDATE `list_options` SET `notes` = '1618-8' WHERE `option_id` = 'lower_brule_sioux' AND `list_id` = 'race';
5555 #EndIf
5557 #IfRow2D list_options list_id race title Lower Brule Sioux
5558 UPDATE `list_options` SET `notes` = '1618-8' WHERE `title` = 'Lower Brule Sioux' AND `list_id` = 'race';
5559 #EndIf
5561 #IfNotRow2Dx2 list_options list_id race option_id lower_elwha title Lower Elwha
5562 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','lower_elwha','Lower Elwha','4330', '0',' 1314-4', 0);
5563 #EndIf
5565 #IfRow2D list_options list_id race option_id lower_elwha
5566 UPDATE `list_options` SET `notes` = '1314-4' WHERE `option_id` = 'lower_elwha' AND `list_id` = 'race';
5567 #EndIf
5569 #IfRow2D list_options list_id race title Lower Elwha
5570 UPDATE `list_options` SET `notes` = '1314-4' WHERE `title` = 'Lower Elwha' AND `list_id` = 'race';
5571 #EndIf
5573 #IfNotRow2Dx2 list_options list_id race option_id lower_kalskag title Lower Kalskag
5574 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','lower_kalskag','Lower Kalskag','4340', '0',' 1930-7', 0);
5575 #EndIf
5577 #IfRow2D list_options list_id race option_id lower_kalskag
5578 UPDATE `list_options` SET `notes` = '1930-7' WHERE `option_id` = 'lower_kalskag' AND `list_id` = 'race';
5579 #EndIf
5581 #IfRow2D list_options list_id race title Lower Kalskag
5582 UPDATE `list_options` SET `notes` = '1930-7' WHERE `title` = 'Lower Kalskag' AND `list_id` = 'race';
5583 #EndIf
5585 #IfNotRow2Dx2 list_options list_id race option_id lower_muscogee title Lower Muscogee
5586 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','lower_muscogee','Lower Muscogee','4350', '0',' 1199-9', 0);
5587 #EndIf
5589 #IfRow2D list_options list_id race option_id lower_muscogee
5590 UPDATE `list_options` SET `notes` = '1199-9' WHERE `option_id` = 'lower_muscogee' AND `list_id` = 'race';
5591 #EndIf
5593 #IfRow2D list_options list_id race title Lower Muscogee
5594 UPDATE `list_options` SET `notes` = '1199-9' WHERE `title` = 'Lower Muscogee' AND `list_id` = 'race';
5595 #EndIf
5597 #IfNotRow2Dx2 list_options list_id race option_id lower_sioux title Lower Sioux
5598 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','lower_sioux','Lower Sioux','4360', '0',' 1619-6', 0);
5599 #EndIf
5601 #IfRow2D list_options list_id race option_id lower_sioux
5602 UPDATE `list_options` SET `notes` = '1619-6' WHERE `option_id` = 'lower_sioux' AND `list_id` = 'race';
5603 #EndIf
5605 #IfRow2D list_options list_id race title Lower Sioux
5606 UPDATE `list_options` SET `notes` = '1619-6' WHERE `title` = 'Lower Sioux' AND `list_id` = 'race';
5607 #EndIf
5609 #IfNotRow2Dx2 list_options list_id race option_id lower_skagit title Lower Skagit
5610 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','lower_skagit','Lower Skagit','4370', '0',' 1521-4', 0);
5611 #EndIf
5613 #IfRow2D list_options list_id race option_id lower_skagit
5614 UPDATE `list_options` SET `notes` = '1521-4' WHERE `option_id` = 'lower_skagit' AND `list_id` = 'race';
5615 #EndIf
5617 #IfRow2D list_options list_id race title Lower Skagit
5618 UPDATE `list_options` SET `notes` = '1521-4' WHERE `title` = 'Lower Skagit' AND `list_id` = 'race';
5619 #EndIf
5621 #IfNotRow2Dx2 list_options list_id race option_id luiseno title Luiseno
5622 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','luiseno','Luiseno','4380', '0',' 1331-8', 0);
5623 #EndIf
5625 #IfRow2D list_options list_id race option_id luiseno
5626 UPDATE `list_options` SET `notes` = '1331-8' WHERE `option_id` = 'luiseno' AND `list_id` = 'race';
5627 #EndIf
5629 #IfRow2D list_options list_id race title Luiseno
5630 UPDATE `list_options` SET `notes` = '1331-8' WHERE `title` = 'Luiseno' AND `list_id` = 'race';
5631 #EndIf
5633 #IfNotRow2Dx2 list_options list_id race option_id lumbee title Lumbee
5634 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','lumbee','Lumbee','4390', '0',' 1340-9', 0);
5635 #EndIf
5637 #IfRow2D list_options list_id race option_id lumbee
5638 UPDATE `list_options` SET `notes` = '1340-9' WHERE `option_id` = 'lumbee' AND `list_id` = 'race';
5639 #EndIf
5641 #IfRow2D list_options list_id race title Lumbee
5642 UPDATE `list_options` SET `notes` = '1340-9' WHERE `title` = 'Lumbee' AND `list_id` = 'race';
5643 #EndIf
5645 #IfNotRow2Dx2 list_options list_id race option_id lummi title Lummi
5646 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','lummi','Lummi','4400', '0',' 1342-5', 0);
5647 #EndIf
5649 #IfRow2D list_options list_id race option_id lummi
5650 UPDATE `list_options` SET `notes` = '1342-5' WHERE `option_id` = 'lummi' AND `list_id` = 'race';
5651 #EndIf
5653 #IfRow2D list_options list_id race title Lummi
5654 UPDATE `list_options` SET `notes` = '1342-5' WHERE `title` = 'Lummi' AND `list_id` = 'race';
5655 #EndIf
5657 #IfNotRow2Dx2 list_options list_id race option_id machis_lower_creek_indian title Machis Lower Creek Indian
5658 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','machis_lower_creek_indian','Machis Lower Creek Indian','4410', '0',' 1200-5', 0);
5659 #EndIf
5661 #IfRow2D list_options list_id race option_id machis_lower_creek_indian
5662 UPDATE `list_options` SET `notes` = '1200-5' WHERE `option_id` = 'machis_lower_creek_indian' AND `list_id` = 'race';
5663 #EndIf
5665 #IfRow2D list_options list_id race title Machis Lower Creek Indian
5666 UPDATE `list_options` SET `notes` = '1200-5' WHERE `title` = 'Machis Lower Creek Indian' AND `list_id` = 'race';
5667 #EndIf
5669 #IfNotRow2Dx2 list_options list_id race option_id madagascar title Madagascar
5670 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','madagascar','Madagascar','4420', '0',' 2052-9', 0);
5671 #EndIf
5673 #IfRow2D list_options list_id race option_id madagascar
5674 UPDATE `list_options` SET `notes` = '2052-9' WHERE `option_id` = 'madagascar' AND `list_id` = 'race';
5675 #EndIf
5677 #IfRow2D list_options list_id race title Madagascar
5678 UPDATE `list_options` SET `notes` = '2052-9' WHERE `title` = 'Madagascar' AND `list_id` = 'race';
5679 #EndIf
5681 #IfNotRow2Dx2 list_options list_id race option_id maidu title Maidu
5682 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','maidu','Maidu','4430', '0',' 1344-1', 0);
5683 #EndIf
5685 #IfRow2D list_options list_id race option_id maidu
5686 UPDATE `list_options` SET `notes` = '1344-1' WHERE `option_id` = 'maidu' AND `list_id` = 'race';
5687 #EndIf
5689 #IfRow2D list_options list_id race title Maidu
5690 UPDATE `list_options` SET `notes` = '1344-1' WHERE `title` = 'Maidu' AND `list_id` = 'race';
5691 #EndIf
5693 #IfNotRow2Dx2 list_options list_id race option_id makah title Makah
5694 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','makah','Makah','4440', '0',' 1348-2', 0);
5695 #EndIf
5697 #IfRow2D list_options list_id race option_id makah
5698 UPDATE `list_options` SET `notes` = '1348-2' WHERE `option_id` = 'makah' AND `list_id` = 'race';
5699 #EndIf
5701 #IfRow2D list_options list_id race title Makah
5702 UPDATE `list_options` SET `notes` = '1348-2' WHERE `title` = 'Makah' AND `list_id` = 'race';
5703 #EndIf
5705 #IfNotRow2Dx2 list_options list_id race option_id malaysian title Malaysian
5706 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','malaysian','Malaysian','4450', '0',' 2042-0', 0);
5707 #EndIf
5709 #IfRow2D list_options list_id race option_id malaysian
5710 UPDATE `list_options` SET `notes` = '2042-0' WHERE `option_id` = 'malaysian' AND `list_id` = 'race';
5711 #EndIf
5713 #IfRow2D list_options list_id race title Malaysian
5714 UPDATE `list_options` SET `notes` = '2042-0' WHERE `title` = 'Malaysian' AND `list_id` = 'race';
5715 #EndIf
5717 #IfNotRow2Dx2 list_options list_id race option_id maldivian title Maldivian
5718 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','maldivian','Maldivian','4460', '0',' 2049-5', 0);
5719 #EndIf
5721 #IfRow2D list_options list_id race option_id maldivian
5722 UPDATE `list_options` SET `notes` = '2049-5' WHERE `option_id` = 'maldivian' AND `list_id` = 'race';
5723 #EndIf
5725 #IfRow2D list_options list_id race title Maldivian
5726 UPDATE `list_options` SET `notes` = '2049-5' WHERE `title` = 'Maldivian' AND `list_id` = 'race';
5727 #EndIf
5729 #IfNotRow2Dx2 list_options list_id race option_id malheur_paiute title Malheur Paiute
5730 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','malheur_paiute','Malheur Paiute','4470', '0',' 1427-4', 0);
5731 #EndIf
5733 #IfRow2D list_options list_id race option_id malheur_paiute
5734 UPDATE `list_options` SET `notes` = '1427-4' WHERE `option_id` = 'malheur_paiute' AND `list_id` = 'race';
5735 #EndIf
5737 #IfRow2D list_options list_id race title Malheur Paiute
5738 UPDATE `list_options` SET `notes` = '1427-4' WHERE `title` = 'Malheur Paiute' AND `list_id` = 'race';
5739 #EndIf
5741 #IfNotRow2Dx2 list_options list_id race option_id maliseet title Maliseet
5742 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','maliseet','Maliseet','4480', '0',' 1350-8', 0);
5743 #EndIf
5745 #IfRow2D list_options list_id race option_id maliseet
5746 UPDATE `list_options` SET `notes` = '1350-8' WHERE `option_id` = 'maliseet' AND `list_id` = 'race';
5747 #EndIf
5749 #IfRow2D list_options list_id race title Maliseet
5750 UPDATE `list_options` SET `notes` = '1350-8' WHERE `title` = 'Maliseet' AND `list_id` = 'race';
5751 #EndIf
5753 #IfNotRow2Dx2 list_options list_id race option_id mandan title Mandan
5754 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','mandan','Mandan','4490', '0',' 1352-4', 0);
5755 #EndIf
5757 #IfRow2D list_options list_id race option_id mandan
5758 UPDATE `list_options` SET `notes` = '1352-4' WHERE `option_id` = 'mandan' AND `list_id` = 'race';
5759 #EndIf
5761 #IfRow2D list_options list_id race title Mandan
5762 UPDATE `list_options` SET `notes` = '1352-4' WHERE `title` = 'Mandan' AND `list_id` = 'race';
5763 #EndIf
5765 #IfNotRow2Dx2 list_options list_id race option_id manley_hot_springs title Manley Hot Springs
5766 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','manley_hot_springs','Manley Hot Springs','4500', '0',' 1780-6', 0);
5767 #EndIf
5769 #IfRow2D list_options list_id race option_id manley_hot_springs
5770 UPDATE `list_options` SET `notes` = '1780-6' WHERE `option_id` = 'manley_hot_springs' AND `list_id` = 'race';
5771 #EndIf
5773 #IfRow2D list_options list_id race title Manley Hot Springs
5774 UPDATE `list_options` SET `notes` = '1780-6' WHERE `title` = 'Manley Hot Springs' AND `list_id` = 'race';
5775 #EndIf
5777 #IfNotRow2Dx2 list_options list_id race option_id manokotak title Manokotak
5778 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','manokotak','Manokotak','4510', '0',' 1931-5', 0);
5779 #EndIf
5781 #IfRow2D list_options list_id race option_id manokotak
5782 UPDATE `list_options` SET `notes` = '1931-5' WHERE `option_id` = 'manokotak' AND `list_id` = 'race';
5783 #EndIf
5785 #IfRow2D list_options list_id race title Manokotak
5786 UPDATE `list_options` SET `notes` = '1931-5' WHERE `title` = 'Manokotak' AND `list_id` = 'race';
5787 #EndIf
5789 #IfNotRow2Dx2 list_options list_id race option_id manzanita title Manzanita
5790 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','manzanita','Manzanita','4520', '0',' 1227-8', 0);
5791 #EndIf
5793 #IfRow2D list_options list_id race option_id manzanita
5794 UPDATE `list_options` SET `notes` = '1227-8' WHERE `option_id` = 'manzanita' AND `list_id` = 'race';
5795 #EndIf
5797 #IfRow2D list_options list_id race title Manzanita
5798 UPDATE `list_options` SET `notes` = '1227-8' WHERE `title` = 'Manzanita' AND `list_id` = 'race';
5799 #EndIf
5801 #IfNotRow2Dx2 list_options list_id race option_id mariana_islander title Mariana Islander
5802 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','mariana_islander','Mariana Islander','4530', '0',' 2089-1', 0);
5803 #EndIf
5805 #IfRow2D list_options list_id race option_id mariana_islander
5806 UPDATE `list_options` SET `notes` = '2089-1' WHERE `option_id` = 'mariana_islander' AND `list_id` = 'race';
5807 #EndIf
5809 #IfRow2D list_options list_id race title Mariana Islander
5810 UPDATE `list_options` SET `notes` = '2089-1' WHERE `title` = 'Mariana Islander' AND `list_id` = 'race';
5811 #EndIf
5813 #IfNotRow2Dx2 list_options list_id race option_id maricopa title Maricopa
5814 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','maricopa','Maricopa','4540', '0',' 1728-5', 0);
5815 #EndIf
5817 #IfRow2D list_options list_id race option_id maricopa
5818 UPDATE `list_options` SET `notes` = '1728-5' WHERE `option_id` = 'maricopa' AND `list_id` = 'race';
5819 #EndIf
5821 #IfRow2D list_options list_id race title Maricopa
5822 UPDATE `list_options` SET `notes` = '1728-5' WHERE `title` = 'Maricopa' AND `list_id` = 'race';
5823 #EndIf
5825 #IfNotRow2Dx2 list_options list_id race option_id marshall title Marshall
5826 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','marshall','Marshall','4550', '0',' 1932-3', 0);
5827 #EndIf
5829 #IfRow2D list_options list_id race option_id marshall
5830 UPDATE `list_options` SET `notes` = '1932-3' WHERE `option_id` = 'marshall' AND `list_id` = 'race';
5831 #EndIf
5833 #IfRow2D list_options list_id race title Marshall
5834 UPDATE `list_options` SET `notes` = '1932-3' WHERE `title` = 'Marshall' AND `list_id` = 'race';
5835 #EndIf
5837 #IfNotRow2Dx2 list_options list_id race option_id marshallese title Marshallese
5838 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','marshallese','Marshallese','4560', '0',' 2090-9', 0);
5839 #EndIf
5841 #IfRow2D list_options list_id race option_id marshallese
5842 UPDATE `list_options` SET `notes` = '2090-9' WHERE `option_id` = 'marshallese' AND `list_id` = 'race';
5843 #EndIf
5845 #IfRow2D list_options list_id race title Marshallese
5846 UPDATE `list_options` SET `notes` = '2090-9' WHERE `title` = 'Marshallese' AND `list_id` = 'race';
5847 #EndIf
5849 #IfNotRow2Dx2 list_options list_id race option_id marshantucket_pequot title Marshantucket Pequot
5850 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','marshantucket_pequot','Marshantucket Pequot','4570', '0',' 1454-8', 0);
5851 #EndIf
5853 #IfRow2D list_options list_id race option_id marshantucket_pequot
5854 UPDATE `list_options` SET `notes` = '1454-8' WHERE `option_id` = 'marshantucket_pequot' AND `list_id` = 'race';
5855 #EndIf
5857 #IfRow2D list_options list_id race title Marshantucket Pequot
5858 UPDATE `list_options` SET `notes` = '1454-8' WHERE `title` = 'Marshantucket Pequot' AND `list_id` = 'race';
5859 #EndIf
5861 #IfNotRow2D list_options list_id race option_id marys_igloo
5862 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','marys_igloo',"Mary's Igloo",'4580', '0',' 1889-5', 0);
5863 #EndIf
5865 #IfRow2D list_options list_id race option_id marys_igloo
5866 UPDATE `list_options` SET `notes` = '1889-5' WHERE `option_id` = 'marys_igloo' AND `list_id` = 'race';
5867 #EndIf
5869 #IfNotRow2Dx2 list_options list_id race option_id mashpee_wampanoag title Mashpee Wampanoag
5870 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','mashpee_wampanoag','Mashpee Wampanoag','4590', '0',' 1681-6', 0);
5871 #EndIf
5873 #IfRow2D list_options list_id race option_id mashpee_wampanoag
5874 UPDATE `list_options` SET `notes` = '1681-6' WHERE `option_id` = 'mashpee_wampanoag' AND `list_id` = 'race';
5875 #EndIf
5877 #IfRow2D list_options list_id race title Mashpee Wampanoag
5878 UPDATE `list_options` SET `notes` = '1681-6' WHERE `title` = 'Mashpee Wampanoag' AND `list_id` = 'race';
5879 #EndIf
5881 #IfNotRow2Dx2 list_options list_id race option_id matinecock title Matinecock
5882 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','matinecock','Matinecock','4600', '0',' 1326-8', 0);
5883 #EndIf
5885 #IfRow2D list_options list_id race option_id matinecock
5886 UPDATE `list_options` SET `notes` = '1326-8' WHERE `option_id` = 'matinecock' AND `list_id` = 'race';
5887 #EndIf
5889 #IfRow2D list_options list_id race title Matinecock
5890 UPDATE `list_options` SET `notes` = '1326-8' WHERE `title` = 'Matinecock' AND `list_id` = 'race';
5891 #EndIf
5893 #IfNotRow2Dx2 list_options list_id race option_id mattaponi title Mattaponi
5894 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','mattaponi','Mattaponi','4610', '0',' 1354-0', 0);
5895 #EndIf
5897 #IfRow2D list_options list_id race option_id mattaponi
5898 UPDATE `list_options` SET `notes` = '1354-0' WHERE `option_id` = 'mattaponi' AND `list_id` = 'race';
5899 #EndIf
5901 #IfRow2D list_options list_id race title Mattaponi
5902 UPDATE `list_options` SET `notes` = '1354-0' WHERE `title` = 'Mattaponi' AND `list_id` = 'race';
5903 #EndIf
5905 #IfNotRow2Dx2 list_options list_id race option_id mattole title Mattole
5906 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','mattole','Mattole','4620', '0',' 1060-3', 0);
5907 #EndIf
5909 #IfRow2D list_options list_id race option_id mattole
5910 UPDATE `list_options` SET `notes` = '1060-3' WHERE `option_id` = 'mattole' AND `list_id` = 'race';
5911 #EndIf
5913 #IfRow2D list_options list_id race title Mattole
5914 UPDATE `list_options` SET `notes` = '1060-3' WHERE `title` = 'Mattole' AND `list_id` = 'race';
5915 #EndIf
5917 #IfNotRow2Dx2 list_options list_id race option_id mauneluk_inupiat title Mauneluk Inupiat
5918 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','mauneluk_inupiat','Mauneluk Inupiat','4630', '0',' 1870-5', 0);
5919 #EndIf
5921 #IfRow2D list_options list_id race option_id mauneluk_inupiat
5922 UPDATE `list_options` SET `notes` = '1870-5' WHERE `option_id` = 'mauneluk_inupiat' AND `list_id` = 'race';
5923 #EndIf
5925 #IfRow2D list_options list_id race title Mauneluk Inupiat
5926 UPDATE `list_options` SET `notes` = '1870-5' WHERE `title` = 'Mauneluk Inupiat' AND `list_id` = 'race';
5927 #EndIf
5929 #IfNotRow2Dx2 list_options list_id race option_id mcgrath title Mcgrath
5930 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','mcgrath','Mcgrath','4640', '0',' 1779-8', 0);
5931 #EndIf
5933 #IfRow2D list_options list_id race option_id mcgrath
5934 UPDATE `list_options` SET `notes` = '1779-8' WHERE `option_id` = 'mcgrath' AND `list_id` = 'race';
5935 #EndIf
5937 #IfRow2D list_options list_id race title Mcgrath
5938 UPDATE `list_options` SET `notes` = '1779-8' WHERE `title` = 'Mcgrath' AND `list_id` = 'race';
5939 #EndIf
5941 #IfNotRow2Dx2 list_options list_id race option_id mdewakanton_sioux title Mdewakanton Sioux
5942 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','mdewakanton_sioux','Mdewakanton Sioux','4650', '0',' 1620-4', 0);
5943 #EndIf
5945 #IfRow2D list_options list_id race option_id mdewakanton_sioux
5946 UPDATE `list_options` SET `notes` = '1620-4' WHERE `option_id` = 'mdewakanton_sioux' AND `list_id` = 'race';
5947 #EndIf
5949 #IfRow2D list_options list_id race title Mdewakanton Sioux
5950 UPDATE `list_options` SET `notes` = '1620-4' WHERE `title` = 'Mdewakanton Sioux' AND `list_id` = 'race';
5951 #EndIf
5953 #IfNotRow2Dx2 list_options list_id race option_id mekoryuk title Mekoryuk
5954 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','mekoryuk','Mekoryuk','4660', '0',' 1933-1', 0);
5955 #EndIf
5957 #IfRow2D list_options list_id race option_id mekoryuk
5958 UPDATE `list_options` SET `notes` = '1933-1' WHERE `option_id` = 'mekoryuk' AND `list_id` = 'race';
5959 #EndIf
5961 #IfRow2D list_options list_id race title Mekoryuk
5962 UPDATE `list_options` SET `notes` = '1933-1' WHERE `title` = 'Mekoryuk' AND `list_id` = 'race';
5963 #EndIf
5965 #IfNotRow2Dx2 list_options list_id race option_id melanesian title Melanesian
5966 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','melanesian','Melanesian','4670', '0',' 2100-6', 0);
5967 #EndIf
5969 #IfRow2D list_options list_id race option_id melanesian
5970 UPDATE `list_options` SET `notes` = '2100-6' WHERE `option_id` = 'melanesian' AND `list_id` = 'race';
5971 #EndIf
5973 #IfRow2D list_options list_id race title Melanesian
5974 UPDATE `list_options` SET `notes` = '2100-6' WHERE `title` = 'Melanesian' AND `list_id` = 'race';
5975 #EndIf
5977 #IfNotRow2Dx2 list_options list_id race option_id menominee title Menominee
5978 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','menominee','Menominee','4680', '0',' 1356-5', 0);
5979 #EndIf
5981 #IfRow2D list_options list_id race option_id menominee
5982 UPDATE `list_options` SET `notes` = '1356-5' WHERE `option_id` = 'menominee' AND `list_id` = 'race';
5983 #EndIf
5985 #IfRow2D list_options list_id race title Menominee
5986 UPDATE `list_options` SET `notes` = '1356-5' WHERE `title` = 'Menominee' AND `list_id` = 'race';
5987 #EndIf
5989 #IfNotRow2Dx2 list_options list_id race option_id mentasta_lake title Mentasta Lake
5990 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','mentasta_lake','Mentasta Lake','4690', '0',' 1781-4', 0);
5991 #EndIf
5993 #IfRow2D list_options list_id race option_id mentasta_lake
5994 UPDATE `list_options` SET `notes` = '1781-4' WHERE `option_id` = 'mentasta_lake' AND `list_id` = 'race';
5995 #EndIf
5997 #IfRow2D list_options list_id race title Mentasta Lake
5998 UPDATE `list_options` SET `notes` = '1781-4' WHERE `title` = 'Mentasta Lake' AND `list_id` = 'race';
5999 #EndIf
6001 #IfNotRow2Dx2 list_options list_id race option_id mesa_grande title Mesa Grande
6002 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','mesa_grande','Mesa Grande','4700', '0',' 1228-6', 0);
6003 #EndIf
6005 #IfRow2D list_options list_id race option_id mesa_grande
6006 UPDATE `list_options` SET `notes` = '1228-6' WHERE `option_id` = 'mesa_grande' AND `list_id` = 'race';
6007 #EndIf
6009 #IfRow2D list_options list_id race title Mesa Grande
6010 UPDATE `list_options` SET `notes` = '1228-6' WHERE `title` = 'Mesa Grande' AND `list_id` = 'race';
6011 #EndIf
6013 #IfNotRow2Dx2 list_options list_id race option_id mescalero_apache title Mescalero Apache
6014 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','mescalero_apache','Mescalero Apache','4710', '0',' 1015-7', 0);
6015 #EndIf
6017 #IfRow2D list_options list_id race option_id mescalero_apache
6018 UPDATE `list_options` SET `notes` = '1015-7' WHERE `option_id` = 'mescalero_apache' AND `list_id` = 'race';
6019 #EndIf
6021 #IfRow2D list_options list_id race title Mescalero Apache
6022 UPDATE `list_options` SET `notes` = '1015-7' WHERE `title` = 'Mescalero Apache' AND `list_id` = 'race';
6023 #EndIf
6025 #IfNotRow2Dx2 list_options list_id race option_id metlakatla title Metlakatla
6026 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','metlakatla','Metlakatla','4720', '0',' 1838-2', 0);
6027 #EndIf
6029 #IfRow2D list_options list_id race option_id metlakatla
6030 UPDATE `list_options` SET `notes` = '1838-2' WHERE `option_id` = 'metlakatla' AND `list_id` = 'race';
6031 #EndIf
6033 #IfRow2D list_options list_id race title Metlakatla
6034 UPDATE `list_options` SET `notes` = '1838-2' WHERE `title` = 'Metlakatla' AND `list_id` = 'race';
6035 #EndIf
6037 #IfNotRow2Dx2 list_options list_id race option_id mexican_american_indian title Mexican American Indian
6038 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','mexican_american_indian','Mexican American Indian','4730', '0',' 1072-8', 0);
6039 #EndIf
6041 #IfRow2D list_options list_id race option_id mexican_american_indian
6042 UPDATE `list_options` SET `notes` = '1072-8' WHERE `option_id` = 'mexican_american_indian' AND `list_id` = 'race';
6043 #EndIf
6045 #IfRow2D list_options list_id race title Mexican American Indian
6046 UPDATE `list_options` SET `notes` = '1072-8' WHERE `title` = 'Mexican American Indian' AND `list_id` = 'race';
6047 #EndIf
6049 #IfNotRow2Dx2 list_options list_id race option_id miami title Miami
6050 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','miami','Miami','4740', '0',' 1358-1', 0);
6051 #EndIf
6053 #IfRow2D list_options list_id race option_id miami
6054 UPDATE `list_options` SET `notes` = '1358-1' WHERE `option_id` = 'miami' AND `list_id` = 'race';
6055 #EndIf
6057 #IfRow2D list_options list_id race title Miami
6058 UPDATE `list_options` SET `notes` = '1358-1' WHERE `title` = 'Miami' AND `list_id` = 'race';
6059 #EndIf
6061 #IfNotRow2Dx2 list_options list_id race option_id miccosukee title Miccosukee
6062 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','miccosukee','Miccosukee','4750', '0',' 1363-1', 0);
6063 #EndIf
6065 #IfRow2D list_options list_id race option_id miccosukee
6066 UPDATE `list_options` SET `notes` = '1363-1' WHERE `option_id` = 'miccosukee' AND `list_id` = 'race';
6067 #EndIf
6069 #IfRow2D list_options list_id race title Miccosukee
6070 UPDATE `list_options` SET `notes` = '1363-1' WHERE `title` = 'Miccosukee' AND `list_id` = 'race';
6071 #EndIf
6073 #IfNotRow2Dx2 list_options list_id race option_id michigan_ottawa title Michigan Ottawa
6074 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','michigan_ottawa','Michigan Ottawa','4760', '0',' 1413-4', 0);
6075 #EndIf
6077 #IfRow2D list_options list_id race option_id michigan_ottawa
6078 UPDATE `list_options` SET `notes` = '1413-4' WHERE `option_id` = 'michigan_ottawa' AND `list_id` = 'race';
6079 #EndIf
6081 #IfRow2D list_options list_id race title Michigan Ottawa
6082 UPDATE `list_options` SET `notes` = '1413-4' WHERE `title` = 'Michigan Ottawa' AND `list_id` = 'race';
6083 #EndIf
6085 #IfNotRow2Dx2 list_options list_id race option_id micmac title Micmac
6086 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','micmac','Micmac','4770', '0',' 1365-6', 0);
6087 #EndIf
6089 #IfRow2D list_options list_id race option_id micmac
6090 UPDATE `list_options` SET `notes` = '1365-6' WHERE `option_id` = 'micmac' AND `list_id` = 'race';
6091 #EndIf
6093 #IfRow2D list_options list_id race title Micmac
6094 UPDATE `list_options` SET `notes` = '1365-6' WHERE `title` = 'Micmac' AND `list_id` = 'race';
6095 #EndIf
6097 #IfNotRow2Dx2 list_options list_id race option_id micronesian title Micronesian
6098 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','micronesian','Micronesian','4780', '0',' 2085-9', 0);
6099 #EndIf
6101 #IfRow2D list_options list_id race option_id micronesian
6102 UPDATE `list_options` SET `notes` = '2085-9' WHERE `option_id` = 'micronesian' AND `list_id` = 'race';
6103 #EndIf
6105 #IfRow2D list_options list_id race title Micronesian
6106 UPDATE `list_options` SET `notes` = '2085-9' WHERE `title` = 'Micronesian' AND `list_id` = 'race';
6107 #EndIf
6109 #IfNotRow2Dx2 list_options list_id race option_id middle_eastern_north_african title Middle Eastern or North African
6110 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','middle_eastern_north_african','Middle Eastern or North African','4790', '0',' 2118-8', 0);
6111 #EndIf
6113 #IfRow2D list_options list_id race option_id middle_eastern_north_african
6114 UPDATE `list_options` SET `notes` = '2118-8' WHERE `option_id` = 'middle_eastern_north_african' AND `list_id` = 'race';
6115 #EndIf
6117 #IfRow2D list_options list_id race title Middle Eastern or North African
6118 UPDATE `list_options` SET `notes` = '2118-8' WHERE `title` = 'Middle Eastern or North African' AND `list_id` = 'race';
6119 #EndIf
6121 #IfNotRow2Dx2 list_options list_id race option_id mille_lacs title Mille Lacs
6122 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','mille_lacs','Mille Lacs','4800', '0',' 1138-7', 0);
6123 #EndIf
6125 #IfRow2D list_options list_id race option_id mille_lacs
6126 UPDATE `list_options` SET `notes` = '1138-7' WHERE `option_id` = 'mille_lacs' AND `list_id` = 'race';
6127 #EndIf
6129 #IfRow2D list_options list_id race title Mille Lacs
6130 UPDATE `list_options` SET `notes` = '1138-7' WHERE `title` = 'Mille Lacs' AND `list_id` = 'race';
6131 #EndIf
6133 #IfNotRow2Dx2 list_options list_id race option_id miniconjou title Miniconjou
6134 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','miniconjou','Miniconjou','4810', '0',' 1621-2', 0);
6135 #EndIf
6137 #IfRow2D list_options list_id race option_id miniconjou
6138 UPDATE `list_options` SET `notes` = '1621-2' WHERE `option_id` = 'miniconjou' AND `list_id` = 'race';
6139 #EndIf
6141 #IfRow2D list_options list_id race title Miniconjou
6142 UPDATE `list_options` SET `notes` = '1621-2' WHERE `title` = 'Miniconjou' AND `list_id` = 'race';
6143 #EndIf
6145 #IfNotRow2Dx2 list_options list_id race option_id minnesota_chippewa title Minnesota Chippewa
6146 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','minnesota_chippewa','Minnesota Chippewa','4820', '0',' 1139-5', 0);
6147 #EndIf
6149 #IfRow2D list_options list_id race option_id minnesota_chippewa
6150 UPDATE `list_options` SET `notes` = '1139-5' WHERE `option_id` = 'minnesota_chippewa' AND `list_id` = 'race';
6151 #EndIf
6153 #IfRow2D list_options list_id race title Minnesota Chippewa
6154 UPDATE `list_options` SET `notes` = '1139-5' WHERE `title` = 'Minnesota Chippewa' AND `list_id` = 'race';
6155 #EndIf
6157 #IfNotRow2Dx2 list_options list_id race option_id minto title Minto
6158 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','minto','Minto','4830', '0',' 1782-2', 0);
6159 #EndIf
6161 #IfRow2D list_options list_id race option_id minto
6162 UPDATE `list_options` SET `notes` = '1782-2' WHERE `option_id` = 'minto' AND `list_id` = 'race';
6163 #EndIf
6165 #IfRow2D list_options list_id race title Minto
6166 UPDATE `list_options` SET `notes` = '1782-2' WHERE `title` = 'Minto' AND `list_id` = 'race';
6167 #EndIf
6169 #IfNotRow2Dx2 list_options list_id race option_id mission_indians title Mission Indians
6170 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','mission_indians','Mission Indians','4840', '0',' 1368-0', 0);
6171 #EndIf
6173 #IfRow2D list_options list_id race option_id mission_indians
6174 UPDATE `list_options` SET `notes` = '1368-0' WHERE `option_id` = 'mission_indians' AND `list_id` = 'race';
6175 #EndIf
6177 #IfRow2D list_options list_id race title Mission Indians
6178 UPDATE `list_options` SET `notes` = '1368-0' WHERE `title` = 'Mission Indians' AND `list_id` = 'race';
6179 #EndIf
6181 #IfNotRow2Dx2 list_options list_id race option_id mississippi_choctaw title Mississippi Choctaw
6182 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','mississippi_choctaw','Mississippi Choctaw','4850', '0',' 1158-5', 0);
6183 #EndIf
6185 #IfRow2D list_options list_id race option_id mississippi_choctaw
6186 UPDATE `list_options` SET `notes` = '1158-5' WHERE `option_id` = 'mississippi_choctaw' AND `list_id` = 'race';
6187 #EndIf
6189 #IfRow2D list_options list_id race title Mississippi Choctaw
6190 UPDATE `list_options` SET `notes` = '1158-5' WHERE `title` = 'Mississippi Choctaw' AND `list_id` = 'race';
6191 #EndIf
6193 #IfNotRow2Dx2 list_options list_id race option_id missouri_sac_and_fox title Missouri Sac and Fox
6194 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','missouri_sac_and_fox','Missouri Sac and Fox','4860', '0',' 1553-7', 0);
6195 #EndIf
6197 #IfRow2D list_options list_id race option_id missouri_sac_and_fox
6198 UPDATE `list_options` SET `notes` = '1553-7' WHERE `option_id` = 'missouri_sac_and_fox' AND `list_id` = 'race';
6199 #EndIf
6201 #IfRow2D list_options list_id race title Missouri Sac and Fox
6202 UPDATE `list_options` SET `notes` = '1553-7' WHERE `title` = 'Missouri Sac and Fox' AND `list_id` = 'race';
6203 #EndIf
6205 #IfNotRow2Dx2 list_options list_id race option_id miwok title Miwok
6206 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','miwok','Miwok','4870', '0',' 1370-6', 0);
6207 #EndIf
6209 #IfRow2D list_options list_id race option_id miwok
6210 UPDATE `list_options` SET `notes` = '1370-6' WHERE `option_id` = 'miwok' AND `list_id` = 'race';
6211 #EndIf
6213 #IfRow2D list_options list_id race title Miwok
6214 UPDATE `list_options` SET `notes` = '1370-6' WHERE `title` = 'Miwok' AND `list_id` = 'race';
6215 #EndIf
6217 #IfNotRow2Dx2 list_options list_id race option_id moapa title Moapa
6218 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','moapa','Moapa','4880', '0',' 1428-2', 0);
6219 #EndIf
6221 #IfRow2D list_options list_id race option_id moapa
6222 UPDATE `list_options` SET `notes` = '1428-2' WHERE `option_id` = 'moapa' AND `list_id` = 'race';
6223 #EndIf
6225 #IfRow2D list_options list_id race title Moapa
6226 UPDATE `list_options` SET `notes` = '1428-2' WHERE `title` = 'Moapa' AND `list_id` = 'race';
6227 #EndIf
6229 #IfNotRow2Dx2 list_options list_id race option_id modoc title Modoc
6230 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','modoc','Modoc','4890', '0',' 1372-2', 0);
6231 #EndIf
6233 #IfRow2D list_options list_id race option_id modoc
6234 UPDATE `list_options` SET `notes` = '1372-2' WHERE `option_id` = 'modoc' AND `list_id` = 'race';
6235 #EndIf
6237 #IfRow2D list_options list_id race title Modoc
6238 UPDATE `list_options` SET `notes` = '1372-2' WHERE `title` = 'Modoc' AND `list_id` = 'race';
6239 #EndIf
6241 #IfNotRow2Dx2 list_options list_id race option_id mohave title Mohave
6242 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','mohave','Mohave','4900', '0',' 1729-3', 0);
6243 #EndIf
6245 #IfRow2D list_options list_id race option_id mohave
6246 UPDATE `list_options` SET `notes` = '1729-3' WHERE `option_id` = 'mohave' AND `list_id` = 'race';
6247 #EndIf
6249 #IfRow2D list_options list_id race title Mohave
6250 UPDATE `list_options` SET `notes` = '1729-3' WHERE `title` = 'Mohave' AND `list_id` = 'race';
6251 #EndIf
6253 #IfNotRow2Dx2 list_options list_id race option_id mohawk title Mohawk
6254 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','mohawk','Mohawk','4910', '0',' 1287-2', 0);
6255 #EndIf
6257 #IfRow2D list_options list_id race option_id mohawk
6258 UPDATE `list_options` SET `notes` = '1287-2' WHERE `option_id` = 'mohawk' AND `list_id` = 'race';
6259 #EndIf
6261 #IfRow2D list_options list_id race title Mohawk
6262 UPDATE `list_options` SET `notes` = '1287-2' WHERE `title` = 'Mohawk' AND `list_id` = 'race';
6263 #EndIf
6265 #IfNotRow2Dx2 list_options list_id race option_id mohegan title Mohegan
6266 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','mohegan','Mohegan','4920', '0',' 1374-8', 0);
6267 #EndIf
6269 #IfRow2D list_options list_id race option_id mohegan
6270 UPDATE `list_options` SET `notes` = '1374-8' WHERE `option_id` = 'mohegan' AND `list_id` = 'race';
6271 #EndIf
6273 #IfRow2D list_options list_id race title Mohegan
6274 UPDATE `list_options` SET `notes` = '1374-8' WHERE `title` = 'Mohegan' AND `list_id` = 'race';
6275 #EndIf
6277 #IfNotRow2Dx2 list_options list_id race option_id molala title Molala
6278 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','molala','Molala','4930', '0',' 1396-1', 0);
6279 #EndIf
6281 #IfRow2D list_options list_id race option_id molala
6282 UPDATE `list_options` SET `notes` = '1396-1' WHERE `option_id` = 'molala' AND `list_id` = 'race';
6283 #EndIf
6285 #IfRow2D list_options list_id race title Molala
6286 UPDATE `list_options` SET `notes` = '1396-1' WHERE `title` = 'Molala' AND `list_id` = 'race';
6287 #EndIf
6289 #IfNotRow2Dx2 list_options list_id race option_id mono title Mono
6290 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','mono','Mono','4940', '0',' 1376-3', 0);
6291 #EndIf
6293 #IfRow2D list_options list_id race option_id mono
6294 UPDATE `list_options` SET `notes` = '1376-3' WHERE `option_id` = 'mono' AND `list_id` = 'race';
6295 #EndIf
6297 #IfRow2D list_options list_id race title Mono
6298 UPDATE `list_options` SET `notes` = '1376-3' WHERE `title` = 'Mono' AND `list_id` = 'race';
6299 #EndIf
6301 #IfNotRow2Dx2 list_options list_id race option_id montauk title Montauk
6302 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','montauk','Montauk','4950', '0',' 1327-6', 0);
6303 #EndIf
6305 #IfRow2D list_options list_id race option_id montauk
6306 UPDATE `list_options` SET `notes` = '1327-6' WHERE `option_id` = 'montauk' AND `list_id` = 'race';
6307 #EndIf
6309 #IfRow2D list_options list_id race title Montauk
6310 UPDATE `list_options` SET `notes` = '1327-6' WHERE `title` = 'Montauk' AND `list_id` = 'race';
6311 #EndIf
6313 #IfNotRow2Dx2 list_options list_id race option_id moor title Moor
6314 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','moor','Moor','4960', '0',' 1237-7', 0);
6315 #EndIf
6317 #IfRow2D list_options list_id race option_id moor
6318 UPDATE `list_options` SET `notes` = '1237-7' WHERE `option_id` = 'moor' AND `list_id` = 'race';
6319 #EndIf
6321 #IfRow2D list_options list_id race title Moor
6322 UPDATE `list_options` SET `notes` = '1237-7' WHERE `title` = 'Moor' AND `list_id` = 'race';
6323 #EndIf
6325 #IfNotRow2Dx2 list_options list_id race option_id morongo title Morongo
6326 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','morongo','Morongo','4970', '0',' 1049-6', 0);
6327 #EndIf
6329 #IfRow2D list_options list_id race option_id morongo
6330 UPDATE `list_options` SET `notes` = '1049-6' WHERE `option_id` = 'morongo' AND `list_id` = 'race';
6331 #EndIf
6333 #IfRow2D list_options list_id race title Morongo
6334 UPDATE `list_options` SET `notes` = '1049-6' WHERE `title` = 'Morongo' AND `list_id` = 'race';
6335 #EndIf
6337 #IfNotRow2Dx2 list_options list_id race option_id mountain_maidu title Mountain Maidu
6338 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','mountain_maidu','Mountain Maidu','4980', '0',' 1345-8', 0);
6339 #EndIf
6341 #IfRow2D list_options list_id race option_id mountain_maidu
6342 UPDATE `list_options` SET `notes` = '1345-8' WHERE `option_id` = 'mountain_maidu' AND `list_id` = 'race';
6343 #EndIf
6345 #IfRow2D list_options list_id race title Mountain Maidu
6346 UPDATE `list_options` SET `notes` = '1345-8' WHERE `title` = 'Mountain Maidu' AND `list_id` = 'race';
6347 #EndIf
6349 #IfNotRow2Dx2 list_options list_id race option_id mountain_village title Mountain Village
6350 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','mountain_village','Mountain Village','4990', '0',' 1934-9', 0);
6351 #EndIf
6353 #IfRow2D list_options list_id race option_id mountain_village
6354 UPDATE `list_options` SET `notes` = '1934-9' WHERE `option_id` = 'mountain_village' AND `list_id` = 'race';
6355 #EndIf
6357 #IfRow2D list_options list_id race title Mountain Village
6358 UPDATE `list_options` SET `notes` = '1934-9' WHERE `title` = 'Mountain Village' AND `list_id` = 'race';
6359 #EndIf
6361 #IfNotRow2Dx2 list_options list_id race option_id mowa_band_of_choctaw title Mowa Band of Choctaw
6362 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','mowa_band_of_choctaw','Mowa Band of Choctaw','5000', '0',' 1159-3', 0);
6363 #EndIf
6365 #IfRow2D list_options list_id race option_id mowa_band_of_choctaw
6366 UPDATE `list_options` SET `notes` = '1159-3' WHERE `option_id` = 'mowa_band_of_choctaw' AND `list_id` = 'race';
6367 #EndIf
6369 #IfRow2D list_options list_id race title Mowa Band of Choctaw
6370 UPDATE `list_options` SET `notes` = '1159-3' WHERE `title` = 'Mowa Band of Choctaw' AND `list_id` = 'race';
6371 #EndIf
6373 #IfNotRow2Dx2 list_options list_id race option_id muckleshoot title Muckleshoot
6374 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','muckleshoot','Muckleshoot','5010', '0',' 1522-2', 0);
6375 #EndIf
6377 #IfRow2D list_options list_id race option_id muckleshoot
6378 UPDATE `list_options` SET `notes` = '1522-2' WHERE `option_id` = 'muckleshoot' AND `list_id` = 'race';
6379 #EndIf
6381 #IfRow2D list_options list_id race title Muckleshoot
6382 UPDATE `list_options` SET `notes` = '1522-2' WHERE `title` = 'Muckleshoot' AND `list_id` = 'race';
6383 #EndIf
6385 #IfNotRow2Dx2 list_options list_id race option_id munsee title Munsee
6386 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','munsee','Munsee','5020', '0',' 1217-9', 0);
6387 #EndIf
6389 #IfRow2D list_options list_id race option_id munsee
6390 UPDATE `list_options` SET `notes` = '1217-9' WHERE `option_id` = 'munsee' AND `list_id` = 'race';
6391 #EndIf
6393 #IfRow2D list_options list_id race title Munsee
6394 UPDATE `list_options` SET `notes` = '1217-9' WHERE `title` = 'Munsee' AND `list_id` = 'race';
6395 #EndIf
6397 #IfNotRow2Dx2 list_options list_id race option_id naknek title Naknek
6398 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','naknek','Naknek','5030', '0',' 1935-6', 0);
6399 #EndIf
6401 #IfRow2D list_options list_id race option_id naknek
6402 UPDATE `list_options` SET `notes` = '1935-6' WHERE `option_id` = 'naknek' AND `list_id` = 'race';
6403 #EndIf
6405 #IfRow2D list_options list_id race title Naknek
6406 UPDATE `list_options` SET `notes` = '1935-6' WHERE `title` = 'Naknek' AND `list_id` = 'race';
6407 #EndIf
6409 #IfNotRow2Dx2 list_options list_id race option_id nambe title Nambe
6410 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','nambe','Nambe','5040', '0',' 1498-5', 0);
6411 #EndIf
6413 #IfRow2D list_options list_id race option_id nambe
6414 UPDATE `list_options` SET `notes` = '1498-5' WHERE `option_id` = 'nambe' AND `list_id` = 'race';
6415 #EndIf
6417 #IfRow2D list_options list_id race title Nambe
6418 UPDATE `list_options` SET `notes` = '1498-5' WHERE `title` = 'Nambe' AND `list_id` = 'race';
6419 #EndIf
6421 #IfNotRow2Dx2 list_options list_id race option_id namibian title Namibian
6422 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','namibian','Namibian','5050', '0',' 2064-4', 0);
6423 #EndIf
6425 #IfRow2D list_options list_id race option_id namibian
6426 UPDATE `list_options` SET `notes` = '2064-4' WHERE `option_id` = 'namibian' AND `list_id` = 'race';
6427 #EndIf
6429 #IfRow2D list_options list_id race title Namibian
6430 UPDATE `list_options` SET `notes` = '2064-4' WHERE `title` = 'Namibian' AND `list_id` = 'race';
6431 #EndIf
6433 #IfNotRow2Dx2 list_options list_id race option_id nana_inupiat title Nana Inupiat
6434 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','nana_inupiat','Nana Inupiat','5060', '0',' 1871-3', 0);
6435 #EndIf
6437 #IfRow2D list_options list_id race option_id nana_inupiat
6438 UPDATE `list_options` SET `notes` = '1871-3' WHERE `option_id` = 'nana_inupiat' AND `list_id` = 'race';
6439 #EndIf
6441 #IfRow2D list_options list_id race title Nana Inupiat
6442 UPDATE `list_options` SET `notes` = '1871-3' WHERE `title` = 'Nana Inupiat' AND `list_id` = 'race';
6443 #EndIf
6445 #IfNotRow2Dx2 list_options list_id race option_id nansemond title Nansemond
6446 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','nansemond','Nansemond','5070', '0',' 1238-5', 0);
6447 #EndIf
6449 #IfRow2D list_options list_id race option_id nansemond
6450 UPDATE `list_options` SET `notes` = '1238-5' WHERE `option_id` = 'nansemond' AND `list_id` = 'race';
6451 #EndIf
6453 #IfRow2D list_options list_id race title Nansemond
6454 UPDATE `list_options` SET `notes` = '1238-5' WHERE `title` = 'Nansemond' AND `list_id` = 'race';
6455 #EndIf
6457 #IfNotRow2Dx2 list_options list_id race option_id nanticoke title Nanticoke
6458 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','nanticoke','Nanticoke','5080', '0',' 1378-9', 0);
6459 #EndIf
6461 #IfRow2D list_options list_id race option_id nanticoke
6462 UPDATE `list_options` SET `notes` = '1378-9' WHERE `option_id` = 'nanticoke' AND `list_id` = 'race';
6463 #EndIf
6465 #IfRow2D list_options list_id race title Nanticoke
6466 UPDATE `list_options` SET `notes` = '1378-9' WHERE `title` = 'Nanticoke' AND `list_id` = 'race';
6467 #EndIf
6469 #IfNotRow2Dx2 list_options list_id race option_id napakiak title Napakiak
6470 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','napakiak','Napakiak','5090', '0',' 1937-2', 0);
6471 #EndIf
6473 #IfRow2D list_options list_id race option_id napakiak
6474 UPDATE `list_options` SET `notes` = '1937-2' WHERE `option_id` = 'napakiak' AND `list_id` = 'race';
6475 #EndIf
6477 #IfRow2D list_options list_id race title Napakiak
6478 UPDATE `list_options` SET `notes` = '1937-2' WHERE `title` = 'Napakiak' AND `list_id` = 'race';
6479 #EndIf
6481 #IfNotRow2Dx2 list_options list_id race option_id napaskiak title Napaskiak
6482 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','napaskiak','Napaskiak','5100', '0',' 1938-0', 0);
6483 #EndIf
6485 #IfRow2D list_options list_id race option_id napaskiak
6486 UPDATE `list_options` SET `notes` = '1938-0' WHERE `option_id` = 'napaskiak' AND `list_id` = 'race';
6487 #EndIf
6489 #IfRow2D list_options list_id race title Napaskiak
6490 UPDATE `list_options` SET `notes` = '1938-0' WHERE `title` = 'Napaskiak' AND `list_id` = 'race';
6491 #EndIf
6493 #IfNotRow2Dx2 list_options list_id race option_id napaumute title Napaumute
6494 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','napaumute','Napaumute','5110', '0',' 1936-4', 0);
6495 #EndIf
6497 #IfRow2D list_options list_id race option_id napaumute
6498 UPDATE `list_options` SET `notes` = '1936-4' WHERE `option_id` = 'napaumute' AND `list_id` = 'race';
6499 #EndIf
6501 #IfRow2D list_options list_id race title Napaumute
6502 UPDATE `list_options` SET `notes` = '1936-4' WHERE `title` = 'Napaumute' AND `list_id` = 'race';
6503 #EndIf
6505 #IfNotRow2Dx2 list_options list_id race option_id narragansett title Narragansett
6506 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','narragansett','Narragansett','5120', '0',' 1380-5', 0);
6507 #EndIf
6509 #IfRow2D list_options list_id race option_id narragansett
6510 UPDATE `list_options` SET `notes` = '1380-5' WHERE `option_id` = 'narragansett' AND `list_id` = 'race';
6511 #EndIf
6513 #IfRow2D list_options list_id race title Narragansett
6514 UPDATE `list_options` SET `notes` = '1380-5' WHERE `title` = 'Narragansett' AND `list_id` = 'race';
6515 #EndIf
6517 #IfNotRow2Dx2 list_options list_id race option_id natchez title Natchez
6518 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','natchez','Natchez','5130', '0',' 1239-3', 0);
6519 #EndIf
6521 #IfRow2D list_options list_id race option_id natchez
6522 UPDATE `list_options` SET `notes` = '1239-3' WHERE `option_id` = 'natchez' AND `list_id` = 'race';
6523 #EndIf
6525 #IfRow2D list_options list_id race title Natchez
6526 UPDATE `list_options` SET `notes` = '1239-3' WHERE `title` = 'Natchez' AND `list_id` = 'race';
6527 #EndIf
6529 #IfNotRow2Dx2 list_options list_id race option_id native_hawaiian title Native Hawaiian
6530 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','native_hawaiian','Native Hawaiian','5140', '0',' 2079-2', 0);
6531 #EndIf
6533 #IfRow2D list_options list_id race option_id native_hawaiian
6534 UPDATE `list_options` SET `notes` = '2079-2' WHERE `option_id` = 'native_hawaiian' AND `list_id` = 'race';
6535 #EndIf
6537 #IfRow2D list_options list_id race title Native Hawaiian
6538 UPDATE `list_options` SET `notes` = '2079-2' WHERE `title` = 'Native Hawaiian' AND `list_id` = 'race';
6539 #EndIf
6541 #IfNotRow2Dx2 list_options list_id race option_id nausu_waiwash title Nausu Waiwash
6542 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','nausu_waiwash','Nausu Waiwash','5160', '0',' 1240-1', 0);
6543 #EndIf
6545 #IfRow2D list_options list_id race option_id nausu_waiwash
6546 UPDATE `list_options` SET `notes` = '1240-1' WHERE `option_id` = 'nausu_waiwash' AND `list_id` = 'race';
6547 #EndIf
6549 #IfRow2D list_options list_id race title Nausu Waiwash
6550 UPDATE `list_options` SET `notes` = '1240-1' WHERE `title` = 'Nausu Waiwash' AND `list_id` = 'race';
6551 #EndIf
6553 #IfNotRow2Dx2 list_options list_id race option_id navajo title Navajo
6554 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','navajo','Navajo','5170', '0',' 1382-1', 0);
6555 #EndIf
6557 #IfRow2D list_options list_id race option_id navajo
6558 UPDATE `list_options` SET `notes` = '1382-1' WHERE `option_id` = 'navajo' AND `list_id` = 'race';
6559 #EndIf
6561 #IfRow2D list_options list_id race title Navajo
6562 UPDATE `list_options` SET `notes` = '1382-1' WHERE `title` = 'Navajo' AND `list_id` = 'race';
6563 #EndIf
6565 #IfNotRow2Dx2 list_options list_id race option_id nebraska_ponca title Nebraska Ponca
6566 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','nebraska_ponca','Nebraska Ponca','5180', '0',' 1475-3', 0);
6567 #EndIf
6569 #IfRow2D list_options list_id race option_id nebraska_ponca
6570 UPDATE `list_options` SET `notes` = '1475-3' WHERE `option_id` = 'nebraska_ponca' AND `list_id` = 'race';
6571 #EndIf
6573 #IfRow2D list_options list_id race title Nebraska Ponca
6574 UPDATE `list_options` SET `notes` = '1475-3' WHERE `title` = 'Nebraska Ponca' AND `list_id` = 'race';
6575 #EndIf
6577 #IfNotRow2Dx2 list_options list_id race option_id nebraska_winnebago title Nebraska Winnebago
6578 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','nebraska_winnebago','Nebraska Winnebago','5190', '0',' 1698-0', 0);
6579 #EndIf
6581 #IfRow2D list_options list_id race option_id nebraska_winnebago
6582 UPDATE `list_options` SET `notes` = '1698-0' WHERE `option_id` = 'nebraska_winnebago' AND `list_id` = 'race';
6583 #EndIf
6585 #IfRow2D list_options list_id race title Nebraska Winnebago
6586 UPDATE `list_options` SET `notes` = '1698-0' WHERE `title` = 'Nebraska Winnebago' AND `list_id` = 'race';
6587 #EndIf
6589 #IfNotRow2Dx2 list_options list_id race option_id nelson_lagoon title Nelson Lagoon
6590 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','nelson_lagoon','Nelson Lagoon','5200', '0',' 2016-4', 0);
6591 #EndIf
6593 #IfRow2D list_options list_id race option_id nelson_lagoon
6594 UPDATE `list_options` SET `notes` = '2016-4' WHERE `option_id` = 'nelson_lagoon' AND `list_id` = 'race';
6595 #EndIf
6597 #IfRow2D list_options list_id race title Nelson Lagoon
6598 UPDATE `list_options` SET `notes` = '2016-4' WHERE `title` = 'Nelson Lagoon' AND `list_id` = 'race';
6599 #EndIf
6601 #IfNotRow2Dx2 list_options list_id race option_id nenana title Nenana
6602 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','nenana','Nenana','5210', '0',' 1783-0', 0);
6603 #EndIf
6605 #IfRow2D list_options list_id race option_id nenana
6606 UPDATE `list_options` SET `notes` = '1783-0' WHERE `option_id` = 'nenana' AND `list_id` = 'race';
6607 #EndIf
6609 #IfRow2D list_options list_id race title Nenana
6610 UPDATE `list_options` SET `notes` = '1783-0' WHERE `title` = 'Nenana' AND `list_id` = 'race';
6611 #EndIf
6613 #IfNotRow2Dx2 list_options list_id race option_id nepalese title Nepalese
6614 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','nepalese','Nepalese','5220', '0',' 2050-3', 0);
6615 #EndIf
6617 #IfRow2D list_options list_id race option_id nepalese
6618 UPDATE `list_options` SET `notes` = '2050-3' WHERE `option_id` = 'nepalese' AND `list_id` = 'race';
6619 #EndIf
6621 #IfRow2D list_options list_id race title Nepalese
6622 UPDATE `list_options` SET `notes` = '2050-3' WHERE `title` = 'Nepalese' AND `list_id` = 'race';
6623 #EndIf
6625 #IfNotRow2Dx2 list_options list_id race option_id new_hebrides title New Hebrides
6626 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','new_hebrides','New Hebrides','5230', '0',' 2104-8', 0);
6627 #EndIf
6629 #IfRow2D list_options list_id race option_id new_hebrides
6630 UPDATE `list_options` SET `notes` = '2104-8' WHERE `option_id` = 'new_hebrides' AND `list_id` = 'race';
6631 #EndIf
6633 #IfRow2D list_options list_id race title New Hebrides
6634 UPDATE `list_options` SET `notes` = '2104-8' WHERE `title` = 'New Hebrides' AND `list_id` = 'race';
6635 #EndIf
6637 #IfNotRow2Dx2 list_options list_id race option_id new_stuyahok title New Stuyahok
6638 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','new_stuyahok','New Stuyahok','5240', '0',' 1940-6', 0);
6639 #EndIf
6641 #IfRow2D list_options list_id race option_id new_stuyahok
6642 UPDATE `list_options` SET `notes` = '1940-6' WHERE `option_id` = 'new_stuyahok' AND `list_id` = 'race';
6643 #EndIf
6645 #IfRow2D list_options list_id race title New Stuyahok
6646 UPDATE `list_options` SET `notes` = '1940-6' WHERE `title` = 'New Stuyahok' AND `list_id` = 'race';
6647 #EndIf
6649 #IfNotRow2Dx2 list_options list_id race option_id newhalen title Newhalen
6650 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','newhalen','Newhalen','5250', '0',' 1939-8', 0);
6651 #EndIf
6653 #IfRow2D list_options list_id race option_id newhalen
6654 UPDATE `list_options` SET `notes` = '1939-8' WHERE `option_id` = 'newhalen' AND `list_id` = 'race';
6655 #EndIf
6657 #IfRow2D list_options list_id race title Newhalen
6658 UPDATE `list_options` SET `notes` = '1939-8' WHERE `title` = 'Newhalen' AND `list_id` = 'race';
6659 #EndIf
6661 #IfNotRow2Dx2 list_options list_id race option_id newtok title Newtok
6662 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','newtok','Newtok','5260', '0',' 1941-4', 0);
6663 #EndIf
6665 #IfRow2D list_options list_id race option_id newtok
6666 UPDATE `list_options` SET `notes` = '1941-4' WHERE `option_id` = 'newtok' AND `list_id` = 'race';
6667 #EndIf
6669 #IfRow2D list_options list_id race title Newtok
6670 UPDATE `list_options` SET `notes` = '1941-4' WHERE `title` = 'Newtok' AND `list_id` = 'race';
6671 #EndIf
6673 #IfNotRow2Dx2 list_options list_id race option_id nez_perce title Nez Perce
6674 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','nez_perce','Nez Perce','5270', '0',' 1387-0', 0);
6675 #EndIf
6677 #IfRow2D list_options list_id race option_id nez_perce
6678 UPDATE `list_options` SET `notes` = '1387-0' WHERE `option_id` = 'nez_perce' AND `list_id` = 'race';
6679 #EndIf
6681 #IfRow2D list_options list_id race title Nez Perce
6682 UPDATE `list_options` SET `notes` = '1387-0' WHERE `title` = 'Nez Perce' AND `list_id` = 'race';
6683 #EndIf
6685 #IfNotRow2Dx2 list_options list_id race option_id nigerian title Nigerian
6686 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','nigerian','Nigerian','5280', '0',' 2065-1', 0);
6687 #EndIf
6689 #IfRow2D list_options list_id race option_id nigerian
6690 UPDATE `list_options` SET `notes` = '2065-1' WHERE `option_id` = 'nigerian' AND `list_id` = 'race';
6691 #EndIf
6693 #IfRow2D list_options list_id race title Nigerian
6694 UPDATE `list_options` SET `notes` = '2065-1' WHERE `title` = 'Nigerian' AND `list_id` = 'race';
6695 #EndIf
6697 #IfNotRow2Dx2 list_options list_id race option_id nightmute title Nightmute
6698 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','nightmute','Nightmute','5290', '0',' 1942-2', 0);
6699 #EndIf
6701 #IfRow2D list_options list_id race option_id nightmute
6702 UPDATE `list_options` SET `notes` = '1942-2' WHERE `option_id` = 'nightmute' AND `list_id` = 'race';
6703 #EndIf
6705 #IfRow2D list_options list_id race title Nightmute
6706 UPDATE `list_options` SET `notes` = '1942-2' WHERE `title` = 'Nightmute' AND `list_id` = 'race';
6707 #EndIf
6709 #IfNotRow2Dx2 list_options list_id race option_id nikolai title Nikolai
6710 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','nikolai','Nikolai','5300', '0',' 1784-8', 0);
6711 #EndIf
6713 #IfRow2D list_options list_id race option_id nikolai
6714 UPDATE `list_options` SET `notes` = '1784-8' WHERE `option_id` = 'nikolai' AND `list_id` = 'race';
6715 #EndIf
6717 #IfRow2D list_options list_id race title Nikolai
6718 UPDATE `list_options` SET `notes` = '1784-8' WHERE `title` = 'Nikolai' AND `list_id` = 'race';
6719 #EndIf
6721 #IfNotRow2Dx2 list_options list_id race option_id nikolski title Nikolski
6722 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','nikolski','Nikolski','5310', '0',' 2017-2', 0);
6723 #EndIf
6725 #IfRow2D list_options list_id race option_id nikolski
6726 UPDATE `list_options` SET `notes` = '2017-2' WHERE `option_id` = 'nikolski' AND `list_id` = 'race';
6727 #EndIf
6729 #IfRow2D list_options list_id race title Nikolski
6730 UPDATE `list_options` SET `notes` = '2017-2' WHERE `title` = 'Nikolski' AND `list_id` = 'race';
6731 #EndIf
6733 #IfNotRow2Dx2 list_options list_id race option_id ninilchik title Ninilchik
6734 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','ninilchik','Ninilchik','5320', '0',' 1785-5', 0);
6735 #EndIf
6737 #IfRow2D list_options list_id race option_id ninilchik
6738 UPDATE `list_options` SET `notes` = '1785-5' WHERE `option_id` = 'ninilchik' AND `list_id` = 'race';
6739 #EndIf
6741 #IfRow2D list_options list_id race title Ninilchik
6742 UPDATE `list_options` SET `notes` = '1785-5' WHERE `title` = 'Ninilchik' AND `list_id` = 'race';
6743 #EndIf
6745 #IfNotRow2Dx2 list_options list_id race option_id nipmuc title Nipmuc
6746 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','nipmuc','Nipmuc','5330', '0',' 1241-9', 0);
6747 #EndIf
6749 #IfRow2D list_options list_id race option_id nipmuc
6750 UPDATE `list_options` SET `notes` = '1241-9' WHERE `option_id` = 'nipmuc' AND `list_id` = 'race';
6751 #EndIf
6753 #IfRow2D list_options list_id race title Nipmuc
6754 UPDATE `list_options` SET `notes` = '1241-9' WHERE `title` = 'Nipmuc' AND `list_id` = 'race';
6755 #EndIf
6757 #IfNotRow2Dx2 list_options list_id race option_id nishinam title Nishinam
6758 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','nishinam','Nishinam','5340', '0',' 1346-6', 0);
6759 #EndIf
6761 #IfRow2D list_options list_id race option_id nishinam
6762 UPDATE `list_options` SET `notes` = '1346-6' WHERE `option_id` = 'nishinam' AND `list_id` = 'race';
6763 #EndIf
6765 #IfRow2D list_options list_id race title Nishinam
6766 UPDATE `list_options` SET `notes` = '1346-6' WHERE `title` = 'Nishinam' AND `list_id` = 'race';
6767 #EndIf
6769 #IfNotRow2Dx2 list_options list_id race option_id nisqually title Nisqually
6770 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','nisqually','Nisqually','5350', '0',' 1523-0', 0);
6771 #EndIf
6773 #IfRow2D list_options list_id race option_id nisqually
6774 UPDATE `list_options` SET `notes` = '1523-0' WHERE `option_id` = 'nisqually' AND `list_id` = 'race';
6775 #EndIf
6777 #IfRow2D list_options list_id race title Nisqually
6778 UPDATE `list_options` SET `notes` = '1523-0' WHERE `title` = 'Nisqually' AND `list_id` = 'race';
6779 #EndIf
6781 #IfNotRow2Dx2 list_options list_id race option_id noatak title Noatak
6782 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','noatak','Noatak','5360', '0',' 1872-1', 0);
6783 #EndIf
6785 #IfRow2D list_options list_id race option_id noatak
6786 UPDATE `list_options` SET `notes` = '1872-1' WHERE `option_id` = 'noatak' AND `list_id` = 'race';
6787 #EndIf
6789 #IfRow2D list_options list_id race title Noatak
6790 UPDATE `list_options` SET `notes` = '1872-1' WHERE `title` = 'Noatak' AND `list_id` = 'race';
6791 #EndIf
6793 #IfNotRow2Dx2 list_options list_id race option_id nomalaki title Nomalaki
6794 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','nomalaki','Nomalaki','5370', '0',' 1389-6', 0);
6795 #EndIf
6797 #IfRow2D list_options list_id race option_id nomalaki
6798 UPDATE `list_options` SET `notes` = '1389-6' WHERE `option_id` = 'nomalaki' AND `list_id` = 'race';
6799 #EndIf
6801 #IfRow2D list_options list_id race title Nomalaki
6802 UPDATE `list_options` SET `notes` = '1389-6' WHERE `title` = 'Nomalaki' AND `list_id` = 'race';
6803 #EndIf
6805 #IfNotRow2Dx2 list_options list_id race option_id nome title Nome
6806 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','nome','Nome','5380', '0',' 1873-9', 0);
6807 #EndIf
6809 #IfRow2D list_options list_id race option_id nome
6810 UPDATE `list_options` SET `notes` = '1873-9' WHERE `option_id` = 'nome' AND `list_id` = 'race';
6811 #EndIf
6813 #IfRow2D list_options list_id race title Nome
6814 UPDATE `list_options` SET `notes` = '1873-9' WHERE `title` = 'Nome' AND `list_id` = 'race';
6815 #EndIf
6817 #IfNotRow2Dx2 list_options list_id race option_id nondalton title Nondalton
6818 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','nondalton','Nondalton','5390', '0',' 1786-3', 0);
6819 #EndIf
6821 #IfRow2D list_options list_id race option_id nondalton
6822 UPDATE `list_options` SET `notes` = '1786-3' WHERE `option_id` = 'nondalton' AND `list_id` = 'race';
6823 #EndIf
6825 #IfRow2D list_options list_id race title Nondalton
6826 UPDATE `list_options` SET `notes` = '1786-3' WHERE `title` = 'Nondalton' AND `list_id` = 'race';
6827 #EndIf
6829 #IfNotRow2Dx2 list_options list_id race option_id nooksack title Nooksack
6830 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','nooksack','Nooksack','5400', '0',' 1524-8', 0);
6831 #EndIf
6833 #IfRow2D list_options list_id race option_id nooksack
6834 UPDATE `list_options` SET `notes` = '1524-8' WHERE `option_id` = 'nooksack' AND `list_id` = 'race';
6835 #EndIf
6837 #IfRow2D list_options list_id race title Nooksack
6838 UPDATE `list_options` SET `notes` = '1524-8' WHERE `title` = 'Nooksack' AND `list_id` = 'race';
6839 #EndIf
6841 #IfNotRow2Dx2 list_options list_id race option_id noorvik title Noorvik
6842 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','noorvik','Noorvik','5410', '0',' 1874-7', 0);
6843 #EndIf
6845 #IfRow2D list_options list_id race option_id noorvik
6846 UPDATE `list_options` SET `notes` = '1874-7' WHERE `option_id` = 'noorvik' AND `list_id` = 'race';
6847 #EndIf
6849 #IfRow2D list_options list_id race title Noorvik
6850 UPDATE `list_options` SET `notes` = '1874-7' WHERE `title` = 'Noorvik' AND `list_id` = 'race';
6851 #EndIf
6853 #IfNotRow2Dx2 list_options list_id race option_id northern_arapaho title Northern Arapaho
6854 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','northern_arapaho','Northern Arapaho','5420', '0',' 1022-3', 0);
6855 #EndIf
6857 #IfRow2D list_options list_id race option_id northern_arapaho
6858 UPDATE `list_options` SET `notes` = '1022-3' WHERE `option_id` = 'northern_arapaho' AND `list_id` = 'race';
6859 #EndIf
6861 #IfRow2D list_options list_id race title Northern Arapaho
6862 UPDATE `list_options` SET `notes` = '1022-3' WHERE `title` = 'Northern Arapaho' AND `list_id` = 'race';
6863 #EndIf
6865 #IfNotRow2Dx2 list_options list_id race option_id northern_cherokee title Northern Cherokee
6866 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','northern_cherokee','Northern Cherokee','5430', '0',' 1095-9', 0);
6867 #EndIf
6869 #IfRow2D list_options list_id race option_id northern_cherokee
6870 UPDATE `list_options` SET `notes` = '1095-9' WHERE `option_id` = 'northern_cherokee' AND `list_id` = 'race';
6871 #EndIf
6873 #IfRow2D list_options list_id race title Northern Cherokee
6874 UPDATE `list_options` SET `notes` = '1095-9' WHERE `title` = 'Northern Cherokee' AND `list_id` = 'race';
6875 #EndIf
6877 #IfNotRow2Dx2 list_options list_id race option_id northern_cheyenne title Northern Cheyenne
6878 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','northern_cheyenne','Northern Cheyenne','5440', '0',' 1103-1', 0);
6879 #EndIf
6881 #IfRow2D list_options list_id race option_id northern_cheyenne
6882 UPDATE `list_options` SET `notes` = '1103-1' WHERE `option_id` = 'northern_cheyenne' AND `list_id` = 'race';
6883 #EndIf
6885 #IfRow2D list_options list_id race title Northern Cheyenne
6886 UPDATE `list_options` SET `notes` = '1103-1' WHERE `title` = 'Northern Cheyenne' AND `list_id` = 'race';
6887 #EndIf
6889 #IfNotRow2Dx2 list_options list_id race option_id northern_paiute title Northern Paiute
6890 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','northern_paiute','Northern Paiute','5450', '0',' 1429-0', 0);
6891 #EndIf
6893 #IfRow2D list_options list_id race option_id northern_paiute
6894 UPDATE `list_options` SET `notes` = '1429-0' WHERE `option_id` = 'northern_paiute' AND `list_id` = 'race';
6895 #EndIf
6897 #IfRow2D list_options list_id race title Northern Paiute
6898 UPDATE `list_options` SET `notes` = '1429-0' WHERE `title` = 'Northern Paiute' AND `list_id` = 'race';
6899 #EndIf
6901 #IfNotRow2Dx2 list_options list_id race option_id northern_pomo title Northern Pomo
6902 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','northern_pomo','Northern Pomo','5460', '0',' 1469-6', 0);
6903 #EndIf
6905 #IfRow2D list_options list_id race option_id northern_pomo
6906 UPDATE `list_options` SET `notes` = '1469-6' WHERE `option_id` = 'northern_pomo' AND `list_id` = 'race';
6907 #EndIf
6909 #IfRow2D list_options list_id race title Northern Pomo
6910 UPDATE `list_options` SET `notes` = '1469-6' WHERE `title` = 'Northern Pomo' AND `list_id` = 'race';
6911 #EndIf
6913 #IfNotRow2Dx2 list_options list_id race option_id northway title Northway
6914 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','northway','Northway','5470', '0',' 1787-1', 0);
6915 #EndIf
6917 #IfRow2D list_options list_id race option_id northway
6918 UPDATE `list_options` SET `notes` = '1787-1' WHERE `option_id` = 'northway' AND `list_id` = 'race';
6919 #EndIf
6921 #IfRow2D list_options list_id race title Northway
6922 UPDATE `list_options` SET `notes` = '1787-1' WHERE `title` = 'Northway' AND `list_id` = 'race';
6923 #EndIf
6925 #IfNotRow2Dx2 list_options list_id race option_id northwest_tribes title Northwest Tribes
6926 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','northwest_tribes','Northwest Tribes','5480', '0',' 1391-2', 0);
6927 #EndIf
6929 #IfRow2D list_options list_id race option_id northwest_tribes
6930 UPDATE `list_options` SET `notes` = '1391-2' WHERE `option_id` = 'northwest_tribes' AND `list_id` = 'race';
6931 #EndIf
6933 #IfRow2D list_options list_id race title Northwest Tribes
6934 UPDATE `list_options` SET `notes` = '1391-2' WHERE `title` = 'Northwest Tribes' AND `list_id` = 'race';
6935 #EndIf
6937 #IfNotRow2Dx2 list_options list_id race option_id nuiqsut title Nuiqsut
6938 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','nuiqsut','Nuiqsut','5490', '0',' 1875-4', 0);
6939 #EndIf
6941 #IfRow2D list_options list_id race option_id nuiqsut
6942 UPDATE `list_options` SET `notes` = '1875-4' WHERE `option_id` = 'nuiqsut' AND `list_id` = 'race';
6943 #EndIf
6945 #IfRow2D list_options list_id race title Nuiqsut
6946 UPDATE `list_options` SET `notes` = '1875-4' WHERE `title` = 'Nuiqsut' AND `list_id` = 'race';
6947 #EndIf
6949 #IfNotRow2Dx2 list_options list_id race option_id nulato title Nulato
6950 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','nulato','Nulato','5500', '0',' 1788-9', 0);
6951 #EndIf
6953 #IfRow2D list_options list_id race option_id nulato
6954 UPDATE `list_options` SET `notes` = '1788-9' WHERE `option_id` = 'nulato' AND `list_id` = 'race';
6955 #EndIf
6957 #IfRow2D list_options list_id race title Nulato
6958 UPDATE `list_options` SET `notes` = '1788-9' WHERE `title` = 'Nulato' AND `list_id` = 'race';
6959 #EndIf
6961 #IfNotRow2Dx2 list_options list_id race option_id nunapitchukv title Nunapitchukv
6962 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','nunapitchukv','Nunapitchukv','5510', '0',' 1943-0', 0);
6963 #EndIf
6965 #IfRow2D list_options list_id race option_id nunapitchukv
6966 UPDATE `list_options` SET `notes` = '1943-0' WHERE `option_id` = 'nunapitchukv' AND `list_id` = 'race';
6967 #EndIf
6969 #IfRow2D list_options list_id race title Nunapitchukv
6970 UPDATE `list_options` SET `notes` = '1943-0' WHERE `title` = 'Nunapitchukv' AND `list_id` = 'race';
6971 #EndIf
6973 #IfNotRow2Dx2 list_options list_id race option_id oglala_sioux title Oglala Sioux
6974 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','oglala_sioux','Oglala Sioux','5520', '0',' 1622-0', 0);
6975 #EndIf
6977 #IfRow2D list_options list_id race option_id oglala_sioux
6978 UPDATE `list_options` SET `notes` = '1622-0' WHERE `option_id` = 'oglala_sioux' AND `list_id` = 'race';
6979 #EndIf
6981 #IfRow2D list_options list_id race title Oglala Sioux
6982 UPDATE `list_options` SET `notes` = '1622-0' WHERE `title` = 'Oglala Sioux' AND `list_id` = 'race';
6983 #EndIf
6985 #IfNotRow2Dx2 list_options list_id race option_id okinawan title Okinawan
6986 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','okinawan','Okinawan','5530', '0',' 2043-8', 0);
6987 #EndIf
6989 #IfRow2D list_options list_id race option_id okinawan
6990 UPDATE `list_options` SET `notes` = '2043-8' WHERE `option_id` = 'okinawan' AND `list_id` = 'race';
6991 #EndIf
6993 #IfRow2D list_options list_id race title Okinawan
6994 UPDATE `list_options` SET `notes` = '2043-8' WHERE `title` = 'Okinawan' AND `list_id` = 'race';
6995 #EndIf
6997 #IfNotRow2Dx2 list_options list_id race option_id oklahoma_apache title Oklahoma Apache
6998 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','oklahoma_apache','Oklahoma Apache','5540', '0',' 1016-5', 0);
6999 #EndIf
7001 #IfRow2D list_options list_id race option_id oklahoma_apache
7002 UPDATE `list_options` SET `notes` = '1016-5' WHERE `option_id` = 'oklahoma_apache' AND `list_id` = 'race';
7003 #EndIf
7005 #IfRow2D list_options list_id race title Oklahoma Apache
7006 UPDATE `list_options` SET `notes` = '1016-5' WHERE `title` = 'Oklahoma Apache' AND `list_id` = 'race';
7007 #EndIf
7009 #IfNotRow2Dx2 list_options list_id race option_id oklahoma_cado title Oklahoma Cado
7010 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','oklahoma_cado','Oklahoma Cado','5550', '0',' 1042-1', 0);
7011 #EndIf
7013 #IfRow2D list_options list_id race option_id oklahoma_cado
7014 UPDATE `list_options` SET `notes` = '1042-1' WHERE `option_id` = 'oklahoma_cado' AND `list_id` = 'race';
7015 #EndIf
7017 #IfRow2D list_options list_id race title Oklahoma Cado
7018 UPDATE `list_options` SET `notes` = '1042-1' WHERE `title` = 'Oklahoma Cado' AND `list_id` = 'race';
7019 #EndIf
7021 #IfNotRow2Dx2 list_options list_id race option_id oklahoma_choctaw title Oklahoma Choctaw
7022 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','oklahoma_choctaw','Oklahoma Choctaw','5560', '0',' 1160-1', 0);
7023 #EndIf
7025 #IfRow2D list_options list_id race option_id oklahoma_choctaw
7026 UPDATE `list_options` SET `notes` = '1160-1' WHERE `option_id` = 'oklahoma_choctaw' AND `list_id` = 'race';
7027 #EndIf
7029 #IfRow2D list_options list_id race title Oklahoma Choctaw
7030 UPDATE `list_options` SET `notes` = '1160-1' WHERE `title` = 'Oklahoma Choctaw' AND `list_id` = 'race';
7031 #EndIf
7033 #IfNotRow2Dx2 list_options list_id race option_id oklahoma_comanche title Oklahoma Comanche
7034 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','oklahoma_comanche','Oklahoma Comanche','5570', '0',' 1176-7', 0);
7035 #EndIf
7037 #IfRow2D list_options list_id race option_id oklahoma_comanche
7038 UPDATE `list_options` SET `notes` = '1176-7' WHERE `option_id` = 'oklahoma_comanche' AND `list_id` = 'race';
7039 #EndIf
7041 #IfRow2D list_options list_id race title Oklahoma Comanche
7042 UPDATE `list_options` SET `notes` = '1176-7' WHERE `title` = 'Oklahoma Comanche' AND `list_id` = 'race';
7043 #EndIf
7045 #IfNotRow2Dx2 list_options list_id race option_id oklahoma_delaware title Oklahoma Delaware
7046 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','oklahoma_delaware','Oklahoma Delaware','5580', '0',' 1218-7', 0);
7047 #EndIf
7049 #IfRow2D list_options list_id race option_id oklahoma_delaware
7050 UPDATE `list_options` SET `notes` = '1218-7' WHERE `option_id` = 'oklahoma_delaware' AND `list_id` = 'race';
7051 #EndIf
7053 #IfRow2D list_options list_id race title Oklahoma Delaware
7054 UPDATE `list_options` SET `notes` = '1218-7' WHERE `title` = 'Oklahoma Delaware' AND `list_id` = 'race';
7055 #EndIf
7057 #IfNotRow2Dx2 list_options list_id race option_id oklahoma_kickapoo title Oklahoma Kickapoo
7058 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','oklahoma_kickapoo','Oklahoma Kickapoo','5590', '0',' 1306-0', 0);
7059 #EndIf
7061 #IfRow2D list_options list_id race option_id oklahoma_kickapoo
7062 UPDATE `list_options` SET `notes` = '1306-0' WHERE `option_id` = 'oklahoma_kickapoo' AND `list_id` = 'race';
7063 #EndIf
7065 #IfRow2D list_options list_id race title Oklahoma Kickapoo
7066 UPDATE `list_options` SET `notes` = '1306-0' WHERE `title` = 'Oklahoma Kickapoo' AND `list_id` = 'race';
7067 #EndIf
7069 #IfNotRow2Dx2 list_options list_id race option_id oklahoma_kiowa title Oklahoma Kiowa
7070 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','oklahoma_kiowa','Oklahoma Kiowa','5600', '0',' 1310-2', 0);
7071 #EndIf
7073 #IfRow2D list_options list_id race option_id oklahoma_kiowa
7074 UPDATE `list_options` SET `notes` = '1310-2' WHERE `option_id` = 'oklahoma_kiowa' AND `list_id` = 'race';
7075 #EndIf
7077 #IfRow2D list_options list_id race title Oklahoma Kiowa
7078 UPDATE `list_options` SET `notes` = '1310-2' WHERE `title` = 'Oklahoma Kiowa' AND `list_id` = 'race';
7079 #EndIf
7081 #IfNotRow2Dx2 list_options list_id race option_id oklahoma_miami title Oklahoma Miami
7082 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','oklahoma_miami','Oklahoma Miami','5610', '0',' 1361-5', 0);
7083 #EndIf
7085 #IfRow2D list_options list_id race option_id oklahoma_miami
7086 UPDATE `list_options` SET `notes` = '1361-5' WHERE `option_id` = 'oklahoma_miami' AND `list_id` = 'race';
7087 #EndIf
7089 #IfRow2D list_options list_id race title Oklahoma Miami
7090 UPDATE `list_options` SET `notes` = '1361-5' WHERE `title` = 'Oklahoma Miami' AND `list_id` = 'race';
7091 #EndIf
7093 #IfNotRow2Dx2 list_options list_id race option_id oklahoma_ottawa title Oklahoma Ottawa
7094 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','oklahoma_ottawa','Oklahoma Ottawa','5620', '0',' 1414-2', 0);
7095 #EndIf
7097 #IfRow2D list_options list_id race option_id oklahoma_ottawa
7098 UPDATE `list_options` SET `notes` = '1414-2' WHERE `option_id` = 'oklahoma_ottawa' AND `list_id` = 'race';
7099 #EndIf
7101 #IfRow2D list_options list_id race title Oklahoma Ottawa
7102 UPDATE `list_options` SET `notes` = '1414-2' WHERE `title` = 'Oklahoma Ottawa' AND `list_id` = 'race';
7103 #EndIf
7105 #IfNotRow2Dx2 list_options list_id race option_id oklahoma_pawnee title Oklahoma Pawnee
7106 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','oklahoma_pawnee','Oklahoma Pawnee','5630', '0',' 1446-4', 0);
7107 #EndIf
7109 #IfRow2D list_options list_id race option_id oklahoma_pawnee
7110 UPDATE `list_options` SET `notes` = '1446-4' WHERE `option_id` = 'oklahoma_pawnee' AND `list_id` = 'race';
7111 #EndIf
7113 #IfRow2D list_options list_id race title Oklahoma Pawnee
7114 UPDATE `list_options` SET `notes` = '1446-4' WHERE `title` = 'Oklahoma Pawnee' AND `list_id` = 'race';
7115 #EndIf
7117 #IfNotRow2Dx2 list_options list_id race option_id oklahoma_peoria title Oklahoma Peoria
7118 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','oklahoma_peoria','Oklahoma Peoria','5640', '0',' 1451-4', 0);
7119 #EndIf
7121 #IfRow2D list_options list_id race option_id oklahoma_peoria
7122 UPDATE `list_options` SET `notes` = '1451-4' WHERE `option_id` = 'oklahoma_peoria' AND `list_id` = 'race';
7123 #EndIf
7125 #IfRow2D list_options list_id race title Oklahoma Peoria
7126 UPDATE `list_options` SET `notes` = '1451-4' WHERE `title` = 'Oklahoma Peoria' AND `list_id` = 'race';
7127 #EndIf
7129 #IfNotRow2Dx2 list_options list_id race option_id oklahoma_ponca title Oklahoma Ponca
7130 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','oklahoma_ponca','Oklahoma Ponca','5650', '0',' 1476-1', 0);
7131 #EndIf
7133 #IfRow2D list_options list_id race option_id oklahoma_ponca
7134 UPDATE `list_options` SET `notes` = '1476-1' WHERE `option_id` = 'oklahoma_ponca' AND `list_id` = 'race';
7135 #EndIf
7137 #IfRow2D list_options list_id race title Oklahoma Ponca
7138 UPDATE `list_options` SET `notes` = '1476-1' WHERE `title` = 'Oklahoma Ponca' AND `list_id` = 'race';
7139 #EndIf
7141 #IfNotRow2Dx2 list_options list_id race option_id oklahoma_sac_and_fox title Oklahoma Sac and Fox
7142 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','oklahoma_sac_and_fox','Oklahoma Sac and Fox','5660', '0',' 1554-5', 0);
7143 #EndIf
7145 #IfRow2D list_options list_id race option_id oklahoma_sac_and_fox
7146 UPDATE `list_options` SET `notes` = '1554-5' WHERE `option_id` = 'oklahoma_sac_and_fox' AND `list_id` = 'race';
7147 #EndIf
7149 #IfRow2D list_options list_id race title Oklahoma Sac and Fox
7150 UPDATE `list_options` SET `notes` = '1554-5' WHERE `title` = 'Oklahoma Sac and Fox' AND `list_id` = 'race';
7151 #EndIf
7153 #IfNotRow2Dx2 list_options list_id race option_id oklahoma_seminole title Oklahoma Seminole
7154 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','oklahoma_seminole','Oklahoma Seminole','5670', '0',' 1571-9', 0);
7155 #EndIf
7157 #IfRow2D list_options list_id race option_id oklahoma_seminole
7158 UPDATE `list_options` SET `notes` = '1571-9' WHERE `option_id` = 'oklahoma_seminole' AND `list_id` = 'race';
7159 #EndIf
7161 #IfRow2D list_options list_id race title Oklahoma Seminole
7162 UPDATE `list_options` SET `notes` = '1571-9' WHERE `title` = 'Oklahoma Seminole' AND `list_id` = 'race';
7163 #EndIf
7165 #IfNotRow2Dx2 list_options list_id race option_id old_harbor title Old Harbor
7166 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','old_harbor','Old Harbor','5680', '0',' 1998-4', 0);
7167 #EndIf
7169 #IfRow2D list_options list_id race option_id old_harbor
7170 UPDATE `list_options` SET `notes` = '1998-4' WHERE `option_id` = 'old_harbor' AND `list_id` = 'race';
7171 #EndIf
7173 #IfRow2D list_options list_id race title Old Harbor
7174 UPDATE `list_options` SET `notes` = '1998-4' WHERE `title` = 'Old Harbor' AND `list_id` = 'race';
7175 #EndIf
7177 #IfNotRow2Dx2 list_options list_id race option_id omaha title Omaha
7178 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','omaha','Omaha','5690', '0',' 1403-5', 0);
7179 #EndIf
7181 #IfRow2D list_options list_id race option_id omaha
7182 UPDATE `list_options` SET `notes` = '1403-5' WHERE `option_id` = 'omaha' AND `list_id` = 'race';
7183 #EndIf
7185 #IfRow2D list_options list_id race title Omaha
7186 UPDATE `list_options` SET `notes` = '1403-5' WHERE `title` = 'Omaha' AND `list_id` = 'race';
7187 #EndIf
7189 #IfNotRow2Dx2 list_options list_id race option_id oneida title Oneida
7190 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','oneida','Oneida','5700', '0',' 1288-0', 0);
7191 #EndIf
7193 #IfRow2D list_options list_id race option_id oneida
7194 UPDATE `list_options` SET `notes` = '1288-0' WHERE `option_id` = 'oneida' AND `list_id` = 'race';
7195 #EndIf
7197 #IfRow2D list_options list_id race title Oneida
7198 UPDATE `list_options` SET `notes` = '1288-0' WHERE `title` = 'Oneida' AND `list_id` = 'race';
7199 #EndIf
7201 #IfNotRow2Dx2 list_options list_id race option_id onondaga title Onondaga
7202 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','onondaga','Onondaga','5710', '0',' 1289-8', 0);
7203 #EndIf
7205 #IfRow2D list_options list_id race option_id onondaga
7206 UPDATE `list_options` SET `notes` = '1289-8' WHERE `option_id` = 'onondaga' AND `list_id` = 'race';
7207 #EndIf
7209 #IfRow2D list_options list_id race title Onondaga
7210 UPDATE `list_options` SET `notes` = '1289-8' WHERE `title` = 'Onondaga' AND `list_id` = 'race';
7211 #EndIf
7213 #IfNotRow2Dx2 list_options list_id race option_id ontonagon title Ontonagon
7214 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','ontonagon','Ontonagon','5720', '0',' 1140-3', 0);
7215 #EndIf
7217 #IfRow2D list_options list_id race option_id ontonagon
7218 UPDATE `list_options` SET `notes` = '1140-3' WHERE `option_id` = 'ontonagon' AND `list_id` = 'race';
7219 #EndIf
7221 #IfRow2D list_options list_id race title Ontonagon
7222 UPDATE `list_options` SET `notes` = '1140-3' WHERE `title` = 'Ontonagon' AND `list_id` = 'race';
7223 #EndIf
7225 #IfNotRow2Dx2 list_options list_id race option_id oregon_athabaskan title Oregon Athabaskan
7226 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','oregon_athabaskan','Oregon Athabaskan','5730', '0',' 1405-0', 0);
7227 #EndIf
7229 #IfRow2D list_options list_id race option_id oregon_athabaskan
7230 UPDATE `list_options` SET `notes` = '1405-0' WHERE `option_id` = 'oregon_athabaskan' AND `list_id` = 'race';
7231 #EndIf
7233 #IfRow2D list_options list_id race title Oregon Athabaskan
7234 UPDATE `list_options` SET `notes` = '1405-0' WHERE `title` = 'Oregon Athabaskan' AND `list_id` = 'race';
7235 #EndIf
7237 #IfNotRow2Dx2 list_options list_id race option_id osage title Osage
7238 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','osage','Osage','5740', '0',' 1407-6', 0);
7239 #EndIf
7241 #IfRow2D list_options list_id race option_id osage
7242 UPDATE `list_options` SET `notes` = '1407-6' WHERE `option_id` = 'osage' AND `list_id` = 'race';
7243 #EndIf
7245 #IfRow2D list_options list_id race title Osage
7246 UPDATE `list_options` SET `notes` = '1407-6' WHERE `title` = 'Osage' AND `list_id` = 'race';
7247 #EndIf
7249 #IfNotRow2Dx2 list_options list_id race option_id oscarville title Oscarville
7250 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','oscarville','Oscarville','5750', '0',' 1944-8', 0);
7251 #EndIf
7253 #IfRow2D list_options list_id race option_id oscarville
7254 UPDATE `list_options` SET `notes` = '1944-8' WHERE `option_id` = 'oscarville' AND `list_id` = 'race';
7255 #EndIf
7257 #IfRow2D list_options list_id race title Oscarville
7258 UPDATE `list_options` SET `notes` = '1944-8' WHERE `title` = 'Oscarville' AND `list_id` = 'race';
7259 #EndIf
7261 #IfNotRow2Dx2 list_options list_id race option_id other_pacific_islander title Other Pacific Islander
7262 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','other_pacific_islander','Other Pacific Islander','5760', '0',' 2500-7', 0);
7263 #EndIf
7265 #IfRow2D list_options list_id race option_id other_pacific_islander
7266 UPDATE `list_options` SET `notes` = '2500-7' WHERE `option_id` = 'other_pacific_islander' AND `list_id` = 'race';
7267 #EndIf
7269 #IfRow2D list_options list_id race title Other Pacific Islander
7270 UPDATE `list_options` SET `notes` = '2500-7' WHERE `title` = 'Other Pacific Islander' AND `list_id` = 'race';
7271 #EndIf
7273 #IfNotRow2Dx2 list_options list_id race option_id other_race title Other Race
7274 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','other_race','Other Race','5770', '0',' 2131-1', 0);
7275 #EndIf
7277 #IfRow2D list_options list_id race option_id other_race
7278 UPDATE `list_options` SET `notes` = '2131-1' WHERE `option_id` = 'other_race' AND `list_id` = 'race';
7279 #EndIf
7281 #IfRow2D list_options list_id race title Other Race
7282 UPDATE `list_options` SET `notes` = '2131-1' WHERE `title` = 'Other Race' AND `list_id` = 'race';
7283 #EndIf
7285 #IfNotRow2Dx2 list_options list_id race option_id otoe-missouria title Otoe-Missouria
7286 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','otoe-missouria','Otoe-Missouria','5780', '0',' 1409-2', 0);
7287 #EndIf
7289 #IfRow2D list_options list_id race option_id otoe-missouria
7290 UPDATE `list_options` SET `notes` = '1409-2' WHERE `option_id` = 'otoe-missouria' AND `list_id` = 'race';
7291 #EndIf
7293 #IfRow2D list_options list_id race title Otoe-Missouria
7294 UPDATE `list_options` SET `notes` = '1409-2' WHERE `title` = 'Otoe-Missouria' AND `list_id` = 'race';
7295 #EndIf
7297 #IfNotRow2Dx2 list_options list_id race option_id ottawa title Ottawa
7298 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','ottawa','Ottawa','5790', '0',' 1411-8', 0);
7299 #EndIf
7301 #IfRow2D list_options list_id race option_id ottawa
7302 UPDATE `list_options` SET `notes` = '1411-8' WHERE `option_id` = 'ottawa' AND `list_id` = 'race';
7303 #EndIf
7305 #IfRow2D list_options list_id race title Ottawa
7306 UPDATE `list_options` SET `notes` = '1411-8' WHERE `title` = 'Ottawa' AND `list_id` = 'race';
7307 #EndIf
7309 #IfNotRow2Dx2 list_options list_id race option_id ouzinkie title Ouzinkie
7310 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','ouzinkie','Ouzinkie','5800', '0',' 1999-2', 0);
7311 #EndIf
7313 #IfRow2D list_options list_id race option_id ouzinkie
7314 UPDATE `list_options` SET `notes` = '1999-2' WHERE `option_id` = 'ouzinkie' AND `list_id` = 'race';
7315 #EndIf
7317 #IfRow2D list_options list_id race title Ouzinkie
7318 UPDATE `list_options` SET `notes` = '1999-2' WHERE `title` = 'Ouzinkie' AND `list_id` = 'race';
7319 #EndIf
7321 #IfNotRow2Dx2 list_options list_id race option_id owens_valley title Owens Valley
7322 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','owens_valley','Owens Valley','5810', '0',' 1430-8', 0);
7323 #EndIf
7325 #IfRow2D list_options list_id race option_id owens_valley
7326 UPDATE `list_options` SET `notes` = '1430-8' WHERE `option_id` = 'owens_valley' AND `list_id` = 'race';
7327 #EndIf
7329 #IfRow2D list_options list_id race title Owens Valley
7330 UPDATE `list_options` SET `notes` = '1430-8' WHERE `title` = 'Owens Valley' AND `list_id` = 'race';
7331 #EndIf
7333 #IfNotRow2Dx2 list_options list_id race option_id paiute title Paiute
7334 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','paiute','Paiute','5820', '0',' 1416-7', 0);
7335 #EndIf
7337 #IfRow2D list_options list_id race option_id paiute
7338 UPDATE `list_options` SET `notes` = '1416-7' WHERE `option_id` = 'paiute' AND `list_id` = 'race';
7339 #EndIf
7341 #IfRow2D list_options list_id race title Paiute
7342 UPDATE `list_options` SET `notes` = '1416-7' WHERE `title` = 'Paiute' AND `list_id` = 'race';
7343 #EndIf
7345 #IfNotRow2Dx2 list_options list_id race option_id pakistani title Pakistani
7346 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','pakistani','Pakistani','5830', '0',' 2044-6', 0);
7347 #EndIf
7349 #IfRow2D list_options list_id race option_id pakistani
7350 UPDATE `list_options` SET `notes` = '2044-6' WHERE `option_id` = 'pakistani' AND `list_id` = 'race';
7351 #EndIf
7353 #IfRow2D list_options list_id race title Pakistani
7354 UPDATE `list_options` SET `notes` = '2044-6' WHERE `title` = 'Pakistani' AND `list_id` = 'race';
7355 #EndIf
7357 #IfNotRow2Dx2 list_options list_id race option_id pala title Pala
7358 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','pala','Pala','5840', '0',' 1333-4', 0);
7359 #EndIf
7361 #IfRow2D list_options list_id race option_id pala
7362 UPDATE `list_options` SET `notes` = '1333-4' WHERE `option_id` = 'pala' AND `list_id` = 'race';
7363 #EndIf
7365 #IfRow2D list_options list_id race title Pala
7366 UPDATE `list_options` SET `notes` = '1333-4' WHERE `title` = 'Pala' AND `list_id` = 'race';
7367 #EndIf
7369 #IfNotRow2Dx2 list_options list_id race option_id palauan title Palauan
7370 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','palauan','Palauan','5850', '0',' 2091-7', 0);
7371 #EndIf
7373 #IfRow2D list_options list_id race option_id palauan
7374 UPDATE `list_options` SET `notes` = '2091-7' WHERE `option_id` = 'palauan' AND `list_id` = 'race';
7375 #EndIf
7377 #IfRow2D list_options list_id race title Palauan
7378 UPDATE `list_options` SET `notes` = '2091-7' WHERE `title` = 'Palauan' AND `list_id` = 'race';
7379 #EndIf
7381 #IfNotRow2Dx2 list_options list_id race option_id palestinian title Palestinian
7382 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','palestinian','Palestinian','5860', '0',' 2124-6', 0);
7383 #EndIf
7385 #IfRow2D list_options list_id race option_id palestinian
7386 UPDATE `list_options` SET `notes` = '2124-6' WHERE `option_id` = 'palestinian' AND `list_id` = 'race';
7387 #EndIf
7389 #IfRow2D list_options list_id race title Palestinian
7390 UPDATE `list_options` SET `notes` = '2124-6' WHERE `title` = 'Palestinian' AND `list_id` = 'race';
7391 #EndIf
7393 #IfNotRow2Dx2 list_options list_id race option_id pamunkey title Pamunkey
7394 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','pamunkey','Pamunkey','5870', '0',' 1439-9', 0);
7395 #EndIf
7397 #IfRow2D list_options list_id race option_id pamunkey
7398 UPDATE `list_options` SET `notes` = '1439-9' WHERE `option_id` = 'pamunkey' AND `list_id` = 'race';
7399 #EndIf
7401 #IfRow2D list_options list_id race title Pamunkey
7402 UPDATE `list_options` SET `notes` = '1439-9' WHERE `title` = 'Pamunkey' AND `list_id` = 'race';
7403 #EndIf
7405 #IfNotRow2Dx2 list_options list_id race option_id panamint title Panamint
7406 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','panamint','Panamint','5880', '0',' 1592-5', 0);
7407 #EndIf
7409 #IfRow2D list_options list_id race option_id panamint
7410 UPDATE `list_options` SET `notes` = '1592-5' WHERE `option_id` = 'panamint' AND `list_id` = 'race';
7411 #EndIf
7413 #IfRow2D list_options list_id race title Panamint
7414 UPDATE `list_options` SET `notes` = '1592-5' WHERE `title` = 'Panamint' AND `list_id` = 'race';
7415 #EndIf
7417 #IfNotRow2Dx2 list_options list_id race option_id papua_new_guinean title Papua New Guinean
7418 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','papua_new_guinean','Papua New Guinean','5890', '0',' 2102-2', 0);
7419 #EndIf
7421 #IfRow2D list_options list_id race option_id papua_new_guinean
7422 UPDATE `list_options` SET `notes` = '2102-2' WHERE `option_id` = 'papua_new_guinean' AND `list_id` = 'race';
7423 #EndIf
7425 #IfRow2D list_options list_id race title Papua New Guinean
7426 UPDATE `list_options` SET `notes` = '2102-2' WHERE `title` = 'Papua New Guinean' AND `list_id` = 'race';
7427 #EndIf
7429 #IfNotRow2Dx2 list_options list_id race option_id pascua_yaqui title Pascua Yaqui
7430 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','pascua_yaqui','Pascua Yaqui','5900', '0',' 1713-7', 0);
7431 #EndIf
7433 #IfRow2D list_options list_id race option_id pascua_yaqui
7434 UPDATE `list_options` SET `notes` = '1713-7' WHERE `option_id` = 'pascua_yaqui' AND `list_id` = 'race';
7435 #EndIf
7437 #IfRow2D list_options list_id race title Pascua Yaqui
7438 UPDATE `list_options` SET `notes` = '1713-7' WHERE `title` = 'Pascua Yaqui' AND `list_id` = 'race';
7439 #EndIf
7441 #IfNotRow2Dx2 list_options list_id race option_id passamaquoddy title Passamaquoddy
7442 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','passamaquoddy','Passamaquoddy','5910', '0',' 1441-5', 0);
7443 #EndIf
7445 #IfRow2D list_options list_id race option_id passamaquoddy
7446 UPDATE `list_options` SET `notes` = '1441-5' WHERE `option_id` = 'passamaquoddy' AND `list_id` = 'race';
7447 #EndIf
7449 #IfRow2D list_options list_id race title Passamaquoddy
7450 UPDATE `list_options` SET `notes` = '1441-5' WHERE `title` = 'Passamaquoddy' AND `list_id` = 'race';
7451 #EndIf
7453 #IfNotRow2Dx2 list_options list_id race option_id paugussett title Paugussett
7454 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','paugussett','Paugussett','5920', '0',' 1242-7', 0);
7455 #EndIf
7457 #IfRow2D list_options list_id race option_id paugussett
7458 UPDATE `list_options` SET `notes` = '1242-7' WHERE `option_id` = 'paugussett' AND `list_id` = 'race';
7459 #EndIf
7461 #IfRow2D list_options list_id race title Paugussett
7462 UPDATE `list_options` SET `notes` = '1242-7' WHERE `title` = 'Paugussett' AND `list_id` = 'race';
7463 #EndIf
7465 #IfNotRow2Dx2 list_options list_id race option_id pauloff_harbor title Pauloff Harbor
7466 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','pauloff_harbor','Pauloff Harbor','5930', '0',' 2018-0', 0);
7467 #EndIf
7469 #IfRow2D list_options list_id race option_id pauloff_harbor
7470 UPDATE `list_options` SET `notes` = '2018-0' WHERE `option_id` = 'pauloff_harbor' AND `list_id` = 'race';
7471 #EndIf
7473 #IfRow2D list_options list_id race title Pauloff Harbor
7474 UPDATE `list_options` SET `notes` = '2018-0' WHERE `title` = 'Pauloff Harbor' AND `list_id` = 'race';
7475 #EndIf
7477 #IfNotRow2Dx2 list_options list_id race option_id pauma title Pauma
7478 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','pauma','Pauma','5940', '0',' 1334-2', 0);
7479 #EndIf
7481 #IfRow2D list_options list_id race option_id pauma
7482 UPDATE `list_options` SET `notes` = '1334-2' WHERE `option_id` = 'pauma' AND `list_id` = 'race';
7483 #EndIf
7485 #IfRow2D list_options list_id race title Pauma
7486 UPDATE `list_options` SET `notes` = '1334-2' WHERE `title` = 'Pauma' AND `list_id` = 'race';
7487 #EndIf
7489 #IfNotRow2Dx2 list_options list_id race option_id pawnee title Pawnee
7490 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','pawnee','Pawnee','5950', '0',' 1445-6', 0);
7491 #EndIf
7493 #IfRow2D list_options list_id race option_id pawnee
7494 UPDATE `list_options` SET `notes` = '1445-6' WHERE `option_id` = 'pawnee' AND `list_id` = 'race';
7495 #EndIf
7497 #IfRow2D list_options list_id race title Pawnee
7498 UPDATE `list_options` SET `notes` = '1445-6' WHERE `title` = 'Pawnee' AND `list_id` = 'race';
7499 #EndIf
7501 #IfNotRow2Dx2 list_options list_id race option_id payson_apache title Payson Apache
7502 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','payson_apache','Payson Apache','5960', '0',' 1017-3', 0);
7503 #EndIf
7505 #IfRow2D list_options list_id race option_id payson_apache
7506 UPDATE `list_options` SET `notes` = '1017-3' WHERE `option_id` = 'payson_apache' AND `list_id` = 'race';
7507 #EndIf
7509 #IfRow2D list_options list_id race title Payson Apache
7510 UPDATE `list_options` SET `notes` = '1017-3' WHERE `title` = 'Payson Apache' AND `list_id` = 'race';
7511 #EndIf
7513 #IfNotRow2Dx2 list_options list_id race option_id pechanga title Pechanga
7514 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','pechanga','Pechanga','5970', '0',' 1335-9', 0);
7515 #EndIf
7517 #IfRow2D list_options list_id race option_id pechanga
7518 UPDATE `list_options` SET `notes` = '1335-9' WHERE `option_id` = 'pechanga' AND `list_id` = 'race';
7519 #EndIf
7521 #IfRow2D list_options list_id race title Pechanga
7522 UPDATE `list_options` SET `notes` = '1335-9' WHERE `title` = 'Pechanga' AND `list_id` = 'race';
7523 #EndIf
7525 #IfNotRow2Dx2 list_options list_id race option_id pedro_bay title Pedro Bay
7526 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','pedro_bay','Pedro Bay','5980', '0',' 1789-7', 0);
7527 #EndIf
7529 #IfRow2D list_options list_id race option_id pedro_bay
7530 UPDATE `list_options` SET `notes` = '1789-7' WHERE `option_id` = 'pedro_bay' AND `list_id` = 'race';
7531 #EndIf
7533 #IfRow2D list_options list_id race title Pedro Bay
7534 UPDATE `list_options` SET `notes` = '1789-7' WHERE `title` = 'Pedro Bay' AND `list_id` = 'race';
7535 #EndIf
7537 #IfNotRow2Dx2 list_options list_id race option_id pelican title Pelican
7538 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','pelican','Pelican','5990', '0',' 1828-3', 0);
7539 #EndIf
7541 #IfRow2D list_options list_id race option_id pelican
7542 UPDATE `list_options` SET `notes` = '1828-3' WHERE `option_id` = 'pelican' AND `list_id` = 'race';
7543 #EndIf
7545 #IfRow2D list_options list_id race title Pelican
7546 UPDATE `list_options` SET `notes` = '1828-3' WHERE `title` = 'Pelican' AND `list_id` = 'race';
7547 #EndIf
7549 #IfNotRow2Dx2 list_options list_id race option_id penobscot title Penobscot
7550 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','penobscot','Penobscot','6000', '0',' 1448-0', 0);
7551 #EndIf
7553 #IfRow2D list_options list_id race option_id penobscot
7554 UPDATE `list_options` SET `notes` = '1448-0' WHERE `option_id` = 'penobscot' AND `list_id` = 'race';
7555 #EndIf
7557 #IfRow2D list_options list_id race title Penobscot
7558 UPDATE `list_options` SET `notes` = '1448-0' WHERE `title` = 'Penobscot' AND `list_id` = 'race';
7559 #EndIf
7561 #IfNotRow2Dx2 list_options list_id race option_id peoria title Peoria
7562 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','peoria','Peoria','6010', '0',' 1450-6', 0);
7563 #EndIf
7565 #IfRow2D list_options list_id race option_id peoria
7566 UPDATE `list_options` SET `notes` = '1450-6' WHERE `option_id` = 'peoria' AND `list_id` = 'race';
7567 #EndIf
7569 #IfRow2D list_options list_id race title Peoria
7570 UPDATE `list_options` SET `notes` = '1450-6' WHERE `title` = 'Peoria' AND `list_id` = 'race';
7571 #EndIf
7573 #IfNotRow2Dx2 list_options list_id race option_id pequot title Pequot
7574 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','pequot','Pequot','6020', '0',' 1453-0', 0);
7575 #EndIf
7577 #IfRow2D list_options list_id race option_id pequot
7578 UPDATE `list_options` SET `notes` = '1453-0' WHERE `option_id` = 'pequot' AND `list_id` = 'race';
7579 #EndIf
7581 #IfRow2D list_options list_id race title Pequot
7582 UPDATE `list_options` SET `notes` = '1453-0' WHERE `title` = 'Pequot' AND `list_id` = 'race';
7583 #EndIf
7585 #IfNotRow2Dx2 list_options list_id race option_id perryville title Perryville
7586 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','perryville','Perryville','6030', '0',' 1980-2', 0);
7587 #EndIf
7589 #IfRow2D list_options list_id race option_id perryville
7590 UPDATE `list_options` SET `notes` = '1980-2' WHERE `option_id` = 'perryville' AND `list_id` = 'race';
7591 #EndIf
7593 #IfRow2D list_options list_id race title Perryville
7594 UPDATE `list_options` SET `notes` = '1980-2' WHERE `title` = 'Perryville' AND `list_id` = 'race';
7595 #EndIf
7597 #IfNotRow2Dx2 list_options list_id race option_id petersburg title Petersburg
7598 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','petersburg','Petersburg','6040', '0',' 1829-1', 0);
7599 #EndIf
7601 #IfRow2D list_options list_id race option_id petersburg
7602 UPDATE `list_options` SET `notes` = '1829-1' WHERE `option_id` = 'petersburg' AND `list_id` = 'race';
7603 #EndIf
7605 #IfRow2D list_options list_id race title Petersburg
7606 UPDATE `list_options` SET `notes` = '1829-1' WHERE `title` = 'Petersburg' AND `list_id` = 'race';
7607 #EndIf
7609 #IfNotRow2Dx2 list_options list_id race option_id picuris title Picuris
7610 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','picuris','Picuris','6050', '0',' 1499-3', 0);
7611 #EndIf
7613 #IfRow2D list_options list_id race option_id picuris
7614 UPDATE `list_options` SET `notes` = '1499-3' WHERE `option_id` = 'picuris' AND `list_id` = 'race';
7615 #EndIf
7617 #IfRow2D list_options list_id race title Picuris
7618 UPDATE `list_options` SET `notes` = '1499-3' WHERE `title` = 'Picuris' AND `list_id` = 'race';
7619 #EndIf
7621 #IfNotRow2Dx2 list_options list_id race option_id pilot_point title Pilot Point
7622 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','pilot_point','Pilot Point','6060', '0',' 1981-0', 0);
7623 #EndIf
7625 #IfRow2D list_options list_id race option_id pilot_point
7626 UPDATE `list_options` SET `notes` = '1981-0' WHERE `option_id` = 'pilot_point' AND `list_id` = 'race';
7627 #EndIf
7629 #IfRow2D list_options list_id race title Pilot Point
7630 UPDATE `list_options` SET `notes` = '1981-0' WHERE `title` = 'Pilot Point' AND `list_id` = 'race';
7631 #EndIf
7633 #IfNotRow2Dx2 list_options list_id race option_id pilot_station title Pilot Station
7634 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','pilot_station','Pilot Station','6070', '0',' 1945-5', 0);
7635 #EndIf
7637 #IfRow2D list_options list_id race option_id pilot_station
7638 UPDATE `list_options` SET `notes` = '1945-5' WHERE `option_id` = 'pilot_station' AND `list_id` = 'race';
7639 #EndIf
7641 #IfRow2D list_options list_id race title Pilot Station
7642 UPDATE `list_options` SET `notes` = '1945-5' WHERE `title` = 'Pilot Station' AND `list_id` = 'race';
7643 #EndIf
7645 #IfNotRow2Dx2 list_options list_id race option_id pima title Pima
7646 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','pima','Pima','6080', '0',' 1456-3', 0);
7647 #EndIf
7649 #IfRow2D list_options list_id race option_id pima
7650 UPDATE `list_options` SET `notes` = '1456-3' WHERE `option_id` = 'pima' AND `list_id` = 'race';
7651 #EndIf
7653 #IfRow2D list_options list_id race title Pima
7654 UPDATE `list_options` SET `notes` = '1456-3' WHERE `title` = 'Pima' AND `list_id` = 'race';
7655 #EndIf
7657 #IfNotRow2Dx2 list_options list_id race option_id pine_ridge_sioux title Pine Ridge Sioux
7658 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','pine_ridge_sioux','Pine Ridge Sioux','6090', '0',' 1623-8', 0);
7659 #EndIf
7661 #IfRow2D list_options list_id race option_id pine_ridge_sioux
7662 UPDATE `list_options` SET `notes` = '1623-8' WHERE `option_id` = 'pine_ridge_sioux' AND `list_id` = 'race';
7663 #EndIf
7665 #IfRow2D list_options list_id race title Pine Ridge Sioux
7666 UPDATE `list_options` SET `notes` = '1623-8' WHERE `title` = 'Pine Ridge Sioux' AND `list_id` = 'race';
7667 #EndIf
7669 #IfNotRow2Dx2 list_options list_id race option_id pipestone_sioux title Pipestone Sioux
7670 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','pipestone_sioux','Pipestone Sioux','6100', '0',' 1624-6', 0);
7671 #EndIf
7673 #IfRow2D list_options list_id race option_id pipestone_sioux
7674 UPDATE `list_options` SET `notes` = '1624-6' WHERE `option_id` = 'pipestone_sioux' AND `list_id` = 'race';
7675 #EndIf
7677 #IfRow2D list_options list_id race title Pipestone Sioux
7678 UPDATE `list_options` SET `notes` = '1624-6' WHERE `title` = 'Pipestone Sioux' AND `list_id` = 'race';
7679 #EndIf
7681 #IfNotRow2Dx2 list_options list_id race option_id piro title Piro
7682 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','piro','Piro','6110', '0',' 1500-8', 0);
7683 #EndIf
7685 #IfRow2D list_options list_id race option_id piro
7686 UPDATE `list_options` SET `notes` = '1500-8' WHERE `option_id` = 'piro' AND `list_id` = 'race';
7687 #EndIf
7689 #IfRow2D list_options list_id race title Piro
7690 UPDATE `list_options` SET `notes` = '1500-8' WHERE `title` = 'Piro' AND `list_id` = 'race';
7691 #EndIf
7693 #IfNotRow2Dx2 list_options list_id race option_id piscataway title Piscataway
7694 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','piscataway','Piscataway','6120', '0',' 1460-5', 0);
7695 #EndIf
7697 #IfRow2D list_options list_id race option_id piscataway
7698 UPDATE `list_options` SET `notes` = '1460-5' WHERE `option_id` = 'piscataway' AND `list_id` = 'race';
7699 #EndIf
7701 #IfRow2D list_options list_id race title Piscataway
7702 UPDATE `list_options` SET `notes` = '1460-5' WHERE `title` = 'Piscataway' AND `list_id` = 'race';
7703 #EndIf
7705 #IfNotRow2Dx2 list_options list_id race option_id pit_river title Pit River
7706 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','pit_river','Pit River','6130', '0',' 1462-1', 0);
7707 #EndIf
7709 #IfRow2D list_options list_id race option_id pit_river
7710 UPDATE `list_options` SET `notes` = '1462-1' WHERE `option_id` = 'pit_river' AND `list_id` = 'race';
7711 #EndIf
7713 #IfRow2D list_options list_id race title Pit River
7714 UPDATE `list_options` SET `notes` = '1462-1' WHERE `title` = 'Pit River' AND `list_id` = 'race';
7715 #EndIf
7717 #IfNotRow2Dx2 list_options list_id race option_id pitkas_point title Pitkas Point
7718 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','pitkas_point','Pitkas Point','6140', '0',' 1946-3', 0);
7719 #EndIf
7721 #IfRow2D list_options list_id race option_id pitkas_point
7722 UPDATE `list_options` SET `notes` = '1946-3' WHERE `option_id` = 'pitkas_point' AND `list_id` = 'race';
7723 #EndIf
7725 #IfRow2D list_options list_id race title Pitkas Point
7726 UPDATE `list_options` SET `notes` = '1946-3' WHERE `title` = 'Pitkas Point' AND `list_id` = 'race';
7727 #EndIf
7729 #IfNotRow2Dx2 list_options list_id race option_id platinum title Platinum
7730 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','platinum','Platinum','6150', '0',' 1947-1', 0);
7731 #EndIf
7733 #IfRow2D list_options list_id race option_id platinum
7734 UPDATE `list_options` SET `notes` = '1947-1' WHERE `option_id` = 'platinum' AND `list_id` = 'race';
7735 #EndIf
7737 #IfRow2D list_options list_id race title Platinum
7738 UPDATE `list_options` SET `notes` = '1947-1' WHERE `title` = 'Platinum' AND `list_id` = 'race';
7739 #EndIf
7741 #IfNotRow2Dx2 list_options list_id race option_id pleasant_point_passamaquoddy title Pleasant Point Passamaquoddy
7742 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','pleasant_point_passamaquoddy','Pleasant Point Passamaquoddy','6160', '0',' 1443-1', 0);
7743 #EndIf
7745 #IfRow2D list_options list_id race option_id pleasant_point_passamaquoddy
7746 UPDATE `list_options` SET `notes` = '1443-1' WHERE `option_id` = 'pleasant_point_passamaquoddy' AND `list_id` = 'race';
7747 #EndIf
7749 #IfRow2D list_options list_id race title Pleasant Point Passamaquoddy
7750 UPDATE `list_options` SET `notes` = '1443-1' WHERE `title` = 'Pleasant Point Passamaquoddy' AND `list_id` = 'race';
7751 #EndIf
7753 #IfNotRow2Dx2 list_options list_id race option_id poarch_band title Poarch Band
7754 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','poarch_band','Poarch Band','6170', '0',' 1201-3', 0);
7755 #EndIf
7757 #IfRow2D list_options list_id race option_id poarch_band
7758 UPDATE `list_options` SET `notes` = '1201-3' WHERE `option_id` = 'poarch_band' AND `list_id` = 'race';
7759 #EndIf
7761 #IfRow2D list_options list_id race title Poarch Band
7762 UPDATE `list_options` SET `notes` = '1201-3' WHERE `title` = 'Poarch Band' AND `list_id` = 'race';
7763 #EndIf
7765 #IfNotRow2Dx2 list_options list_id race option_id pocomoke_acohonock title Pocomoke Acohonock
7766 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','pocomoke_acohonock','Pocomoke Acohonock','6180', '0',' 1243-5', 0);
7767 #EndIf
7769 #IfRow2D list_options list_id race option_id pocomoke_acohonock
7770 UPDATE `list_options` SET `notes` = '1243-5' WHERE `option_id` = 'pocomoke_acohonock' AND `list_id` = 'race';
7771 #EndIf
7773 #IfRow2D list_options list_id race title Pocomoke Acohonock
7774 UPDATE `list_options` SET `notes` = '1243-5' WHERE `title` = 'Pocomoke Acohonock' AND `list_id` = 'race';
7775 #EndIf
7777 #IfNotRow2Dx2 list_options list_id race option_id pohnpeian title Pohnpeian
7778 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','pohnpeian','Pohnpeian','6190', '0',' 2094-1', 0);
7779 #EndIf
7781 #IfRow2D list_options list_id race option_id pohnpeian
7782 UPDATE `list_options` SET `notes` = '2094-1' WHERE `option_id` = 'pohnpeian' AND `list_id` = 'race';
7783 #EndIf
7785 #IfRow2D list_options list_id race title Pohnpeian
7786 UPDATE `list_options` SET `notes` = '2094-1' WHERE `title` = 'Pohnpeian' AND `list_id` = 'race';
7787 #EndIf
7789 #IfNotRow2Dx2 list_options list_id race option_id point_hope title Point Hope
7790 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','point_hope','Point Hope','6200', '0',' 1876-2', 0);
7791 #EndIf
7793 #IfRow2D list_options list_id race option_id point_hope
7794 UPDATE `list_options` SET `notes` = '1876-2' WHERE `option_id` = 'point_hope' AND `list_id` = 'race';
7795 #EndIf
7797 #IfRow2D list_options list_id race title Point Hope
7798 UPDATE `list_options` SET `notes` = '1876-2' WHERE `title` = 'Point Hope' AND `list_id` = 'race';
7799 #EndIf
7801 #IfNotRow2Dx2 list_options list_id race option_id point_lay title Point Lay
7802 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','point_lay','Point Lay','6210', '0',' 1877-0', 0);
7803 #EndIf
7805 #IfRow2D list_options list_id race option_id point_lay
7806 UPDATE `list_options` SET `notes` = '1877-0' WHERE `option_id` = 'point_lay' AND `list_id` = 'race';
7807 #EndIf
7809 #IfRow2D list_options list_id race title Point Lay
7810 UPDATE `list_options` SET `notes` = '1877-0' WHERE `title` = 'Point Lay' AND `list_id` = 'race';
7811 #EndIf
7813 #IfNotRow2Dx2 list_options list_id race option_id pojoaque title Pojoaque
7814 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','pojoaque','Pojoaque','6220', '0',' 1501-6', 0);
7815 #EndIf
7817 #IfRow2D list_options list_id race option_id pojoaque
7818 UPDATE `list_options` SET `notes` = '1501-6' WHERE `option_id` = 'pojoaque' AND `list_id` = 'race';
7819 #EndIf
7821 #IfRow2D list_options list_id race title Pojoaque
7822 UPDATE `list_options` SET `notes` = '1501-6' WHERE `title` = 'Pojoaque' AND `list_id` = 'race';
7823 #EndIf
7825 #IfNotRow2Dx2 list_options list_id race option_id pokagon_potawatomi title Pokagon Potawatomi
7826 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','pokagon_potawatomi','Pokagon Potawatomi','6230', '0',' 1483-7', 0);
7827 #EndIf
7829 #IfRow2D list_options list_id race option_id pokagon_potawatomi
7830 UPDATE `list_options` SET `notes` = '1483-7' WHERE `option_id` = 'pokagon_potawatomi' AND `list_id` = 'race';
7831 #EndIf
7833 #IfRow2D list_options list_id race title Pokagon Potawatomi
7834 UPDATE `list_options` SET `notes` = '1483-7' WHERE `title` = 'Pokagon Potawatomi' AND `list_id` = 'race';
7835 #EndIf
7837 #IfNotRow2Dx2 list_options list_id race option_id polish title Polish
7838 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','polish','Polish','6240', '0',' 2115-4', 0);
7839 #EndIf
7841 #IfRow2D list_options list_id race option_id polish
7842 UPDATE `list_options` SET `notes` = '2115-4' WHERE `option_id` = 'polish' AND `list_id` = 'race';
7843 #EndIf
7845 #IfRow2D list_options list_id race title Polish
7846 UPDATE `list_options` SET `notes` = '2115-4' WHERE `title` = 'Polish' AND `list_id` = 'race';
7847 #EndIf
7849 #IfNotRow2Dx2 list_options list_id race option_id polynesian title Polynesian
7850 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','polynesian','Polynesian','6250', '0',' 2078-4', 0);
7851 #EndIf
7853 #IfRow2D list_options list_id race option_id polynesian
7854 UPDATE `list_options` SET `notes` = '2078-4' WHERE `option_id` = 'polynesian' AND `list_id` = 'race';
7855 #EndIf
7857 #IfRow2D list_options list_id race title Polynesian
7858 UPDATE `list_options` SET `notes` = '2078-4' WHERE `title` = 'Polynesian' AND `list_id` = 'race';
7859 #EndIf
7861 #IfNotRow2Dx2 list_options list_id race option_id pomo title Pomo
7862 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','pomo','Pomo','6260', '0',' 1464-7', 0);
7863 #EndIf
7865 #IfRow2D list_options list_id race option_id pomo
7866 UPDATE `list_options` SET `notes` = '1464-7' WHERE `option_id` = 'pomo' AND `list_id` = 'race';
7867 #EndIf
7869 #IfRow2D list_options list_id race title Pomo
7870 UPDATE `list_options` SET `notes` = '1464-7' WHERE `title` = 'Pomo' AND `list_id` = 'race';
7871 #EndIf
7873 #IfNotRow2Dx2 list_options list_id race option_id ponca title Ponca
7874 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','ponca','Ponca','6270', '0',' 1474-6', 0);
7875 #EndIf
7877 #IfRow2D list_options list_id race option_id ponca
7878 UPDATE `list_options` SET `notes` = '1474-6' WHERE `option_id` = 'ponca' AND `list_id` = 'race';
7879 #EndIf
7881 #IfRow2D list_options list_id race title Ponca
7882 UPDATE `list_options` SET `notes` = '1474-6' WHERE `title` = 'Ponca' AND `list_id` = 'race';
7883 #EndIf
7885 #IfNotRow2Dx2 list_options list_id race option_id poospatuck title Poospatuck
7886 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','poospatuck','Poospatuck','6280', '0',' 1328-4', 0);
7887 #EndIf
7889 #IfRow2D list_options list_id race option_id poospatuck
7890 UPDATE `list_options` SET `notes` = '1328-4' WHERE `option_id` = 'poospatuck' AND `list_id` = 'race';
7891 #EndIf
7893 #IfRow2D list_options list_id race title Poospatuck
7894 UPDATE `list_options` SET `notes` = '1328-4' WHERE `title` = 'Poospatuck' AND `list_id` = 'race';
7895 #EndIf
7897 #IfNotRow2Dx2 list_options list_id race option_id port_gamble_klallam title Port Gamble Klallam
7898 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','port_gamble_klallam','Port Gamble Klallam','6290', '0',' 1315-1', 0);
7899 #EndIf
7901 #IfRow2D list_options list_id race option_id port_gamble_klallam
7902 UPDATE `list_options` SET `notes` = '1315-1' WHERE `option_id` = 'port_gamble_klallam' AND `list_id` = 'race';
7903 #EndIf
7905 #IfRow2D list_options list_id race title Port Gamble Klallam
7906 UPDATE `list_options` SET `notes` = '1315-1' WHERE `title` = 'Port Gamble Klallam' AND `list_id` = 'race';
7907 #EndIf
7909 #IfNotRow2Dx2 list_options list_id race option_id port_graham title Port Graham
7910 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','port_graham','Port Graham','6300', '0',' 1988-5', 0);
7911 #EndIf
7913 #IfRow2D list_options list_id race option_id port_graham
7914 UPDATE `list_options` SET `notes` = '1988-5' WHERE `option_id` = 'port_graham' AND `list_id` = 'race';
7915 #EndIf
7917 #IfRow2D list_options list_id race title Port Graham
7918 UPDATE `list_options` SET `notes` = '1988-5' WHERE `title` = 'Port Graham' AND `list_id` = 'race';
7919 #EndIf
7921 #IfNotRow2Dx2 list_options list_id race option_id port_heiden title Port Heiden
7922 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','port_heiden','Port Heiden','6310', '0',' 1982-8', 0);
7923 #EndIf
7925 #IfRow2D list_options list_id race option_id port_heiden
7926 UPDATE `list_options` SET `notes` = '1982-8' WHERE `option_id` = 'port_heiden' AND `list_id` = 'race';
7927 #EndIf
7929 #IfRow2D list_options list_id race title Port Heiden
7930 UPDATE `list_options` SET `notes` = '1982-8' WHERE `title` = 'Port Heiden' AND `list_id` = 'race';
7931 #EndIf
7933 #IfNotRow2Dx2 list_options list_id race option_id port_lions title Port Lions
7934 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','port_lions','Port Lions','6320', '0',' 2000-8', 0);
7935 #EndIf
7937 #IfRow2D list_options list_id race option_id port_lions
7938 UPDATE `list_options` SET `notes` = '2000-8' WHERE `option_id` = 'port_lions' AND `list_id` = 'race';
7939 #EndIf
7941 #IfRow2D list_options list_id race title Port Lions
7942 UPDATE `list_options` SET `notes` = '2000-8' WHERE `title` = 'Port Lions' AND `list_id` = 'race';
7943 #EndIf
7945 #IfNotRow2Dx2 list_options list_id race option_id port_madison title Port Madison
7946 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','port_madison','Port Madison','6330', '0',' 1525-5', 0);
7947 #EndIf
7949 #IfRow2D list_options list_id race option_id port_madison
7950 UPDATE `list_options` SET `notes` = '1525-5' WHERE `option_id` = 'port_madison' AND `list_id` = 'race';
7951 #EndIf
7953 #IfRow2D list_options list_id race title Port Madison
7954 UPDATE `list_options` SET `notes` = '1525-5' WHERE `title` = 'Port Madison' AND `list_id` = 'race';
7955 #EndIf
7957 #IfNotRow2Dx2 list_options list_id race option_id portage_creek title Portage Creek
7958 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','portage_creek','Portage Creek','6340', '0',' 1948-9', 0);
7959 #EndIf
7961 #IfRow2D list_options list_id race option_id portage_creek
7962 UPDATE `list_options` SET `notes` = '1948-9' WHERE `option_id` = 'portage_creek' AND `list_id` = 'race';
7963 #EndIf
7965 #IfRow2D list_options list_id race title Portage Creek
7966 UPDATE `list_options` SET `notes` = '1948-9' WHERE `title` = 'Portage Creek' AND `list_id` = 'race';
7967 #EndIf
7969 #IfNotRow2Dx2 list_options list_id race option_id potawatomi title Potawatomi
7970 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','potawatomi','Potawatomi','6350', '0',' 1478-7', 0);
7971 #EndIf
7973 #IfRow2D list_options list_id race option_id potawatomi
7974 UPDATE `list_options` SET `notes` = '1478-7' WHERE `option_id` = 'potawatomi' AND `list_id` = 'race';
7975 #EndIf
7977 #IfRow2D list_options list_id race title Potawatomi
7978 UPDATE `list_options` SET `notes` = '1478-7' WHERE `title` = 'Potawatomi' AND `list_id` = 'race';
7979 #EndIf
7981 #IfNotRow2Dx2 list_options list_id race option_id powhatan title Powhatan
7982 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','powhatan','Powhatan','6360', '0',' 1487-8', 0);
7983 #EndIf
7985 #IfRow2D list_options list_id race option_id powhatan
7986 UPDATE `list_options` SET `notes` = '1487-8' WHERE `option_id` = 'powhatan' AND `list_id` = 'race';
7987 #EndIf
7989 #IfRow2D list_options list_id race title Powhatan
7990 UPDATE `list_options` SET `notes` = '1487-8' WHERE `title` = 'Powhatan' AND `list_id` = 'race';
7991 #EndIf
7993 #IfNotRow2Dx2 list_options list_id race option_id prairie_band title Prairie Band
7994 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','prairie_band','Prairie Band','6370', '0',' 1484-5', 0);
7995 #EndIf
7997 #IfRow2D list_options list_id race option_id prairie_band
7998 UPDATE `list_options` SET `notes` = '1484-5' WHERE `option_id` = 'prairie_band' AND `list_id` = 'race';
7999 #EndIf
8001 #IfRow2D list_options list_id race title Prairie Band
8002 UPDATE `list_options` SET `notes` = '1484-5' WHERE `title` = 'Prairie Band' AND `list_id` = 'race';
8003 #EndIf
8005 #IfNotRow2Dx2 list_options list_id race option_id prairie_island_sioux title Prairie Island Sioux
8006 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','prairie_island_sioux','Prairie Island Sioux','6380', '0',' 1625-3', 0);
8007 #EndIf
8009 #IfRow2D list_options list_id race option_id prairie_island_sioux
8010 UPDATE `list_options` SET `notes` = '1625-3' WHERE `option_id` = 'prairie_island_sioux' AND `list_id` = 'race';
8011 #EndIf
8013 #IfRow2D list_options list_id race title Prairie Island Sioux
8014 UPDATE `list_options` SET `notes` = '1625-3' WHERE `title` = 'Prairie Island Sioux' AND `list_id` = 'race';
8015 #EndIf
8017 #IfNotRow2Dx2 list_options list_id race option_id principal_creek_indian_nation title Principal Creek Indian Nation
8018 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','principal_creek_indian_nation','Principal Creek Indian Nation','6390', '0',' 1202-1', 0);
8019 #EndIf
8021 #IfRow2D list_options list_id race option_id principal_creek_indian_nation
8022 UPDATE `list_options` SET `notes` = '1202-1' WHERE `option_id` = 'principal_creek_indian_nation' AND `list_id` = 'race';
8023 #EndIf
8025 #IfRow2D list_options list_id race title Principal Creek Indian Nation
8026 UPDATE `list_options` SET `notes` = '1202-1' WHERE `title` = 'Principal Creek Indian Nation' AND `list_id` = 'race';
8027 #EndIf
8029 #IfNotRow2Dx2 list_options list_id race option_id prior_lake_sioux title Prior Lake Sioux
8030 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','prior_lake_sioux','Prior Lake Sioux','6400', '0',' 1626-1', 0);
8031 #EndIf
8033 #IfRow2D list_options list_id race option_id prior_lake_sioux
8034 UPDATE `list_options` SET `notes` = '1626-1' WHERE `option_id` = 'prior_lake_sioux' AND `list_id` = 'race';
8035 #EndIf
8037 #IfRow2D list_options list_id race title Prior Lake Sioux
8038 UPDATE `list_options` SET `notes` = '1626-1' WHERE `title` = 'Prior Lake Sioux' AND `list_id` = 'race';
8039 #EndIf
8041 #IfNotRow2Dx2 list_options list_id race option_id pueblo title Pueblo
8042 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','pueblo','Pueblo','6410', '0',' 1489-4', 0);
8043 #EndIf
8045 #IfRow2D list_options list_id race option_id pueblo
8046 UPDATE `list_options` SET `notes` = '1489-4' WHERE `option_id` = 'pueblo' AND `list_id` = 'race';
8047 #EndIf
8049 #IfRow2D list_options list_id race title Pueblo
8050 UPDATE `list_options` SET `notes` = '1489-4' WHERE `title` = 'Pueblo' AND `list_id` = 'race';
8051 #EndIf
8053 #IfNotRow2Dx2 list_options list_id race option_id puget_sound_salish title Puget Sound Salish
8054 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','puget_sound_salish','Puget Sound Salish','6420', '0',' 1518-0', 0);
8055 #EndIf
8057 #IfRow2D list_options list_id race option_id puget_sound_salish
8058 UPDATE `list_options` SET `notes` = '1518-0' WHERE `option_id` = 'puget_sound_salish' AND `list_id` = 'race';
8059 #EndIf
8061 #IfRow2D list_options list_id race title Puget Sound Salish
8062 UPDATE `list_options` SET `notes` = '1518-0' WHERE `title` = 'Puget Sound Salish' AND `list_id` = 'race';
8063 #EndIf
8065 #IfNotRow2Dx2 list_options list_id race option_id puyallup title Puyallup
8066 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','puyallup','Puyallup','6430', '0',' 1526-3', 0);
8067 #EndIf
8069 #IfRow2D list_options list_id race option_id puyallup
8070 UPDATE `list_options` SET `notes` = '1526-3' WHERE `option_id` = 'puyallup' AND `list_id` = 'race';
8071 #EndIf
8073 #IfRow2D list_options list_id race title Puyallup
8074 UPDATE `list_options` SET `notes` = '1526-3' WHERE `title` = 'Puyallup' AND `list_id` = 'race';
8075 #EndIf
8077 #IfNotRow2Dx2 list_options list_id race option_id pyramid_lake title Pyramid Lake
8078 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','pyramid_lake','Pyramid Lake','6440', '0',' 1431-6', 0);
8079 #EndIf
8081 #IfRow2D list_options list_id race option_id pyramid_lake
8082 UPDATE `list_options` SET `notes` = '1431-6' WHERE `option_id` = 'pyramid_lake' AND `list_id` = 'race';
8083 #EndIf
8085 #IfRow2D list_options list_id race title Pyramid Lake
8086 UPDATE `list_options` SET `notes` = '1431-6' WHERE `title` = 'Pyramid Lake' AND `list_id` = 'race';
8087 #EndIf
8089 #IfNotRow2Dx2 list_options list_id race option_id qagan_toyagungin title Qagan Toyagungin
8090 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','qagan_toyagungin','Qagan Toyagungin','6450', '0',' 2019-8', 0);
8091 #EndIf
8093 #IfRow2D list_options list_id race option_id qagan_toyagungin
8094 UPDATE `list_options` SET `notes` = '2019-8' WHERE `option_id` = 'qagan_toyagungin' AND `list_id` = 'race';
8095 #EndIf
8097 #IfRow2D list_options list_id race title Qagan Toyagungin
8098 UPDATE `list_options` SET `notes` = '2019-8' WHERE `title` = 'Qagan Toyagungin' AND `list_id` = 'race';
8099 #EndIf
8101 #IfNotRow2Dx2 list_options list_id race option_id qawalangin title Qawalangin
8102 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','qawalangin','Qawalangin','6460', '0',' 2020-6', 0);
8103 #EndIf
8105 #IfRow2D list_options list_id race option_id qawalangin
8106 UPDATE `list_options` SET `notes` = '2020-6' WHERE `option_id` = 'qawalangin' AND `list_id` = 'race';
8107 #EndIf
8109 #IfRow2D list_options list_id race title Qawalangin
8110 UPDATE `list_options` SET `notes` = '2020-6' WHERE `title` = 'Qawalangin' AND `list_id` = 'race';
8111 #EndIf
8113 #IfNotRow2Dx2 list_options list_id race option_id quapaw title Quapaw
8114 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','quapaw','Quapaw','6470', '0',' 1541-2', 0);
8115 #EndIf
8117 #IfRow2D list_options list_id race option_id quapaw
8118 UPDATE `list_options` SET `notes` = '1541-2' WHERE `option_id` = 'quapaw' AND `list_id` = 'race';
8119 #EndIf
8121 #IfRow2D list_options list_id race title Quapaw
8122 UPDATE `list_options` SET `notes` = '1541-2' WHERE `title` = 'Quapaw' AND `list_id` = 'race';
8123 #EndIf
8125 #IfNotRow2Dx2 list_options list_id race option_id quechan title Quechan
8126 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','quechan','Quechan','6480', '0',' 1730-1', 0);
8127 #EndIf
8129 #IfRow2D list_options list_id race option_id quechan
8130 UPDATE `list_options` SET `notes` = '1730-1' WHERE `option_id` = 'quechan' AND `list_id` = 'race';
8131 #EndIf
8133 #IfRow2D list_options list_id race title Quechan
8134 UPDATE `list_options` SET `notes` = '1730-1' WHERE `title` = 'Quechan' AND `list_id` = 'race';
8135 #EndIf
8137 #IfNotRow2Dx2 list_options list_id race option_id quileute title Quileute
8138 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','quileute','Quileute','6490', '0',' 1084-3', 0);
8139 #EndIf
8141 #IfRow2D list_options list_id race option_id quileute
8142 UPDATE `list_options` SET `notes` = '1084-3' WHERE `option_id` = 'quileute' AND `list_id` = 'race';
8143 #EndIf
8145 #IfRow2D list_options list_id race title Quileute
8146 UPDATE `list_options` SET `notes` = '1084-3' WHERE `title` = 'Quileute' AND `list_id` = 'race';
8147 #EndIf
8149 #IfNotRow2Dx2 list_options list_id race option_id quinault title Quinault
8150 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','quinault','Quinault','6500', '0',' 1543-8', 0);
8151 #EndIf
8153 #IfRow2D list_options list_id race option_id quinault
8154 UPDATE `list_options` SET `notes` = '1543-8' WHERE `option_id` = 'quinault' AND `list_id` = 'race';
8155 #EndIf
8157 #IfRow2D list_options list_id race title Quinault
8158 UPDATE `list_options` SET `notes` = '1543-8' WHERE `title` = 'Quinault' AND `list_id` = 'race';
8159 #EndIf
8161 #IfNotRow2Dx2 list_options list_id race option_id quinhagak title Quinhagak
8162 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','quinhagak','Quinhagak','6510', '0',' 1949-7', 0);
8163 #EndIf
8165 #IfRow2D list_options list_id race option_id quinhagak
8166 UPDATE `list_options` SET `notes` = '1949-7' WHERE `option_id` = 'quinhagak' AND `list_id` = 'race';
8167 #EndIf
8169 #IfRow2D list_options list_id race title Quinhagak
8170 UPDATE `list_options` SET `notes` = '1949-7' WHERE `title` = 'Quinhagak' AND `list_id` = 'race';
8171 #EndIf
8173 #IfNotRow2Dx2 list_options list_id race option_id ramah_navajo title Ramah Navajo
8174 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','ramah_navajo','Ramah Navajo','6520', '0',' 1385-4', 0);
8175 #EndIf
8177 #IfRow2D list_options list_id race option_id ramah_navajo
8178 UPDATE `list_options` SET `notes` = '1385-4' WHERE `option_id` = 'ramah_navajo' AND `list_id` = 'race';
8179 #EndIf
8181 #IfRow2D list_options list_id race title Ramah Navajo
8182 UPDATE `list_options` SET `notes` = '1385-4' WHERE `title` = 'Ramah Navajo' AND `list_id` = 'race';
8183 #EndIf
8185 #IfNotRow2Dx2 list_options list_id race option_id rampart title Rampart
8186 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','rampart','Rampart','6530', '0',' 1790-5', 0);
8187 #EndIf
8189 #IfRow2D list_options list_id race option_id rampart
8190 UPDATE `list_options` SET `notes` = '1790-5' WHERE `option_id` = 'rampart' AND `list_id` = 'race';
8191 #EndIf
8193 #IfRow2D list_options list_id race title Rampart
8194 UPDATE `list_options` SET `notes` = '1790-5' WHERE `title` = 'Rampart' AND `list_id` = 'race';
8195 #EndIf
8197 #IfNotRow2Dx2 list_options list_id race option_id rampough_mountain title Rampough Mountain
8198 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','rampough_mountain','Rampough Mountain','6540', '0',' 1219-5', 0);
8199 #EndIf
8201 #IfRow2D list_options list_id race option_id rampough_mountain
8202 UPDATE `list_options` SET `notes` = '1219-5' WHERE `option_id` = 'rampough_mountain' AND `list_id` = 'race';
8203 #EndIf
8205 #IfRow2D list_options list_id race title Rampough Mountain
8206 UPDATE `list_options` SET `notes` = '1219-5' WHERE `title` = 'Rampough Mountain' AND `list_id` = 'race';
8207 #EndIf
8209 #IfNotRow2Dx2 list_options list_id race option_id rappahannock title Rappahannock
8210 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','rappahannock','Rappahannock','6550', '0',' 1545-3', 0);
8211 #EndIf
8213 #IfRow2D list_options list_id race option_id rappahannock
8214 UPDATE `list_options` SET `notes` = '1545-3' WHERE `option_id` = 'rappahannock' AND `list_id` = 'race';
8215 #EndIf
8217 #IfRow2D list_options list_id race title Rappahannock
8218 UPDATE `list_options` SET `notes` = '1545-3' WHERE `title` = 'Rappahannock' AND `list_id` = 'race';
8219 #EndIf
8221 #IfNotRow2Dx2 list_options list_id race option_id red_cliff_chippewa title Red Cliff Chippewa
8222 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','red_cliff_chippewa','Red Cliff Chippewa','6560', '0',' 1141-1', 0);
8223 #EndIf
8225 #IfRow2D list_options list_id race option_id red_cliff_chippewa
8226 UPDATE `list_options` SET `notes` = '1141-1' WHERE `option_id` = 'red_cliff_chippewa' AND `list_id` = 'race';
8227 #EndIf
8229 #IfRow2D list_options list_id race title Red Cliff Chippewa
8230 UPDATE `list_options` SET `notes` = '1141-1' WHERE `title` = 'Red Cliff Chippewa' AND `list_id` = 'race';
8231 #EndIf
8233 #IfNotRow2Dx2 list_options list_id race option_id red_devil title Red Devil
8234 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','red_devil','Red Devil','6570', '0',' 1950-5', 0);
8235 #EndIf
8237 #IfRow2D list_options list_id race option_id red_devil
8238 UPDATE `list_options` SET `notes` = '1950-5' WHERE `option_id` = 'red_devil' AND `list_id` = 'race';
8239 #EndIf
8241 #IfRow2D list_options list_id race title Red Devil
8242 UPDATE `list_options` SET `notes` = '1950-5' WHERE `title` = 'Red Devil' AND `list_id` = 'race';
8243 #EndIf
8245 #IfNotRow2Dx2 list_options list_id race option_id red_lake_chippewa title Red Lake Chippewa
8246 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','red_lake_chippewa','Red Lake Chippewa','6580', '0',' 1142-9', 0);
8247 #EndIf
8249 #IfRow2D list_options list_id race option_id red_lake_chippewa
8250 UPDATE `list_options` SET `notes` = '1142-9' WHERE `option_id` = 'red_lake_chippewa' AND `list_id` = 'race';
8251 #EndIf
8253 #IfRow2D list_options list_id race title Red Lake Chippewa
8254 UPDATE `list_options` SET `notes` = '1142-9' WHERE `title` = 'Red Lake Chippewa' AND `list_id` = 'race';
8255 #EndIf
8257 #IfNotRow2Dx2 list_options list_id race option_id red_wood title Red Wood
8258 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','red_wood','Red Wood','6590', '0',' 1061-1', 0);
8259 #EndIf
8261 #IfRow2D list_options list_id race option_id red_wood
8262 UPDATE `list_options` SET `notes` = '1061-1' WHERE `option_id` = 'red_wood' AND `list_id` = 'race';
8263 #EndIf
8265 #IfRow2D list_options list_id race title Red Wood
8266 UPDATE `list_options` SET `notes` = '1061-1' WHERE `title` = 'Red Wood' AND `list_id` = 'race';
8267 #EndIf
8269 #IfNotRow2Dx2 list_options list_id race option_id reno-sparks title Reno-Sparks
8270 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','reno-sparks','Reno-Sparks','6600', '0',' 1547-9', 0);
8271 #EndIf
8273 #IfRow2D list_options list_id race option_id reno-sparks
8274 UPDATE `list_options` SET `notes` = '1547-9' WHERE `option_id` = 'reno-sparks' AND `list_id` = 'race';
8275 #EndIf
8277 #IfRow2D list_options list_id race title Reno-Sparks
8278 UPDATE `list_options` SET `notes` = '1547-9' WHERE `title` = 'Reno-Sparks' AND `list_id` = 'race';
8279 #EndIf
8281 #IfNotRow2D list_options list_id race option_id rocky_boys_chippewa_cree
8282 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','rocky_boys_chippewa_cree',"Rocky Boy's Chippewa Cree",'6610', '0',' 1151-0', 0);
8283 #EndIf
8285 #IfRow2D list_options list_id race option_id rocky_boys_chippewa_cree
8286 UPDATE `list_options` SET `notes` = '1151-0' WHERE `option_id` = 'rocky_boys_chippewa_cree' AND `list_id` = 'race';
8287 #EndIf
8289 #IfNotRow2Dx2 list_options list_id race option_id rosebud_sioux title Rosebud Sioux
8290 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','rosebud_sioux','Rosebud Sioux','6620', '0',' 1627-9', 0);
8291 #EndIf
8293 #IfRow2D list_options list_id race option_id rosebud_sioux
8294 UPDATE `list_options` SET `notes` = '1627-9' WHERE `option_id` = 'rosebud_sioux' AND `list_id` = 'race';
8295 #EndIf
8297 #IfRow2D list_options list_id race title Rosebud Sioux
8298 UPDATE `list_options` SET `notes` = '1627-9' WHERE `title` = 'Rosebud Sioux' AND `list_id` = 'race';
8299 #EndIf
8301 #IfNotRow2Dx2 list_options list_id race option_id round_valley title Round Valley
8302 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','round_valley','Round Valley','6630', '0',' 1549-5', 0);
8303 #EndIf
8305 #IfRow2D list_options list_id race option_id round_valley
8306 UPDATE `list_options` SET `notes` = '1549-5' WHERE `option_id` = 'round_valley' AND `list_id` = 'race';
8307 #EndIf
8309 #IfRow2D list_options list_id race title Round Valley
8310 UPDATE `list_options` SET `notes` = '1549-5' WHERE `title` = 'Round Valley' AND `list_id` = 'race';
8311 #EndIf
8313 #IfNotRow2Dx2 list_options list_id race option_id ruby title Ruby
8314 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','ruby','Ruby','6640', '0',' 1791-3', 0);
8315 #EndIf
8317 #IfRow2D list_options list_id race option_id ruby
8318 UPDATE `list_options` SET `notes` = '1791-3' WHERE `option_id` = 'ruby' AND `list_id` = 'race';
8319 #EndIf
8321 #IfRow2D list_options list_id race title Ruby
8322 UPDATE `list_options` SET `notes` = '1791-3' WHERE `title` = 'Ruby' AND `list_id` = 'race';
8323 #EndIf
8325 #IfNotRow2Dx2 list_options list_id race option_id ruby_valley title Ruby Valley
8326 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','ruby_valley','Ruby Valley','6650', '0',' 1593-3', 0);
8327 #EndIf
8329 #IfRow2D list_options list_id race option_id ruby_valley
8330 UPDATE `list_options` SET `notes` = '1593-3' WHERE `option_id` = 'ruby_valley' AND `list_id` = 'race';
8331 #EndIf
8333 #IfRow2D list_options list_id race title Ruby Valley
8334 UPDATE `list_options` SET `notes` = '1593-3' WHERE `title` = 'Ruby Valley' AND `list_id` = 'race';
8335 #EndIf
8337 #IfNotRow2Dx2 list_options list_id race option_id sac_and_fox title Sac and Fox
8338 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','sac_and_fox','Sac and Fox','6660', '0',' 1551-1', 0);
8339 #EndIf
8341 #IfRow2D list_options list_id race option_id sac_and_fox
8342 UPDATE `list_options` SET `notes` = '1551-1' WHERE `option_id` = 'sac_and_fox' AND `list_id` = 'race';
8343 #EndIf
8345 #IfRow2D list_options list_id race title Sac and Fox
8346 UPDATE `list_options` SET `notes` = '1551-1' WHERE `title` = 'Sac and Fox' AND `list_id` = 'race';
8347 #EndIf
8349 #IfNotRow2Dx2 list_options list_id race option_id saginaw_chippewa title Saginaw Chippewa
8350 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','saginaw_chippewa','Saginaw Chippewa','6670', '0',' 1143-7', 0);
8351 #EndIf
8353 #IfRow2D list_options list_id race option_id saginaw_chippewa
8354 UPDATE `list_options` SET `notes` = '1143-7' WHERE `option_id` = 'saginaw_chippewa' AND `list_id` = 'race';
8355 #EndIf
8357 #IfRow2D list_options list_id race title Saginaw Chippewa
8358 UPDATE `list_options` SET `notes` = '1143-7' WHERE `title` = 'Saginaw Chippewa' AND `list_id` = 'race';
8359 #EndIf
8361 #IfNotRow2Dx2 list_options list_id race option_id saipanese title Saipanese
8362 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','saipanese','Saipanese','6680', '0',' 2095-8', 0);
8363 #EndIf
8365 #IfRow2D list_options list_id race option_id saipanese
8366 UPDATE `list_options` SET `notes` = '2095-8' WHERE `option_id` = 'saipanese' AND `list_id` = 'race';
8367 #EndIf
8369 #IfRow2D list_options list_id race title Saipanese
8370 UPDATE `list_options` SET `notes` = '2095-8' WHERE `title` = 'Saipanese' AND `list_id` = 'race';
8371 #EndIf
8373 #IfNotRow2Dx2 list_options list_id race option_id salamatof title Salamatof
8374 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','salamatof','Salamatof','6690', '0',' 1792-1', 0);
8375 #EndIf
8377 #IfRow2D list_options list_id race option_id salamatof
8378 UPDATE `list_options` SET `notes` = '1792-1' WHERE `option_id` = 'salamatof' AND `list_id` = 'race';
8379 #EndIf
8381 #IfRow2D list_options list_id race title Salamatof
8382 UPDATE `list_options` SET `notes` = '1792-1' WHERE `title` = 'Salamatof' AND `list_id` = 'race';
8383 #EndIf
8385 #IfNotRow2Dx2 list_options list_id race option_id salinan title Salinan
8386 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','salinan','Salinan','6700', '0',' 1556-0', 0);
8387 #EndIf
8389 #IfRow2D list_options list_id race option_id salinan
8390 UPDATE `list_options` SET `notes` = '1556-0' WHERE `option_id` = 'salinan' AND `list_id` = 'race';
8391 #EndIf
8393 #IfRow2D list_options list_id race title Salinan
8394 UPDATE `list_options` SET `notes` = '1556-0' WHERE `title` = 'Salinan' AND `list_id` = 'race';
8395 #EndIf
8397 #IfNotRow2Dx2 list_options list_id race option_id salish title Salish
8398 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','salish','Salish','6710', '0',' 1558-6', 0);
8399 #EndIf
8401 #IfRow2D list_options list_id race option_id salish
8402 UPDATE `list_options` SET `notes` = '1558-6' WHERE `option_id` = 'salish' AND `list_id` = 'race';
8403 #EndIf
8405 #IfRow2D list_options list_id race title Salish
8406 UPDATE `list_options` SET `notes` = '1558-6' WHERE `title` = 'Salish' AND `list_id` = 'race';
8407 #EndIf
8409 #IfNotRow2Dx2 list_options list_id race option_id salish_and_kootenai title Salish and Kootenai
8410 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','salish_and_kootenai','Salish and Kootenai','6720', '0',' 1560-2', 0);
8411 #EndIf
8413 #IfRow2D list_options list_id race option_id salish_and_kootenai
8414 UPDATE `list_options` SET `notes` = '1560-2' WHERE `option_id` = 'salish_and_kootenai' AND `list_id` = 'race';
8415 #EndIf
8417 #IfRow2D list_options list_id race title Salish and Kootenai
8418 UPDATE `list_options` SET `notes` = '1560-2' WHERE `title` = 'Salish and Kootenai' AND `list_id` = 'race';
8419 #EndIf
8421 #IfNotRow2Dx2 list_options list_id race option_id salt_river_pima-maricopa title Salt River Pima-Maricopa
8422 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','salt_river_pima-maricopa','Salt River Pima-Maricopa','6730', '0',' 1458-9', 0);
8423 #EndIf
8425 #IfRow2D list_options list_id race option_id salt_river_pima-maricopa
8426 UPDATE `list_options` SET `notes` = '1458-9' WHERE `option_id` = 'salt_river_pima-maricopa' AND `list_id` = 'race';
8427 #EndIf
8429 #IfRow2D list_options list_id race title Salt River Pima-Maricopa
8430 UPDATE `list_options` SET `notes` = '1458-9' WHERE `title` = 'Salt River Pima-Maricopa' AND `list_id` = 'race';
8431 #EndIf
8433 #IfNotRow2Dx2 list_options list_id race option_id samish title Samish
8434 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','samish','Samish','6740', '0',' 1527-1', 0);
8435 #EndIf
8437 #IfRow2D list_options list_id race option_id samish
8438 UPDATE `list_options` SET `notes` = '1527-1' WHERE `option_id` = 'samish' AND `list_id` = 'race';
8439 #EndIf
8441 #IfRow2D list_options list_id race title Samish
8442 UPDATE `list_options` SET `notes` = '1527-1' WHERE `title` = 'Samish' AND `list_id` = 'race';
8443 #EndIf
8445 #IfNotRow2Dx2 list_options list_id race option_id samoan title Samoan
8446 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','samoan','Samoan','6750', '0',' 2080-0', 0);
8447 #EndIf
8449 #IfRow2D list_options list_id race option_id samoan
8450 UPDATE `list_options` SET `notes` = '2080-0' WHERE `option_id` = 'samoan' AND `list_id` = 'race';
8451 #EndIf
8453 #IfRow2D list_options list_id race title Samoan
8454 UPDATE `list_options` SET `notes` = '2080-0' WHERE `title` = 'Samoan' AND `list_id` = 'race';
8455 #EndIf
8457 #IfNotRow2Dx2 list_options list_id race option_id san_carlos_apache title San Carlos Apache
8458 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','san_carlos_apache','San Carlos Apache','6760', '0',' 1018-1', 0);
8459 #EndIf
8461 #IfRow2D list_options list_id race option_id san_carlos_apache
8462 UPDATE `list_options` SET `notes` = '1018-1' WHERE `option_id` = 'san_carlos_apache' AND `list_id` = 'race';
8463 #EndIf
8465 #IfRow2D list_options list_id race title San Carlos Apache
8466 UPDATE `list_options` SET `notes` = '1018-1' WHERE `title` = 'San Carlos Apache' AND `list_id` = 'race';
8467 #EndIf
8469 #IfNotRow2Dx2 list_options list_id race option_id san_felipe title San Felipe
8470 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','san_felipe','San Felipe','6770', '0',' 1502-4', 0);
8471 #EndIf
8473 #IfRow2D list_options list_id race option_id san_felipe
8474 UPDATE `list_options` SET `notes` = '1502-4' WHERE `option_id` = 'san_felipe' AND `list_id` = 'race';
8475 #EndIf
8477 #IfRow2D list_options list_id race title San Felipe
8478 UPDATE `list_options` SET `notes` = '1502-4' WHERE `title` = 'San Felipe' AND `list_id` = 'race';
8479 #EndIf
8481 #IfNotRow2Dx2 list_options list_id race option_id san_ildefonso title San Ildefonso
8482 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','san_ildefonso','San Ildefonso','6780', '0',' 1503-2', 0);
8483 #EndIf
8485 #IfRow2D list_options list_id race option_id san_ildefonso
8486 UPDATE `list_options` SET `notes` = '1503-2' WHERE `option_id` = 'san_ildefonso' AND `list_id` = 'race';
8487 #EndIf
8489 #IfRow2D list_options list_id race title San Ildefonso
8490 UPDATE `list_options` SET `notes` = '1503-2' WHERE `title` = 'San Ildefonso' AND `list_id` = 'race';
8491 #EndIf
8493 #IfNotRow2Dx2 list_options list_id race option_id san_juan title San Juan
8494 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','san_juan','San Juan','6790', '0',' 1506-5', 0);
8495 #EndIf
8497 #IfRow2D list_options list_id race option_id san_juan
8498 UPDATE `list_options` SET `notes` = '1506-5' WHERE `option_id` = 'san_juan' AND `list_id` = 'race';
8499 #EndIf
8501 #IfRow2D list_options list_id race title San Juan
8502 UPDATE `list_options` SET `notes` = '1506-5' WHERE `title` = 'San Juan' AND `list_id` = 'race';
8503 #EndIf
8505 #IfNotRow2Dx2 list_options list_id race option_id san_juan_de title San Juan De
8506 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','san_juan_de','San Juan De','6800', '0',' 1505-7', 0);
8507 #EndIf
8509 #IfRow2D list_options list_id race option_id san_juan_de
8510 UPDATE `list_options` SET `notes` = '1505-7' WHERE `option_id` = 'san_juan_de' AND `list_id` = 'race';
8511 #EndIf
8513 #IfRow2D list_options list_id race title San Juan De
8514 UPDATE `list_options` SET `notes` = '1505-7' WHERE `title` = 'San Juan De' AND `list_id` = 'race';
8515 #EndIf
8517 #IfNotRow2Dx2 list_options list_id race option_id san_juan_pueblo title San Juan Pueblo
8518 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','san_juan_pueblo','San Juan Pueblo','6810', '0',' 1504-0', 0);
8519 #EndIf
8521 #IfRow2D list_options list_id race option_id san_juan_pueblo
8522 UPDATE `list_options` SET `notes` = '1504-0' WHERE `option_id` = 'san_juan_pueblo' AND `list_id` = 'race';
8523 #EndIf
8525 #IfRow2D list_options list_id race title San Juan Pueblo
8526 UPDATE `list_options` SET `notes` = '1504-0' WHERE `title` = 'San Juan Pueblo' AND `list_id` = 'race';
8527 #EndIf
8529 #IfNotRow2Dx2 list_options list_id race option_id san_juan_southern_paiute title San Juan Southern Paiute
8530 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','san_juan_southern_paiute','San Juan Southern Paiute','6820', '0',' 1432-4', 0);
8531 #EndIf
8533 #IfRow2D list_options list_id race option_id san_juan_southern_paiute
8534 UPDATE `list_options` SET `notes` = '1432-4' WHERE `option_id` = 'san_juan_southern_paiute' AND `list_id` = 'race';
8535 #EndIf
8537 #IfRow2D list_options list_id race title San Juan Southern Paiute
8538 UPDATE `list_options` SET `notes` = '1432-4' WHERE `title` = 'San Juan Southern Paiute' AND `list_id` = 'race';
8539 #EndIf
8541 #IfNotRow2Dx2 list_options list_id race option_id san_manual title San Manual
8542 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','san_manual','San Manual','6830', '0',' 1574-3', 0);
8543 #EndIf
8545 #IfRow2D list_options list_id race option_id san_manual
8546 UPDATE `list_options` SET `notes` = '1574-3' WHERE `option_id` = 'san_manual' AND `list_id` = 'race';
8547 #EndIf
8549 #IfRow2D list_options list_id race title San Manual
8550 UPDATE `list_options` SET `notes` = '1574-3' WHERE `title` = 'San Manual' AND `list_id` = 'race';
8551 #EndIf
8553 #IfNotRow2Dx2 list_options list_id race option_id san_pasqual title San Pasqual
8554 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','san_pasqual','San Pasqual','6840', '0',' 1229-4', 0);
8555 #EndIf
8557 #IfRow2D list_options list_id race option_id san_pasqual
8558 UPDATE `list_options` SET `notes` = '1229-4' WHERE `option_id` = 'san_pasqual' AND `list_id` = 'race';
8559 #EndIf
8561 #IfRow2D list_options list_id race title San Pasqual
8562 UPDATE `list_options` SET `notes` = '1229-4' WHERE `title` = 'San Pasqual' AND `list_id` = 'race';
8563 #EndIf
8565 #IfNotRow2Dx2 list_options list_id race option_id san_xavier title San Xavier
8566 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','san_xavier','San Xavier','6850', '0',' 1656-8', 0);
8567 #EndIf
8569 #IfRow2D list_options list_id race option_id san_xavier
8570 UPDATE `list_options` SET `notes` = '1656-8' WHERE `option_id` = 'san_xavier' AND `list_id` = 'race';
8571 #EndIf
8573 #IfRow2D list_options list_id race title San Xavier
8574 UPDATE `list_options` SET `notes` = '1656-8' WHERE `title` = 'San Xavier' AND `list_id` = 'race';
8575 #EndIf
8577 #IfNotRow2Dx2 list_options list_id race option_id sand_hill title Sand Hill
8578 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','sand_hill','Sand Hill','6860', '0',' 1220-3', 0);
8579 #EndIf
8581 #IfRow2D list_options list_id race option_id sand_hill
8582 UPDATE `list_options` SET `notes` = '1220-3' WHERE `option_id` = 'sand_hill' AND `list_id` = 'race';
8583 #EndIf
8585 #IfRow2D list_options list_id race title Sand Hill
8586 UPDATE `list_options` SET `notes` = '1220-3' WHERE `title` = 'Sand Hill' AND `list_id` = 'race';
8587 #EndIf
8589 #IfNotRow2Dx2 list_options list_id race option_id sand_point title Sand Point
8590 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','sand_point','Sand Point','6870', '0',' 2023-0', 0);
8591 #EndIf
8593 #IfRow2D list_options list_id race option_id sand_point
8594 UPDATE `list_options` SET `notes` = '2023-0' WHERE `option_id` = 'sand_point' AND `list_id` = 'race';
8595 #EndIf
8597 #IfRow2D list_options list_id race title Sand Point
8598 UPDATE `list_options` SET `notes` = '2023-0' WHERE `title` = 'Sand Point' AND `list_id` = 'race';
8599 #EndIf
8601 #IfNotRow2Dx2 list_options list_id race option_id sandia title Sandia
8602 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','sandia','Sandia','6880', '0',' 1507-3', 0);
8603 #EndIf
8605 #IfRow2D list_options list_id race option_id sandia
8606 UPDATE `list_options` SET `notes` = '1507-3' WHERE `option_id` = 'sandia' AND `list_id` = 'race';
8607 #EndIf
8609 #IfRow2D list_options list_id race title Sandia
8610 UPDATE `list_options` SET `notes` = '1507-3' WHERE `title` = 'Sandia' AND `list_id` = 'race';
8611 #EndIf
8613 #IfNotRow2Dx2 list_options list_id race option_id sans_arc_sioux title Sans Arc Sioux
8614 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','sans_arc_sioux','Sans Arc Sioux','6890', '0',' 1628-7', 0);
8615 #EndIf
8617 #IfRow2D list_options list_id race option_id sans_arc_sioux
8618 UPDATE `list_options` SET `notes` = '1628-7' WHERE `option_id` = 'sans_arc_sioux' AND `list_id` = 'race';
8619 #EndIf
8621 #IfRow2D list_options list_id race title Sans Arc Sioux
8622 UPDATE `list_options` SET `notes` = '1628-7' WHERE `title` = 'Sans Arc Sioux' AND `list_id` = 'race';
8623 #EndIf
8625 #IfNotRow2Dx2 list_options list_id race option_id santa_ana title Santa Ana
8626 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','santa_ana','Santa Ana','6900', '0',' 1508-1', 0);
8627 #EndIf
8629 #IfRow2D list_options list_id race option_id santa_ana
8630 UPDATE `list_options` SET `notes` = '1508-1' WHERE `option_id` = 'santa_ana' AND `list_id` = 'race';
8631 #EndIf
8633 #IfRow2D list_options list_id race title Santa Ana
8634 UPDATE `list_options` SET `notes` = '1508-1' WHERE `title` = 'Santa Ana' AND `list_id` = 'race';
8635 #EndIf
8637 #IfNotRow2Dx2 list_options list_id race option_id santa_clara title Santa Clara
8638 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','santa_clara','Santa Clara','6910', '0',' 1509-9', 0);
8639 #EndIf
8641 #IfRow2D list_options list_id race option_id santa_clara
8642 UPDATE `list_options` SET `notes` = '1509-9' WHERE `option_id` = 'santa_clara' AND `list_id` = 'race';
8643 #EndIf
8645 #IfRow2D list_options list_id race title Santa Clara
8646 UPDATE `list_options` SET `notes` = '1509-9' WHERE `title` = 'Santa Clara' AND `list_id` = 'race';
8647 #EndIf
8649 #IfNotRow2Dx2 list_options list_id race option_id santa_rosa title Santa Rosa
8650 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','santa_rosa','Santa Rosa','6920', '0',' 1062-9', 0);
8651 #EndIf
8653 #IfRow2D list_options list_id race option_id santa_rosa
8654 UPDATE `list_options` SET `notes` = '1062-9' WHERE `option_id` = 'santa_rosa' AND `list_id` = 'race';
8655 #EndIf
8657 #IfRow2D list_options list_id race title Santa Rosa
8658 UPDATE `list_options` SET `notes` = '1062-9' WHERE `title` = 'Santa Rosa' AND `list_id` = 'race';
8659 #EndIf
8661 #IfNotRow2Dx2 list_options list_id race option_id santa_rosa_cahuilla title Santa Rosa Cahuilla
8662 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','santa_rosa_cahuilla','Santa Rosa Cahuilla','6930', '0',' 1050-4', 0);
8663 #EndIf
8665 #IfRow2D list_options list_id race option_id santa_rosa_cahuilla
8666 UPDATE `list_options` SET `notes` = '1050-4' WHERE `option_id` = 'santa_rosa_cahuilla' AND `list_id` = 'race';
8667 #EndIf
8669 #IfRow2D list_options list_id race title Santa Rosa Cahuilla
8670 UPDATE `list_options` SET `notes` = '1050-4' WHERE `title` = 'Santa Rosa Cahuilla' AND `list_id` = 'race';
8671 #EndIf
8673 #IfNotRow2Dx2 list_options list_id race option_id santa_ynez title Santa Ynez
8674 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','santa_ynez','Santa Ynez','6940', '0',' 1163-5', 0);
8675 #EndIf
8677 #IfRow2D list_options list_id race option_id santa_ynez
8678 UPDATE `list_options` SET `notes` = '1163-5' WHERE `option_id` = 'santa_ynez' AND `list_id` = 'race';
8679 #EndIf
8681 #IfRow2D list_options list_id race title Santa Ynez
8682 UPDATE `list_options` SET `notes` = '1163-5' WHERE `title` = 'Santa Ynez' AND `list_id` = 'race';
8683 #EndIf
8685 #IfNotRow2Dx2 list_options list_id race option_id santa_ysabel title Santa Ysabel
8686 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','santa_ysabel','Santa Ysabel','6950', '0',' 1230-2', 0);
8687 #EndIf
8689 #IfRow2D list_options list_id race option_id santa_ysabel
8690 UPDATE `list_options` SET `notes` = '1230-2' WHERE `option_id` = 'santa_ysabel' AND `list_id` = 'race';
8691 #EndIf
8693 #IfRow2D list_options list_id race title Santa Ysabel
8694 UPDATE `list_options` SET `notes` = '1230-2' WHERE `title` = 'Santa Ysabel' AND `list_id` = 'race';
8695 #EndIf
8697 #IfNotRow2Dx2 list_options list_id race option_id santee_sioux title Santee Sioux
8698 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','santee_sioux','Santee Sioux','6960', '0',' 1629-5', 0);
8699 #EndIf
8701 #IfRow2D list_options list_id race option_id santee_sioux
8702 UPDATE `list_options` SET `notes` = '1629-5' WHERE `option_id` = 'santee_sioux' AND `list_id` = 'race';
8703 #EndIf
8705 #IfRow2D list_options list_id race title Santee Sioux
8706 UPDATE `list_options` SET `notes` = '1629-5' WHERE `title` = 'Santee Sioux' AND `list_id` = 'race';
8707 #EndIf
8709 #IfNotRow2Dx2 list_options list_id race option_id santo_domingo title Santo Domingo
8710 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','santo_domingo','Santo Domingo','6970', '0',' 1510-7', 0);
8711 #EndIf
8713 #IfRow2D list_options list_id race option_id santo_domingo
8714 UPDATE `list_options` SET `notes` = '1510-7' WHERE `option_id` = 'santo_domingo' AND `list_id` = 'race';
8715 #EndIf
8717 #IfRow2D list_options list_id race title Santo Domingo
8718 UPDATE `list_options` SET `notes` = '1510-7' WHERE `title` = 'Santo Domingo' AND `list_id` = 'race';
8719 #EndIf
8721 #IfNotRow2Dx2 list_options list_id race option_id sauk-suiattle title Sauk-Suiattle
8722 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','sauk-suiattle','Sauk-Suiattle','6980', '0',' 1528-9', 0);
8723 #EndIf
8725 #IfRow2D list_options list_id race option_id sauk-suiattle
8726 UPDATE `list_options` SET `notes` = '1528-9' WHERE `option_id` = 'sauk-suiattle' AND `list_id` = 'race';
8727 #EndIf
8729 #IfRow2D list_options list_id race title Sauk-Suiattle
8730 UPDATE `list_options` SET `notes` = '1528-9' WHERE `title` = 'Sauk-Suiattle' AND `list_id` = 'race';
8731 #EndIf
8733 #IfNotRow2Dx2 list_options list_id race option_id sault_ste_marie_chippewa title Sault Ste. Marie Chippewa
8734 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','sault_ste_marie_chippewa','Sault Ste. Marie Chippewa','6990', '0',' 1145-2', 0);
8735 #EndIf
8737 #IfRow2D list_options list_id race option_id sault_ste_marie_chippewa
8738 UPDATE `list_options` SET `notes` = '1145-2' WHERE `option_id` = 'sault_ste_marie_chippewa' AND `list_id` = 'race';
8739 #EndIf
8741 #IfRow2D list_options list_id race title Sault Ste. Marie Chippewa
8742 UPDATE `list_options` SET `notes` = '1145-2' WHERE `title` = 'Sault Ste. Marie Chippewa' AND `list_id` = 'race';
8743 #EndIf
8745 #IfNotRow2Dx2 list_options list_id race option_id savoonga title Savoonga
8746 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','savoonga','Savoonga','7000', '0',' 1893-7', 0);
8747 #EndIf
8749 #IfRow2D list_options list_id race option_id savoonga
8750 UPDATE `list_options` SET `notes` = '1893-7' WHERE `option_id` = 'savoonga' AND `list_id` = 'race';
8751 #EndIf
8753 #IfRow2D list_options list_id race title Savoonga
8754 UPDATE `list_options` SET `notes` = '1893-7' WHERE `title` = 'Savoonga' AND `list_id` = 'race';
8755 #EndIf
8757 #IfNotRow2Dx2 list_options list_id race option_id saxman title Saxman
8758 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','saxman','Saxman','7010', '0',' 1830-9', 0);
8759 #EndIf
8761 #IfRow2D list_options list_id race option_id saxman
8762 UPDATE `list_options` SET `notes` = '1830-9' WHERE `option_id` = 'saxman' AND `list_id` = 'race';
8763 #EndIf
8765 #IfRow2D list_options list_id race title Saxman
8766 UPDATE `list_options` SET `notes` = '1830-9' WHERE `title` = 'Saxman' AND `list_id` = 'race';
8767 #EndIf
8769 #IfNotRow2Dx2 list_options list_id race option_id scammon_bay title Scammon Bay
8770 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','scammon_bay','Scammon Bay','7020', '0',' 1952-1', 0);
8771 #EndIf
8773 #IfRow2D list_options list_id race option_id scammon_bay
8774 UPDATE `list_options` SET `notes` = '1952-1' WHERE `option_id` = 'scammon_bay' AND `list_id` = 'race';
8775 #EndIf
8777 #IfRow2D list_options list_id race title Scammon Bay
8778 UPDATE `list_options` SET `notes` = '1952-1' WHERE `title` = 'Scammon Bay' AND `list_id` = 'race';
8779 #EndIf
8781 #IfNotRow2Dx2 list_options list_id race option_id schaghticoke title Schaghticoke
8782 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','schaghticoke','Schaghticoke','7030', '0',' 1562-8', 0);
8783 #EndIf
8785 #IfRow2D list_options list_id race option_id schaghticoke
8786 UPDATE `list_options` SET `notes` = '1562-8' WHERE `option_id` = 'schaghticoke' AND `list_id` = 'race';
8787 #EndIf
8789 #IfRow2D list_options list_id race title Schaghticoke
8790 UPDATE `list_options` SET `notes` = '1562-8' WHERE `title` = 'Schaghticoke' AND `list_id` = 'race';
8791 #EndIf
8793 #IfNotRow2Dx2 list_options list_id race option_id scott_valley title Scott Valley
8794 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','scott_valley','Scott Valley','7040', '0',' 1564-4', 0);
8795 #EndIf
8797 #IfRow2D list_options list_id race option_id scott_valley
8798 UPDATE `list_options` SET `notes` = '1564-4' WHERE `option_id` = 'scott_valley' AND `list_id` = 'race';
8799 #EndIf
8801 #IfRow2D list_options list_id race title Scott Valley
8802 UPDATE `list_options` SET `notes` = '1564-4' WHERE `title` = 'Scott Valley' AND `list_id` = 'race';
8803 #EndIf
8805 #IfNotRow2Dx2 list_options list_id race option_id scottish title Scottish
8806 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','scottish','Scottish','7050', '0',' 2116-2', 0);
8807 #EndIf
8809 #IfRow2D list_options list_id race option_id scottish
8810 UPDATE `list_options` SET `notes` = '2116-2' WHERE `option_id` = 'scottish' AND `list_id` = 'race';
8811 #EndIf
8813 #IfRow2D list_options list_id race title Scottish
8814 UPDATE `list_options` SET `notes` = '2116-2' WHERE `title` = 'Scottish' AND `list_id` = 'race';
8815 #EndIf
8817 #IfNotRow2Dx2 list_options list_id race option_id scotts_valley title Scotts Valley
8818 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','scotts_valley','Scotts Valley','7060', '0',' 1470-4', 0);
8819 #EndIf
8821 #IfRow2D list_options list_id race option_id scotts_valley
8822 UPDATE `list_options` SET `notes` = '1470-4' WHERE `option_id` = 'scotts_valley' AND `list_id` = 'race';
8823 #EndIf
8825 #IfRow2D list_options list_id race title Scotts Valley
8826 UPDATE `list_options` SET `notes` = '1470-4' WHERE `title` = 'Scotts Valley' AND `list_id` = 'race';
8827 #EndIf
8829 #IfNotRow2Dx2 list_options list_id race option_id selawik title Selawik
8830 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','selawik','Selawik','7070', '0',' 1878-8', 0);
8831 #EndIf
8833 #IfRow2D list_options list_id race option_id selawik
8834 UPDATE `list_options` SET `notes` = '1878-8' WHERE `option_id` = 'selawik' AND `list_id` = 'race';
8835 #EndIf
8837 #IfRow2D list_options list_id race title Selawik
8838 UPDATE `list_options` SET `notes` = '1878-8' WHERE `title` = 'Selawik' AND `list_id` = 'race';
8839 #EndIf
8841 #IfNotRow2Dx2 list_options list_id race option_id seldovia title Seldovia
8842 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','seldovia','Seldovia','7080', '0',' 1793-9', 0);
8843 #EndIf
8845 #IfRow2D list_options list_id race option_id seldovia
8846 UPDATE `list_options` SET `notes` = '1793-9' WHERE `option_id` = 'seldovia' AND `list_id` = 'race';
8847 #EndIf
8849 #IfRow2D list_options list_id race title Seldovia
8850 UPDATE `list_options` SET `notes` = '1793-9' WHERE `title` = 'Seldovia' AND `list_id` = 'race';
8851 #EndIf
8853 #IfNotRow2Dx2 list_options list_id race option_id sells title Sells
8854 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','sells','Sells','7090', '0',' 1657-6', 0);
8855 #EndIf
8857 #IfRow2D list_options list_id race option_id sells
8858 UPDATE `list_options` SET `notes` = '1657-6' WHERE `option_id` = 'sells' AND `list_id` = 'race';
8859 #EndIf
8861 #IfRow2D list_options list_id race title Sells
8862 UPDATE `list_options` SET `notes` = '1657-6' WHERE `title` = 'Sells' AND `list_id` = 'race';
8863 #EndIf
8865 #IfNotRow2Dx2 list_options list_id race option_id seminole title Seminole
8866 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','seminole','Seminole','7100', '0',' 1566-9', 0);
8867 #EndIf
8869 #IfRow2D list_options list_id race option_id seminole
8870 UPDATE `list_options` SET `notes` = '1566-9' WHERE `option_id` = 'seminole' AND `list_id` = 'race';
8871 #EndIf
8873 #IfRow2D list_options list_id race title Seminole
8874 UPDATE `list_options` SET `notes` = '1566-9' WHERE `title` = 'Seminole' AND `list_id` = 'race';
8875 #EndIf
8877 #IfNotRow2Dx2 list_options list_id race option_id seneca title Seneca
8878 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','seneca','Seneca','7110', '0',' 1290-6', 0);
8879 #EndIf
8881 #IfRow2D list_options list_id race option_id seneca
8882 UPDATE `list_options` SET `notes` = '1290-6' WHERE `option_id` = 'seneca' AND `list_id` = 'race';
8883 #EndIf
8885 #IfRow2D list_options list_id race title Seneca
8886 UPDATE `list_options` SET `notes` = '1290-6' WHERE `title` = 'Seneca' AND `list_id` = 'race';
8887 #EndIf
8889 #IfNotRow2Dx2 list_options list_id race option_id seneca_nation title Seneca Nation
8890 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','seneca_nation','Seneca Nation','7120', '0',' 1291-4', 0);
8891 #EndIf
8893 #IfRow2D list_options list_id race option_id seneca_nation
8894 UPDATE `list_options` SET `notes` = '1291-4' WHERE `option_id` = 'seneca_nation' AND `list_id` = 'race';
8895 #EndIf
8897 #IfRow2D list_options list_id race title Seneca Nation
8898 UPDATE `list_options` SET `notes` = '1291-4' WHERE `title` = 'Seneca Nation' AND `list_id` = 'race';
8899 #EndIf
8901 #IfNotRow2Dx2 list_options list_id race option_id seneca-cayuga title Seneca-Cayuga
8902 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','seneca-cayuga','Seneca-Cayuga','7130', '0',' 1292-2', 0);
8903 #EndIf
8905 #IfRow2D list_options list_id race option_id seneca-cayuga
8906 UPDATE `list_options` SET `notes` = '1292-2' WHERE `option_id` = 'seneca-cayuga' AND `list_id` = 'race';
8907 #EndIf
8909 #IfRow2D list_options list_id race title Seneca-Cayuga
8910 UPDATE `list_options` SET `notes` = '1292-2' WHERE `title` = 'Seneca-Cayuga' AND `list_id` = 'race';
8911 #EndIf
8913 #IfNotRow2Dx2 list_options list_id race option_id serrano title Serrano
8914 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','serrano','Serrano','7140', '0',' 1573-5', 0);
8915 #EndIf
8917 #IfRow2D list_options list_id race option_id serrano
8918 UPDATE `list_options` SET `notes` = '1573-5' WHERE `option_id` = 'serrano' AND `list_id` = 'race';
8919 #EndIf
8921 #IfRow2D list_options list_id race title Serrano
8922 UPDATE `list_options` SET `notes` = '1573-5' WHERE `title` = 'Serrano' AND `list_id` = 'race';
8923 #EndIf
8925 #IfNotRow2Dx2 list_options list_id race option_id setauket title Setauket
8926 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','setauket','Setauket','7150', '0',' 1329-2', 0);
8927 #EndIf
8929 #IfRow2D list_options list_id race option_id setauket
8930 UPDATE `list_options` SET `notes` = '1329-2' WHERE `option_id` = 'setauket' AND `list_id` = 'race';
8931 #EndIf
8933 #IfRow2D list_options list_id race title Setauket
8934 UPDATE `list_options` SET `notes` = '1329-2' WHERE `title` = 'Setauket' AND `list_id` = 'race';
8935 #EndIf
8937 #IfNotRow2Dx2 list_options list_id race option_id shageluk title Shageluk
8938 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','shageluk','Shageluk','7160', '0',' 1795-4', 0);
8939 #EndIf
8941 #IfRow2D list_options list_id race option_id shageluk
8942 UPDATE `list_options` SET `notes` = '1795-4' WHERE `option_id` = 'shageluk' AND `list_id` = 'race';
8943 #EndIf
8945 #IfRow2D list_options list_id race title Shageluk
8946 UPDATE `list_options` SET `notes` = '1795-4' WHERE `title` = 'Shageluk' AND `list_id` = 'race';
8947 #EndIf
8949 #IfNotRow2Dx2 list_options list_id race option_id shaktoolik title Shaktoolik
8950 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','shaktoolik','Shaktoolik','7170', '0',' 1879-6', 0);
8951 #EndIf
8953 #IfRow2D list_options list_id race option_id shaktoolik
8954 UPDATE `list_options` SET `notes` = '1879-6' WHERE `option_id` = 'shaktoolik' AND `list_id` = 'race';
8955 #EndIf
8957 #IfRow2D list_options list_id race title Shaktoolik
8958 UPDATE `list_options` SET `notes` = '1879-6' WHERE `title` = 'Shaktoolik' AND `list_id` = 'race';
8959 #EndIf
8961 #IfNotRow2Dx2 list_options list_id race option_id shasta title Shasta
8962 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','shasta','Shasta','7180', '0',' 1576-8', 0);
8963 #EndIf
8965 #IfRow2D list_options list_id race option_id shasta
8966 UPDATE `list_options` SET `notes` = '1576-8' WHERE `option_id` = 'shasta' AND `list_id` = 'race';
8967 #EndIf
8969 #IfRow2D list_options list_id race title Shasta
8970 UPDATE `list_options` SET `notes` = '1576-8' WHERE `title` = 'Shasta' AND `list_id` = 'race';
8971 #EndIf
8973 #IfNotRow2Dx2 list_options list_id race option_id shawnee title Shawnee
8974 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','shawnee','Shawnee','7190', '0',' 1578-4', 0);
8975 #EndIf
8977 #IfRow2D list_options list_id race option_id shawnee
8978 UPDATE `list_options` SET `notes` = '1578-4' WHERE `option_id` = 'shawnee' AND `list_id` = 'race';
8979 #EndIf
8981 #IfRow2D list_options list_id race title Shawnee
8982 UPDATE `list_options` SET `notes` = '1578-4' WHERE `title` = 'Shawnee' AND `list_id` = 'race';
8983 #EndIf
8985 #IfNotRow2D list_options list_id race option_id sheldons_point
8986 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','sheldons_point',"Sheldon's Point",'7200', '0',' 1953-9', 0);
8987 #EndIf
8989 #IfRow2D list_options list_id race option_id sheldons_point
8990 UPDATE `list_options` SET `notes` = '1953-9' WHERE `option_id` = 'sheldons_point' AND `list_id` = 'race';
8991 #EndIf
8993 #IfNotRow2Dx2 list_options list_id race option_id shinnecock title Shinnecock
8994 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','shinnecock','Shinnecock','7210', '0',' 1582-6', 0);
8995 #EndIf
8997 #IfRow2D list_options list_id race option_id shinnecock
8998 UPDATE `list_options` SET `notes` = '1582-6' WHERE `option_id` = 'shinnecock' AND `list_id` = 'race';
8999 #EndIf
9001 #IfRow2D list_options list_id race title Shinnecock
9002 UPDATE `list_options` SET `notes` = '1582-6' WHERE `title` = 'Shinnecock' AND `list_id` = 'race';
9003 #EndIf
9005 #IfNotRow2Dx2 list_options list_id race option_id shishmaref title Shishmaref
9006 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','shishmaref','Shishmaref','7220', '0',' 1880-4', 0);
9007 #EndIf
9009 #IfRow2D list_options list_id race option_id shishmaref
9010 UPDATE `list_options` SET `notes` = '1880-4' WHERE `option_id` = 'shishmaref' AND `list_id` = 'race';
9011 #EndIf
9013 #IfRow2D list_options list_id race title Shishmaref
9014 UPDATE `list_options` SET `notes` = '1880-4' WHERE `title` = 'Shishmaref' AND `list_id` = 'race';
9015 #EndIf
9017 #IfNotRow2Dx2 list_options list_id race option_id shoalwater_bay title Shoalwater Bay
9018 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','shoalwater_bay','Shoalwater Bay','7230', '0',' 1584-2', 0);
9019 #EndIf
9021 #IfRow2D list_options list_id race option_id shoalwater_bay
9022 UPDATE `list_options` SET `notes` = '1584-2' WHERE `option_id` = 'shoalwater_bay' AND `list_id` = 'race';
9023 #EndIf
9025 #IfRow2D list_options list_id race title Shoalwater Bay
9026 UPDATE `list_options` SET `notes` = '1584-2' WHERE `title` = 'Shoalwater Bay' AND `list_id` = 'race';
9027 #EndIf
9029 #IfNotRow2Dx2 list_options list_id race option_id shoshone title Shoshone
9030 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','shoshone','Shoshone','7240', '0',' 1586-7', 0);
9031 #EndIf
9033 #IfRow2D list_options list_id race option_id shoshone
9034 UPDATE `list_options` SET `notes` = '1586-7' WHERE `option_id` = 'shoshone' AND `list_id` = 'race';
9035 #EndIf
9037 #IfRow2D list_options list_id race title Shoshone
9038 UPDATE `list_options` SET `notes` = '1586-7' WHERE `title` = 'Shoshone' AND `list_id` = 'race';
9039 #EndIf
9041 #IfNotRow2Dx2 list_options list_id race option_id shoshone_paiute title Shoshone Paiute
9042 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','shoshone_paiute','Shoshone Paiute','7250', '0',' 1602-2', 0);
9043 #EndIf
9045 #IfRow2D list_options list_id race option_id shoshone_paiute
9046 UPDATE `list_options` SET `notes` = '1602-2' WHERE `option_id` = 'shoshone_paiute' AND `list_id` = 'race';
9047 #EndIf
9049 #IfRow2D list_options list_id race title Shoshone Paiute
9050 UPDATE `list_options` SET `notes` = '1602-2' WHERE `title` = 'Shoshone Paiute' AND `list_id` = 'race';
9051 #EndIf
9053 #IfNotRow2Dx2 list_options list_id race option_id shungnak title Shungnak
9054 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','shungnak','Shungnak','7260', '0',' 1881-2', 0);
9055 #EndIf
9057 #IfRow2D list_options list_id race option_id shungnak
9058 UPDATE `list_options` SET `notes` = '1881-2' WHERE `option_id` = 'shungnak' AND `list_id` = 'race';
9059 #EndIf
9061 #IfRow2D list_options list_id race title Shungnak
9062 UPDATE `list_options` SET `notes` = '1881-2' WHERE `title` = 'Shungnak' AND `list_id` = 'race';
9063 #EndIf
9065 #IfNotRow2Dx2 list_options list_id race option_id siberian_eskimo title Siberian Eskimo
9066 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','siberian_eskimo','Siberian Eskimo','7270', '0',' 1891-1', 0);
9067 #EndIf
9069 #IfRow2D list_options list_id race option_id siberian_eskimo
9070 UPDATE `list_options` SET `notes` = '1891-1' WHERE `option_id` = 'siberian_eskimo' AND `list_id` = 'race';
9071 #EndIf
9073 #IfRow2D list_options list_id race title Siberian Eskimo
9074 UPDATE `list_options` SET `notes` = '1891-1' WHERE `title` = 'Siberian Eskimo' AND `list_id` = 'race';
9075 #EndIf
9077 #IfNotRow2Dx2 list_options list_id race option_id siberian_yupik title Siberian Yupik
9078 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','siberian_yupik','Siberian Yupik','7280', '0',' 1894-5', 0);
9079 #EndIf
9081 #IfRow2D list_options list_id race option_id siberian_yupik
9082 UPDATE `list_options` SET `notes` = '1894-5' WHERE `option_id` = 'siberian_yupik' AND `list_id` = 'race';
9083 #EndIf
9085 #IfRow2D list_options list_id race title Siberian Yupik
9086 UPDATE `list_options` SET `notes` = '1894-5' WHERE `title` = 'Siberian Yupik' AND `list_id` = 'race';
9087 #EndIf
9089 #IfNotRow2Dx2 list_options list_id race option_id siletz title Siletz
9090 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','siletz','Siletz','7290', '0',' 1607-1', 0);
9091 #EndIf
9093 #IfRow2D list_options list_id race option_id siletz
9094 UPDATE `list_options` SET `notes` = '1607-1' WHERE `option_id` = 'siletz' AND `list_id` = 'race';
9095 #EndIf
9097 #IfRow2D list_options list_id race title Siletz
9098 UPDATE `list_options` SET `notes` = '1607-1' WHERE `title` = 'Siletz' AND `list_id` = 'race';
9099 #EndIf
9101 #IfNotRow2Dx2 list_options list_id race option_id singaporean title Singaporean
9102 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','singaporean','Singaporean','7300', '0',' 2051-1', 0);
9103 #EndIf
9105 #IfRow2D list_options list_id race option_id singaporean
9106 UPDATE `list_options` SET `notes` = '2051-1' WHERE `option_id` = 'singaporean' AND `list_id` = 'race';
9107 #EndIf
9109 #IfRow2D list_options list_id race title Singaporean
9110 UPDATE `list_options` SET `notes` = '2051-1' WHERE `title` = 'Singaporean' AND `list_id` = 'race';
9111 #EndIf
9113 #IfNotRow2Dx2 list_options list_id race option_id sioux title Sioux
9114 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','sioux','Sioux','7310', '0',' 1609-7', 0);
9115 #EndIf
9117 #IfRow2D list_options list_id race option_id sioux
9118 UPDATE `list_options` SET `notes` = '1609-7' WHERE `option_id` = 'sioux' AND `list_id` = 'race';
9119 #EndIf
9121 #IfRow2D list_options list_id race title Sioux
9122 UPDATE `list_options` SET `notes` = '1609-7' WHERE `title` = 'Sioux' AND `list_id` = 'race';
9123 #EndIf
9125 #IfNotRow2Dx2 list_options list_id race option_id sisseton_sioux title Sisseton Sioux
9126 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','sisseton_sioux','Sisseton Sioux','7320', '0',' 1631-1', 0);
9127 #EndIf
9129 #IfRow2D list_options list_id race option_id sisseton_sioux
9130 UPDATE `list_options` SET `notes` = '1631-1' WHERE `option_id` = 'sisseton_sioux' AND `list_id` = 'race';
9131 #EndIf
9133 #IfRow2D list_options list_id race title Sisseton Sioux
9134 UPDATE `list_options` SET `notes` = '1631-1' WHERE `title` = 'Sisseton Sioux' AND `list_id` = 'race';
9135 #EndIf
9137 #IfNotRow2Dx2 list_options list_id race option_id sisseton-wahpeton title Sisseton-Wahpeton
9138 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','sisseton-wahpeton','Sisseton-Wahpeton','7330', '0',' 1630-3', 0);
9139 #EndIf
9141 #IfRow2D list_options list_id race option_id sisseton-wahpeton
9142 UPDATE `list_options` SET `notes` = '1630-3' WHERE `option_id` = 'sisseton-wahpeton' AND `list_id` = 'race';
9143 #EndIf
9145 #IfRow2D list_options list_id race title Sisseton-Wahpeton
9146 UPDATE `list_options` SET `notes` = '1630-3' WHERE `title` = 'Sisseton-Wahpeton' AND `list_id` = 'race';
9147 #EndIf
9149 #IfNotRow2Dx2 list_options list_id race option_id sitka title Sitka
9150 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','sitka','Sitka','7340', '0',' 1831-7', 0);
9151 #EndIf
9153 #IfRow2D list_options list_id race option_id sitka
9154 UPDATE `list_options` SET `notes` = '1831-7' WHERE `option_id` = 'sitka' AND `list_id` = 'race';
9155 #EndIf
9157 #IfRow2D list_options list_id race title Sitka
9158 UPDATE `list_options` SET `notes` = '1831-7' WHERE `title` = 'Sitka' AND `list_id` = 'race';
9159 #EndIf
9161 #IfNotRow2Dx2 list_options list_id race option_id siuslaw title Siuslaw
9162 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','siuslaw','Siuslaw','7350', '0',' 1643-6', 0);
9163 #EndIf
9165 #IfRow2D list_options list_id race option_id siuslaw
9166 UPDATE `list_options` SET `notes` = '1643-6' WHERE `option_id` = 'siuslaw' AND `list_id` = 'race';
9167 #EndIf
9169 #IfRow2D list_options list_id race title Siuslaw
9170 UPDATE `list_options` SET `notes` = '1643-6' WHERE `title` = 'Siuslaw' AND `list_id` = 'race';
9171 #EndIf
9173 #IfNotRow2Dx2 list_options list_id race option_id skokomish title Skokomish
9174 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','skokomish','Skokomish','7360', '0',' 1529-7', 0);
9175 #EndIf
9177 #IfRow2D list_options list_id race option_id skokomish
9178 UPDATE `list_options` SET `notes` = '1529-7' WHERE `option_id` = 'skokomish' AND `list_id` = 'race';
9179 #EndIf
9181 #IfRow2D list_options list_id race title Skokomish
9182 UPDATE `list_options` SET `notes` = '1529-7' WHERE `title` = 'Skokomish' AND `list_id` = 'race';
9183 #EndIf
9185 #IfNotRow2Dx2 list_options list_id race option_id skull_valley title Skull Valley
9186 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','skull_valley','Skull Valley','7370', '0',' 1594-1', 0);
9187 #EndIf
9189 #IfRow2D list_options list_id race option_id skull_valley
9190 UPDATE `list_options` SET `notes` = '1594-1' WHERE `option_id` = 'skull_valley' AND `list_id` = 'race';
9191 #EndIf
9193 #IfRow2D list_options list_id race title Skull Valley
9194 UPDATE `list_options` SET `notes` = '1594-1' WHERE `title` = 'Skull Valley' AND `list_id` = 'race';
9195 #EndIf
9197 #IfNotRow2Dx2 list_options list_id race option_id skykomish title Skykomish
9198 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','skykomish','Skykomish','7380', '0',' 1530-5', 0);
9199 #EndIf
9201 #IfRow2D list_options list_id race option_id skykomish
9202 UPDATE `list_options` SET `notes` = '1530-5' WHERE `option_id` = 'skykomish' AND `list_id` = 'race';
9203 #EndIf
9205 #IfRow2D list_options list_id race title Skykomish
9206 UPDATE `list_options` SET `notes` = '1530-5' WHERE `title` = 'Skykomish' AND `list_id` = 'race';
9207 #EndIf
9209 #IfNotRow2Dx2 list_options list_id race option_id slana title Slana
9210 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','slana','Slana','7390', '0',' 1794-7', 0);
9211 #EndIf
9213 #IfRow2D list_options list_id race option_id slana
9214 UPDATE `list_options` SET `notes` = '1794-7' WHERE `option_id` = 'slana' AND `list_id` = 'race';
9215 #EndIf
9217 #IfRow2D list_options list_id race title Slana
9218 UPDATE `list_options` SET `notes` = '1794-7' WHERE `title` = 'Slana' AND `list_id` = 'race';
9219 #EndIf
9221 #IfNotRow2Dx2 list_options list_id race option_id sleetmute title Sleetmute
9222 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','sleetmute','Sleetmute','7400', '0',' 1954-7', 0);
9223 #EndIf
9225 #IfRow2D list_options list_id race option_id sleetmute
9226 UPDATE `list_options` SET `notes` = '1954-7' WHERE `option_id` = 'sleetmute' AND `list_id` = 'race';
9227 #EndIf
9229 #IfRow2D list_options list_id race title Sleetmute
9230 UPDATE `list_options` SET `notes` = '1954-7' WHERE `title` = 'Sleetmute' AND `list_id` = 'race';
9231 #EndIf
9233 #IfNotRow2Dx2 list_options list_id race option_id snohomish title Snohomish
9234 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','snohomish','Snohomish','7410', '0',' 1531-3', 0);
9235 #EndIf
9237 #IfRow2D list_options list_id race option_id snohomish
9238 UPDATE `list_options` SET `notes` = '1531-3' WHERE `option_id` = 'snohomish' AND `list_id` = 'race';
9239 #EndIf
9241 #IfRow2D list_options list_id race title Snohomish
9242 UPDATE `list_options` SET `notes` = '1531-3' WHERE `title` = 'Snohomish' AND `list_id` = 'race';
9243 #EndIf
9245 #IfNotRow2Dx2 list_options list_id race option_id snoqualmie title Snoqualmie
9246 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','snoqualmie','Snoqualmie','7420', '0',' 1532-1', 0);
9247 #EndIf
9249 #IfRow2D list_options list_id race option_id snoqualmie
9250 UPDATE `list_options` SET `notes` = '1532-1' WHERE `option_id` = 'snoqualmie' AND `list_id` = 'race';
9251 #EndIf
9253 #IfRow2D list_options list_id race title Snoqualmie
9254 UPDATE `list_options` SET `notes` = '1532-1' WHERE `title` = 'Snoqualmie' AND `list_id` = 'race';
9255 #EndIf
9257 #IfNotRow2Dx2 list_options list_id race option_id soboba title Soboba
9258 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','soboba','Soboba','7430', '0',' 1336-7', 0);
9259 #EndIf
9261 #IfRow2D list_options list_id race option_id soboba
9262 UPDATE `list_options` SET `notes` = '1336-7' WHERE `option_id` = 'soboba' AND `list_id` = 'race';
9263 #EndIf
9265 #IfRow2D list_options list_id race title Soboba
9266 UPDATE `list_options` SET `notes` = '1336-7' WHERE `title` = 'Soboba' AND `list_id` = 'race';
9267 #EndIf
9269 #IfNotRow2Dx2 list_options list_id race option_id sokoagon_chippewa title Sokoagon Chippewa
9270 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','sokoagon_chippewa','Sokoagon Chippewa','7440', '0',' 1146-0', 0);
9271 #EndIf
9273 #IfRow2D list_options list_id race option_id sokoagon_chippewa
9274 UPDATE `list_options` SET `notes` = '1146-0' WHERE `option_id` = 'sokoagon_chippewa' AND `list_id` = 'race';
9275 #EndIf
9277 #IfRow2D list_options list_id race title Sokoagon Chippewa
9278 UPDATE `list_options` SET `notes` = '1146-0' WHERE `title` = 'Sokoagon Chippewa' AND `list_id` = 'race';
9279 #EndIf
9281 #IfNotRow2Dx2 list_options list_id race option_id solomon title Solomon
9282 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','solomon','Solomon','7450', '0',' 1882-0', 0);
9283 #EndIf
9285 #IfRow2D list_options list_id race option_id solomon
9286 UPDATE `list_options` SET `notes` = '1882-0' WHERE `option_id` = 'solomon' AND `list_id` = 'race';
9287 #EndIf
9289 #IfRow2D list_options list_id race title Solomon
9290 UPDATE `list_options` SET `notes` = '1882-0' WHERE `title` = 'Solomon' AND `list_id` = 'race';
9291 #EndIf
9293 #IfNotRow2Dx2 list_options list_id race option_id solomon_islander title Solomon Islander
9294 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','solomon_islander','Solomon Islander','7460', '0',' 2103-0', 0);
9295 #EndIf
9297 #IfRow2D list_options list_id race option_id solomon_islander
9298 UPDATE `list_options` SET `notes` = '2103-0' WHERE `option_id` = 'solomon_islander' AND `list_id` = 'race';
9299 #EndIf
9301 #IfRow2D list_options list_id race title Solomon Islander
9302 UPDATE `list_options` SET `notes` = '2103-0' WHERE `title` = 'Solomon Islander' AND `list_id` = 'race';
9303 #EndIf
9305 #IfNotRow2Dx2 list_options list_id race option_id south_american_indian title South American Indian
9306 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','south_american_indian','South American Indian','7470', '0',' 1073-6', 0);
9307 #EndIf
9309 #IfRow2D list_options list_id race option_id south_american_indian
9310 UPDATE `list_options` SET `notes` = '1073-6' WHERE `option_id` = 'south_american_indian' AND `list_id` = 'race';
9311 #EndIf
9313 #IfRow2D list_options list_id race title South American Indian
9314 UPDATE `list_options` SET `notes` = '1073-6' WHERE `title` = 'South American Indian' AND `list_id` = 'race';
9315 #EndIf
9317 #IfNotRow2Dx2 list_options list_id race option_id south_fork_shoshone title South Fork Shoshone
9318 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','south_fork_shoshone','South Fork Shoshone','7480', '0',' 1595-8', 0);
9319 #EndIf
9321 #IfRow2D list_options list_id race option_id south_fork_shoshone
9322 UPDATE `list_options` SET `notes` = '1595-8' WHERE `option_id` = 'south_fork_shoshone' AND `list_id` = 'race';
9323 #EndIf
9325 #IfRow2D list_options list_id race title South Fork Shoshone
9326 UPDATE `list_options` SET `notes` = '1595-8' WHERE `title` = 'South Fork Shoshone' AND `list_id` = 'race';
9327 #EndIf
9329 #IfNotRow2Dx2 list_options list_id race option_id south_naknek title South Naknek
9330 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','south_naknek','South Naknek','7490', '0',' 2024-8', 0);
9331 #EndIf
9333 #IfRow2D list_options list_id race option_id south_naknek
9334 UPDATE `list_options` SET `notes` = '2024-8' WHERE `option_id` = 'south_naknek' AND `list_id` = 'race';
9335 #EndIf
9337 #IfRow2D list_options list_id race title South Naknek
9338 UPDATE `list_options` SET `notes` = '2024-8' WHERE `title` = 'South Naknek' AND `list_id` = 'race';
9339 #EndIf
9341 #IfNotRow2Dx2 list_options list_id race option_id southeast_alaska title Southeast Alaska
9342 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','southeast_alaska','Southeast Alaska','7500', '0',' 1811-9', 0);
9343 #EndIf
9345 #IfRow2D list_options list_id race option_id southeast_alaska
9346 UPDATE `list_options` SET `notes` = '1811-9' WHERE `option_id` = 'southeast_alaska' AND `list_id` = 'race';
9347 #EndIf
9349 #IfRow2D list_options list_id race title Southeast Alaska
9350 UPDATE `list_options` SET `notes` = '1811-9' WHERE `title` = 'Southeast Alaska' AND `list_id` = 'race';
9351 #EndIf
9353 #IfNotRow2Dx2 list_options list_id race option_id southeastern_indians title Southeastern Indians
9354 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','southeastern_indians','Southeastern Indians','7510', '0',' 1244-3', 0);
9355 #EndIf
9357 #IfRow2D list_options list_id race option_id southeastern_indians
9358 UPDATE `list_options` SET `notes` = '1244-3' WHERE `option_id` = 'southeastern_indians' AND `list_id` = 'race';
9359 #EndIf
9361 #IfRow2D list_options list_id race title Southeastern Indians
9362 UPDATE `list_options` SET `notes` = '1244-3' WHERE `title` = 'Southeastern Indians' AND `list_id` = 'race';
9363 #EndIf
9365 #IfNotRow2Dx2 list_options list_id race option_id southern_arapaho title Southern Arapaho
9366 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','southern_arapaho','Southern Arapaho','7520', '0',' 1023-1', 0);
9367 #EndIf
9369 #IfRow2D list_options list_id race option_id southern_arapaho
9370 UPDATE `list_options` SET `notes` = '1023-1' WHERE `option_id` = 'southern_arapaho' AND `list_id` = 'race';
9371 #EndIf
9373 #IfRow2D list_options list_id race title Southern Arapaho
9374 UPDATE `list_options` SET `notes` = '1023-1' WHERE `title` = 'Southern Arapaho' AND `list_id` = 'race';
9375 #EndIf
9377 #IfNotRow2Dx2 list_options list_id race option_id southern_cheyenne title Southern Cheyenne
9378 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','southern_cheyenne','Southern Cheyenne','7530', '0',' 1104-9', 0);
9379 #EndIf
9381 #IfRow2D list_options list_id race option_id southern_cheyenne
9382 UPDATE `list_options` SET `notes` = '1104-9' WHERE `option_id` = 'southern_cheyenne' AND `list_id` = 'race';
9383 #EndIf
9385 #IfRow2D list_options list_id race title Southern Cheyenne
9386 UPDATE `list_options` SET `notes` = '1104-9' WHERE `title` = 'Southern Cheyenne' AND `list_id` = 'race';
9387 #EndIf
9389 #IfNotRow2Dx2 list_options list_id race option_id southern_paiute title Southern Paiute
9390 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','southern_paiute','Southern Paiute','7540', '0',' 1433-2', 0);
9391 #EndIf
9393 #IfRow2D list_options list_id race option_id southern_paiute
9394 UPDATE `list_options` SET `notes` = '1433-2' WHERE `option_id` = 'southern_paiute' AND `list_id` = 'race';
9395 #EndIf
9397 #IfRow2D list_options list_id race title Southern Paiute
9398 UPDATE `list_options` SET `notes` = '1433-2' WHERE `title` = 'Southern Paiute' AND `list_id` = 'race';
9399 #EndIf
9401 #IfNotRow2Dx2 list_options list_id race option_id spanish_american_indian title Spanish American Indian
9402 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','spanish_american_indian','Spanish American Indian','7550', '0',' 1074-4', 0);
9403 #EndIf
9405 #IfRow2D list_options list_id race option_id spanish_american_indian
9406 UPDATE `list_options` SET `notes` = '1074-4' WHERE `option_id` = 'spanish_american_indian' AND `list_id` = 'race';
9407 #EndIf
9409 #IfRow2D list_options list_id race title Spanish American Indian
9410 UPDATE `list_options` SET `notes` = '1074-4' WHERE `title` = 'Spanish American Indian' AND `list_id` = 'race';
9411 #EndIf
9413 #IfNotRow2Dx2 list_options list_id race option_id spirit_lake_sioux title Spirit Lake Sioux
9414 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','spirit_lake_sioux','Spirit Lake Sioux','7560', '0',' 1632-9', 0);
9415 #EndIf
9417 #IfRow2D list_options list_id race option_id spirit_lake_sioux
9418 UPDATE `list_options` SET `notes` = '1632-9' WHERE `option_id` = 'spirit_lake_sioux' AND `list_id` = 'race';
9419 #EndIf
9421 #IfRow2D list_options list_id race title Spirit Lake Sioux
9422 UPDATE `list_options` SET `notes` = '1632-9' WHERE `title` = 'Spirit Lake Sioux' AND `list_id` = 'race';
9423 #EndIf
9425 #IfNotRow2Dx2 list_options list_id race option_id spokane title Spokane
9426 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','spokane','Spokane','7570', '0',' 1645-1', 0);
9427 #EndIf
9429 #IfRow2D list_options list_id race option_id spokane
9430 UPDATE `list_options` SET `notes` = '1645-1' WHERE `option_id` = 'spokane' AND `list_id` = 'race';
9431 #EndIf
9433 #IfRow2D list_options list_id race title Spokane
9434 UPDATE `list_options` SET `notes` = '1645-1' WHERE `title` = 'Spokane' AND `list_id` = 'race';
9435 #EndIf
9437 #IfNotRow2Dx2 list_options list_id race option_id squaxin_island title Squaxin Island
9438 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','squaxin_island','Squaxin Island','7580', '0',' 1533-9', 0);
9439 #EndIf
9441 #IfRow2D list_options list_id race option_id squaxin_island
9442 UPDATE `list_options` SET `notes` = '1533-9' WHERE `option_id` = 'squaxin_island' AND `list_id` = 'race';
9443 #EndIf
9445 #IfRow2D list_options list_id race title Squaxin Island
9446 UPDATE `list_options` SET `notes` = '1533-9' WHERE `title` = 'Squaxin Island' AND `list_id` = 'race';
9447 #EndIf
9449 #IfNotRow2Dx2 list_options list_id race option_id sri_lankan title Sri Lankan
9450 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','sri_lankan','Sri Lankan','7590', '0',' 2045-3', 0);
9451 #EndIf
9453 #IfRow2D list_options list_id race option_id sri_lankan
9454 UPDATE `list_options` SET `notes` = '2045-3' WHERE `option_id` = 'sri_lankan' AND `list_id` = 'race';
9455 #EndIf
9457 #IfRow2D list_options list_id race title Sri Lankan
9458 UPDATE `list_options` SET `notes` = '2045-3' WHERE `title` = 'Sri Lankan' AND `list_id` = 'race';
9459 #EndIf
9461 #IfNotRow2Dx2 list_options list_id race option_id st_croix_chippewa title St. Croix Chippewa
9462 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','st_croix_chippewa','St. Croix Chippewa','7600', '0',' 1144-5', 0);
9463 #EndIf
9465 #IfRow2D list_options list_id race option_id st_croix_chippewa
9466 UPDATE `list_options` SET `notes` = '1144-5' WHERE `option_id` = 'st_croix_chippewa' AND `list_id` = 'race';
9467 #EndIf
9469 #IfRow2D list_options list_id race title St. Croix Chippewa
9470 UPDATE `list_options` SET `notes` = '1144-5' WHERE `title` = 'St. Croix Chippewa' AND `list_id` = 'race';
9471 #EndIf
9473 #IfNotRow2Dx2 list_options list_id race option_id st_george title St. George
9474 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','st_george','St. George','7610', '0',' 2021-4', 0);
9475 #EndIf
9477 #IfRow2D list_options list_id race option_id st_george
9478 UPDATE `list_options` SET `notes` = '2021-4' WHERE `option_id` = 'st_george' AND `list_id` = 'race';
9479 #EndIf
9481 #IfRow2D list_options list_id race title St. George
9482 UPDATE `list_options` SET `notes` = '2021-4' WHERE `title` = 'St. George' AND `list_id` = 'race';
9483 #EndIf
9485 #IfNotRow2D list_options list_id race option_id st_marys
9486 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','st_marys',"St. Mary's",'7620', '0',' 1963-8', 0);
9487 #EndIf
9489 #IfRow2D list_options list_id race option_id st_marys
9490 UPDATE `list_options` SET `notes` = '1963-8' WHERE `option_id` = 'st_marys' AND `list_id` = 'race';
9491 #EndIf
9493 #IfNotRow2Dx2 list_options list_id race option_id st_michael title St. Michael
9494 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','st_michael','St. Michael','7630', '0',' 1951-3', 0);
9495 #EndIf
9497 #IfRow2D list_options list_id race option_id st_michael
9498 UPDATE `list_options` SET `notes` = '1951-3' WHERE `option_id` = 'st_michael' AND `list_id` = 'race';
9499 #EndIf
9501 #IfRow2D list_options list_id race title St. Michael
9502 UPDATE `list_options` SET `notes` = '1951-3' WHERE `title` = 'St. Michael' AND `list_id` = 'race';
9503 #EndIf
9505 #IfNotRow2Dx2 list_options list_id race option_id st_paul title St. Paul
9506 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','st_paul','St. Paul','7640', '0',' 2022-2', 0);
9507 #EndIf
9509 #IfRow2D list_options list_id race option_id st_paul
9510 UPDATE `list_options` SET `notes` = '2022-2' WHERE `option_id` = 'st_paul' AND `list_id` = 'race';
9511 #EndIf
9513 #IfRow2D list_options list_id race title St. Paul
9514 UPDATE `list_options` SET `notes` = '2022-2' WHERE `title` = 'St. Paul' AND `list_id` = 'race';
9515 #EndIf
9517 #IfNotRow2Dx2 list_options list_id race option_id standing_rock_sioux title Standing Rock Sioux
9518 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','standing_rock_sioux','Standing Rock Sioux','7650', '0',' 1633-7', 0);
9519 #EndIf
9521 #IfRow2D list_options list_id race option_id standing_rock_sioux
9522 UPDATE `list_options` SET `notes` = '1633-7' WHERE `option_id` = 'standing_rock_sioux' AND `list_id` = 'race';
9523 #EndIf
9525 #IfRow2D list_options list_id race title Standing Rock Sioux
9526 UPDATE `list_options` SET `notes` = '1633-7' WHERE `title` = 'Standing Rock Sioux' AND `list_id` = 'race';
9527 #EndIf
9529 #IfNotRow2Dx2 list_options list_id race option_id star_clan_of_muscogee_creeks title Star Clan of Muscogee Creeks
9530 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','star_clan_of_muscogee_creeks','Star Clan of Muscogee Creeks','7660', '0',' 1203-9', 0);
9531 #EndIf
9533 #IfRow2D list_options list_id race option_id star_clan_of_muscogee_creeks
9534 UPDATE `list_options` SET `notes` = '1203-9' WHERE `option_id` = 'star_clan_of_muscogee_creeks' AND `list_id` = 'race';
9535 #EndIf
9537 #IfRow2D list_options list_id race title Star Clan of Muscogee Creeks
9538 UPDATE `list_options` SET `notes` = '1203-9' WHERE `title` = 'Star Clan of Muscogee Creeks' AND `list_id` = 'race';
9539 #EndIf
9541 #IfNotRow2Dx2 list_options list_id race option_id stebbins title Stebbins
9542 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','stebbins','Stebbins','7670', '0',' 1955-4', 0);
9543 #EndIf
9545 #IfRow2D list_options list_id race option_id stebbins
9546 UPDATE `list_options` SET `notes` = '1955-4' WHERE `option_id` = 'stebbins' AND `list_id` = 'race';
9547 #EndIf
9549 #IfRow2D list_options list_id race title Stebbins
9550 UPDATE `list_options` SET `notes` = '1955-4' WHERE `title` = 'Stebbins' AND `list_id` = 'race';
9551 #EndIf
9553 #IfNotRow2Dx2 list_options list_id race option_id steilacoom title Steilacoom
9554 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','steilacoom','Steilacoom','7680', '0',' 1534-7', 0);
9555 #EndIf
9557 #IfRow2D list_options list_id race option_id steilacoom
9558 UPDATE `list_options` SET `notes` = '1534-7' WHERE `option_id` = 'steilacoom' AND `list_id` = 'race';
9559 #EndIf
9561 #IfRow2D list_options list_id race title Steilacoom
9562 UPDATE `list_options` SET `notes` = '1534-7' WHERE `title` = 'Steilacoom' AND `list_id` = 'race';
9563 #EndIf
9565 #IfNotRow2Dx2 list_options list_id race option_id stevens title Stevens
9566 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','stevens','Stevens','7690', '0',' 1796-2', 0);
9567 #EndIf
9569 #IfRow2D list_options list_id race option_id stevens
9570 UPDATE `list_options` SET `notes` = '1796-2' WHERE `option_id` = 'stevens' AND `list_id` = 'race';
9571 #EndIf
9573 #IfRow2D list_options list_id race title Stevens
9574 UPDATE `list_options` SET `notes` = '1796-2' WHERE `title` = 'Stevens' AND `list_id` = 'race';
9575 #EndIf
9577 #IfNotRow2Dx2 list_options list_id race option_id stewart title Stewart
9578 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','stewart','Stewart','7700', '0',' 1647-7', 0);
9579 #EndIf
9581 #IfRow2D list_options list_id race option_id stewart
9582 UPDATE `list_options` SET `notes` = '1647-7' WHERE `option_id` = 'stewart' AND `list_id` = 'race';
9583 #EndIf
9585 #IfRow2D list_options list_id race title Stewart
9586 UPDATE `list_options` SET `notes` = '1647-7' WHERE `title` = 'Stewart' AND `list_id` = 'race';
9587 #EndIf
9589 #IfNotRow2Dx2 list_options list_id race option_id stillaguamish title Stillaguamish
9590 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','stillaguamish','Stillaguamish','7710', '0',' 1535-4', 0);
9591 #EndIf
9593 #IfRow2D list_options list_id race option_id stillaguamish
9594 UPDATE `list_options` SET `notes` = '1535-4' WHERE `option_id` = 'stillaguamish' AND `list_id` = 'race';
9595 #EndIf
9597 #IfRow2D list_options list_id race title Stillaguamish
9598 UPDATE `list_options` SET `notes` = '1535-4' WHERE `title` = 'Stillaguamish' AND `list_id` = 'race';
9599 #EndIf
9601 #IfNotRow2Dx2 list_options list_id race option_id stockbridge title Stockbridge
9602 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','stockbridge','Stockbridge','7720', '0',' 1649-3', 0);
9603 #EndIf
9605 #IfRow2D list_options list_id race option_id stockbridge
9606 UPDATE `list_options` SET `notes` = '1649-3' WHERE `option_id` = 'stockbridge' AND `list_id` = 'race';
9607 #EndIf
9609 #IfRow2D list_options list_id race title Stockbridge
9610 UPDATE `list_options` SET `notes` = '1649-3' WHERE `title` = 'Stockbridge' AND `list_id` = 'race';
9611 #EndIf
9613 #IfNotRow2Dx2 list_options list_id race option_id stony_river title Stony River
9614 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','stony_river','Stony River','7730', '0',' 1797-0', 0);
9615 #EndIf
9617 #IfRow2D list_options list_id race option_id stony_river
9618 UPDATE `list_options` SET `notes` = '1797-0' WHERE `option_id` = 'stony_river' AND `list_id` = 'race';
9619 #EndIf
9621 #IfRow2D list_options list_id race title Stony River
9622 UPDATE `list_options` SET `notes` = '1797-0' WHERE `title` = 'Stony River' AND `list_id` = 'race';
9623 #EndIf
9625 #IfNotRow2Dx2 list_options list_id race option_id stonyford title Stonyford
9626 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','stonyford','Stonyford','7740', '0',' 1471-2', 0);
9627 #EndIf
9629 #IfRow2D list_options list_id race option_id stonyford
9630 UPDATE `list_options` SET `notes` = '1471-2' WHERE `option_id` = 'stonyford' AND `list_id` = 'race';
9631 #EndIf
9633 #IfRow2D list_options list_id race title Stonyford
9634 UPDATE `list_options` SET `notes` = '1471-2' WHERE `title` = 'Stonyford' AND `list_id` = 'race';
9635 #EndIf
9637 #IfNotRow2Dx2 list_options list_id race option_id sugpiaq title Sugpiaq
9638 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','sugpiaq','Sugpiaq','7750', '0',' 2002-4', 0);
9639 #EndIf
9641 #IfRow2D list_options list_id race option_id sugpiaq
9642 UPDATE `list_options` SET `notes` = '2002-4' WHERE `option_id` = 'sugpiaq' AND `list_id` = 'race';
9643 #EndIf
9645 #IfRow2D list_options list_id race title Sugpiaq
9646 UPDATE `list_options` SET `notes` = '2002-4' WHERE `title` = 'Sugpiaq' AND `list_id` = 'race';
9647 #EndIf
9649 #IfNotRow2Dx2 list_options list_id race option_id sulphur_bank title Sulphur Bank
9650 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','sulphur_bank','Sulphur Bank','7760', '0',' 1472-0', 0);
9651 #EndIf
9653 #IfRow2D list_options list_id race option_id sulphur_bank
9654 UPDATE `list_options` SET `notes` = '1472-0' WHERE `option_id` = 'sulphur_bank' AND `list_id` = 'race';
9655 #EndIf
9657 #IfRow2D list_options list_id race title Sulphur Bank
9658 UPDATE `list_options` SET `notes` = '1472-0' WHERE `title` = 'Sulphur Bank' AND `list_id` = 'race';
9659 #EndIf
9661 #IfNotRow2Dx2 list_options list_id race option_id summit_lake title Summit Lake
9662 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','summit_lake','Summit Lake','7770', '0',' 1434-0', 0);
9663 #EndIf
9665 #IfRow2D list_options list_id race option_id summit_lake
9666 UPDATE `list_options` SET `notes` = '1434-0' WHERE `option_id` = 'summit_lake' AND `list_id` = 'race';
9667 #EndIf
9669 #IfRow2D list_options list_id race title Summit Lake
9670 UPDATE `list_options` SET `notes` = '1434-0' WHERE `title` = 'Summit Lake' AND `list_id` = 'race';
9671 #EndIf
9673 #IfNotRow2Dx2 list_options list_id race option_id suqpigaq title Suqpigaq
9674 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','suqpigaq','Suqpigaq','7780', '0',' 2004-0', 0);
9675 #EndIf
9677 #IfRow2D list_options list_id race option_id suqpigaq
9678 UPDATE `list_options` SET `notes` = '2004-0' WHERE `option_id` = 'suqpigaq' AND `list_id` = 'race';
9679 #EndIf
9681 #IfRow2D list_options list_id race title Suqpigaq
9682 UPDATE `list_options` SET `notes` = '2004-0' WHERE `title` = 'Suqpigaq' AND `list_id` = 'race';
9683 #EndIf
9685 #IfNotRow2Dx2 list_options list_id race option_id suquamish title Suquamish
9686 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','suquamish','Suquamish','7790', '0',' 1536-2', 0);
9687 #EndIf
9689 #IfRow2D list_options list_id race option_id suquamish
9690 UPDATE `list_options` SET `notes` = '1536-2' WHERE `option_id` = 'suquamish' AND `list_id` = 'race';
9691 #EndIf
9693 #IfRow2D list_options list_id race title Suquamish
9694 UPDATE `list_options` SET `notes` = '1536-2' WHERE `title` = 'Suquamish' AND `list_id` = 'race';
9695 #EndIf
9697 #IfNotRow2Dx2 list_options list_id race option_id susanville title Susanville
9698 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','susanville','Susanville','7800', '0',' 1651-9', 0);
9699 #EndIf
9701 #IfRow2D list_options list_id race option_id susanville
9702 UPDATE `list_options` SET `notes` = '1651-9' WHERE `option_id` = 'susanville' AND `list_id` = 'race';
9703 #EndIf
9705 #IfRow2D list_options list_id race title Susanville
9706 UPDATE `list_options` SET `notes` = '1651-9' WHERE `title` = 'Susanville' AND `list_id` = 'race';
9707 #EndIf
9709 #IfNotRow2Dx2 list_options list_id race option_id susquehanock title Susquehanock
9710 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','susquehanock','Susquehanock','7810', '0',' 1245-0', 0);
9711 #EndIf
9713 #IfRow2D list_options list_id race option_id susquehanock
9714 UPDATE `list_options` SET `notes` = '1245-0' WHERE `option_id` = 'susquehanock' AND `list_id` = 'race';
9715 #EndIf
9717 #IfRow2D list_options list_id race title Susquehanock
9718 UPDATE `list_options` SET `notes` = '1245-0' WHERE `title` = 'Susquehanock' AND `list_id` = 'race';
9719 #EndIf
9721 #IfNotRow2Dx2 list_options list_id race option_id swinomish title Swinomish
9722 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','swinomish','Swinomish','7820', '0',' 1537-0', 0);
9723 #EndIf
9725 #IfRow2D list_options list_id race option_id swinomish
9726 UPDATE `list_options` SET `notes` = '1537-0' WHERE `option_id` = 'swinomish' AND `list_id` = 'race';
9727 #EndIf
9729 #IfRow2D list_options list_id race title Swinomish
9730 UPDATE `list_options` SET `notes` = '1537-0' WHERE `title` = 'Swinomish' AND `list_id` = 'race';
9731 #EndIf
9733 #IfNotRow2Dx2 list_options list_id race option_id sycuan title Sycuan
9734 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','sycuan','Sycuan','7830', '0',' 1231-0', 0);
9735 #EndIf
9737 #IfRow2D list_options list_id race option_id sycuan
9738 UPDATE `list_options` SET `notes` = '1231-0' WHERE `option_id` = 'sycuan' AND `list_id` = 'race';
9739 #EndIf
9741 #IfRow2D list_options list_id race title Sycuan
9742 UPDATE `list_options` SET `notes` = '1231-0' WHERE `title` = 'Sycuan' AND `list_id` = 'race';
9743 #EndIf
9745 #IfNotRow2Dx2 list_options list_id race option_id syrian title Syrian
9746 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','syrian','Syrian','7840', '0',' 2125-3', 0);
9747 #EndIf
9749 #IfRow2D list_options list_id race option_id syrian
9750 UPDATE `list_options` SET `notes` = '2125-3' WHERE `option_id` = 'syrian' AND `list_id` = 'race';
9751 #EndIf
9753 #IfRow2D list_options list_id race title Syrian
9754 UPDATE `list_options` SET `notes` = '2125-3' WHERE `title` = 'Syrian' AND `list_id` = 'race';
9755 #EndIf
9757 #IfNotRow2Dx2 list_options list_id race option_id table_bluff title Table Bluff
9758 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','table_bluff','Table Bluff','7850', '0',' 1705-3', 0);
9759 #EndIf
9761 #IfRow2D list_options list_id race option_id table_bluff
9762 UPDATE `list_options` SET `notes` = '1705-3' WHERE `option_id` = 'table_bluff' AND `list_id` = 'race';
9763 #EndIf
9765 #IfRow2D list_options list_id race title Table Bluff
9766 UPDATE `list_options` SET `notes` = '1705-3' WHERE `title` = 'Table Bluff' AND `list_id` = 'race';
9767 #EndIf
9769 #IfNotRow2Dx2 list_options list_id race option_id tachi title Tachi
9770 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','tachi','Tachi','7860', '0',' 1719-4', 0);
9771 #EndIf
9773 #IfRow2D list_options list_id race option_id tachi
9774 UPDATE `list_options` SET `notes` = '1719-4' WHERE `option_id` = 'tachi' AND `list_id` = 'race';
9775 #EndIf
9777 #IfRow2D list_options list_id race title Tachi
9778 UPDATE `list_options` SET `notes` = '1719-4' WHERE `title` = 'Tachi' AND `list_id` = 'race';
9779 #EndIf
9781 #IfNotRow2Dx2 list_options list_id race option_id tahitian title Tahitian
9782 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','tahitian','Tahitian','7870', '0',' 2081-8', 0);
9783 #EndIf
9785 #IfRow2D list_options list_id race option_id tahitian
9786 UPDATE `list_options` SET `notes` = '2081-8' WHERE `option_id` = 'tahitian' AND `list_id` = 'race';
9787 #EndIf
9789 #IfRow2D list_options list_id race title Tahitian
9790 UPDATE `list_options` SET `notes` = '2081-8' WHERE `title` = 'Tahitian' AND `list_id` = 'race';
9791 #EndIf
9793 #IfNotRow2Dx2 list_options list_id race option_id taiwanese title Taiwanese
9794 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','taiwanese','Taiwanese','7880', '0',' 2035-4', 0);
9795 #EndIf
9797 #IfRow2D list_options list_id race option_id taiwanese
9798 UPDATE `list_options` SET `notes` = '2035-4' WHERE `option_id` = 'taiwanese' AND `list_id` = 'race';
9799 #EndIf
9801 #IfRow2D list_options list_id race title Taiwanese
9802 UPDATE `list_options` SET `notes` = '2035-4' WHERE `title` = 'Taiwanese' AND `list_id` = 'race';
9803 #EndIf
9805 #IfNotRow2Dx2 list_options list_id race option_id takelma title Takelma
9806 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','takelma','Takelma','7890', '0',' 1063-7', 0);
9807 #EndIf
9809 #IfRow2D list_options list_id race option_id takelma
9810 UPDATE `list_options` SET `notes` = '1063-7' WHERE `option_id` = 'takelma' AND `list_id` = 'race';
9811 #EndIf
9813 #IfRow2D list_options list_id race title Takelma
9814 UPDATE `list_options` SET `notes` = '1063-7' WHERE `title` = 'Takelma' AND `list_id` = 'race';
9815 #EndIf
9817 #IfNotRow2Dx2 list_options list_id race option_id takotna title Takotna
9818 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','takotna','Takotna','7900', '0',' 1798-8', 0);
9819 #EndIf
9821 #IfRow2D list_options list_id race option_id takotna
9822 UPDATE `list_options` SET `notes` = '1798-8' WHERE `option_id` = 'takotna' AND `list_id` = 'race';
9823 #EndIf
9825 #IfRow2D list_options list_id race title Takotna
9826 UPDATE `list_options` SET `notes` = '1798-8' WHERE `title` = 'Takotna' AND `list_id` = 'race';
9827 #EndIf
9829 #IfNotRow2Dx2 list_options list_id race option_id talakamish title Talakamish
9830 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','talakamish','Talakamish','7910', '0',' 1397-9', 0);
9831 #EndIf
9833 #IfRow2D list_options list_id race option_id talakamish
9834 UPDATE `list_options` SET `notes` = '1397-9' WHERE `option_id` = 'talakamish' AND `list_id` = 'race';
9835 #EndIf
9837 #IfRow2D list_options list_id race title Talakamish
9838 UPDATE `list_options` SET `notes` = '1397-9' WHERE `title` = 'Talakamish' AND `list_id` = 'race';
9839 #EndIf
9841 #IfNotRow2Dx2 list_options list_id race option_id tanacross title Tanacross
9842 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','tanacross','Tanacross','7920', '0',' 1799-6', 0);
9843 #EndIf
9845 #IfRow2D list_options list_id race option_id tanacross
9846 UPDATE `list_options` SET `notes` = '1799-6' WHERE `option_id` = 'tanacross' AND `list_id` = 'race';
9847 #EndIf
9849 #IfRow2D list_options list_id race title Tanacross
9850 UPDATE `list_options` SET `notes` = '1799-6' WHERE `title` = 'Tanacross' AND `list_id` = 'race';
9851 #EndIf
9853 #IfNotRow2Dx2 list_options list_id race option_id tanaina title Tanaina
9854 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','tanaina','Tanaina','7930', '0',' 1800-2', 0);
9855 #EndIf
9857 #IfRow2D list_options list_id race option_id tanaina
9858 UPDATE `list_options` SET `notes` = '1800-2' WHERE `option_id` = 'tanaina' AND `list_id` = 'race';
9859 #EndIf
9861 #IfRow2D list_options list_id race title Tanaina
9862 UPDATE `list_options` SET `notes` = '1800-2' WHERE `title` = 'Tanaina' AND `list_id` = 'race';
9863 #EndIf
9865 #IfNotRow2Dx2 list_options list_id race option_id tanana title Tanana
9866 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','tanana','Tanana','7940', '0',' 1801-0', 0);
9867 #EndIf
9869 #IfRow2D list_options list_id race option_id tanana
9870 UPDATE `list_options` SET `notes` = '1801-0' WHERE `option_id` = 'tanana' AND `list_id` = 'race';
9871 #EndIf
9873 #IfRow2D list_options list_id race title Tanana
9874 UPDATE `list_options` SET `notes` = '1801-0' WHERE `title` = 'Tanana' AND `list_id` = 'race';
9875 #EndIf
9877 #IfNotRow2Dx2 list_options list_id race option_id tanana_chiefs title Tanana Chiefs
9878 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','tanana_chiefs','Tanana Chiefs','7950', '0',' 1802-8', 0);
9879 #EndIf
9881 #IfRow2D list_options list_id race option_id tanana_chiefs
9882 UPDATE `list_options` SET `notes` = '1802-8' WHERE `option_id` = 'tanana_chiefs' AND `list_id` = 'race';
9883 #EndIf
9885 #IfRow2D list_options list_id race title Tanana Chiefs
9886 UPDATE `list_options` SET `notes` = '1802-8' WHERE `title` = 'Tanana Chiefs' AND `list_id` = 'race';
9887 #EndIf
9889 #IfNotRow2Dx2 list_options list_id race option_id taos title Taos
9890 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','taos','Taos','7960', '0',' 1511-5', 0);
9891 #EndIf
9893 #IfRow2D list_options list_id race option_id taos
9894 UPDATE `list_options` SET `notes` = '1511-5' WHERE `option_id` = 'taos' AND `list_id` = 'race';
9895 #EndIf
9897 #IfRow2D list_options list_id race title Taos
9898 UPDATE `list_options` SET `notes` = '1511-5' WHERE `title` = 'Taos' AND `list_id` = 'race';
9899 #EndIf
9901 #IfNotRow2Dx2 list_options list_id race option_id tatitlek title Tatitlek
9902 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','tatitlek','Tatitlek','7970', '0',' 1969-5', 0);
9903 #EndIf
9905 #IfRow2D list_options list_id race option_id tatitlek
9906 UPDATE `list_options` SET `notes` = '1969-5' WHERE `option_id` = 'tatitlek' AND `list_id` = 'race';
9907 #EndIf
9909 #IfRow2D list_options list_id race title Tatitlek
9910 UPDATE `list_options` SET `notes` = '1969-5' WHERE `title` = 'Tatitlek' AND `list_id` = 'race';
9911 #EndIf
9913 #IfNotRow2Dx2 list_options list_id race option_id tazlina title Tazlina
9914 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','tazlina','Tazlina','7980', '0',' 1803-6', 0);
9915 #EndIf
9917 #IfRow2D list_options list_id race option_id tazlina
9918 UPDATE `list_options` SET `notes` = '1803-6' WHERE `option_id` = 'tazlina' AND `list_id` = 'race';
9919 #EndIf
9921 #IfRow2D list_options list_id race title Tazlina
9922 UPDATE `list_options` SET `notes` = '1803-6' WHERE `title` = 'Tazlina' AND `list_id` = 'race';
9923 #EndIf
9925 #IfNotRow2Dx2 list_options list_id race option_id telida title Telida
9926 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','telida','Telida','7990', '0',' 1804-4', 0);
9927 #EndIf
9929 #IfRow2D list_options list_id race option_id telida
9930 UPDATE `list_options` SET `notes` = '1804-4' WHERE `option_id` = 'telida' AND `list_id` = 'race';
9931 #EndIf
9933 #IfRow2D list_options list_id race title Telida
9934 UPDATE `list_options` SET `notes` = '1804-4' WHERE `title` = 'Telida' AND `list_id` = 'race';
9935 #EndIf
9937 #IfNotRow2Dx2 list_options list_id race option_id teller title Teller
9938 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','teller','Teller','8000', '0',' 1883-8', 0);
9939 #EndIf
9941 #IfRow2D list_options list_id race option_id teller
9942 UPDATE `list_options` SET `notes` = '1883-8' WHERE `option_id` = 'teller' AND `list_id` = 'race';
9943 #EndIf
9945 #IfRow2D list_options list_id race title Teller
9946 UPDATE `list_options` SET `notes` = '1883-8' WHERE `title` = 'Teller' AND `list_id` = 'race';
9947 #EndIf
9949 #IfNotRow2Dx2 list_options list_id race option_id temecula title Temecula
9950 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','temecula','Temecula','8010', '0',' 1338-3', 0);
9951 #EndIf
9953 #IfRow2D list_options list_id race option_id temecula
9954 UPDATE `list_options` SET `notes` = '1338-3' WHERE `option_id` = 'temecula' AND `list_id` = 'race';
9955 #EndIf
9957 #IfRow2D list_options list_id race title Temecula
9958 UPDATE `list_options` SET `notes` = '1338-3' WHERE `title` = 'Temecula' AND `list_id` = 'race';
9959 #EndIf
9961 #IfNotRow2Dx2 list_options list_id race option_id te-moak_western_shoshone title Te-Moak Western Shoshone
9962 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','te-moak_western_shoshone','Te-Moak Western Shoshone','8020', '0',' 1596-6', 0);
9963 #EndIf
9965 #IfRow2D list_options list_id race option_id te-moak_western_shoshone
9966 UPDATE `list_options` SET `notes` = '1596-6' WHERE `option_id` = 'te-moak_western_shoshone' AND `list_id` = 'race';
9967 #EndIf
9969 #IfRow2D list_options list_id race title Te-Moak Western Shoshone
9970 UPDATE `list_options` SET `notes` = '1596-6' WHERE `title` = 'Te-Moak Western Shoshone' AND `list_id` = 'race';
9971 #EndIf
9973 #IfNotRow2Dx2 list_options list_id race option_id tenakee_springs title Tenakee Springs
9974 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','tenakee_springs','Tenakee Springs','8030', '0',' 1832-5', 0);
9975 #EndIf
9977 #IfRow2D list_options list_id race option_id tenakee_springs
9978 UPDATE `list_options` SET `notes` = '1832-5' WHERE `option_id` = 'tenakee_springs' AND `list_id` = 'race';
9979 #EndIf
9981 #IfRow2D list_options list_id race title Tenakee Springs
9982 UPDATE `list_options` SET `notes` = '1832-5' WHERE `title` = 'Tenakee Springs' AND `list_id` = 'race';
9983 #EndIf
9985 #IfNotRow2Dx2 list_options list_id race option_id tenino title Tenino
9986 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','tenino','Tenino','8040', '0',' 1398-7', 0);
9987 #EndIf
9989 #IfRow2D list_options list_id race option_id tenino
9990 UPDATE `list_options` SET `notes` = '1398-7' WHERE `option_id` = 'tenino' AND `list_id` = 'race';
9991 #EndIf
9993 #IfRow2D list_options list_id race title Tenino
9994 UPDATE `list_options` SET `notes` = '1398-7' WHERE `title` = 'Tenino' AND `list_id` = 'race';
9995 #EndIf
9997 #IfNotRow2Dx2 list_options list_id race option_id tesuque title Tesuque
9998 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','tesuque','Tesuque','8050', '0',' 1512-3', 0);
9999 #EndIf
10001 #IfRow2D list_options list_id race option_id tesuque
10002 UPDATE `list_options` SET `notes` = '1512-3' WHERE `option_id` = 'tesuque' AND `list_id` = 'race';
10003 #EndIf
10005 #IfRow2D list_options list_id race title Tesuque
10006 UPDATE `list_options` SET `notes` = '1512-3' WHERE `title` = 'Tesuque' AND `list_id` = 'race';
10007 #EndIf
10009 #IfNotRow2Dx2 list_options list_id race option_id tetlin title Tetlin
10010 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','tetlin','Tetlin','8060', '0',' 1805-1', 0);
10011 #EndIf
10013 #IfRow2D list_options list_id race option_id tetlin
10014 UPDATE `list_options` SET `notes` = '1805-1' WHERE `option_id` = 'tetlin' AND `list_id` = 'race';
10015 #EndIf
10017 #IfRow2D list_options list_id race title Tetlin
10018 UPDATE `list_options` SET `notes` = '1805-1' WHERE `title` = 'Tetlin' AND `list_id` = 'race';
10019 #EndIf
10021 #IfNotRow2Dx2 list_options list_id race option_id teton_sioux title Teton Sioux
10022 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','teton_sioux','Teton Sioux','8070', '0',' 1634-5', 0);
10023 #EndIf
10025 #IfRow2D list_options list_id race option_id teton_sioux
10026 UPDATE `list_options` SET `notes` = '1634-5' WHERE `option_id` = 'teton_sioux' AND `list_id` = 'race';
10027 #EndIf
10029 #IfRow2D list_options list_id race title Teton Sioux
10030 UPDATE `list_options` SET `notes` = '1634-5' WHERE `title` = 'Teton Sioux' AND `list_id` = 'race';
10031 #EndIf
10033 #IfNotRow2Dx2 list_options list_id race option_id tewa title Tewa
10034 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','tewa','Tewa','8080', '0',' 1513-1', 0);
10035 #EndIf
10037 #IfRow2D list_options list_id race option_id tewa
10038 UPDATE `list_options` SET `notes` = '1513-1' WHERE `option_id` = 'tewa' AND `list_id` = 'race';
10039 #EndIf
10041 #IfRow2D list_options list_id race title Tewa
10042 UPDATE `list_options` SET `notes` = '1513-1' WHERE `title` = 'Tewa' AND `list_id` = 'race';
10043 #EndIf
10045 #IfNotRow2Dx2 list_options list_id race option_id texas_kickapoo title Texas Kickapoo
10046 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','texas_kickapoo','Texas Kickapoo','8090', '0',' 1307-8', 0);
10047 #EndIf
10049 #IfRow2D list_options list_id race option_id texas_kickapoo
10050 UPDATE `list_options` SET `notes` = '1307-8' WHERE `option_id` = 'texas_kickapoo' AND `list_id` = 'race';
10051 #EndIf
10053 #IfRow2D list_options list_id race title Texas Kickapoo
10054 UPDATE `list_options` SET `notes` = '1307-8' WHERE `title` = 'Texas Kickapoo' AND `list_id` = 'race';
10055 #EndIf
10057 #IfNotRow2Dx2 list_options list_id race option_id thai title Thai
10058 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','thai','Thai','8100', '0',' 2046-1', 0);
10059 #EndIf
10061 #IfRow2D list_options list_id race option_id thai
10062 UPDATE `list_options` SET `notes` = '2046-1' WHERE `option_id` = 'thai' AND `list_id` = 'race';
10063 #EndIf
10065 #IfRow2D list_options list_id race title Thai
10066 UPDATE `list_options` SET `notes` = '2046-1' WHERE `title` = 'Thai' AND `list_id` = 'race';
10067 #EndIf
10069 #IfNotRow2Dx2 list_options list_id race option_id thlopthlocco title Thlopthlocco
10070 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','thlopthlocco','Thlopthlocco','8110', '0',' 1204-7', 0);
10071 #EndIf
10073 #IfRow2D list_options list_id race option_id thlopthlocco
10074 UPDATE `list_options` SET `notes` = '1204-7' WHERE `option_id` = 'thlopthlocco' AND `list_id` = 'race';
10075 #EndIf
10077 #IfRow2D list_options list_id race title Thlopthlocco
10078 UPDATE `list_options` SET `notes` = '1204-7' WHERE `title` = 'Thlopthlocco' AND `list_id` = 'race';
10079 #EndIf
10081 #IfNotRow2Dx2 list_options list_id race option_id tigua title Tigua
10082 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','tigua','Tigua','8120', '0',' 1514-9', 0);
10083 #EndIf
10085 #IfRow2D list_options list_id race option_id tigua
10086 UPDATE `list_options` SET `notes` = '1514-9' WHERE `option_id` = 'tigua' AND `list_id` = 'race';
10087 #EndIf
10089 #IfRow2D list_options list_id race title Tigua
10090 UPDATE `list_options` SET `notes` = '1514-9' WHERE `title` = 'Tigua' AND `list_id` = 'race';
10091 #EndIf
10093 #IfNotRow2Dx2 list_options list_id race option_id tillamook title Tillamook
10094 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','tillamook','Tillamook','8130', '0',' 1399-5', 0);
10095 #EndIf
10097 #IfRow2D list_options list_id race option_id tillamook
10098 UPDATE `list_options` SET `notes` = '1399-5' WHERE `option_id` = 'tillamook' AND `list_id` = 'race';
10099 #EndIf
10101 #IfRow2D list_options list_id race title Tillamook
10102 UPDATE `list_options` SET `notes` = '1399-5' WHERE `title` = 'Tillamook' AND `list_id` = 'race';
10103 #EndIf
10105 #IfNotRow2Dx2 list_options list_id race option_id timbi-sha_shoshone title Timbi-Sha Shoshone
10106 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','timbi-sha_shoshone','Timbi-Sha Shoshone','8140', '0',' 1597-4', 0);
10107 #EndIf
10109 #IfRow2D list_options list_id race option_id timbi-sha_shoshone
10110 UPDATE `list_options` SET `notes` = '1597-4' WHERE `option_id` = 'timbi-sha_shoshone' AND `list_id` = 'race';
10111 #EndIf
10113 #IfRow2D list_options list_id race title Timbi-Sha Shoshone
10114 UPDATE `list_options` SET `notes` = '1597-4' WHERE `title` = 'Timbi-Sha Shoshone' AND `list_id` = 'race';
10115 #EndIf
10117 #IfNotRow2Dx2 list_options list_id race option_id tlingit title Tlingit
10118 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','tlingit','Tlingit','8150', '0',' 1833-3', 0);
10119 #EndIf
10121 #IfRow2D list_options list_id race option_id tlingit
10122 UPDATE `list_options` SET `notes` = '1833-3' WHERE `option_id` = 'tlingit' AND `list_id` = 'race';
10123 #EndIf
10125 #IfRow2D list_options list_id race title Tlingit
10126 UPDATE `list_options` SET `notes` = '1833-3' WHERE `title` = 'Tlingit' AND `list_id` = 'race';
10127 #EndIf
10129 #IfNotRow2Dx2 list_options list_id race option_id tlingit-haida title Tlingit-Haida
10130 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','tlingit-haida','Tlingit-Haida','8160', '0',' 1813-5', 0);
10131 #EndIf
10133 #IfRow2D list_options list_id race option_id tlingit-haida
10134 UPDATE `list_options` SET `notes` = '1813-5' WHERE `option_id` = 'tlingit-haida' AND `list_id` = 'race';
10135 #EndIf
10137 #IfRow2D list_options list_id race title Tlingit-Haida
10138 UPDATE `list_options` SET `notes` = '1813-5' WHERE `title` = 'Tlingit-Haida' AND `list_id` = 'race';
10139 #EndIf
10141 #IfNotRow2Dx2 list_options list_id race option_id tobagoan title Tobagoan
10142 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','tobagoan','Tobagoan','8170', '0',' 2073-5', 0);
10143 #EndIf
10145 #IfRow2D list_options list_id race option_id tobagoan
10146 UPDATE `list_options` SET `notes` = '2073-5' WHERE `option_id` = 'tobagoan' AND `list_id` = 'race';
10147 #EndIf
10149 #IfRow2D list_options list_id race title Tobagoan
10150 UPDATE `list_options` SET `notes` = '2073-5' WHERE `title` = 'Tobagoan' AND `list_id` = 'race';
10151 #EndIf
10153 #IfNotRow2Dx2 list_options list_id race option_id togiak title Togiak
10154 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','togiak','Togiak','8180', '0',' 1956-2', 0);
10155 #EndIf
10157 #IfRow2D list_options list_id race option_id togiak
10158 UPDATE `list_options` SET `notes` = '1956-2' WHERE `option_id` = 'togiak' AND `list_id` = 'race';
10159 #EndIf
10161 #IfRow2D list_options list_id race title Togiak
10162 UPDATE `list_options` SET `notes` = '1956-2' WHERE `title` = 'Togiak' AND `list_id` = 'race';
10163 #EndIf
10165 #IfNotRow2D list_options list_id race option_id tohono_oodham
10166 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','tohono_oodham',"Tohono O'Odham",'8190', '0',' 1653-5', 0);
10167 #EndIf
10169 #IfRow2D list_options list_id race option_id tohono_oodham
10170 UPDATE `list_options` SET `notes` = '1653-5' WHERE `option_id` = 'tohono_oodham' AND `list_id` = 'race';
10171 #EndIf
10173 #IfNotRow2Dx2 list_options list_id race option_id tok title Tok
10174 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','tok','Tok','8200', '0',' 1806-9', 0);
10175 #EndIf
10177 #IfRow2D list_options list_id race option_id tok
10178 UPDATE `list_options` SET `notes` = '1806-9' WHERE `option_id` = 'tok' AND `list_id` = 'race';
10179 #EndIf
10181 #IfRow2D list_options list_id race title Tok
10182 UPDATE `list_options` SET `notes` = '1806-9' WHERE `title` = 'Tok' AND `list_id` = 'race';
10183 #EndIf
10185 #IfNotRow2Dx2 list_options list_id race option_id tokelauan title Tokelauan
10186 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','tokelauan','Tokelauan','8210', '0',' 2083-4', 0);
10187 #EndIf
10189 #IfRow2D list_options list_id race option_id tokelauan
10190 UPDATE `list_options` SET `notes` = '2083-4' WHERE `option_id` = 'tokelauan' AND `list_id` = 'race';
10191 #EndIf
10193 #IfRow2D list_options list_id race title Tokelauan
10194 UPDATE `list_options` SET `notes` = '2083-4' WHERE `title` = 'Tokelauan' AND `list_id` = 'race';
10195 #EndIf
10197 #IfNotRow2Dx2 list_options list_id race option_id toksook title Toksook
10198 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','toksook','Toksook','8220', '0',' 1957-0', 0);
10199 #EndIf
10201 #IfRow2D list_options list_id race option_id toksook
10202 UPDATE `list_options` SET `notes` = '1957-0' WHERE `option_id` = 'toksook' AND `list_id` = 'race';
10203 #EndIf
10205 #IfRow2D list_options list_id race title Toksook
10206 UPDATE `list_options` SET `notes` = '1957-0' WHERE `title` = 'Toksook' AND `list_id` = 'race';
10207 #EndIf
10209 #IfNotRow2Dx2 list_options list_id race option_id tolowa title Tolowa
10210 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','tolowa','Tolowa','8230', '0',' 1659-2', 0);
10211 #EndIf
10213 #IfRow2D list_options list_id race option_id tolowa
10214 UPDATE `list_options` SET `notes` = '1659-2' WHERE `option_id` = 'tolowa' AND `list_id` = 'race';
10215 #EndIf
10217 #IfRow2D list_options list_id race title Tolowa
10218 UPDATE `list_options` SET `notes` = '1659-2' WHERE `title` = 'Tolowa' AND `list_id` = 'race';
10219 #EndIf
10221 #IfNotRow2Dx2 list_options list_id race option_id tonawanda_seneca title Tonawanda Seneca
10222 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','tonawanda_seneca','Tonawanda Seneca','8240', '0',' 1293-0', 0);
10223 #EndIf
10225 #IfRow2D list_options list_id race option_id tonawanda_seneca
10226 UPDATE `list_options` SET `notes` = '1293-0' WHERE `option_id` = 'tonawanda_seneca' AND `list_id` = 'race';
10227 #EndIf
10229 #IfRow2D list_options list_id race title Tonawanda Seneca
10230 UPDATE `list_options` SET `notes` = '1293-0' WHERE `title` = 'Tonawanda Seneca' AND `list_id` = 'race';
10231 #EndIf
10233 #IfNotRow2Dx2 list_options list_id race option_id tongan title Tongan
10234 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','tongan','Tongan','8250', '0',' 2082-6', 0);
10235 #EndIf
10237 #IfRow2D list_options list_id race option_id tongan
10238 UPDATE `list_options` SET `notes` = '2082-6' WHERE `option_id` = 'tongan' AND `list_id` = 'race';
10239 #EndIf
10241 #IfRow2D list_options list_id race title Tongan
10242 UPDATE `list_options` SET `notes` = '2082-6' WHERE `title` = 'Tongan' AND `list_id` = 'race';
10243 #EndIf
10245 #IfNotRow2Dx2 list_options list_id race option_id tonkawa title Tonkawa
10246 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','tonkawa','Tonkawa','8260', '0',' 1661-8', 0);
10247 #EndIf
10249 #IfRow2D list_options list_id race option_id tonkawa
10250 UPDATE `list_options` SET `notes` = '1661-8' WHERE `option_id` = 'tonkawa' AND `list_id` = 'race';
10251 #EndIf
10253 #IfRow2D list_options list_id race title Tonkawa
10254 UPDATE `list_options` SET `notes` = '1661-8' WHERE `title` = 'Tonkawa' AND `list_id` = 'race';
10255 #EndIf
10257 #IfNotRow2Dx2 list_options list_id race option_id torres-martinez title Torres-Martinez
10258 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','torres-martinez','Torres-Martinez','8270', '0',' 1051-2', 0);
10259 #EndIf
10261 #IfRow2D list_options list_id race option_id torres-martinez
10262 UPDATE `list_options` SET `notes` = '1051-2' WHERE `option_id` = 'torres-martinez' AND `list_id` = 'race';
10263 #EndIf
10265 #IfRow2D list_options list_id race title Torres-Martinez
10266 UPDATE `list_options` SET `notes` = '1051-2' WHERE `title` = 'Torres-Martinez' AND `list_id` = 'race';
10267 #EndIf
10269 #IfNotRow2Dx2 list_options list_id race option_id trinidadian title Trinidadian
10270 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','trinidadian','Trinidadian','8280', '0',' 2074-3', 0);
10271 #EndIf
10273 #IfRow2D list_options list_id race option_id trinidadian
10274 UPDATE `list_options` SET `notes` = '2074-3' WHERE `option_id` = 'trinidadian' AND `list_id` = 'race';
10275 #EndIf
10277 #IfRow2D list_options list_id race title Trinidadian
10278 UPDATE `list_options` SET `notes` = '2074-3' WHERE `title` = 'Trinidadian' AND `list_id` = 'race';
10279 #EndIf
10281 #IfNotRow2Dx2 list_options list_id race option_id trinity title Trinity
10282 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','trinity','Trinity','8290', '0',' 1272-4', 0);
10283 #EndIf
10285 #IfRow2D list_options list_id race option_id trinity
10286 UPDATE `list_options` SET `notes` = '1272-4' WHERE `option_id` = 'trinity' AND `list_id` = 'race';
10287 #EndIf
10289 #IfRow2D list_options list_id race title Trinity
10290 UPDATE `list_options` SET `notes` = '1272-4' WHERE `title` = 'Trinity' AND `list_id` = 'race';
10291 #EndIf
10293 #IfNotRow2Dx2 list_options list_id race option_id tsimshian title Tsimshian
10294 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','tsimshian','Tsimshian','8300', '0',' 1837-4', 0);
10295 #EndIf
10297 #IfRow2D list_options list_id race option_id tsimshian
10298 UPDATE `list_options` SET `notes` = '1837-4' WHERE `option_id` = 'tsimshian' AND `list_id` = 'race';
10299 #EndIf
10301 #IfRow2D list_options list_id race title Tsimshian
10302 UPDATE `list_options` SET `notes` = '1837-4' WHERE `title` = 'Tsimshian' AND `list_id` = 'race';
10303 #EndIf
10305 #IfNotRow2Dx2 list_options list_id race option_id tuckabachee title Tuckabachee
10306 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','tuckabachee','Tuckabachee','8310', '0',' 1205-4', 0);
10307 #EndIf
10309 #IfRow2D list_options list_id race option_id tuckabachee
10310 UPDATE `list_options` SET `notes` = '1205-4' WHERE `option_id` = 'tuckabachee' AND `list_id` = 'race';
10311 #EndIf
10313 #IfRow2D list_options list_id race title Tuckabachee
10314 UPDATE `list_options` SET `notes` = '1205-4' WHERE `title` = 'Tuckabachee' AND `list_id` = 'race';
10315 #EndIf
10317 #IfNotRow2Dx2 list_options list_id race option_id tulalip title Tulalip
10318 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','tulalip','Tulalip','8320', '0',' 1538-8', 0);
10319 #EndIf
10321 #IfRow2D list_options list_id race option_id tulalip
10322 UPDATE `list_options` SET `notes` = '1538-8' WHERE `option_id` = 'tulalip' AND `list_id` = 'race';
10323 #EndIf
10325 #IfRow2D list_options list_id race title Tulalip
10326 UPDATE `list_options` SET `notes` = '1538-8' WHERE `title` = 'Tulalip' AND `list_id` = 'race';
10327 #EndIf
10329 #IfNotRow2Dx2 list_options list_id race option_id tule_river title Tule River
10330 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','tule_river','Tule River','8330', '0',' 1720-2', 0);
10331 #EndIf
10333 #IfRow2D list_options list_id race option_id tule_river
10334 UPDATE `list_options` SET `notes` = '1720-2' WHERE `option_id` = 'tule_river' AND `list_id` = 'race';
10335 #EndIf
10337 #IfRow2D list_options list_id race title Tule River
10338 UPDATE `list_options` SET `notes` = '1720-2' WHERE `title` = 'Tule River' AND `list_id` = 'race';
10339 #EndIf
10341 #IfNotRow2Dx2 list_options list_id race option_id tulukskak title Tulukskak
10342 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','tulukskak','Tulukskak','8340', '0',' 1958-8', 0);
10343 #EndIf
10345 #IfRow2D list_options list_id race option_id tulukskak
10346 UPDATE `list_options` SET `notes` = '1958-8' WHERE `option_id` = 'tulukskak' AND `list_id` = 'race';
10347 #EndIf
10349 #IfRow2D list_options list_id race title Tulukskak
10350 UPDATE `list_options` SET `notes` = '1958-8' WHERE `title` = 'Tulukskak' AND `list_id` = 'race';
10351 #EndIf
10353 #IfNotRow2Dx2 list_options list_id race option_id tunica_biloxi title Tunica Biloxi
10354 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','tunica_biloxi','Tunica Biloxi','8350', '0',' 1246-8', 0);
10355 #EndIf
10357 #IfRow2D list_options list_id race option_id tunica_biloxi
10358 UPDATE `list_options` SET `notes` = '1246-8' WHERE `option_id` = 'tunica_biloxi' AND `list_id` = 'race';
10359 #EndIf
10361 #IfRow2D list_options list_id race title Tunica Biloxi
10362 UPDATE `list_options` SET `notes` = '1246-8' WHERE `title` = 'Tunica Biloxi' AND `list_id` = 'race';
10363 #EndIf
10365 #IfNotRow2Dx2 list_options list_id race option_id tuntutuliak title Tuntutuliak
10366 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','tuntutuliak','Tuntutuliak','8360', '0',' 1959-6', 0);
10367 #EndIf
10369 #IfRow2D list_options list_id race option_id tuntutuliak
10370 UPDATE `list_options` SET `notes` = '1959-6' WHERE `option_id` = 'tuntutuliak' AND `list_id` = 'race';
10371 #EndIf
10373 #IfRow2D list_options list_id race title Tuntutuliak
10374 UPDATE `list_options` SET `notes` = '1959-6' WHERE `title` = 'Tuntutuliak' AND `list_id` = 'race';
10375 #EndIf
10377 #IfNotRow2Dx2 list_options list_id race option_id tununak title Tununak
10378 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','tununak','Tununak','8370', '0',' 1960-4', 0);
10379 #EndIf
10381 #IfRow2D list_options list_id race option_id tununak
10382 UPDATE `list_options` SET `notes` = '1960-4' WHERE `option_id` = 'tununak' AND `list_id` = 'race';
10383 #EndIf
10385 #IfRow2D list_options list_id race title Tununak
10386 UPDATE `list_options` SET `notes` = '1960-4' WHERE `title` = 'Tununak' AND `list_id` = 'race';
10387 #EndIf
10389 #IfNotRow2Dx2 list_options list_id race option_id turtle_mountain title Turtle Mountain
10390 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','turtle_mountain','Turtle Mountain','8380', '0',' 1147-8', 0);
10391 #EndIf
10393 #IfRow2D list_options list_id race option_id turtle_mountain
10394 UPDATE `list_options` SET `notes` = '1147-8' WHERE `option_id` = 'turtle_mountain' AND `list_id` = 'race';
10395 #EndIf
10397 #IfRow2D list_options list_id race title Turtle Mountain
10398 UPDATE `list_options` SET `notes` = '1147-8' WHERE `title` = 'Turtle Mountain' AND `list_id` = 'race';
10399 #EndIf
10401 #IfNotRow2Dx2 list_options list_id race option_id tuscarora title Tuscarora
10402 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','tuscarora','Tuscarora','8390', '0',' 1294-8', 0);
10403 #EndIf
10405 #IfRow2D list_options list_id race option_id tuscarora
10406 UPDATE `list_options` SET `notes` = '1294-8' WHERE `option_id` = 'tuscarora' AND `list_id` = 'race';
10407 #EndIf
10409 #IfRow2D list_options list_id race title Tuscarora
10410 UPDATE `list_options` SET `notes` = '1294-8' WHERE `title` = 'Tuscarora' AND `list_id` = 'race';
10411 #EndIf
10413 #IfNotRow2Dx2 list_options list_id race option_id tuscola title Tuscola
10414 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','tuscola','Tuscola','8400', '0',' 1096-7', 0);
10415 #EndIf
10417 #IfRow2D list_options list_id race option_id tuscola
10418 UPDATE `list_options` SET `notes` = '1096-7' WHERE `option_id` = 'tuscola' AND `list_id` = 'race';
10419 #EndIf
10421 #IfRow2D list_options list_id race title Tuscola
10422 UPDATE `list_options` SET `notes` = '1096-7' WHERE `title` = 'Tuscola' AND `list_id` = 'race';
10423 #EndIf
10425 #IfNotRow2Dx2 list_options list_id race option_id twenty-nine_palms title Twenty-Nine Palms
10426 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','twenty-nine_palms','Twenty-Nine Palms','8410', '0',' 1337-5', 0);
10427 #EndIf
10429 #IfRow2D list_options list_id race option_id twenty-nine_palms
10430 UPDATE `list_options` SET `notes` = '1337-5' WHERE `option_id` = 'twenty-nine_palms' AND `list_id` = 'race';
10431 #EndIf
10433 #IfRow2D list_options list_id race title Twenty-Nine Palms
10434 UPDATE `list_options` SET `notes` = '1337-5' WHERE `title` = 'Twenty-Nine Palms' AND `list_id` = 'race';
10435 #EndIf
10437 #IfNotRow2Dx2 list_options list_id race option_id twin_hills title Twin Hills
10438 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','twin_hills','Twin Hills','8420', '0',' 1961-2', 0);
10439 #EndIf
10441 #IfRow2D list_options list_id race option_id twin_hills
10442 UPDATE `list_options` SET `notes` = '1961-2' WHERE `option_id` = 'twin_hills' AND `list_id` = 'race';
10443 #EndIf
10445 #IfRow2D list_options list_id race title Twin Hills
10446 UPDATE `list_options` SET `notes` = '1961-2' WHERE `title` = 'Twin Hills' AND `list_id` = 'race';
10447 #EndIf
10449 #IfNotRow2Dx2 list_options list_id race option_id two_kettle_sioux title Two Kettle Sioux
10450 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','two_kettle_sioux','Two Kettle Sioux','8430', '0',' 1635-2', 0);
10451 #EndIf
10453 #IfRow2D list_options list_id race option_id two_kettle_sioux
10454 UPDATE `list_options` SET `notes` = '1635-2' WHERE `option_id` = 'two_kettle_sioux' AND `list_id` = 'race';
10455 #EndIf
10457 #IfRow2D list_options list_id race title Two Kettle Sioux
10458 UPDATE `list_options` SET `notes` = '1635-2' WHERE `title` = 'Two Kettle Sioux' AND `list_id` = 'race';
10459 #EndIf
10461 #IfNotRow2Dx2 list_options list_id race option_id tygh title Tygh
10462 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','tygh','Tygh','8440', '0',' 1663-4', 0);
10463 #EndIf
10465 #IfRow2D list_options list_id race option_id tygh
10466 UPDATE `list_options` SET `notes` = '1663-4' WHERE `option_id` = 'tygh' AND `list_id` = 'race';
10467 #EndIf
10469 #IfRow2D list_options list_id race title Tygh
10470 UPDATE `list_options` SET `notes` = '1663-4' WHERE `title` = 'Tygh' AND `list_id` = 'race';
10471 #EndIf
10473 #IfNotRow2Dx2 list_options list_id race option_id tyonek title Tyonek
10474 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','tyonek','Tyonek','8450', '0',' 1807-7', 0);
10475 #EndIf
10477 #IfRow2D list_options list_id race option_id tyonek
10478 UPDATE `list_options` SET `notes` = '1807-7' WHERE `option_id` = 'tyonek' AND `list_id` = 'race';
10479 #EndIf
10481 #IfRow2D list_options list_id race title Tyonek
10482 UPDATE `list_options` SET `notes` = '1807-7' WHERE `title` = 'Tyonek' AND `list_id` = 'race';
10483 #EndIf
10485 #IfNotRow2Dx2 list_options list_id race option_id ugashik title Ugashik
10486 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','ugashik','Ugashik','8460', '0',' 1970-3', 0);
10487 #EndIf
10489 #IfRow2D list_options list_id race option_id ugashik
10490 UPDATE `list_options` SET `notes` = '1970-3' WHERE `option_id` = 'ugashik' AND `list_id` = 'race';
10491 #EndIf
10493 #IfRow2D list_options list_id race title Ugashik
10494 UPDATE `list_options` SET `notes` = '1970-3' WHERE `title` = 'Ugashik' AND `list_id` = 'race';
10495 #EndIf
10497 #IfNotRow2Dx2 list_options list_id race option_id uintah_ute title Uintah Ute
10498 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','uintah_ute','Uintah Ute','8470', '0',' 1672-5', 0);
10499 #EndIf
10501 #IfRow2D list_options list_id race option_id uintah_ute
10502 UPDATE `list_options` SET `notes` = '1672-5' WHERE `option_id` = 'uintah_ute' AND `list_id` = 'race';
10503 #EndIf
10505 #IfRow2D list_options list_id race title Uintah Ute
10506 UPDATE `list_options` SET `notes` = '1672-5' WHERE `title` = 'Uintah Ute' AND `list_id` = 'race';
10507 #EndIf
10509 #IfNotRow2Dx2 list_options list_id race option_id umatilla title Umatilla
10510 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','umatilla','Umatilla','8480', '0',' 1665-9', 0);
10511 #EndIf
10513 #IfRow2D list_options list_id race option_id umatilla
10514 UPDATE `list_options` SET `notes` = '1665-9' WHERE `option_id` = 'umatilla' AND `list_id` = 'race';
10515 #EndIf
10517 #IfRow2D list_options list_id race title Umatilla
10518 UPDATE `list_options` SET `notes` = '1665-9' WHERE `title` = 'Umatilla' AND `list_id` = 'race';
10519 #EndIf
10521 #IfNotRow2Dx2 list_options list_id race option_id umkumiate title Umkumiate
10522 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','umkumiate','Umkumiate','8490', '0',' 1964-6', 0);
10523 #EndIf
10525 #IfRow2D list_options list_id race option_id umkumiate
10526 UPDATE `list_options` SET `notes` = '1964-6' WHERE `option_id` = 'umkumiate' AND `list_id` = 'race';
10527 #EndIf
10529 #IfRow2D list_options list_id race title Umkumiate
10530 UPDATE `list_options` SET `notes` = '1964-6' WHERE `title` = 'Umkumiate' AND `list_id` = 'race';
10531 #EndIf
10533 #IfNotRow2Dx2 list_options list_id race option_id umpqua title Umpqua
10534 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','umpqua','Umpqua','8500', '0',' 1667-5', 0);
10535 #EndIf
10537 #IfRow2D list_options list_id race option_id umpqua
10538 UPDATE `list_options` SET `notes` = '1667-5' WHERE `option_id` = 'umpqua' AND `list_id` = 'race';
10539 #EndIf
10541 #IfRow2D list_options list_id race title Umpqua
10542 UPDATE `list_options` SET `notes` = '1667-5' WHERE `title` = 'Umpqua' AND `list_id` = 'race';
10543 #EndIf
10545 #IfNotRow2Dx2 list_options list_id race option_id unalakleet title Unalakleet
10546 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','unalakleet','Unalakleet','8510', '0',' 1884-6', 0);
10547 #EndIf
10549 #IfRow2D list_options list_id race option_id unalakleet
10550 UPDATE `list_options` SET `notes` = '1884-6' WHERE `option_id` = 'unalakleet' AND `list_id` = 'race';
10551 #EndIf
10553 #IfRow2D list_options list_id race title Unalakleet
10554 UPDATE `list_options` SET `notes` = '1884-6' WHERE `title` = 'Unalakleet' AND `list_id` = 'race';
10555 #EndIf
10557 #IfNotRow2Dx2 list_options list_id race option_id unalaska title Unalaska
10558 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','unalaska','Unalaska','8520', '0',' 2025-5', 0);
10559 #EndIf
10561 #IfRow2D list_options list_id race option_id unalaska
10562 UPDATE `list_options` SET `notes` = '2025-5' WHERE `option_id` = 'unalaska' AND `list_id` = 'race';
10563 #EndIf
10565 #IfRow2D list_options list_id race title Unalaska
10566 UPDATE `list_options` SET `notes` = '2025-5' WHERE `title` = 'Unalaska' AND `list_id` = 'race';
10567 #EndIf
10569 #IfNotRow2Dx2 list_options list_id race option_id unangan_aleut title Unangan Aleut
10570 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','unangan_aleut','Unangan Aleut','8530', '0',' 2006-5', 0);
10571 #EndIf
10573 #IfRow2D list_options list_id race option_id unangan_aleut
10574 UPDATE `list_options` SET `notes` = '2006-5' WHERE `option_id` = 'unangan_aleut' AND `list_id` = 'race';
10575 #EndIf
10577 #IfRow2D list_options list_id race title Unangan Aleut
10578 UPDATE `list_options` SET `notes` = '2006-5' WHERE `title` = 'Unangan Aleut' AND `list_id` = 'race';
10579 #EndIf
10581 #IfNotRow2Dx2 list_options list_id race option_id unga title Unga
10582 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','unga','Unga','8540', '0',' 2026-3', 0);
10583 #EndIf
10585 #IfRow2D list_options list_id race option_id unga
10586 UPDATE `list_options` SET `notes` = '2026-3' WHERE `option_id` = 'unga' AND `list_id` = 'race';
10587 #EndIf
10589 #IfRow2D list_options list_id race title Unga
10590 UPDATE `list_options` SET `notes` = '2026-3' WHERE `title` = 'Unga' AND `list_id` = 'race';
10591 #EndIf
10593 #IfNotRow2Dx2 list_options list_id race option_id united_ketowah_band_of_cheroke title United Keetowah Band of Cherokee
10594 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','united_ketowah_band_of_cheroke','United Keetowah Band of Cherokee','8550', '0',' 1097-5', 0);
10595 #EndIf
10597 #IfRow2D list_options list_id race option_id united_ketowah_band_of_cheroke
10598 UPDATE `list_options` SET `notes` = '1097-5' WHERE `option_id` = 'united_ketowah_band_of_cheroke' AND `list_id` = 'race';
10599 #EndIf
10601 #IfRow2D list_options list_id race title United Keetowah Band of Cherokee
10602 UPDATE `list_options` SET `notes` = '1097-5' WHERE `title` = 'United Keetowah Band of Cherokee' AND `list_id` = 'race';
10603 #EndIf
10605 #IfNotRow2Dx2 list_options list_id race option_id upper_chinook title Upper Chinook
10606 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','upper_chinook','Upper Chinook','8560', '0',' 1118-9', 0);
10607 #EndIf
10609 #IfRow2D list_options list_id race option_id upper_chinook
10610 UPDATE `list_options` SET `notes` = '1118-9' WHERE `option_id` = 'upper_chinook' AND `list_id` = 'race';
10611 #EndIf
10613 #IfRow2D list_options list_id race title Upper Chinook
10614 UPDATE `list_options` SET `notes` = '1118-9' WHERE `title` = 'Upper Chinook' AND `list_id` = 'race';
10615 #EndIf
10617 #IfNotRow2Dx2 list_options list_id race option_id upper_sioux title Upper Sioux
10618 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','upper_sioux','Upper Sioux','8570', '0',' 1636-0', 0);
10619 #EndIf
10621 #IfRow2D list_options list_id race option_id upper_sioux
10622 UPDATE `list_options` SET `notes` = '1636-0' WHERE `option_id` = 'upper_sioux' AND `list_id` = 'race';
10623 #EndIf
10625 #IfRow2D list_options list_id race title Upper Sioux
10626 UPDATE `list_options` SET `notes` = '1636-0' WHERE `title` = 'Upper Sioux' AND `list_id` = 'race';
10627 #EndIf
10629 #IfNotRow2Dx2 list_options list_id race option_id upper_skagit title Upper Skagit
10630 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','upper_skagit','Upper Skagit','8580', '0',' 1539-6', 0);
10631 #EndIf
10633 #IfRow2D list_options list_id race option_id upper_skagit
10634 UPDATE `list_options` SET `notes` = '1539-6' WHERE `option_id` = 'upper_skagit' AND `list_id` = 'race';
10635 #EndIf
10637 #IfRow2D list_options list_id race title Upper Skagit
10638 UPDATE `list_options` SET `notes` = '1539-6' WHERE `title` = 'Upper Skagit' AND `list_id` = 'race';
10639 #EndIf
10641 #IfNotRow2Dx2 list_options list_id race option_id ute title Ute
10642 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','ute','Ute','8590', '0',' 1670-9', 0);
10643 #EndIf
10645 #IfRow2D list_options list_id race option_id ute
10646 UPDATE `list_options` SET `notes` = '1670-9' WHERE `option_id` = 'ute' AND `list_id` = 'race';
10647 #EndIf
10649 #IfRow2D list_options list_id race title Ute
10650 UPDATE `list_options` SET `notes` = '1670-9' WHERE `title` = 'Ute' AND `list_id` = 'race';
10651 #EndIf
10653 #IfNotRow2Dx2 list_options list_id race option_id ute_mountain_ute title Ute Mountain Ute
10654 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','ute_mountain_ute','Ute Mountain Ute','8600', '0',' 1673-3', 0);
10655 #EndIf
10657 #IfRow2D list_options list_id race option_id ute_mountain_ute
10658 UPDATE `list_options` SET `notes` = '1673-3' WHERE `option_id` = 'ute_mountain_ute' AND `list_id` = 'race';
10659 #EndIf
10661 #IfRow2D list_options list_id race title Ute Mountain Ute
10662 UPDATE `list_options` SET `notes` = '1673-3' WHERE `title` = 'Ute Mountain Ute' AND `list_id` = 'race';
10663 #EndIf
10665 #IfNotRow2Dx2 list_options list_id race option_id utu_utu_gwaitu_paiute title Utu Utu Gwaitu Paiute
10666 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','utu_utu_gwaitu_paiute','Utu Utu Gwaitu Paiute','8610', '0',' 1435-7', 0);
10667 #EndIf
10669 #IfRow2D list_options list_id race option_id utu_utu_gwaitu_paiute
10670 UPDATE `list_options` SET `notes` = '1435-7' WHERE `option_id` = 'utu_utu_gwaitu_paiute' AND `list_id` = 'race';
10671 #EndIf
10673 #IfRow2D list_options list_id race title Utu Utu Gwaitu Paiute
10674 UPDATE `list_options` SET `notes` = '1435-7' WHERE `title` = 'Utu Utu Gwaitu Paiute' AND `list_id` = 'race';
10675 #EndIf
10677 #IfNotRow2Dx2 list_options list_id race option_id venetie title Venetie
10678 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','venetie','Venetie','8620', '0',' 1808-5', 0);
10679 #EndIf
10681 #IfRow2D list_options list_id race option_id venetie
10682 UPDATE `list_options` SET `notes` = '1808-5' WHERE `option_id` = 'venetie' AND `list_id` = 'race';
10683 #EndIf
10685 #IfRow2D list_options list_id race title Venetie
10686 UPDATE `list_options` SET `notes` = '1808-5' WHERE `title` = 'Venetie' AND `list_id` = 'race';
10687 #EndIf
10689 #IfNotRow2Dx2 list_options list_id race option_id vietnamese title Vietnamese
10690 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','vietnamese','Vietnamese','8630', '0',' 2047-9', 0);
10691 #EndIf
10693 #IfRow2D list_options list_id race option_id vietnamese
10694 UPDATE `list_options` SET `notes` = '2047-9' WHERE `option_id` = 'vietnamese' AND `list_id` = 'race';
10695 #EndIf
10697 #IfRow2D list_options list_id race title Vietnamese
10698 UPDATE `list_options` SET `notes` = '2047-9' WHERE `title` = 'Vietnamese' AND `list_id` = 'race';
10699 #EndIf
10701 #IfNotRow2Dx2 list_options list_id race option_id waccamaw-siousan title Waccamaw-Siousan
10702 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','waccamaw-siousan','Waccamaw-Siousan','8640', '0',' 1247-6', 0);
10703 #EndIf
10705 #IfRow2D list_options list_id race option_id waccamaw-siousan
10706 UPDATE `list_options` SET `notes` = '1247-6' WHERE `option_id` = 'waccamaw-siousan' AND `list_id` = 'race';
10707 #EndIf
10709 #IfRow2D list_options list_id race title Waccamaw-Siousan
10710 UPDATE `list_options` SET `notes` = '1247-6' WHERE `title` = 'Waccamaw-Siousan' AND `list_id` = 'race';
10711 #EndIf
10713 #IfNotRow2Dx2 list_options list_id race option_id wahpekute_sioux title Wahpekute Sioux
10714 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','wahpekute_sioux','Wahpekute Sioux','8650', '0',' 1637-8', 0);
10715 #EndIf
10717 #IfRow2D list_options list_id race option_id wahpekute_sioux
10718 UPDATE `list_options` SET `notes` = '1637-8' WHERE `option_id` = 'wahpekute_sioux' AND `list_id` = 'race';
10719 #EndIf
10721 #IfRow2D list_options list_id race title Wahpekute Sioux
10722 UPDATE `list_options` SET `notes` = '1637-8' WHERE `title` = 'Wahpekute Sioux' AND `list_id` = 'race';
10723 #EndIf
10725 #IfNotRow2Dx2 list_options list_id race option_id wahpeton_sioux title Wahpeton Sioux
10726 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','wahpeton_sioux','Wahpeton Sioux','8660', '0',' 1638-6', 0);
10727 #EndIf
10729 #IfRow2D list_options list_id race option_id wahpeton_sioux
10730 UPDATE `list_options` SET `notes` = '1638-6' WHERE `option_id` = 'wahpeton_sioux' AND `list_id` = 'race';
10731 #EndIf
10733 #IfRow2D list_options list_id race title Wahpeton Sioux
10734 UPDATE `list_options` SET `notes` = '1638-6' WHERE `title` = 'Wahpeton Sioux' AND `list_id` = 'race';
10735 #EndIf
10737 #IfNotRow2Dx2 list_options list_id race option_id wailaki title Wailaki
10738 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','wailaki','Wailaki','8670', '0',' 1675-8', 0);
10739 #EndIf
10741 #IfRow2D list_options list_id race option_id wailaki
10742 UPDATE `list_options` SET `notes` = '1675-8' WHERE `option_id` = 'wailaki' AND `list_id` = 'race';
10743 #EndIf
10745 #IfRow2D list_options list_id race title Wailaki
10746 UPDATE `list_options` SET `notes` = '1675-8' WHERE `title` = 'Wailaki' AND `list_id` = 'race';
10747 #EndIf
10749 #IfNotRow2Dx2 list_options list_id race option_id wainwright title Wainwright
10750 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','wainwright','Wainwright','8680', '0',' 1885-3', 0);
10751 #EndIf
10753 #IfRow2D list_options list_id race option_id wainwright
10754 UPDATE `list_options` SET `notes` = '1885-3' WHERE `option_id` = 'wainwright' AND `list_id` = 'race';
10755 #EndIf
10757 #IfRow2D list_options list_id race title Wainwright
10758 UPDATE `list_options` SET `notes` = '1885-3' WHERE `title` = 'Wainwright' AND `list_id` = 'race';
10759 #EndIf
10761 #IfNotRow2Dx2 list_options list_id race option_id wakiakum_chinook title Wakiakum Chinook
10762 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','wakiakum_chinook','Wakiakum Chinook','8690', '0',' 1119-7', 0);
10763 #EndIf
10765 #IfRow2D list_options list_id race option_id wakiakum_chinook
10766 UPDATE `list_options` SET `notes` = '1119-7' WHERE `option_id` = 'wakiakum_chinook' AND `list_id` = 'race';
10767 #EndIf
10769 #IfRow2D list_options list_id race title Wakiakum Chinook
10770 UPDATE `list_options` SET `notes` = '1119-7' WHERE `title` = 'Wakiakum Chinook' AND `list_id` = 'race';
10771 #EndIf
10773 #IfNotRow2Dx2 list_options list_id race option_id wales title Wales
10774 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','wales','Wales','8700', '0',' 1886-1', 0);
10775 #EndIf
10777 #IfRow2D list_options list_id race option_id wales
10778 UPDATE `list_options` SET `notes` = '1886-1' WHERE `option_id` = 'wales' AND `list_id` = 'race';
10779 #EndIf
10781 #IfRow2D list_options list_id race title Wales
10782 UPDATE `list_options` SET `notes` = '1886-1' WHERE `title` = 'Wales' AND `list_id` = 'race';
10783 #EndIf
10785 #IfNotRow2Dx2 list_options list_id race option_id walker_river title Walker River
10786 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','walker_river','Walker River','8710', '0',' 1436-5', 0);
10787 #EndIf
10789 #IfRow2D list_options list_id race option_id walker_river
10790 UPDATE `list_options` SET `notes` = '1436-5' WHERE `option_id` = 'walker_river' AND `list_id` = 'race';
10791 #EndIf
10793 #IfRow2D list_options list_id race title Walker River
10794 UPDATE `list_options` SET `notes` = '1436-5' WHERE `title` = 'Walker River' AND `list_id` = 'race';
10795 #EndIf
10797 #IfNotRow2Dx2 list_options list_id race option_id walla-walla title Walla-Walla
10798 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','walla-walla','Walla-Walla','8720', '0',' 1677-4', 0);
10799 #EndIf
10801 #IfRow2D list_options list_id race option_id walla-walla
10802 UPDATE `list_options` SET `notes` = '1677-4' WHERE `option_id` = 'walla-walla' AND `list_id` = 'race';
10803 #EndIf
10805 #IfRow2D list_options list_id race title Walla-Walla
10806 UPDATE `list_options` SET `notes` = '1677-4' WHERE `title` = 'Walla-Walla' AND `list_id` = 'race';
10807 #EndIf
10809 #IfNotRow2Dx2 list_options list_id race option_id wampanoag title Wampanoag
10810 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','wampanoag','Wampanoag','8730', '0',' 1679-0', 0);
10811 #EndIf
10813 #IfRow2D list_options list_id race option_id wampanoag
10814 UPDATE `list_options` SET `notes` = '1679-0' WHERE `option_id` = 'wampanoag' AND `list_id` = 'race';
10815 #EndIf
10817 #IfRow2D list_options list_id race title Wampanoag
10818 UPDATE `list_options` SET `notes` = '1679-0' WHERE `title` = 'Wampanoag' AND `list_id` = 'race';
10819 #EndIf
10821 #IfNotRow2Dx2 list_options list_id race option_id wappo title Wappo
10822 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','wappo','Wappo','8740', '0',' 1064-5', 0);
10823 #EndIf
10825 #IfRow2D list_options list_id race option_id wappo
10826 UPDATE `list_options` SET `notes` = '1064-5' WHERE `option_id` = 'wappo' AND `list_id` = 'race';
10827 #EndIf
10829 #IfRow2D list_options list_id race title Wappo
10830 UPDATE `list_options` SET `notes` = '1064-5' WHERE `title` = 'Wappo' AND `list_id` = 'race';
10831 #EndIf
10833 #IfNotRow2Dx2 list_options list_id race option_id warm_springs title Warm Springs
10834 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','warm_springs','Warm Springs','8750', '0',' 1683-2', 0);
10835 #EndIf
10837 #IfRow2D list_options list_id race option_id warm_springs
10838 UPDATE `list_options` SET `notes` = '1683-2' WHERE `option_id` = 'warm_springs' AND `list_id` = 'race';
10839 #EndIf
10841 #IfRow2D list_options list_id race title Warm Springs
10842 UPDATE `list_options` SET `notes` = '1683-2' WHERE `title` = 'Warm Springs' AND `list_id` = 'race';
10843 #EndIf
10845 #IfNotRow2Dx2 list_options list_id race option_id wascopum title Wascopum
10846 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','wascopum','Wascopum','8760', '0',' 1685-7', 0);
10847 #EndIf
10849 #IfRow2D list_options list_id race option_id wascopum
10850 UPDATE `list_options` SET `notes` = '1685-7' WHERE `option_id` = 'wascopum' AND `list_id` = 'race';
10851 #EndIf
10853 #IfRow2D list_options list_id race title Wascopum
10854 UPDATE `list_options` SET `notes` = '1685-7' WHERE `title` = 'Wascopum' AND `list_id` = 'race';
10855 #EndIf
10857 #IfNotRow2Dx2 list_options list_id race option_id washakie title Washakie
10858 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','washakie','Washakie','8770', '0',' 1598-2', 0);
10859 #EndIf
10861 #IfRow2D list_options list_id race option_id washakie
10862 UPDATE `list_options` SET `notes` = '1598-2' WHERE `option_id` = 'washakie' AND `list_id` = 'race';
10863 #EndIf
10865 #IfRow2D list_options list_id race title Washakie
10866 UPDATE `list_options` SET `notes` = '1598-2' WHERE `title` = 'Washakie' AND `list_id` = 'race';
10867 #EndIf
10869 #IfNotRow2Dx2 list_options list_id race option_id washoe title Washoe
10870 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','washoe','Washoe','8780', '0',' 1687-3', 0);
10871 #EndIf
10873 #IfRow2D list_options list_id race option_id washoe
10874 UPDATE `list_options` SET `notes` = '1687-3' WHERE `option_id` = 'washoe' AND `list_id` = 'race';
10875 #EndIf
10877 #IfRow2D list_options list_id race title Washoe
10878 UPDATE `list_options` SET `notes` = '1687-3' WHERE `title` = 'Washoe' AND `list_id` = 'race';
10879 #EndIf
10881 #IfNotRow2Dx2 list_options list_id race option_id wazhaza_sioux title Wazhaza Sioux
10882 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','wazhaza_sioux','Wazhaza Sioux','8790', '0',' 1639-4', 0);
10883 #EndIf
10885 #IfRow2D list_options list_id race option_id wazhaza_sioux
10886 UPDATE `list_options` SET `notes` = '1639-4' WHERE `option_id` = 'wazhaza_sioux' AND `list_id` = 'race';
10887 #EndIf
10889 #IfRow2D list_options list_id race title Wazhaza Sioux
10890 UPDATE `list_options` SET `notes` = '1639-4' WHERE `title` = 'Wazhaza Sioux' AND `list_id` = 'race';
10891 #EndIf
10893 #IfNotRow2Dx2 list_options list_id race option_id wenatchee title Wenatchee
10894 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','wenatchee','Wenatchee','8800', '0',' 1400-1', 0);
10895 #EndIf
10897 #IfRow2D list_options list_id race option_id wenatchee
10898 UPDATE `list_options` SET `notes` = '1400-1' WHERE `option_id` = 'wenatchee' AND `list_id` = 'race';
10899 #EndIf
10901 #IfRow2D list_options list_id race title Wenatchee
10902 UPDATE `list_options` SET `notes` = '1400-1' WHERE `title` = 'Wenatchee' AND `list_id` = 'race';
10903 #EndIf
10905 #IfNotRow2Dx2 list_options list_id race option_id west_indian title West Indian
10906 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','west_indian','West Indian','8810', '0',' 2075-0', 0);
10907 #EndIf
10909 #IfRow2D list_options list_id race option_id west_indian
10910 UPDATE `list_options` SET `notes` = '2075-0' WHERE `option_id` = 'west_indian' AND `list_id` = 'race';
10911 #EndIf
10913 #IfRow2D list_options list_id race title West Indian
10914 UPDATE `list_options` SET `notes` = '2075-0' WHERE `title` = 'West Indian' AND `list_id` = 'race';
10915 #EndIf
10917 #IfNotRow2Dx2 list_options list_id race option_id western_cherokee title Western Cherokee
10918 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','western_cherokee','Western Cherokee','8820', '0',' 1098-3', 0);
10919 #EndIf
10921 #IfRow2D list_options list_id race option_id western_cherokee
10922 UPDATE `list_options` SET `notes` = '1098-3' WHERE `option_id` = 'western_cherokee' AND `list_id` = 'race';
10923 #EndIf
10925 #IfRow2D list_options list_id race title Western Cherokee
10926 UPDATE `list_options` SET `notes` = '1098-3' WHERE `title` = 'Western Cherokee' AND `list_id` = 'race';
10927 #EndIf
10929 #IfNotRow2Dx2 list_options list_id race option_id western_chickahominy title Western Chickahominy
10930 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','western_chickahominy','Western Chickahominy','8830', '0',' 1110-6', 0);
10931 #EndIf
10933 #IfRow2D list_options list_id race option_id western_chickahominy
10934 UPDATE `list_options` SET `notes` = '1110-6' WHERE `option_id` = 'western_chickahominy' AND `list_id` = 'race';
10935 #EndIf
10937 #IfRow2D list_options list_id race title Western Chickahominy
10938 UPDATE `list_options` SET `notes` = '1110-6' WHERE `title` = 'Western Chickahominy' AND `list_id` = 'race';
10939 #EndIf
10941 #IfNotRow2Dx2 list_options list_id race option_id whilkut title Whilkut
10942 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','whilkut','Whilkut','8840', '0',' 1273-2', 0);
10943 #EndIf
10945 #IfRow2D list_options list_id race option_id whilkut
10946 UPDATE `list_options` SET `notes` = '1273-2' WHERE `option_id` = 'whilkut' AND `list_id` = 'race';
10947 #EndIf
10949 #IfRow2D list_options list_id race title Whilkut
10950 UPDATE `list_options` SET `notes` = '1273-2' WHERE `title` = 'Whilkut' AND `list_id` = 'race';
10951 #EndIf
10953 #IfNotRow2Dx2 list_options list_id race option_id white_earth title White Earth
10954 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','white_earth','White Earth','8860', '0',' 1148-6', 0);
10955 #EndIf
10957 #IfRow2D list_options list_id race option_id white_earth
10958 UPDATE `list_options` SET `notes` = '1148-6' WHERE `option_id` = 'white_earth' AND `list_id` = 'race';
10959 #EndIf
10961 #IfRow2D list_options list_id race title White Earth
10962 UPDATE `list_options` SET `notes` = '1148-6' WHERE `title` = 'White Earth' AND `list_id` = 'race';
10963 #EndIf
10965 #IfNotRow2Dx2 list_options list_id race option_id white_mountain title White Mountain
10966 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','white_mountain','White Mountain','8870', '0',' 1887-9', 0);
10967 #EndIf
10969 #IfRow2D list_options list_id race option_id white_mountain
10970 UPDATE `list_options` SET `notes` = '1887-9' WHERE `option_id` = 'white_mountain' AND `list_id` = 'race';
10971 #EndIf
10973 #IfRow2D list_options list_id race title White Mountain
10974 UPDATE `list_options` SET `notes` = '1887-9' WHERE `title` = 'White Mountain' AND `list_id` = 'race';
10975 #EndIf
10977 #IfNotRow2Dx2 list_options list_id race option_id white_mountain_apache title White Mountain Apache
10978 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','white_mountain_apache','White Mountain Apache','8880', '0',' 1019-9', 0);
10979 #EndIf
10981 #IfRow2D list_options list_id race option_id white_mountain_apache
10982 UPDATE `list_options` SET `notes` = '1019-9' WHERE `option_id` = 'white_mountain_apache' AND `list_id` = 'race';
10983 #EndIf
10985 #IfRow2D list_options list_id race title White Mountain Apache
10986 UPDATE `list_options` SET `notes` = '1019-9' WHERE `title` = 'White Mountain Apache' AND `list_id` = 'race';
10987 #EndIf
10989 #IfNotRow2Dx2 list_options list_id race option_id white_mountain_inupiat title White Mountain Inupiat
10990 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','white_mountain_inupiat','White Mountain Inupiat','8890', '0',' 1888-7', 0);
10991 #EndIf
10993 #IfRow2D list_options list_id race option_id white_mountain_inupiat
10994 UPDATE `list_options` SET `notes` = '1888-7' WHERE `option_id` = 'white_mountain_inupiat' AND `list_id` = 'race';
10995 #EndIf
10997 #IfRow2D list_options list_id race title White Mountain Inupiat
10998 UPDATE `list_options` SET `notes` = '1888-7' WHERE `title` = 'White Mountain Inupiat' AND `list_id` = 'race';
10999 #EndIf
11001 #IfNotRow2Dx2 list_options list_id race option_id wichita title Wichita
11002 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','wichita','Wichita','8900', '0',' 1692-3', 0);
11003 #EndIf
11005 #IfRow2D list_options list_id race option_id wichita
11006 UPDATE `list_options` SET `notes` = '1692-3' WHERE `option_id` = 'wichita' AND `list_id` = 'race';
11007 #EndIf
11009 #IfRow2D list_options list_id race title Wichita
11010 UPDATE `list_options` SET `notes` = '1692-3' WHERE `title` = 'Wichita' AND `list_id` = 'race';
11011 #EndIf
11013 #IfNotRow2Dx2 list_options list_id race option_id wicomico title Wicomico
11014 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','wicomico','Wicomico','8910', '0',' 1248-4', 0);
11015 #EndIf
11017 #IfRow2D list_options list_id race option_id wicomico
11018 UPDATE `list_options` SET `notes` = '1248-4' WHERE `option_id` = 'wicomico' AND `list_id` = 'race';
11019 #EndIf
11021 #IfRow2D list_options list_id race title Wicomico
11022 UPDATE `list_options` SET `notes` = '1248-4' WHERE `title` = 'Wicomico' AND `list_id` = 'race';
11023 #EndIf
11025 #IfNotRow2Dx2 list_options list_id race option_id willapa_chinook title Willapa Chinook
11026 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','willapa_chinook','Willapa Chinook','8920', '0',' 1120-5', 0);
11027 #EndIf
11029 #IfRow2D list_options list_id race option_id willapa_chinook
11030 UPDATE `list_options` SET `notes` = '1120-5' WHERE `option_id` = 'willapa_chinook' AND `list_id` = 'race';
11031 #EndIf
11033 #IfRow2D list_options list_id race title Willapa Chinook
11034 UPDATE `list_options` SET `notes` = '1120-5' WHERE `title` = 'Willapa Chinook' AND `list_id` = 'race';
11035 #EndIf
11037 #IfNotRow2Dx2 list_options list_id race option_id wind_river title Wind River
11038 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','wind_river','Wind River','8930', '0',' 1694-9', 0);
11039 #EndIf
11041 #IfRow2D list_options list_id race option_id wind_river
11042 UPDATE `list_options` SET `notes` = '1694-9' WHERE `option_id` = 'wind_river' AND `list_id` = 'race';
11043 #EndIf
11045 #IfRow2D list_options list_id race title Wind River
11046 UPDATE `list_options` SET `notes` = '1694-9' WHERE `title` = 'Wind River' AND `list_id` = 'race';
11047 #EndIf
11049 #IfNotRow2Dx2 list_options list_id race option_id wind_river_arapaho title Wind River Arapaho
11050 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','wind_river_arapaho','Wind River Arapaho','8940', '0',' 1024-9', 0);
11051 #EndIf
11053 #IfRow2D list_options list_id race option_id wind_river_arapaho
11054 UPDATE `list_options` SET `notes` = '1024-9' WHERE `option_id` = 'wind_river_arapaho' AND `list_id` = 'race';
11055 #EndIf
11057 #IfRow2D list_options list_id race title Wind River Arapaho
11058 UPDATE `list_options` SET `notes` = '1024-9' WHERE `title` = 'Wind River Arapaho' AND `list_id` = 'race';
11059 #EndIf
11061 #IfNotRow2Dx2 list_options list_id race option_id wind_river_shoshone title Wind River Shoshone
11062 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','wind_river_shoshone','Wind River Shoshone','8950', '0',' 1599-0', 0);
11063 #EndIf
11065 #IfRow2D list_options list_id race option_id wind_river_shoshone
11066 UPDATE `list_options` SET `notes` = '1599-0' WHERE `option_id` = 'wind_river_shoshone' AND `list_id` = 'race';
11067 #EndIf
11069 #IfRow2D list_options list_id race title Wind River Shoshone
11070 UPDATE `list_options` SET `notes` = '1599-0' WHERE `title` = 'Wind River Shoshone' AND `list_id` = 'race';
11071 #EndIf
11073 #IfNotRow2Dx2 list_options list_id race option_id winnebago title Winnebago
11074 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','winnebago','Winnebago','8960', '0',' 1696-4', 0);
11075 #EndIf
11077 #IfRow2D list_options list_id race option_id winnebago
11078 UPDATE `list_options` SET `notes` = '1696-4' WHERE `option_id` = 'winnebago' AND `list_id` = 'race';
11079 #EndIf
11081 #IfRow2D list_options list_id race title Winnebago
11082 UPDATE `list_options` SET `notes` = '1696-4' WHERE `title` = 'Winnebago' AND `list_id` = 'race';
11083 #EndIf
11085 #IfNotRow2Dx2 list_options list_id race option_id winnemucca title Winnemucca
11086 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','winnemucca','Winnemucca','8970', '0',' 1700-4', 0);
11087 #EndIf
11089 #IfRow2D list_options list_id race option_id winnemucca
11090 UPDATE `list_options` SET `notes` = '1700-4' WHERE `option_id` = 'winnemucca' AND `list_id` = 'race';
11091 #EndIf
11093 #IfRow2D list_options list_id race title Winnemucca
11094 UPDATE `list_options` SET `notes` = '1700-4' WHERE `title` = 'Winnemucca' AND `list_id` = 'race';
11095 #EndIf
11097 #IfNotRow2Dx2 list_options list_id race option_id wintun title Wintun
11098 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','wintun','Wintun','8980', '0',' 1702-0', 0);
11099 #EndIf
11101 #IfRow2D list_options list_id race option_id wintun
11102 UPDATE `list_options` SET `notes` = '1702-0' WHERE `option_id` = 'wintun' AND `list_id` = 'race';
11103 #EndIf
11105 #IfRow2D list_options list_id race title Wintun
11106 UPDATE `list_options` SET `notes` = '1702-0' WHERE `title` = 'Wintun' AND `list_id` = 'race';
11107 #EndIf
11109 #IfNotRow2Dx2 list_options list_id race option_id wisconsin_potawatomi title Wisconsin Potawatomi
11110 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','wisconsin_potawatomi','Wisconsin Potawatomi','8990', '0',' 1485-2', 0);
11111 #EndIf
11113 #IfRow2D list_options list_id race option_id wisconsin_potawatomi
11114 UPDATE `list_options` SET `notes` = '1485-2' WHERE `option_id` = 'wisconsin_potawatomi' AND `list_id` = 'race';
11115 #EndIf
11117 #IfRow2D list_options list_id race title Wisconsin Potawatomi
11118 UPDATE `list_options` SET `notes` = '1485-2' WHERE `title` = 'Wisconsin Potawatomi' AND `list_id` = 'race';
11119 #EndIf
11121 #IfNotRow2Dx2 list_options list_id race option_id wiseman title Wiseman
11122 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','wiseman','Wiseman','9000', '0',' 1809-3', 0);
11123 #EndIf
11125 #IfRow2D list_options list_id race option_id wiseman
11126 UPDATE `list_options` SET `notes` = '1809-3' WHERE `option_id` = 'wiseman' AND `list_id` = 'race';
11127 #EndIf
11129 #IfRow2D list_options list_id race title Wiseman
11130 UPDATE `list_options` SET `notes` = '1809-3' WHERE `title` = 'Wiseman' AND `list_id` = 'race';
11131 #EndIf
11133 #IfNotRow2Dx2 list_options list_id race option_id wishram title Wishram
11134 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','wishram','Wishram','9010', '0',' 1121-3', 0);
11135 #EndIf
11137 #IfRow2D list_options list_id race option_id wishram
11138 UPDATE `list_options` SET `notes` = '1121-3' WHERE `option_id` = 'wishram' AND `list_id` = 'race';
11139 #EndIf
11141 #IfRow2D list_options list_id race title Wishram
11142 UPDATE `list_options` SET `notes` = '1121-3' WHERE `title` = 'Wishram' AND `list_id` = 'race';
11143 #EndIf
11145 #IfNotRow2Dx2 list_options list_id race option_id wiyot title Wiyot
11146 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','wiyot','Wiyot','9020', '0',' 1704-6', 0);
11147 #EndIf
11149 #IfRow2D list_options list_id race option_id wiyot
11150 UPDATE `list_options` SET `notes` = '1704-6' WHERE `option_id` = 'wiyot' AND `list_id` = 'race';
11151 #EndIf
11153 #IfRow2D list_options list_id race title Wiyot
11154 UPDATE `list_options` SET `notes` = '1704-6' WHERE `title` = 'Wiyot' AND `list_id` = 'race';
11155 #EndIf
11157 #IfNotRow2Dx2 list_options list_id race option_id wrangell title Wrangell
11158 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','wrangell','Wrangell','9030', '0',' 1834-1', 0);
11159 #EndIf
11161 #IfRow2D list_options list_id race option_id wrangell
11162 UPDATE `list_options` SET `notes` = '1834-1' WHERE `option_id` = 'wrangell' AND `list_id` = 'race';
11163 #EndIf
11165 #IfRow2D list_options list_id race title Wrangell
11166 UPDATE `list_options` SET `notes` = '1834-1' WHERE `title` = 'Wrangell' AND `list_id` = 'race';
11167 #EndIf
11169 #IfNotRow2Dx2 list_options list_id race option_id wyandotte title Wyandotte
11170 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','wyandotte','Wyandotte','9040', '0',' 1295-5', 0);
11171 #EndIf
11173 #IfRow2D list_options list_id race option_id wyandotte
11174 UPDATE `list_options` SET `notes` = '1295-5' WHERE `option_id` = 'wyandotte' AND `list_id` = 'race';
11175 #EndIf
11177 #IfRow2D list_options list_id race title Wyandotte
11178 UPDATE `list_options` SET `notes` = '1295-5' WHERE `title` = 'Wyandotte' AND `list_id` = 'race';
11179 #EndIf
11181 #IfNotRow2Dx2 list_options list_id race option_id yahooskin title Yahooskin
11182 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','yahooskin','Yahooskin','9050', '0',' 1401-9', 0);
11183 #EndIf
11185 #IfRow2D list_options list_id race option_id yahooskin
11186 UPDATE `list_options` SET `notes` = '1401-9' WHERE `option_id` = 'yahooskin' AND `list_id` = 'race';
11187 #EndIf
11189 #IfRow2D list_options list_id race title Yahooskin
11190 UPDATE `list_options` SET `notes` = '1401-9' WHERE `title` = 'Yahooskin' AND `list_id` = 'race';
11191 #EndIf
11193 #IfNotRow2Dx2 list_options list_id race option_id yakama title Yakama
11194 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','yakama','Yakama','9060', '0',' 1707-9', 0);
11195 #EndIf
11197 #IfRow2D list_options list_id race option_id yakama
11198 UPDATE `list_options` SET `notes` = '1707-9' WHERE `option_id` = 'yakama' AND `list_id` = 'race';
11199 #EndIf
11201 #IfRow2D list_options list_id race title Yakama
11202 UPDATE `list_options` SET `notes` = '1707-9' WHERE `title` = 'Yakama' AND `list_id` = 'race';
11203 #EndIf
11205 #IfNotRow2Dx2 list_options list_id race option_id yakama_cowlitz title Yakama Cowlitz
11206 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','yakama_cowlitz','Yakama Cowlitz','9070', '0',' 1709-5', 0);
11207 #EndIf
11209 #IfRow2D list_options list_id race option_id yakama_cowlitz
11210 UPDATE `list_options` SET `notes` = '1709-5' WHERE `option_id` = 'yakama_cowlitz' AND `list_id` = 'race';
11211 #EndIf
11213 #IfRow2D list_options list_id race title Yakama Cowlitz
11214 UPDATE `list_options` SET `notes` = '1709-5' WHERE `title` = 'Yakama Cowlitz' AND `list_id` = 'race';
11215 #EndIf
11217 #IfNotRow2Dx2 list_options list_id race option_id yakutat title Yakutat
11218 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','yakutat','Yakutat','9080', '0',' 1835-8', 0);
11219 #EndIf
11221 #IfRow2D list_options list_id race option_id yakutat
11222 UPDATE `list_options` SET `notes` = '1835-8' WHERE `option_id` = 'yakutat' AND `list_id` = 'race';
11223 #EndIf
11225 #IfRow2D list_options list_id race title Yakutat
11226 UPDATE `list_options` SET `notes` = '1835-8' WHERE `title` = 'Yakutat' AND `list_id` = 'race';
11227 #EndIf
11229 #IfNotRow2Dx2 list_options list_id race option_id yana title Yana
11230 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','yana','Yana','9090', '0',' 1065-2', 0);
11231 #EndIf
11233 #IfRow2D list_options list_id race option_id yana
11234 UPDATE `list_options` SET `notes` = '1065-2' WHERE `option_id` = 'yana' AND `list_id` = 'race';
11235 #EndIf
11237 #IfRow2D list_options list_id race title Yana
11238 UPDATE `list_options` SET `notes` = '1065-2' WHERE `title` = 'Yana' AND `list_id` = 'race';
11239 #EndIf
11241 #IfNotRow2Dx2 list_options list_id race option_id yankton_sioux title Yankton Sioux
11242 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','yankton_sioux','Yankton Sioux','9100', '0',' 1640-2', 0);
11243 #EndIf
11245 #IfRow2D list_options list_id race option_id yankton_sioux
11246 UPDATE `list_options` SET `notes` = '1640-2' WHERE `option_id` = 'yankton_sioux' AND `list_id` = 'race';
11247 #EndIf
11249 #IfRow2D list_options list_id race title Yankton Sioux
11250 UPDATE `list_options` SET `notes` = '1640-2' WHERE `title` = 'Yankton Sioux' AND `list_id` = 'race';
11251 #EndIf
11253 #IfNotRow2Dx2 list_options list_id race option_id yanktonai_sioux title Yanktonai Sioux
11254 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','yanktonai_sioux','Yanktonai Sioux','9110', '0',' 1641-0', 0);
11255 #EndIf
11257 #IfRow2D list_options list_id race option_id yanktonai_sioux
11258 UPDATE `list_options` SET `notes` = '1641-0' WHERE `option_id` = 'yanktonai_sioux' AND `list_id` = 'race';
11259 #EndIf
11261 #IfRow2D list_options list_id race title Yanktonai Sioux
11262 UPDATE `list_options` SET `notes` = '1641-0' WHERE `title` = 'Yanktonai Sioux' AND `list_id` = 'race';
11263 #EndIf
11265 #IfNotRow2Dx2 list_options list_id race option_id yapese title Yapese
11266 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','yapese','Yapese','9120', '0',' 2098-2', 0);
11267 #EndIf
11269 #IfRow2D list_options list_id race option_id yapese
11270 UPDATE `list_options` SET `notes` = '2098-2' WHERE `option_id` = 'yapese' AND `list_id` = 'race';
11271 #EndIf
11273 #IfRow2D list_options list_id race title Yapese
11274 UPDATE `list_options` SET `notes` = '2098-2' WHERE `title` = 'Yapese' AND `list_id` = 'race';
11275 #EndIf
11277 #IfNotRow2Dx2 list_options list_id race option_id yaqui title Yaqui
11278 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','yaqui','Yaqui','9130', '0',' 1711-1', 0);
11279 #EndIf
11281 #IfRow2D list_options list_id race option_id yaqui
11282 UPDATE `list_options` SET `notes` = '1711-1' WHERE `option_id` = 'yaqui' AND `list_id` = 'race';
11283 #EndIf
11285 #IfRow2D list_options list_id race title Yaqui
11286 UPDATE `list_options` SET `notes` = '1711-1' WHERE `title` = 'Yaqui' AND `list_id` = 'race';
11287 #EndIf
11289 #IfNotRow2Dx2 list_options list_id race option_id yavapai title Yavapai
11290 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','yavapai','Yavapai','9140', '0',' 1731-9', 0);
11291 #EndIf
11293 #IfRow2D list_options list_id race option_id yavapai
11294 UPDATE `list_options` SET `notes` = '1731-9' WHERE `option_id` = 'yavapai' AND `list_id` = 'race';
11295 #EndIf
11297 #IfRow2D list_options list_id race title Yavapai
11298 UPDATE `list_options` SET `notes` = '1731-9' WHERE `title` = 'Yavapai' AND `list_id` = 'race';
11299 #EndIf
11301 #IfNotRow2Dx2 list_options list_id race option_id yavapai_apache title Yavapai Apache
11302 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','yavapai_apache','Yavapai Apache','9150', '0',' 1715-2', 0);
11303 #EndIf
11305 #IfRow2D list_options list_id race option_id yavapai_apache
11306 UPDATE `list_options` SET `notes` = '1715-2' WHERE `option_id` = 'yavapai_apache' AND `list_id` = 'race';
11307 #EndIf
11309 #IfRow2D list_options list_id race title Yavapai Apache
11310 UPDATE `list_options` SET `notes` = '1715-2' WHERE `title` = 'Yavapai Apache' AND `list_id` = 'race';
11311 #EndIf
11313 #IfNotRow2Dx2 list_options list_id race option_id yerington_paiute title Yerington Paiute
11314 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','yerington_paiute','Yerington Paiute','9160', '0',' 1437-3', 0);
11315 #EndIf
11317 #IfRow2D list_options list_id race option_id yerington_paiute
11318 UPDATE `list_options` SET `notes` = '1437-3' WHERE `option_id` = 'yerington_paiute' AND `list_id` = 'race';
11319 #EndIf
11321 #IfRow2D list_options list_id race title Yerington Paiute
11322 UPDATE `list_options` SET `notes` = '1437-3' WHERE `title` = 'Yerington Paiute' AND `list_id` = 'race';
11323 #EndIf
11325 #IfNotRow2Dx2 list_options list_id race option_id yokuts title Yokuts
11326 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','yokuts','Yokuts','9170', '0',' 1717-8', 0);
11327 #EndIf
11329 #IfRow2D list_options list_id race option_id yokuts
11330 UPDATE `list_options` SET `notes` = '1717-8' WHERE `option_id` = 'yokuts' AND `list_id` = 'race';
11331 #EndIf
11333 #IfRow2D list_options list_id race title Yokuts
11334 UPDATE `list_options` SET `notes` = '1717-8' WHERE `title` = 'Yokuts' AND `list_id` = 'race';
11335 #EndIf
11337 #IfNotRow2Dx2 list_options list_id race option_id yomba title Yomba
11338 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','yomba','Yomba','9180', '0',' 1600-6', 0);
11339 #EndIf
11341 #IfRow2D list_options list_id race option_id yomba
11342 UPDATE `list_options` SET `notes` = '1600-6' WHERE `option_id` = 'yomba' AND `list_id` = 'race';
11343 #EndIf
11345 #IfRow2D list_options list_id race title Yomba
11346 UPDATE `list_options` SET `notes` = '1600-6' WHERE `title` = 'Yomba' AND `list_id` = 'race';
11347 #EndIf
11349 #IfNotRow2Dx2 list_options list_id race option_id yuchi title Yuchi
11350 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','yuchi','Yuchi','9190', '0',' 1722-8', 0);
11351 #EndIf
11353 #IfRow2D list_options list_id race option_id yuchi
11354 UPDATE `list_options` SET `notes` = '1722-8' WHERE `option_id` = 'yuchi' AND `list_id` = 'race';
11355 #EndIf
11357 #IfRow2D list_options list_id race title Yuchi
11358 UPDATE `list_options` SET `notes` = '1722-8' WHERE `title` = 'Yuchi' AND `list_id` = 'race';
11359 #EndIf
11361 #IfNotRow2Dx2 list_options list_id race option_id yuki title Yuki
11362 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','yuki','Yuki','9200', '0',' 1066-0', 0);
11363 #EndIf
11365 #IfRow2D list_options list_id race option_id yuki
11366 UPDATE `list_options` SET `notes` = '1066-0' WHERE `option_id` = 'yuki' AND `list_id` = 'race';
11367 #EndIf
11369 #IfRow2D list_options list_id race title Yuki
11370 UPDATE `list_options` SET `notes` = '1066-0' WHERE `title` = 'Yuki' AND `list_id` = 'race';
11371 #EndIf
11373 #IfNotRow2Dx2 list_options list_id race option_id yuman title Yuman
11374 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','yuman','Yuman','9210', '0',' 1724-4', 0);
11375 #EndIf
11377 #IfRow2D list_options list_id race option_id yuman
11378 UPDATE `list_options` SET `notes` = '1724-4' WHERE `option_id` = 'yuman' AND `list_id` = 'race';
11379 #EndIf
11381 #IfRow2D list_options list_id race title Yuman
11382 UPDATE `list_options` SET `notes` = '1724-4' WHERE `title` = 'Yuman' AND `list_id` = 'race';
11383 #EndIf
11385 #IfNotRow2Dx2 list_options list_id race option_id yupik_eskimo title Yupik Eskimo
11386 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','yupik_eskimo','Yupik Eskimo','9220', '0',' 1896-0', 0);
11387 #EndIf
11389 #IfRow2D list_options list_id race option_id yupik_eskimo
11390 UPDATE `list_options` SET `notes` = '1896-0' WHERE `option_id` = 'yupik_eskimo' AND `list_id` = 'race';
11391 #EndIf
11393 #IfRow2D list_options list_id race title Yupik Eskimo
11394 UPDATE `list_options` SET `notes` = '1896-0' WHERE `title` = 'Yupik Eskimo' AND `list_id` = 'race';
11395 #EndIf
11397 #IfNotRow2Dx2 list_options list_id race option_id yurok title Yurok
11398 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','yurok','Yurok','9230', '0',' 1732-7', 0);
11399 #EndIf
11401 #IfRow2D list_options list_id race option_id yurok
11402 UPDATE `list_options` SET `notes` = '1732-7' WHERE `option_id` = 'yurok' AND `list_id` = 'race';
11403 #EndIf
11405 #IfRow2D list_options list_id race title Yurok
11406 UPDATE `list_options` SET `notes` = '1732-7' WHERE `title` = 'Yurok' AND `list_id` = 'race';
11407 #EndIf
11409 #IfNotRow2Dx2 list_options list_id race option_id zairean title Zairean
11410 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','zairean','Zairean','9240', '0',' 2066-9', 0);
11411 #EndIf
11413 #IfRow2D list_options list_id race option_id zairean
11414 UPDATE `list_options` SET `notes` = '2066-9' WHERE `option_id` = 'zairean' AND `list_id` = 'race';
11415 #EndIf
11417 #IfRow2D list_options list_id race title Zairean
11418 UPDATE `list_options` SET `notes` = '2066-9' WHERE `title` = 'Zairean' AND `list_id` = 'race';
11419 #EndIf
11421 #IfNotRow2Dx2 list_options list_id race option_id zia title Zia
11422 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','zia','Zia','9250', '0',' 1515-6', 0);
11423 #EndIf
11425 #IfRow2D list_options list_id race option_id zia
11426 UPDATE `list_options` SET `notes` = '1515-6' WHERE `option_id` = 'zia' AND `list_id` = 'race';
11427 #EndIf
11429 #IfRow2D list_options list_id race title Zia
11430 UPDATE `list_options` SET `notes` = '1515-6' WHERE `title` = 'Zia' AND `list_id` = 'race';
11431 #EndIf
11433 #IfNotRow2Dx2 list_options list_id race option_id zuni title Zuni
11434 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','zuni','Zuni','9260', '0',' 1516-4', 0);
11435 #EndIf
11437 #IfRow2D list_options list_id race option_id zuni
11438 UPDATE `list_options` SET `notes` = '1516-4' WHERE `option_id` = 'zuni' AND `list_id` = 'race';
11439 #EndIf
11441 #IfRow2D list_options list_id race title Zuni
11442 UPDATE `list_options` SET `notes` = '1516-4' WHERE `title` = 'Zuni' AND `list_id` = 'race';
11443 #EndIf
11445 #IfMissingColumn lists severity_al
11446 ALTER TABLE lists ADD COLUMN severity_al VARCHAR(50) DEFAULT NULL;
11447 #EndIf
11449 #IfNotRow2D list_options list_id lists option_id severity_ccda
11450 INSERT INTO list_options (list_id, option_id, title) VALUES ('lists','severity_ccda','Severity');
11451 INSERT INTO list_options (list_id, option_id, title, codes, seq) values ('severity_ccda','unassigned','Unassigned','','10');
11452 INSERT INTO list_options (list_id, option_id, title, codes, seq) values ('severity_ccda','mild','Mild','SNOMED-CT:255604002','20');
11453 INSERT INTO list_options (list_id, option_id, title, codes, seq) values ('severity_ccda','mild_to_moderate','Mild to moderate','SNOMED-CT:371923003','30');
11454 INSERT INTO list_options (list_id, option_id, title, codes, seq) values ('severity_ccda','moderate','Moderate','SNOMED-CT:6736007','40');
11455 INSERT INTO list_options (list_id, option_id, title, codes, seq) values ('severity_ccda','moderate_to_severe','Moderate to severe','SNOMED-CT:371924009','50');
11456 INSERT INTO list_options (list_id, option_id, title, codes, seq) values ('severity_ccda','severe','Severe','SNOMED-CT:24484000','60');
11457 INSERT INTO list_options (list_id, option_id, title, codes, seq) values ('severity_ccda','life_threatening_severity','Life threatening severity','SNOMED-CT:442452003','70');
11458 INSERT INTO list_options (list_id, option_id, title, codes, seq) values ('severity_ccda','fatal','Fatal','SNOMED-CT:399166001','80');
11459 #EndIf
11461 #IfNotRow3D list_options list_id drug_route notes PO title Per Oris
11462 UPDATE list_options SET list_options.notes = 'PO' WHERE list_options.list_id = 'drug_route' AND title = 'Per Oris';
11463 #EndIf
11465 #IfNotRow3D list_options list_id drug_route notes OTH title Per Rectum
11466 UPDATE list_options SET list_options.notes = 'OTH' WHERE list_options.list_id = 'drug_route' AND title = 'Per Rectum';
11467 #EndIf
11469 #IfNotRow3D list_options list_id drug_route notes OTH title To Skin
11470 UPDATE list_options SET list_options.notes = 'OTH' WHERE list_options.list_id = 'drug_route' AND title = 'To Skin';
11471 #EndIf
11473 #IfNotRow3D list_options list_id drug_route notes OTH title To Affected Area
11474 UPDATE list_options SET list_options.notes = 'OTH' WHERE list_options.list_id = 'drug_route' AND title = 'To Affected Area';
11475 #EndIf
11477 #IfNotRow3D list_options list_id drug_route notes OTH title Sublingual
11478 UPDATE list_options SET list_options.notes = 'OTH' WHERE list_options.list_id = 'drug_route' AND title = 'Sublingual';
11479 #EndIf
11481 #IfNotRow3D list_options list_id drug_route notes OTH title OS
11482 UPDATE list_options SET list_options.notes = 'OTH' WHERE list_options.list_id = 'drug_route' AND title = 'OS';
11483 #EndIf
11485 #IfNotRow3D list_options list_id drug_route notes OTH title OD
11486 UPDATE list_options SET list_options.notes = 'OTH' WHERE list_options.list_id = 'drug_route' AND title = 'OD';
11487 #EndIf
11489 #IfNotRow3D list_options list_id drug_route notes OTH title OU
11490 UPDATE list_options SET list_options.notes = 'OTH' WHERE list_options.list_id = 'drug_route' AND title = 'OU';
11491 #EndIf
11493 #IfNotRow3D list_options list_id drug_route notes OTH title SQ
11494 UPDATE list_options SET list_options.notes = 'OTH' WHERE list_options.list_id = 'drug_route' AND title = 'SQ';
11495 #EndIf
11497 #IfNotRow3D list_options list_id drug_route notes IM title IM
11498 UPDATE list_options SET list_options.notes = 'IM' WHERE list_options.list_id = 'drug_route' AND title = 'IM';
11499 #EndIf
11501 #IfNotRow3D list_options list_id drug_route notes IV title IV
11502 UPDATE list_options SET list_options.notes = 'IV' WHERE list_options.list_id = 'drug_route' AND title = 'IV';
11503 #EndIf
11505 #IfNotRow3D list_options list_id drug_route notes NS title Per Nostril
11506 UPDATE list_options SET list_options.notes = 'NS' WHERE list_options.list_id = 'drug_route' AND title = 'Per Nostril';
11507 #EndIf
11509 #IfNotRow3D list_options list_id drug_route notes OTH title Both Ears
11510 UPDATE list_options SET list_options.notes = 'OTH' WHERE list_options.list_id = 'drug_route' AND title = 'Both Ears';
11511 #EndIf
11513 #IfNotRow3D list_options list_id drug_route notes OTH title Left Ear
11514 UPDATE list_options SET list_options.notes = 'OTH' WHERE list_options.list_id = 'drug_route' AND title = 'Left Ear';
11515 #EndIf
11517 #IfNotRow3D list_options list_id drug_route notes OTH title Right Ear
11518 UPDATE list_options SET list_options.notes = 'OTH' WHERE list_options.list_id = 'drug_route' AND title = 'Right Ear';
11519 #EndIf
11521 #IfNotRow2Dx2 list_options list_id drug_route title intradermal title Intradermal
11522 INSERT INTO list_options ( list_id, option_id, title, seq,  notes ) VALUES ('drug_route', 'intradermal', 'Intradermal', 20, 'ID');
11523 #EndIf
11525 #IfNotRow2Dx2 list_options list_id drug_route title other title Other/Miscellaneous
11526 INSERT INTO list_options ( list_id, option_id, title, seq, notes ) VALUES ('drug_route', 'other', 'Other/Miscellaneous', 30, 'OTH');
11527 #EndIf
11529 #IfNotRow2Dx2 list_options list_id drug_route title transdermal title Transdermal
11530 INSERT INTO list_options ( list_id, option_id, title, seq, notes ) VALUES ('drug_route', 'transdermal', 'Transdermal', 40, 'TD');
11531 #EndIf
11533 #IfNotRow2D list_options list_id lists option_id physician_type
11534 INSERT INTO list_options (list_id,option_id,title) VALUES ('lists','physician_type','Physician Type');
11535 INSERT INTO list_options (list_id, option_id, codes,title, seq) VALUES ('physician_type','attending_physician','SNOMED-CT:405279007','Attending physician', '10');
11536 INSERT INTO list_options (list_id, option_id, codes,title, seq) VALUES ('physician_type','audiological_physician','SNOMED-CT:310172001','Audiological physician', '20');
11537 INSERT INTO list_options (list_id, option_id, codes,title, seq) VALUES ('physician_type','chest_physician','SNOMED-CT:309345004','Chest physician', '30');
11538 INSERT INTO list_options (list_id, option_id, codes,title, seq) VALUES ('physician_type','community_health_physician','SNOMED-CT:23278007','Community health physician', '40');
11539 INSERT INTO list_options (list_id, option_id, codes,title, seq) VALUES ('physician_type','consultant_physician','SNOMED-CT:158967008','Consultant physician', '50');
11540 INSERT INTO list_options (list_id, option_id, codes,title, seq) VALUES ('physician_type','general_physician','SNOMED-CT:59058001','General physician', '60');
11541 INSERT INTO list_options (list_id, option_id, codes,title, seq) VALUES ('physician_type','genitourinarymedicinephysician','SNOMED-CT:309358003','Genitourinary medicine physician', '70');
11542 INSERT INTO list_options (list_id, option_id, codes,title, seq) VALUES ('physician_type','occupational_physician','SNOMED-CT:158973009','Occupational physician', '80');
11543 INSERT INTO list_options (list_id, option_id, codes,title, seq) VALUES ('physician_type','palliative_care_physician','SNOMED-CT:309359006','Palliative care physician', '90');
11544 INSERT INTO list_options (list_id, option_id, codes,title, seq) VALUES ('physician_type','physician','SNOMED-CT:309343006','Physician', '100');
11545 INSERT INTO list_options (list_id, option_id, codes,title, seq) VALUES ('physician_type','public_health_physician','SNOMED-CT:56466003','Public health physician', '110');
11546 INSERT INTO list_options (list_id, option_id, codes,title, seq) VALUES ('physician_type','rehabilitation_physician','SNOMED-CT:309360001','Rehabilitation physician', '120');
11547 INSERT INTO list_options (list_id, option_id, codes,title, seq) VALUES ('physician_type','resident_physician','SNOMED-CT:405277009','Resident physician', '130');
11548 INSERT INTO list_options (list_id, option_id, codes,title, seq) VALUES ('physician_type','specialized_physician','SNOMED-CT:69280009','Specialized physician', '140');
11549 INSERT INTO list_options (list_id, option_id, codes,title, seq) VALUES ('physician_type','thoracic_physician','SNOMED-CT:309346003','Thoracic physician', '150');
11550 #EndIf
11552 #IfNotRow3D list_options list_id marital option_id married notes M
11553 update list_options set notes = 'M' where list_id = 'marital' and option_id = 'married';
11554 #EndIf
11556 #IfNotRow3D list_options list_id marital option_id single notes S
11557 update list_options set notes = 'S' where list_id = 'marital' and option_id = 'single';
11558 #EndIf
11560 #IfNotRow3D list_options list_id marital option_id divorced notes D
11561 update list_options set notes = 'D' where list_id = 'marital' and option_id = 'divorced';
11562 #EndIf
11564 #IfNotRow3D list_options list_id marital option_id widowed notes W
11565 update list_options set notes = 'W' where list_id = 'marital' and option_id = 'widowed';
11566 #EndIf
11568 #IfNotRow3D list_options list_id marital option_id separated notes L
11569 update list_options set notes = 'L' where list_id = 'marital' and option_id = 'separated';
11570 update list_options set notes = 'T' where list_id = 'marital' and option_id = 'domestic partner';
11571 #EndIf
11573 #IfMissingColumn users physician_type
11574 ALTER TABLE users ADD COLUMN physician_type VARCHAR(50) DEFAULT NULL;
11575 #EndIf
11577 #IfMissingColumn facility facility_code
11578 ALTER TABLE facility ADD COLUMN facility_code VARCHAR(31) default NULL;
11579 #EndIf
11581 #IfMissingColumn documents audit_master_approval_status
11582 ALTER TABLE documents ADD COLUMN audit_master_approval_status TINYINT DEFAULT 1 NOT NULL COMMENT 'approval_status from audit_master table';
11583 #EndIf
11585 #IfMissingColumn documents audit_master_id
11586 ALTER TABLE documents ADD COLUMN  audit_master_id int(11) default NULL;
11587 #EndIf
11589 #IfMissingColumn patient_data religion
11590 SET @group_name = (SELECT group_name FROM layout_options WHERE field_id='ethnicity' AND form_id='DEM');
11591 SET @backup_group_name = (SELECT group_name FROM layout_options WHERE field_id='DOB' AND form_id='DEM');
11592 SET @seq = (SELECT MAX(seq) FROM layout_options WHERE group_name = IFNULL(@group_name,@backup_group_name) AND form_id='DEM');
11593 INSERT INTO `layout_options` (`form_id`, `field_id`, `group_name`, `title`, `seq`, `data_type`, `uor`, `fld_length`, `max_length`, `list_id`, `titlecols`, `datacols`, `default_value`, `edit_options`, `description`) VALUES ('DEM', 'religion', IFNULL(@group_name,@backup_group_name), 'Religion', @seq+1, 1, 1, 0, 0, 'religious_affiliation', 1, 3, '', '', 'Patient Religion' ) ;
11594 ALTER TABLE patient_data ADD COLUMN religion varchar(40) NOT NULL default '';
11595 #EndIf
11597 #IfNotRow categories name CCDA
11598 INSERT INTO categories (id, name, value, parent, lft, rght) select (select MAX(id) from categories) + 1, 'CCDA', '', 1, rght, rght + 1 from categories where name = 'Categories';
11599 UPDATE categories SET rght = rght + 2 WHERE name = 'Categories';
11600 UPDATE categories_seq SET id = (select MAX(id) from categories);
11601 #Endif
11603 #IfNotRow2D list_options list_id abook_type option_id ccda
11604 INSERT INTO list_options (list_id, option_id, title, seq, option_value) VALUES ('abook_type', 'ccda', 'Care Coordination', 35, 2);
11605 #EndIf
11607 #IfNotRow2D list_options list_id abook_type option_id emr_direct
11608 INSERT INTO list_options (list_id, option_id, title , seq, option_value) VALUES ('abook_type', 'emr_direct', 'EMR Direct' ,105, 4);
11609 #EndIf
11611 #IfNotRow2D list_options list_id abook_type option_id external_provider
11612 INSERT INTO list_options (list_id, option_id, title , seq, option_value) VALUES ('abook_type', 'external_provider', 'External Provider' ,110, 1);
11613 #EndIf
11615 #IfNotRow2D list_options list_id abook_type option_id external_org
11616 INSERT INTO list_options (list_id, option_id, title , seq, option_value) VALUES ('abook_type', 'external_org', 'External Organization' ,120, 1);
11617 #EndIf
11619 #IfMissingColumn immunizations external_id
11620 ALTER TABLE `immunizations` ADD COLUMN `external_id` VARCHAR(20) DEFAULT NULL;
11621 #EndIf
11623 #IfMissingColumn prescriptions external_id
11624 ALTER TABLE `prescriptions` ADD COLUMN `external_id` VARCHAR(20) DEFAULT NULL;
11625 #EndIf
11627 #IfMissingColumn lists external_id
11628 ALTER TABLE `lists` ADD COLUMN `external_id` VARCHAR(20) DEFAULT NULL;
11629 #EndIf
11631 #IfMissingColumn form_vitals external_id
11632 ALTER TABLE `form_vitals` ADD COLUMN `external_id` VARCHAR(20) DEFAULT NULL;
11633 #EndIf
11635 #IfMissingColumn form_encounter external_id
11636 ALTER TABLE `form_encounter` ADD COLUMN `external_id` VARCHAR(20) DEFAULT NULL;
11637 #EndIf
11639 #IfMissingColumn billing external_id
11640 ALTER TABLE `billing` ADD COLUMN `external_id` VARCHAR(20) DEFAULT NULL;
11641 #EndIf
11643 #IfMissingColumn procedure_order external_id
11644 ALTER TABLE `procedure_order` ADD COLUMN `external_id` VARCHAR(20) DEFAULT NULL;
11645 #EndIf
11647 #IfMissingColumn patient_data industry
11648 SET @group_name = (SELECT group_name FROM layout_options WHERE field_id='occupation' AND form_id='DEM');
11649 SET @backup_group_name = (SELECT group_name FROM layout_options WHERE field_id='DOB' AND form_id='DEM');
11650 SET @seq = (SELECT MAX(seq) FROM layout_options WHERE group_name = IFNULL(@group_name,@backup_group_name) AND form_id='DEM');
11651 INSERT INTO `layout_options` (`form_id`, `field_id`, `group_name`, `title`, `seq`, `data_type`, `uor`, `fld_length`, `max_length`, `list_id`, `titlecols`, `datacols`, `default_value`, `edit_options`, `description`) VALUES ('DEM', 'industry', IFNULL(@group_name,@backup_group_name), 'Industry', @seq+1, 1, 1, 0, 0, 'Industry', 1, 1, '', '', 'Industry' ) ;
11652 ALTER TABLE patient_data ADD COLUMN industry TEXT NOT NULL;
11653 #EndIf
11655 #IfNotRow2D list_options list_id lists option_id Industry
11656 INSERT INTO `list_options` (`list_id`, `option_id`, `title`) VALUES('lists','Industry','Industry');
11657 INSERT INTO list_options ( list_id, option_id, title, seq ) VALUES ('Industry', 'law_firm', 'Law Firm', 10);
11658 INSERT INTO list_options ( list_id, option_id, title, seq ) VALUES ('Industry', 'engineering_firm', 'Engineering Firm', 20);
11659 INSERT INTO list_options ( list_id, option_id, title, seq ) VALUES ('Industry', 'construction_firm', 'Construction Firm', 30);
11660 #EndIf
11662 #IfNotListOccupation
11663 #EndIf
11665 #IfNotRow2D list_options list_id Occupation option_id lawyer
11666 SET @max_list_id = (SELECT MAX(seq) FROM list_options WHERE list_id='Occupation');
11667 INSERT INTO list_options ( list_id, option_id, title, seq ) VALUES ('Occupation', 'lawyer', 'Lawyer', IFNULL(@max_list_id,0) + 10);
11668 #EndIf
11670 #IfNotRow2D list_options list_id Occupation option_id engineer
11671 SET @max_list_id = (SELECT MAX(seq) FROM list_options WHERE list_id='Occupation');
11672 INSERT INTO list_options ( list_id, option_id, title, seq ) VALUES ('Occupation', 'engineer', 'Engineer', (@max_list_id+10));
11673 #EndIf
11675 #IfNotRow2D list_options list_id Occupation option_id site_worker
11676 SET @max_list_id = (SELECT MAX(seq) FROM list_options WHERE list_id='Occupation');
11677 INSERT INTO list_options ( list_id, option_id, title, seq ) VALUES ('Occupation', 'site_worker', 'Site Worker', (@max_list_id+10));
11678 #EndIf
11680 #IfNotRow3D layout_options field_id occupation form_id DEM data_type 26
11681 UPDATE layout_options SET list_id='Occupation', data_type='26', fld_length='0', max_length='0', edit_options='' WHERE field_id='occupation' AND form_id='DEM';
11682 #EndIf
11684 #IfMissingColumn patient_access_offsite portal_relation
11685 ALTER TABLE patient_access_offsite ADD COLUMN portal_relation VARCHAR(100) NULL;
11686 #EndIf
11688 #IfMissingColumn pnotes portal_relation
11689 ALTER TABLE pnotes ADD COLUMN `portal_relation` VARCHAR(100) NULL;
11690 #EndIf
11692 #IfMissingColumn pnotes is_msg_encrypted
11693 ALTER TABLE pnotes ADD is_msg_encrypted TINYINT(2) DEFAULT '0' COMMENT 'Whether messsage encrypted 0-Not encrypted, 1-Encrypted'; 
11694 #EndIf
11696 #IfMissingColumn log log_from
11697 ALTER TABLE `log` ADD `log_from` VARCHAR(20) DEFAULT 'open-emr'; 
11698 #EndIf
11700 #IfMissingColumn log menu_item_id
11701 ALTER TABLE `log` ADD `menu_item_id` INT(11) DEFAULT NULL;
11702 #EndIf
11704 #IfNotTable patient_portal_menu
11705 CREATE TABLE `patient_portal_menu` (
11706   `patient_portal_menu_id` INT(11) NOT NULL AUTO_INCREMENT,
11707   `patient_portal_menu_group_id` INT(11) DEFAULT NULL,
11708   `menu_name` VARCHAR(40) DEFAULT NULL,
11709   `menu_order` SMALLINT(4) DEFAULT NULL,
11710   `menu_status` TINYINT(2) DEFAULT '1',
11711   PRIMARY KEY (`patient_portal_menu_id`)
11712 ) ENGINE=INNODB AUTO_INCREMENT=14;
11714 INSERT  INTO `patient_portal_menu`(`patient_portal_menu_id`,`patient_portal_menu_group_id`,`menu_name`,`menu_order`,`menu_status`) VALUES (1,1,'Dashboard',3,1);
11715 INSERT  INTO `patient_portal_menu`(`patient_portal_menu_id`,`patient_portal_menu_group_id`,`menu_name`,`menu_order`,`menu_status`) VALUES (2,1,'My Profile',6,1);
11716 INSERT  INTO `patient_portal_menu`(`patient_portal_menu_id`,`patient_portal_menu_group_id`,`menu_name`,`menu_order`,`menu_status`) VALUES (3,1,'Appointments',9,1);
11717 INSERT  INTO `patient_portal_menu`(`patient_portal_menu_id`,`patient_portal_menu_group_id`,`menu_name`,`menu_order`,`menu_status`) VALUES (4,1,'Documents',12,1);
11718 INSERT  INTO `patient_portal_menu`(`patient_portal_menu_id`,`patient_portal_menu_group_id`,`menu_name`,`menu_order`,`menu_status`) VALUES (5,1,'Med Records',15,1);
11719 INSERT  INTO `patient_portal_menu`(`patient_portal_menu_id`,`patient_portal_menu_group_id`,`menu_name`,`menu_order`,`menu_status`) VALUES (6,1,'My Account',18,1);
11720 INSERT  INTO `patient_portal_menu`(`patient_portal_menu_id`,`patient_portal_menu_group_id`,`menu_name`,`menu_order`,`menu_status`) VALUES (7,1,'Mailbox',21,1);
11721 INSERT  INTO `patient_portal_menu`(`patient_portal_menu_id`,`patient_portal_menu_group_id`,`menu_name`,`menu_order`,`menu_status`) VALUES (8,1,'Password',24,1);
11722 INSERT  INTO `patient_portal_menu`(`patient_portal_menu_id`,`patient_portal_menu_group_id`,`menu_name`,`menu_order`,`menu_status`) VALUES (9,1,'View Log',27,1);
11723 INSERT  INTO `patient_portal_menu`(`patient_portal_menu_id`,`patient_portal_menu_group_id`,`menu_name`,`menu_order`,`menu_status`) VALUES (10,1,'Logout',30,1);
11724 INSERT  INTO `patient_portal_menu`(`patient_portal_menu_id`,`patient_portal_menu_group_id`,`menu_name`,`menu_order`,`menu_status`) VALUES (11,1,'View Health Information',33,1);
11725 INSERT  INTO `patient_portal_menu`(`patient_portal_menu_id`,`patient_portal_menu_group_id`,`menu_name`,`menu_order`,`menu_status`) VALUES (12,1,'Download Health Information',36,1);
11726 INSERT  INTO `patient_portal_menu`(`patient_portal_menu_id`,`patient_portal_menu_group_id`,`menu_name`,`menu_order`,`menu_status`) VALUES (13,1,'Transmit Health Information',39,1);
11728 #Endif
11730 #IfMissingColumn log ccda_doc_id
11731 ALTER TABLE `log` ADD `ccda_doc_id` INT(11) DEFAULT NULL COMMENT 'CCDA document id from ccda';
11732 #Endif
11734 #IfNotListReaction
11735 #EndIf
11737 #IfNotRow2D list_options list_id reaction option_id unassigned
11738 INSERT INTO list_options ( list_id, option_id, title, seq ) VALUES ('reaction', 'unassigned', 'Unassigned', 0);
11739 #EndIf
11741 #IfNotRow2D list_options list_id reaction option_id hives
11742 SET @max_list_id = (SELECT MAX(seq) FROM list_options WHERE list_id='reaction');
11743 INSERT INTO list_options ( list_id, option_id, title, seq, codes ) VALUES ('reaction', 'hives', 'Hives', (@max_list_id+10), 'SNOMED-CT:247472004');
11744 #EndIf
11746 #IfNotRow2D list_options list_id reaction option_id nausea
11747 SET @max_list_id = (SELECT MAX(seq) FROM list_options WHERE list_id='reaction');
11748 INSERT INTO list_options ( list_id, option_id, title, seq, codes ) VALUES ('reaction', 'nausea', 'Nausea', (@max_list_id+10), 'SNOMED-CT:422587007');
11749 #EndIf
11751 #IfNotRow2D list_options list_id lists option_id county
11752 INSERT INTO list_options (list_id, option_id, title) VALUES ('lists','county','County');
11753 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('county','adair','ADAIR','001', '10');
11754 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('county','andrew','ANDREW','003', '20');
11755 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('county','atchison','ATCHISON','005', '30');
11756 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('county','audrain','AUDRAIN','007', '40');
11757 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('county','barry','BARRY','009', '50');
11758 #EndIf
11760 #IfMissingColumn patient_data county
11761 SET @group_name = (SELECT group_name FROM layout_options WHERE field_id='country_code' AND form_id='DEM');
11762 SET @backup_group_name = (SELECT group_name FROM layout_options WHERE field_id='DOB' AND form_id='DEM');
11763 SET @seq = (SELECT MAX(seq) FROM layout_options WHERE group_name = IFNULL(@group_name,@backup_group_name) AND form_id='DEM');
11764 INSERT INTO `layout_options` (`form_id`, `field_id`, `group_name`, `title`, `seq`, `data_type`, `uor`, `fld_length`, `max_length`, `list_id`, `titlecols`, `datacols`, `default_value`, `edit_options`, `description`) VALUES ('DEM', 'county', IFNULL(@group_name,@backup_group_name), 'County', @seq+1, 26, 1, 0, 0, 'county', 1, 1, '', '', 'County' ) ;
11765 ALTER TABLE `patient_data` ADD COLUMN `county` varchar(40) NOT NULL default '';
11766 #EndIf 
11768 #IfNotRow2D list_options list_id lists option_id Immunization_Manufacturer
11769 INSERT INTO list_options (list_id, option_id, title) VALUES ('lists','Immunization_Manufacturer','Immunization Manufacturer');
11770 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','AB','Abbott Laboratories','AB','10');
11771 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','ACA','Acambis, Inc','ACA','20');
11772 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','AD','Adams Laboratories, Inc.','AD','30');
11773 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','AKR','Akorn, Inc','AKR','40');
11774 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','ALP','Alpha Therapeutic Corporation','ALP','50');
11775 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','AR','Armour','AR','60');
11776 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','AVB','Aventis Behring L.L.C.','AVB','70');
11777 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','AVI','Aviron','AVI','80');
11778 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','BRR','Barr Laboratories','BRR','90');
11779 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','BAH','Baxter Healthcare Corporation','BAH','100');
11780 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','BA','Baxter Healthcare Corporation-inactive','BA','110');
11781 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','BAY','Bayer Corporation','BAY','120');
11782 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','BP','Berna Products','BP','130');
11783 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','BPC','Berna Products Corporation','BPC','140');
11784 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','BTP','Biotest Pharmaceuticals Corporation','BTP','150');
11785 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','CNJ','Cangene Corporation','CNJ','160');
11786 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','CMP','Celltech Medeva Pharmaceuticals','CMP','170');
11787 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','CEN','Centeon L.L.C.','CEN','180');
11788 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','CHI','Chiron Corporation','CHI','190');
11789 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','CON','Connaught','CON','200');
11790 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','CRU','Crucell','CRU','210');
11791 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','CSL','CSL Behring, Inc','CSL','220');
11792 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','DVC','DynPort Vaccine Company, LLC','DVC','230');
11793 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','MIP','Emergent BioDefense Operations Lansing','MIP','240');
11794 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','EVN','Evans Medical Limited','EVN','250');
11795 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','GEO','GeoVax Labs, Inc.','GEO','260');
11796 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','SKB','GlaxoSmithKline','SKB','270');
11797 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','GRE','Greer Laboratories, Inc.','GRE','280');
11798 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','GRF','Grifols','GRF','290');
11799 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','IDB','ID Biomedical','IDB','300');
11800 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','IAG','Immuno International AG','IAG','310');
11801 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','IUS','Immuno-U.S., Inc.','IUS','320');
11802 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','INT','Intercell Biomedical','INT','330');
11803 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','JNJ','Johnson and Johnson','JNJ','340');
11804 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','KGC','Korea Green Cross Corporation','KGC','350');
11805 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','LED','Lederle','LED','360');
11806 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','MBL','Massachusetts Biologic Laboratories','MBL','370');
11807 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','MA','Massachusetts Public Health Biologic Laboratories','MA','380');
11808 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','MED','MedImmune, Inc.','MED','390');
11809 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','MSD','Merck and Co., Inc.','MSD','400');
11810 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','IM','Merieux','IM','410');
11811 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','MIL','Miles','MIL','420');
11812 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','NAB','NABI','NAB','430');
11813 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','NYB','New York Blood Center','NYB','440');
11814 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','NAV','North American Vaccine, Inc.','NAV','450');
11815 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','NOV','Novartis Pharmaceutical Corporation','NOV','460');
11816 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','NVX','Novavax, Inc.','NVX','470');
11817 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','OTC','Organon Teknika Corporation','OTC','480');
11818 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','ORT','Ortho-clinical Diagnostics','ORT','490');
11819 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','OTH','Other manufacturer','OTH','500');
11820 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','PD','Parkedale Pharmaceuticals','PD','510');
11821 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','PFR','Pfizer, Inc','PFR','520');
11822 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','PWJ','PowderJect Pharmaceuticals','PWJ','530');
11823 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','PRX','Praxis Biologics','PRX','540');
11824 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','PSC','Protein Sciences','PSC','550');
11825 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','PMC','sanofi pasteur','PMC','560');
11826 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','SCL','Sclavo, Inc.','SCL','570');
11827 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','SOL','Solvay Pharmaceuticals','SOL','580');
11828 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','SI','Swiss Serum and Vaccine Inst.','SI','590');
11829 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','TAL','Talecris Biotherapeutics','TAL','600');
11830 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','JPN','The Research Foundation for Microbial Diseases of Osaka University (BIKEN)','JPN','610');
11831 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','USA','United States Army Medical Research and Material Command','USA','620');
11832 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','UNK','Unknown manufacturer','UNK','630');
11833 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','VXG','VaxGen','VXG','640');
11834 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','WAL','Wyeth','WAL','650');
11835 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','WA','Wyeth-Ayerst','WA','660');
11836 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','ZLB','ZLB Behring','ZLB','670');
11837 #EndIf
11839 #IfNotRow2D list_options list_id lists option_id Immunization_Completion_Status
11840 INSERT INTO list_options (list_id, option_id, title) VALUES ('lists','Immunization_Completion_Status','Immunization Completion Status');
11841 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Completion_Status','Completed','completed','CP', '10');
11842 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Completion_Status','Refused','Refused','RE', '20');
11843 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Completion_Status','Not_Administered','Not Administered','NA', '30');
11844 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Completion_Status','Partially_Administered','Partially Administered','PA', '40');
11845 #EndIf
11847 #IfMissingColumn immunizations completion_status
11848 ALTER TABLE immunizations ADD COLUMN `completion_status` VARCHAR(50) DEFAULT NULL;
11849 #EndIf
11851 #IfMissingColumn prescriptions indication
11852 ALTER TABLE prescriptions ADD COLUMN `indication` text;
11853 #EndIf
11855 #IfMissingColumn prescriptions end_date
11856 ALTER TABLE prescriptions ADD COLUMN `end_date` date default NULL;
11857 #EndIf
11859 #IfNotTable external_procedures
11860 CREATE TABLE `external_procedures` (
11861   `ep_id` int(11) NOT NULL AUTO_INCREMENT,
11862   `ep_date` date DEFAULT NULL,
11863   `ep_code_type` varchar(20) DEFAULT NULL,
11864   `ep_code` varchar(9) DEFAULT NULL,
11865   `ep_pid` int(11) DEFAULT NULL,
11866   `ep_encounter` int(11) DEFAULT NULL,
11867   `ep_code_text` longtext,
11868   `ep_facility_id` varchar(255) DEFAULT NULL,
11869   `ep_external_id` varchar(255) DEFAULT NULL,
11870   PRIMARY KEY (`ep_id`)
11871 ) ENGINE=InnoDB;
11872 #EndIf
11874 #IfNotTable external_encounters
11875 CREATE TABLE `external_encounters` (
11876   `ee_id` int(11) NOT NULL AUTO_INCREMENT,
11877   `ee_date` date DEFAULT NULL,
11878   `ee_pid` int(11) DEFAULT NULL,
11879   `ee_provider_id` varchar(255) DEFAULT NULL,
11880   `ee_facility_id` varchar(255) DEFAULT NULL,
11881   `ee_encounter_diagnosis` varchar(255) DEFAULT NULL,
11882   `ee_external_id` varchar(255) DEFAULT NULL,
11883   PRIMARY KEY (`ee_id`)
11884 ) ENGINE=InnoDB;
11885 #EndIf
11887 #IfMissingColumn prescriptions prn
11888 ALTER TABLE prescriptions ADD COLUMN `prn` VARCHAR(30) DEFAULT NULL;
11889 #EndIf
11891 #IfMissingColumn patient_data care_team
11892 SET @group_name = (SELECT group_name FROM layout_options WHERE field_id='ref_providerID' AND form_id='DEM');
11893 SET @backup_group_name = (SELECT group_name FROM layout_options WHERE field_id='DOB' AND form_id='DEM');
11894 SET @seq = (SELECT MAX(seq) FROM layout_options WHERE group_name = IFNULL(@group_name,@backup_group_name) AND form_id='DEM');
11895 INSERT INTO `layout_options` (`form_id`, `field_id`, `group_name`, `title`, `seq`, `data_type`, `uor`, `fld_length`, `max_length`, `list_id`, `titlecols`, `datacols`, `default_value`, `edit_options`, `description`) VALUES ('DEM', 'care_team', IFNULL(@group_name,@backup_group_name), 'Care Team', @seq+1, 11, 1, 0, 0, '', 1, 1, '', '', '' ) ;
11896 alter table patient_data add column care_team int(11) DEFAULT NULL;
11897 #EndIf
11899 #IfNotTable form_observation
11900 CREATE TABLE `form_observation` (
11901   `id` bigint(20) NOT NULL,
11902   `date` DATE DEFAULT NULL,
11903   `pid` bigint(20) DEFAULT NULL,
11904   `encounter` varchar(255) DEFAULT NULL,
11905   `user` varchar(255) DEFAULT NULL,
11906   `groupname` varchar(255) DEFAULT NULL,
11907   `authorized` tinyint(4) DEFAULT NULL,
11908   `activity` tinyint(4) DEFAULT NULL,
11909   `code` varchar(255) DEFAULT NULL,
11910   `observation` varchar(255) DEFAULT NULL,
11911   `ob_value` varchar(255),
11912   `ob_unit` varchar(255),
11913   `description` varchar(255),
11914   `code_type` varchar(255),
11915   `table_code` varchar(255)
11916 ) ENGINE=InnoDB;
11917 SET @seq = (SELECT MAX(id) FROM registry);
11918 INSERT INTO `registry` (`name`,`state`,`directory`,`id`,`sql_run`,`unpackaged`,`date`,`priority`,`category`,`nickname`) VALUES ('Observation', 1, 'observation', @seq+1, 1, 1, '2015-09-09 00:00:00', 0, 'Clinical', '');
11919 #EndIf
11921 #IfNotTable form_care_plan
11922 CREATE TABLE `form_care_plan` (
11923   `id` bigint(20) NOT NULL,
11924   `date` DATE DEFAULT NULL,
11925   `pid` bigint(20) DEFAULT NULL,
11926   `encounter` varchar(255) DEFAULT NULL,
11927   `user` varchar(255) DEFAULT NULL,
11928   `groupname` varchar(255) DEFAULT NULL,
11929   `authorized` tinyint(4) DEFAULT NULL,
11930   `activity` tinyint(4) DEFAULT NULL,
11931   `code` varchar(255) DEFAULT NULL,
11932   `codetext` text,
11933   `description` text,
11934   `external_id` VARCHAR(30) DEFAULT NULL
11935 ) ENGINE=InnoDB;
11936 SET @seq = (SELECT MAX(id) FROM registry);
11937 INSERT INTO `registry` (`name`,`state`,`directory`,`id`,`sql_run`,`unpackaged`,`date`,`priority`,`category`,`nickname`) VALUES ('Care Plan', 1, 'care_plan', @seq+1, 1, 1, '2015-09-09 00:00:00', 0, 'Clinical', '');
11938 #EndIf
11940 #IfNotTable form_functional_cognitive_status
11941 CREATE TABLE `form_functional_cognitive_status` (
11942   `id` bigint(20) NOT NULL,
11943   `date` DATE DEFAULT NULL,
11944   `pid` bigint(20) DEFAULT NULL,
11945   `encounter` varchar(255) DEFAULT NULL,
11946   `user` varchar(255) DEFAULT NULL,
11947   `groupname` varchar(255) DEFAULT NULL,
11948   `authorized` tinyint(4) DEFAULT NULL,
11949   `activity` tinyint(4) DEFAULT NULL,
11950   `code` varchar(255) DEFAULT NULL,
11951   `codetext` text,
11952   `description` text,
11953   `external_id` VARCHAR(30) DEFAULT NULL
11954 ) ENGINE=InnoDB;
11955 SET @seq = (SELECT MAX(id) FROM registry);
11956 INSERT INTO `registry` (`name`,`state`,`directory`,`id`,`sql_run`,`unpackaged`,`date`,`priority`,`category`,`nickname`) VALUES ('Functional and Cognitive Status', 1, 'functional_cognitive_status', @seq+1, 1, 1, '2015-09-09 00:00:00', 0, 'Clinical', '');
11957 #EndIf
11959 UPDATE `clinical_rules` SET `cqm_2014_flag` = 1 WHERE `id` = 'rule_htn_bp_measure_cqm' AND `pid` = 0;
11960 UPDATE `clinical_rules` SET `cqm_2014_flag` = 1 WHERE `id` = 'rule_adult_wt_screen_fu_cqm' AND `pid` = 0;
11961 UPDATE `clinical_rules` SET `cqm_2014_flag` = 1 WHERE `id` = 'rule_wt_assess_couns_child_cqm' AND `pid` = 0;
11962 UPDATE `clinical_rules` SET `cqm_2014_flag` = 1 WHERE `id` = 'rule_pneumovacc_ge_65_cqm' AND `pid` = 0;
11964 #IfMissingColumn clinical_rules amc_2014_stage1_flag
11965         ALTER TABLE `clinical_rules` ADD COLUMN `amc_2014_stage1_flag` tinyint(1) COMMENT '2014 Stage 1 - Automated Measure Calculation flag for (unable to customize per patient)';
11967         UPDATE `clinical_rules` SET `amc_2014_stage1_flag` = '1', `amc_code_2014` = '170.314(g)(1)/(2)–4' WHERE `clinical_rules`.`id` = 'problem_list_amc' AND `clinical_rules`.`pid` =0;
11968         UPDATE `clinical_rules` SET `amc_2014_stage1_flag` = '1', `amc_code_2014` = '170.314(g)(1)/(2)–5' WHERE `clinical_rules`.`id` = 'med_list_amc' AND `clinical_rules`.`pid` =0;
11969         UPDATE `clinical_rules` SET `amc_2014_stage1_flag` = '1', `amc_code_2014` = '170.314(g)(1)/(2)–6' WHERE `clinical_rules`.`id` = 'med_allergy_list_amc' AND `clinical_rules`.`pid` =0;
11970         UPDATE `clinical_rules` SET `amc_2014_stage1_flag` = '1', `amc_code_2014` = '170.314(g)(1)/(2)–7' WHERE `clinical_rules`.`id` = 'cpoe_med_amc' AND `clinical_rules`.`pid` =0;
11971         UPDATE `clinical_rules` SET `amc_2014_stage1_flag` = '1', `amc_code_2014` = '170.314(g)(1)/(2)–9' WHERE `clinical_rules`.`id` = 'record_dem_amc' AND `clinical_rules`.`pid` =0;
11972         UPDATE `clinical_rules` SET `amc_2014_stage1_flag` = '1', `amc_code_2014` = '170.314(g)(1)/(2)–11' WHERE `clinical_rules`.`id` = 'record_smoke_amc' AND `clinical_rules`.`pid` =0;
11973         UPDATE `clinical_rules` SET `amc_2014_stage1_flag` = '1', `amc_code_2014` = '170.314(g)(1)/(2)–12' WHERE `clinical_rules`.`id` = 'lab_result_amc' AND `clinical_rules`.`pid` =0;
11974         UPDATE `clinical_rules` SET `amc_2014_stage1_flag` = '1', `amc_code_2014` = '170.314(g)(1)/(2)–13' WHERE `clinical_rules`.`id` = 'send_reminder_amc' AND `clinical_rules`.`pid` =0;
11975         UPDATE `clinical_rules` SET `amc_2014_stage1_flag` = '1', `amc_code_2014` = '170.314(g)(1)/(2)–15' WHERE `clinical_rules`.`id` = 'provide_sum_pat_amc' AND `clinical_rules`.`pid` =0;
11976         UPDATE `clinical_rules` SET `amc_2014_stage1_flag` = '1', `amc_code_2014` = '170.314(g)(1)/(2)–16' WHERE `clinical_rules`.`id` = 'patient_edu_amc' AND `clinical_rules`.`pid` =0;
11977 #EndIf
11979 #IfMissingColumn clinical_rules amc_2014_stage2_flag
11980         ALTER TABLE `clinical_rules` ADD COLUMN `amc_2014_stage2_flag` tinyint(1) COMMENT '2014 Stage 2 - Automated Measure Calculation flag for (unable to customize per patient)';
11982         UPDATE `clinical_rules` SET `amc_2014_stage2_flag` = '1' WHERE `clinical_rules`.`id` = 'record_smoke_amc' AND `clinical_rules`.`pid` =0;
11983         UPDATE `clinical_rules` SET `amc_2014_stage2_flag` = '1' WHERE `clinical_rules`.`id` = 'lab_result_amc' AND `clinical_rules`.`pid` =0;
11984         UPDATE `clinical_rules` SET `amc_2014_stage2_flag` = '1' WHERE `clinical_rules`.`id` = 'record_dem_amc' AND `clinical_rules`.`pid` =0;
11985 #EndIf
11987 #IfNotRow clinical_rules id rule_children_pharyngitis_cqm
11988 INSERT INTO `clinical_rules` (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`) VALUES ('rule_children_pharyngitis_cqm', 0, 0, 0, 1, '0002', '', 0, '', 0, 0, 0, '', 1, 1);
11989 #EndIf
11991 #IfNotRow2D list_options list_id clinical_rules option_id rule_children_pharyngitis_cqm
11992 INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default`, `option_value`, `mapping`, `notes`, `codes`, `toggle_setting_1`, `toggle_setting_2`) VALUES ('clinical_rules', 'rule_children_pharyngitis_cqm', 'Appropriate Testing for Children with Pharyngitis (CQM)', 502, 0, 0, '', '', '', 0, 0);
11993 #EndIf
11995 #IfNotRow clinical_rules id rule_fall_screening_cqm
11996 INSERT INTO `clinical_rules` (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`) VALUES ('rule_fall_screening_cqm', 0, 0, 0, 1, '0101', '', 0, '', 0, 0, 0, '', 1, 1);
11997 #EndIf
11999 #IfNotRow2D list_options list_id clinical_rules option_id rule_fall_screening_cqm
12000 INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default`, `option_value`, `mapping`, `notes`, `codes`, `toggle_setting_1`, `toggle_setting_2`) VALUES ('clinical_rules', 'rule_fall_screening_cqm', 'Falls: Screening, Risk-Assessment, and Plan of Care to Prevent Future Falls (CQM)', 504, 0, 0, '', '', '', 0, 0);
12001 #EndIf
12003 #IfNotRow clinical_rules id rule_pain_intensity_cqm
12004 INSERT INTO `clinical_rules` (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`) VALUES ('rule_pain_intensity_cqm', 0, 0, 0, 1, '0384', '', 0, '', 0, 0, 0, '', 1, 1);
12005 #EndIf
12007 #IfNotRow2D list_options list_id clinical_rules option_id rule_pain_intensity_cqm
12008 INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default`, `option_value`, `mapping`, `notes`, `codes`, `toggle_setting_1`, `toggle_setting_2`) VALUES ('clinical_rules', 'rule_pain_intensity_cqm', 'Oncology: Medical and Radiation – Pain Intensity Quantified (CQM)', 506, 0, 0, '', '', '', 0, 0);
12009 #EndIf
12011 #IfNotRow clinical_rules id rule_child_immun_stat_2014_cqm
12012 INSERT INTO `clinical_rules` (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES ('rule_child_immun_stat_2014_cqm', 0, 0, 0, 1, '0038', '', 0, '', 0, 0, 0, '', 0, 1, 0, 0);
12013 #EndIf
12015 #IfNotRow2D list_options list_id clinical_rules option_id rule_child_immun_stat_2014_cqm
12016 INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default`, `option_value`, `mapping`, `notes`, `codes`, `toggle_setting_1`, `toggle_setting_2`) VALUES ('clinical_rules', 'rule_child_immun_stat_2014_cqm', 'Childhood immunization Status (CQM)', 250, 0, 0, '', '', '', 0, 0);
12017 #EndIf
12019 #IfNotRow clinical_rules id rule_tob_use_2014_cqm
12020 INSERT INTO `clinical_rules` (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES ('rule_tob_use_2014_cqm', 0, 0, 0, 1, '0028', '', 0, '', 0, 0, 0, '', 0, 1, 0, 0);
12021 #EndIf
12023 #IfNotRow2D list_options list_id clinical_rules option_id rule_tob_use_2014_cqm
12024 INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default`, `option_value`, `mapping`, `notes`, `codes`, `toggle_setting_1`, `toggle_setting_2`) VALUES ('clinical_rules', 'rule_tob_use_2014_cqm', 'Preventive Care and Screening: Tobacco Use: Screening and Cessation Intervention (CQM)', 210, 0, 0, '', '', '', 0, 0);
12025 #EndIf
12027 #IfNotRow clinical_rules id image_results_amc
12028         INSERT INTO `clinical_rules` 
12029         (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES
12030         ('image_results_amc', 0, 0, 0, 0, '', '', 1, '', 0, 0, 1, '170.314(g)(1)/(2)–20', 0, 0, 0, 1);
12031 #EndIf
12033 #IfNotRow2D list_options list_id clinical_rules option_id image_results_amc
12034         INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default`, `option_value`, `mapping`, `notes`, `codes`, `toggle_setting_1`, `toggle_setting_2`) VALUES
12035         ('clinical_rules', 'image_results_amc', 'Image Results', 3000, 0, 0, '', '', '', 0, 0);
12036 #EndIf
12038 #IfNotRow clinical_rules id family_health_history_amc
12039         INSERT INTO `clinical_rules` 
12040         (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES
12041         ('family_health_history_amc', 0, 0, 0, 0, '', '', 1, '', 0, 0, 1, '170.314(g)(1)/(2)–21', 0, 0, 0, 1);
12042 #EndIf
12044 #IfNotRow2D list_options list_id clinical_rules option_id family_health_history_amc
12045         INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default`, `option_value`, `mapping`, `notes`, `codes`, `toggle_setting_1`, `toggle_setting_2`) VALUES
12046         ('clinical_rules', 'family_health_history_amc', 'Family Health History', 3100, 0, 0, '', '', '', 0, 0);
12047 #EndIf
12049 #IfNotRow clinical_rules id electronic_notes_amc
12050         INSERT INTO `clinical_rules` 
12051         (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES
12052         ('electronic_notes_amc', 0, 0, 0, 0, '', '', 1, '', 0, 0, 1, '170.314(g)(1)/(2)–22', 0, 0, 0, 1);
12053 #EndIf
12055 #IfNotRow2D list_options list_id clinical_rules option_id electronic_notes_amc
12056         INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default`, `option_value`, `mapping`, `notes`, `codes`, `toggle_setting_1`, `toggle_setting_2`) VALUES
12057         ('clinical_rules', 'electronic_notes_amc', 'Electronic Notes', 3200, 0, 0, '', '', '', 0, 0);
12058 #EndIf
12060 #IfNotRow clinical_rules id secure_messaging_amc
12061         INSERT INTO `clinical_rules` 
12062         (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES
12063         ('secure_messaging_amc', 0, 0, 0, 0, '', '', 1, '', 0, 0, 1, '170.314(g)(1)/(2)', 0, 0, 0, 1);
12064 #EndIf
12066 #IfNotRow2D list_options list_id clinical_rules option_id secure_messaging_amc
12067         INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default`, `option_value`, `mapping`, `notes`, `codes`, `toggle_setting_1`, `toggle_setting_2`) VALUES
12068         ('clinical_rules', 'secure_messaging_amc', 'Secure Electronic Messaging', 3400, 0, 0, '', '', '', 0, 0);
12069 #EndIf
12071 #IfNotRow clinical_rules id view_download_transmit_amc
12072         INSERT INTO `clinical_rules` 
12073         (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES
12074         ('view_download_transmit_amc', 0, 0, 0, 0, '', '', 1, '', 0, 0, 1, '170.314(g)(1)/(2)–14', 0, 0, 1, 1);
12075 #EndIf
12077 #IfNotRow2D list_options list_id clinical_rules option_id view_download_transmit_amc
12078         INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default`, `option_value`, `mapping`, `notes`, `codes`, `toggle_setting_1`, `toggle_setting_2`) VALUES
12079         ('clinical_rules', 'view_download_transmit_amc', 'View, Download, Transmit (VDT)  (Measure B)', 3500, 0, 0, '', '', '', 0, 0);
12080 #EndIf
12082 #IfNotRow clinical_rules id cpoe_radiology_amc
12083         INSERT INTO `clinical_rules` 
12084         (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES
12085         ('cpoe_radiology_amc', 0, 0, 0, 0, '', '', 1, '170.304(a)', 0, 0, 1, '170.314(g)(1)/(2)–7', 0, 0, 0, 1);
12086 #EndIf
12088 #IfNotRow2D list_options list_id clinical_rules option_id cpoe_radiology_amc
12089         INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default`, `option_value`, `mapping`, `notes`, `codes`, `toggle_setting_1`, `toggle_setting_2`) VALUES
12090         ('clinical_rules', 'cpoe_radiology_amc', 'Use CPOE for radiology orders.', 46, 0, 0, '', '', '', 0, 0);
12091 #EndIf
12093 #IfNotRow clinical_rules id cpoe_proc_orders_amc
12094         INSERT INTO `clinical_rules` 
12095         (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES
12096         ('cpoe_proc_orders_amc', 0, 0, 0, 0, '', '', 1, '170.304(a)', 0, 0, 1, '170.314(g)(1)/(2)–7', 0, 0, 0, 1);
12097 #EndIf
12099 #IfNotRow2D list_options list_id clinical_rules option_id cpoe_proc_orders_amc
12100         INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default`, `option_value`, `mapping`, `notes`, `codes`, `toggle_setting_1`, `toggle_setting_2`) VALUES
12101         ('clinical_rules', 'cpoe_proc_orders_amc', 'Use CPOE for procedure orders.', 47, 0, 0, '', '', '', 0, 0);
12102 #EndIf
12104 #IfNotRow clinical_rules id send_reminder_stage2_amc
12105         INSERT INTO `clinical_rules` 
12106         (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES
12107         ('send_reminder_stage2_amc', 0, 0, 0, 0, '', '', 1, '170.304(d)', 0, 0, 1, '170.314(g)(1)/(2)–13', 0, 0, 0, 1);
12108 #EndIf
12110 #IfNotRow2D list_options list_id clinical_rules option_id send_reminder_stage2_amc
12111         INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default`, `option_value`, `mapping`, `notes`, `codes`, `toggle_setting_1`, `toggle_setting_2`) VALUES
12112         ('clinical_rules', 'send_reminder_stage2_amc', 'Send reminders to patients per patient preference for preventive/follow up care.', 60, 0, 0, '', '', '', 0, 0);
12113 #EndIf
12115 #IfNotRow clinical_rules id cpoe_med_stage2_amc
12116         INSERT INTO `clinical_rules` 
12117         (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES
12118         ('cpoe_med_stage2_amc', 0, 0, 0, 0, '', '', 1, '170.304(a)', 0, 0, 1, '170.314(g)(1)/(2)–7', 0, 0, 1, 1);
12119 #EndIf
12121 #IfNotRow2D list_options list_id clinical_rules option_id cpoe_med_stage2_amc
12122         INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default`, `option_value`, `mapping`, `notes`, `codes`, `toggle_setting_1`, `toggle_setting_2`) VALUES
12123         ('clinical_rules', 'cpoe_med_stage2_amc', 'Use CPOE for medication orders.(Alternative)', 47, 0, 0, '', '', '', 0, 0);
12124 #EndIf
12126 #IfNotRow clinical_rules id patient_edu_stage2_amc
12127         INSERT INTO `clinical_rules` 
12128         (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES
12129         ('patient_edu_stage2_amc', 0, 0, 0, 0, '', '', 1, '170.302(m)', 0, 0, 1, '170.314(g)(1)/(2)–16', 0, 0, 0, 1);
12130 #EndIf
12132 #IfNotRow2D list_options list_id clinical_rules option_id patient_edu_stage2_amc
12133         INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default`, `option_value`, `mapping`, `notes`, `codes`, `toggle_setting_1`, `toggle_setting_2`) VALUES
12134         ('clinical_rules', 'patient_edu_stage2_amc', 'Use certified EHR technology to identify patient-specific education resources and provide those resources to the patient if appropriate(New).', 40, 0, 0, '', '', '', 0, 0);
12135 #EndIf
12137 #IfNotRow clinical_rules id record_vitals_1_stage1_amc
12138         INSERT INTO `clinical_rules` 
12139         (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES
12140         ('record_vitals_1_stage1_amc', 0, 0, 0, 0, '', '', 1, '170.302(f)', 0, 0, 1, '170.314(g)(1)/(2)–10', 0, 0, 0, 0);
12141 #EndIf
12143 #IfNotRow2D list_options list_id clinical_rules option_id record_vitals_1_stage1_amc
12144         INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default`, `option_value`, `mapping`, `notes`, `codes`, `toggle_setting_1`, `toggle_setting_2`) VALUES
12145         ('clinical_rules', 'record_vitals_1_stage1_amc', 'Record and chart changes in vital signs (SET 1).', 20, 0, 0, '', '', '', 0, 0);
12146 #EndIf
12148 #IfNotRow clinical_rules id record_vitals_2_stage1_amc
12149         INSERT INTO `clinical_rules` 
12150         (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES
12151         ('record_vitals_2_stage1_amc', 0, 0, 0, 0, '', '', 1, '170.302(f)', 0, 0, 1, '170.314(g)(1)/(2)–10', 0, 0, 1, 1);
12152 #EndIf
12154 #IfNotRow2D list_options list_id clinical_rules option_id record_vitals_2_stage1_amc
12155         INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default`, `option_value`, `mapping`, `notes`, `codes`, `toggle_setting_1`, `toggle_setting_2`) VALUES
12156         ('clinical_rules', 'record_vitals_2_stage1_amc', 'Record and chart changes in vital signs (BP out of scope).', 20, 0, 0, '', '', '', 0, 0);
12157 #EndIf
12159 #IfNotRow clinical_rules id record_vitals_3_stage1_amc
12160         INSERT INTO `clinical_rules` 
12161         (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES
12162         ('record_vitals_3_stage1_amc', 0, 0, 0, 0, '', '', 1, '170.302(f)', 0, 0, 1, '170.314(g)(1)/(2)–10', 0, 0, 1, 1);
12163 #EndIf
12165 #IfNotRow2D list_options list_id clinical_rules option_id record_vitals_3_stage1_amc
12166         INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default`, `option_value`, `mapping`, `notes`, `codes`, `toggle_setting_1`, `toggle_setting_2`) VALUES
12167         ('clinical_rules', 'record_vitals_3_stage1_amc', 'Record and chart changes in vital signs (Height / Weight out of scope).', 20, 0, 0, '', '', '', 0, 0);
12168 #EndIf
12170 #IfNotRow clinical_rules id record_vitals_4_stage1_amc
12171         INSERT INTO `clinical_rules` 
12172         (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES
12173         ('record_vitals_4_stage1_amc', 0, 0, 0, 0, '', '', 1, '170.302(f)', 0, 0, 1, '170.314(g)(1)/(2)–10', 0, 0, 1, 1);
12174 #EndIf
12176 #IfNotRow2D list_options list_id clinical_rules option_id record_vitals_4_stage1_amc
12177         INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default`, `option_value`, `mapping`, `notes`, `codes`, `toggle_setting_1`, `toggle_setting_2`) VALUES
12178         ('clinical_rules', 'record_vitals_4_stage1_amc', 'Record and chart changes in vital signs ( Height / Weight / BP with in scope ).', 20, 0, 0, '', '', '', 0, 0);
12179 #EndIf
12181 #IfNotRow clinical_rules id record_vitals_stage2_amc
12182         INSERT INTO `clinical_rules` 
12183         (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES
12184         ('record_vitals_stage2_amc', 0, 0, 0, 0, '', '', 1, '170.302(f)', 0, 0, 1, '170.314(g)(1)/(2)–10', 0, 0, 0, 0);
12185 #EndIf
12187 #IfNotRow2D list_options list_id clinical_rules option_id record_vitals_stage2_amc
12188         INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default`, `option_value`, `mapping`, `notes`, `codes`, `toggle_setting_1`, `toggle_setting_2`) VALUES
12189         ('clinical_rules', 'record_vitals_stage2_amc', 'Record and chart changes in vital signs (New).', 20, 0, 0, '', '', '', 0, 0);
12190 #EndIf
12192 #IfNotRow clinical_rules id provide_sum_pat_stage2_amc
12193         INSERT INTO `clinical_rules` 
12194         (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES
12195         ('provide_sum_pat_stage2_amc', 0, 0, 0, 0, '', '', 1, '170.304(h)', 0, 0, 1, '170.314(g)(1)/(2)–15', 0, 0, 0, 1);
12196 #EndIf
12198 #IfNotRow2D list_options list_id clinical_rules option_id provide_sum_pat_stage2_amc
12199         INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default`, `option_value`, `mapping`, `notes`, `codes`, `toggle_setting_1`, `toggle_setting_2`) VALUES
12200         ('clinical_rules', 'provide_sum_pat_stage2_amc', 'Provide clinical summaries for patients for each office visit (New).', 75, 0, 0, '', '', '', 0, 0);
12201 #EndIf
12203 #IfNotRow clinical_rules id vdt_stage2_amc
12204         INSERT INTO `clinical_rules` 
12205         (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES
12206         ('vdt_stage2_amc', 0, 0, 0, 0, '', '', 1, '', 0, 0, 1, '170.314(g)(1)/(2)–14', 0, 0, 1, 1);
12207 #EndIf
12209 #IfNotRow2D list_options list_id clinical_rules option_id vdt_stage2_amc
12210         INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default`, `option_value`, `mapping`, `notes`, `codes`, `toggle_setting_1`, `toggle_setting_2`) VALUES
12211         ('clinical_rules', 'vdt_stage2_amc', 'View, Download, Transmit (VDT) (Measure A)', 3500, 0, 0, '', '', '', 0, 0);
12212 #EndIf
12214 #IfNotRow clinical_rules id send_sum_stage1_amc
12215         INSERT INTO `clinical_rules` 
12216         (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES
12217         ('send_sum_stage1_amc', 0, 0, 0, 0, '', '', 1, '170.304(i)', 0, 0, 1, '170.314(g)(1)/(2)–18', 0, 0, 1, 0);
12218 #EndIf
12220 #IfNotRow2D list_options list_id clinical_rules option_id send_sum_stage1_amc
12221         INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default`, `option_value`, `mapping`, `notes`, `codes`, `toggle_setting_1`, `toggle_setting_2`) VALUES
12222         ('clinical_rules', 'send_sum_stage1_amc', 'The EP, eligible hospital or CAH who transitions their patient to another setting of care or provider of care or refers their patient to another provider of care should provide summary of care record for each transition of care or referral.', 80, 0, 0, '', '', '', 0, 0);
12223 #EndIf
12225 #IfNotRow clinical_rules id send_sum_1_stage2_amc
12226         INSERT INTO `clinical_rules` 
12227         (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES
12228         ('send_sum_1_stage2_amc', 0, 0, 0, 0, '', '', 1, '170.304(i)', 0, 0, 1, '170.314(g)(1)/(2)–18', 0, 0, 0, 1);
12229 #EndIf
12231 #IfNotRow2D list_options list_id clinical_rules option_id send_sum_1_stage2_amc
12232         INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default`, `option_value`, `mapping`, `notes`, `codes`, `toggle_setting_1`, `toggle_setting_2`) VALUES
12233         ('clinical_rules', 'send_sum_1_stage2_amc', 'The EP, eligible hospital or CAH who transitions their patient to another setting of care or provider of care or refers their patient to another provider of care should provide summary of care record for each transition of care or referral (Measure A).', 80, 0, 0, '', '', '', 0, 0);
12234 #EndIf
12236 #IfNotRow clinical_rules id send_sum_stage2_amc
12237         INSERT INTO `clinical_rules` 
12238         (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES
12239         ('send_sum_stage2_amc', 0, 0, 0, 0, '', '', 1, '170.304(i)', 0, 0, 1, '170.314(g)(1)/(2)–18', 0, 0, 0, 1);
12240 #EndIf
12242 #IfNotRow2D list_options list_id clinical_rules option_id send_sum_stage2_amc
12243         INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default`, `option_value`, `mapping`, `notes`, `codes`, `toggle_setting_1`, `toggle_setting_2`) VALUES
12244         ('clinical_rules', 'send_sum_stage2_amc', 'The EP, eligible hospital or CAH who transitions their patient to another setting of care or provider of care or refers their patient to another provider of care should provide summary of care record for each transition of care or referral (Measure B).', 80, 0, 0, '', '', '', 0, 0);
12245 #EndIf
12247 #IfNotRow clinical_rules id e_prescribe_stage1_amc
12248         INSERT INTO `clinical_rules` 
12249         (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES
12250         ('e_prescribe_stage1_amc', 0, 0, 0, 0, '', '', 1, '170.304(b)', 0, 0, 1, '170.314(g)(1)/(2)–8', 0, 0, 1, 0);
12251 #EndIf
12253 #IfNotRow2D list_options list_id clinical_rules option_id e_prescribe_stage1_amc
12254         INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default`, `option_value`, `mapping`, `notes`, `codes`, `toggle_setting_1`, `toggle_setting_2`) VALUES
12255         ('clinical_rules', 'e_prescribe_stage1_amc', 'Generate and transmit permissible prescriptions electronically (Uncontrolled Substances).', 50, 0, 0, '', '', '', 0, 0);
12256 #EndIf
12258 #IfNotRow clinical_rules id e_prescribe_1_stage2_amc
12259         INSERT INTO `clinical_rules` 
12260         (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES
12261         ('e_prescribe_1_stage2_amc', 0, 0, 0, 0, '', '', 1, '170.304(b)', 0, 0, 1, '170.314(g)(1)/(2)–8', 0, 0, 0, 1);
12262 #EndIf
12264 #IfNotRow2D list_options list_id clinical_rules option_id e_prescribe_1_stage2_amc
12265         INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default`, `option_value`, `mapping`, `notes`, `codes`, `toggle_setting_1`, `toggle_setting_2`) VALUES
12266         ('clinical_rules', 'e_prescribe_1_stage2_amc', 'Generate and transmit permissible prescriptions electronically (All Prescriptions).', 50, 0, 0, '', '', '', 0, 0);
12267 #EndIf
12269 #IfNotRow clinical_rules id e_prescribe_2_stage2_amc
12270         INSERT INTO `clinical_rules` 
12271         (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES
12272         ('e_prescribe_2_stage2_amc', 0, 0, 0, 0, '', '', 1, '170.304(b)', 0, 0, 1, '170.314(g)(1)/(2)–8', 0, 0, 0, 1);
12273 #EndIf
12275 #IfNotRow2D list_options list_id clinical_rules option_id e_prescribe_2_stage2_amc
12276         INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default`, `option_value`, `mapping`, `notes`, `codes`, `toggle_setting_1`, `toggle_setting_2`) VALUES
12277         ('clinical_rules', 'e_prescribe_2_stage2_amc', 'Generate and transmit permissible prescriptions electronically (Uncontrolled substances with drug formulary).', 50, 0, 0, '', '', '', 0, 0);
12278 #EndIf
12280 #IfMissingColumn users cpoe
12281         ALTER TABLE `users` ADD `cpoe` tinyint(1) NULL DEFAULT NULL;
12282 #EndIf
12284 #IfMissingColumn procedure_order_code procedure_order_title
12285         ALTER TABLE  `procedure_order_code` ADD  `procedure_order_title` varchar( 255 ) NULL DEFAULT NULL;
12286 #EndIf
12288 #IfMissingColumn procedure_providers lab_director
12289         ALTER TABLE `procedure_providers` ADD `lab_director` bigint(20) NOT NULL DEFAULT '0';
12290 #EndIf
12292 #IfNotRow2D list_options list_id lists option_id order_type
12293         INSERT INTO list_options ( list_id, option_id, title, seq, is_default ) VALUES ('lists','order_type','Order Types', 1,0);
12294         INSERT INTO list_options ( list_id, option_id, title, seq, is_default ) VALUES ('order_type','procedure','Procedure',10,0);
12295         INSERT INTO list_options ( list_id, option_id, title, seq, is_default ) VALUES ('order_type','intervention','Intervention',20,0);
12296         INSERT INTO list_options ( list_id, option_id, title, seq, is_default ) VALUES ('order_type','laboratory_test','Laboratory Test',30,0);
12297         INSERT INTO list_options ( list_id, option_id, title, seq, is_default ) VALUES ('order_type','physical_exam','Physical Exam',40,0);
12298         INSERT INTO list_options ( list_id, option_id, title, seq, is_default ) VALUES ('order_type','risk_category','Risk Category Assessment',50,0);
12299         INSERT INTO list_options ( list_id, option_id, title, seq, is_default ) VALUES ('order_type','patient_characteristics','Patient Characteristics',60,0);
12300         INSERT INTO list_options ( list_id, option_id, title, seq, is_default ) VALUES ('order_type','imaging','Imaging',70,0);
12301 #EndIf
12303 #IfNotRow4D supported_external_dataloads load_type ICD10 load_source CMS load_release_date 2015-10-01 load_filename 2016-PCS-Long-Abbrev-Titles.zip
12304 INSERT INTO `supported_external_dataloads` (`load_type`, `load_source`, `load_release_date`, `load_filename`, `load_checksum`) VALUES ('ICD10', 'CMS', '2015-10-01', '2016-PCS-Long-Abbrev-Titles.zip', 'd5ea519d0257db0ed7deb0406a4d0503');
12305 #EndIf
12307 #IfNotRow4D supported_external_dataloads load_type ICD10 load_source CMS load_release_date 2015-10-01 load_filename 2016-General-Equivalence-Mappings.zip
12308 INSERT INTO `supported_external_dataloads` (`load_type`, `load_source`, `load_release_date`, `load_filename`, `load_checksum`) VALUES ('ICD10', 'CMS', '2015-10-01', '2016-General-Equivalence-Mappings.zip', '3324a45b6040be7e48ab770a0d3ca695');
12309 #EndIf
12311 #IfNotRow4D supported_external_dataloads load_type ICD10 load_source CMS load_release_date 2015-10-01 load_filename 2016-Code-Descriptions-in-Tabular-Order.zip
12312 INSERT INTO `supported_external_dataloads` (`load_type`, `load_source`, `load_release_date`, `load_filename`, `load_checksum`) VALUES ('ICD10', 'CMS', '2015-10-01', '2016-Code-Descriptions-in-Tabular-Order.zip', '518a47fe9e268e4fb72fecf633d15f17');
12313 #EndIf
12315 #IfNotRow4D supported_external_dataloads load_type ICD10 load_source CMS load_release_date 2015-10-01 load_filename 2016-ProcedureGEMs.zip
12316 INSERT INTO `supported_external_dataloads` (`load_type`, `load_source`, `load_release_date`, `load_filename`, `load_checksum`) VALUES ('ICD10', 'CMS', '2015-10-01', '2016-ProcedureGEMs.zip', '45a8d9da18d8aed57f0c6ea91e3e8fe4');
12317 #EndIf
12319 #IfNotRow4D supported_external_dataloads load_type ICD10 load_source CMS load_release_date 2015-10-01 load_filename Reimbursement_Mapping_dx_2016.zip
12320 INSERT INTO `supported_external_dataloads` (`load_type`, `load_source`, `load_release_date`, `load_filename`, `load_checksum`) VALUES ('ICD10', 'CMS', '2015-10-01', 'Reimbursement_Mapping_dx_2016.zip', '1b53b512e10c1fdf7ae4cfd1baa8dfbb');
12321 #EndIf
12323 #IfNotRow4D supported_external_dataloads load_type ICD10 load_source CMS load_release_date 2015-10-01 load_filename Reimbursement_Mapping_pr_2016.zip
12324 INSERT INTO `supported_external_dataloads` (`load_type`, `load_source`, `load_release_date`, `load_filename`, `load_checksum`) VALUES ('ICD10', 'CMS', '2015-10-01', 'Reimbursement_Mapping_pr_2016.zip', '3c780dd103d116aa57980decfddd4f19');
12325 #EndIf