leader length checking bugfix : 25 and not 24
[koha.git] / misc / asmp_marc21_bib_framework.sql
1 -- *******************************************************
2 --       ASMP KOHA MARC 21 BIBLIOGRAPHIC FRAMEWORKS       
3 --                 POST-INSTALLATION SCRIPT               
4 --                                                        
5 --                  PRETEST VERSION 0.0.4                 
6 --                       2006-08-09                       
7 --                                                        
8 --                         drafted                        
9 --                   by thd for LibLime                   
10 --                                                        
11 --                          WITH                          
12 --                                                        
13 --  KOHA MARC 21 STANDARD DEFAULT BIBLIOGRAPHIC FRAMEWORK 
14 --                 POST-INSTALLATION SCRIPT               
15 --                                                        
16 --                  PRETEST VERSION 0.1.4                 
17 --                       2006-08-09                       
18 --                                                        
19 --  original default requiring greater user customisation 
20 --               created by a few Koha Hands              
21 --                 guided by Paul POULAIN                 
22 --                                                        
23 --       revised and greatly enlarged to completion,      
24 --            well not quite complete yet today           
25 --        but close enough for someone to have use,       
26 --                   by thd for LibLime                   
27 -- *******************************************************
28
29
30
31 -- *********************************************************************
32 --                                                                      
33 -- STOP, DO NOT PROCEED FURTHER WITHOUT FIRST DUMPIMPING                
34 -- marc_tag_structure AND marc_subfield_structure TABLES IF NOT THE     
35 -- ENTIRE KOHA DATABASE.                                                
36 --                                                                      
37 -- However, if you have a Koha installation with no bibliographic       
38 -- framework modifications or no records yet then this script should do 
39 -- no harm and actually help protect you from future data loss when     
40 -- editing bibliographic records including holdings information.        
41 --                                                                      
42 -- Code still needs to be written for preserving information from       
43 -- installed bibliographic and authority frameworks and then updating   
44 -- the frameworks and the bibliographic records losslessly.  A modest   
45 -- task but everything takes time.                                      
46 --                                                                      
47 -- Despite the above warning, you are more likely to loose data from    
48 -- bibliographic records held in Koha if your bibliographic framework   
49 -- is less complete than the one provided in this file rather than from 
50 -- possible risks from the simple design of the this installation       
51 -- script.                                                              
52 --                                                                      
53 -- If you have an existing Koha installation, your default Koha MARC 21 
54 -- bibliographic framework will not be updated from the standard Koha   
55 -- update script.  This SQL script will update your bibliographic       
56 -- framework and should be applied after you have run the standard Koha 
57 -- update script.                                                       
58 --                                                                      
59 -- See comments below for some provisions that may need adjusting to    
60 -- support your Koha database.                                          
61 --                                                                      
62 -- Always run rebuildnonmarc.pl after updating with this or later       
63 -- versions of this script.                                             
64 --                                                                      
65 -- A complete MySQL Koha SQL database may be dumped for backup with the 
66 -- following command syntax as one line where the -h option is only     
67 -- needed if applying this script for a database held on a remote       
68 -- server.                                                              
69 --                                                                      
70 -- mysqldump --allow-keywords --single-transaction                      
71 -- [-h YourMySQLServername] -u YourKohaMySQLUsername -p                 
72 -- YourKohaDatabasename > KohaBackup.sql                                
73 --                                                                      
74 -- Now that you have been warned, this SQL file may be run and          
75 -- imported using the following command syntax as one line where the    
76 -- -h option is only needed if applying this script for a database held 
77 -- on a remote server.                                                  
78 --                                                                      
79 -- mysql [-h YourMySQLServername] -uYourKohaMySQLUsername               
80 -- -p YourKohaDatabasename < /path/to/marc21_standard_bib_framework.sql 
81 --                                                                      
82 -- *********************************************************************
83
84
85 DROP TABLE IF EXISTS `biblio_framework`;
86 CREATE TABLE IF NOT EXISTS `biblio_framework` (
87   `frameworkcode` char(32) NOT NULL default '',
88   `frameworktext` char(255) NOT NULL default '',
89   PRIMARY KEY  (`frameworkcode`)
90 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
91
92 -- ADJUST ME
93 -- Uncomment the line below and adjust if needed.
94 -- ENGINE=MyISAM DEFAULT CHARSET=utf8
95
96 ;
97
98
99
100 -- More columns specifying more details about the independent control 
101 -- of indicators are needed, etc.  However, some subfield columns are 
102 -- more important for short term issues.                              
103
104
105 DROP TABLE IF EXISTS `marc_tag_structure`;
106 CREATE TABLE IF NOT EXISTS `marc_tag_structure` (
107   `tagfield` char(3) NOT NULL default '',
108   `liblibrarian` char(255) NOT NULL default '',
109   `libopac` char(255) NOT NULL default '',
110   `repeatable` tinyint(4) NOT NULL default '0',
111   `mandatory` tinyint(4) NOT NULL default '0',
112   `authorised_value` char(10) default NULL,
113   `frameworkcode` char(32) NOT NULL default '',
114   PRIMARY KEY  (`frameworkcode`,`tagfield`)
115   
116 )
117
118 -- ADJUST ME
119 -- Uncomment the line below and adjust if needed.
120 -- ENGINE=MyISAM DEFAULT CHARSET=utf8
121
122 ;
123
124
125
126 -- More columns specifying more details about the utility of the subfields 
127 -- and their usual relative order are needed.  Other columns could use a
128 -- somewhat larger size with semantically meaningful labels.
129
130
131 DROP TABLE IF EXISTS `marc_subfield_structure`;
132 CREATE TABLE IF NOT EXISTS `marc_subfield_structure` (
133   `tagfield` varchar(3) NOT NULL default '',
134   `tagsubfield` char(1) NOT NULL default '',
135   `liblibrarian` varchar(255) NOT NULL default '',
136   `libopac` varchar(255) NOT NULL default '',
137   `repeatable` tinyint(4) NOT NULL default '0',
138   `mandatory` tinyint(4) NOT NULL default '0',
139   `kohafield` varchar(40) default NULL,
140   `tab` tinyint(1) default NULL,
141   `authorised_value` varchar(10) default NULL,
142   `authtypecode` varchar(10) default NULL,
143   `value_builder` varchar(80) default NULL,
144   `isurl` tinyint(1) default NULL,
145   `hidden` tinyint(1) default NULL,
146   `frameworkcode` varchar(32) NOT NULL default '',
147   `seealso` text default NULL,
148   `link` varchar(80) default NULL,
149   PRIMARY KEY  (`frameworkcode`,`tagfield`,`tagsubfield`),
150   KEY `kohafield_2` (`kohafield`),
151   KEY `tab` (`frameworkcode`,`tab`),
152   KEY `kohafield` (`frameworkcode`,`kohafield`)
153   
154 )
155
156 -- ADJUST ME
157 -- Uncomment the line below and adjust if needed.
158 -- ENGINE=MyISAM DEFAULT CHARSET=utf8
159
160 ;
161
162
163
164 -- ******************************
165 -- ASMP KOHA MARC 21 FRAMEWORKS. 
166 -- ******************************
167
168 INSERT INTO `biblio_framework` VALUES ('ASMP_BOOKS', 'Books, Booklets, Workbooks');
169 INSERT INTO `biblio_framework` VALUES ('ASMP_SOUND_RECORDINGS', 'Audio Cassettes, CDs)');
170 INSERT INTO `biblio_framework` VALUES ('ASMP_VIDEORECORDINGS', 'DVDs, VHS)');
171
172 -- ******************************************************
173
174
175
176 -- ******************************************************
177 -- KOHA RECORD AND HOLDINGS MANAGEMENT FIELDS/SUBFIELDS. 
178 -- ******************************************************
179
180 -- These ought to be adjusted for different less conflicting and more 
181 -- rationally chosen fields and subfields but I had left that for last. 
182
183 -- ADJUST ME
184 -- Use values from your dump of marc_tag_structure and marc_subfield_structure 
185 -- to provide support for your Koha database.
186
187
188 -- ******************************************************
189
190 -- Original Record ID Field/Subfields 
191
192
193 -- INSERT INTO `marc_tag_structure` VALUES ('090', 'KOHA DATA', 'KOHA DATA', 1, 0, '', ''); 
194
195 -- INSERT INTO marc_subfield_structure VALUES ('090', 'a', 'Koha Itemtype (NR)', 'Koha Itemtype (NR)', 0, 0, NULL, -1, NULL, NULL, '', NULL, '', NULL, NULL); 
196 -- INSERT INTO marc_subfield_structure VALUES ('090', 'b', 'Koha Dewey Subclass (NR)', 'Koha Dewey Subclass (NR)', 0, 0, NULL, -1, NULL, NULL, '', NULL, '', NULL, NULL); 
197 -- INSERT INTO marc_subfield_structure VALUES ('090', 'c', 'Koha biblionumber (NR)', 'Koha biblionumber (NR)', 0, 0, 'biblio.biblionumber', -1, NULL, NULL, '', NULL, '', NULL, NULL); 
198 -- INSERT INTO marc_subfield_structure VALUES ('090', 'd', 'Koha biblioitemnumber (NR)', 'Koha biblioitemnumber (NR)', 0, 0, 'biblioitems.biblioitemnumber', -1, NULL, NULL, '', NULL, '', NULL, NULL); 
199
200
201 -- Current Record ID Field/Subfields 
202
203
204 INSERT INTO `marc_tag_structure` VALUES ('090', 'SYSTEM CONTROL NUMBERS (KOHA)', 'SYSTEM CONTROL NUMBERS (KOHA)', 1, 0, '', '');
205
206 INSERT INTO `marc_subfield_structure` VALUES ('090', 'a', 'Item type [OBSOLETE]', 'Item type [OBSOLETE]', 0, 0, NULL, -1, NULL, NULL, '', NULL, -5, '', '', '');
207 INSERT INTO `marc_subfield_structure` VALUES ('090', 'b', 'Koha Dewey Subclass [OBSOLETE]', 'Koha Dewey Subclass [OBSOLETE]', 0, 0, NULL, 0, NULL, NULL, '', NULL, -5, '', '', '');
208 INSERT INTO `marc_subfield_structure` VALUES ('090', 'c', 'Koha biblionumber', 'Koha biblionumber', 0, 0, 'biblio.biblionumber', -1, NULL, NULL, '', NULL, -5, '', '', '');
209 INSERT INTO `marc_subfield_structure` VALUES ('090', 'd', 'Koha biblioitemnumber', 'Koha biblioitemnumber', 0, 0, 'biblioitems.biblioitemnumber', -1, NULL, NULL, '', NULL, -5, '', '', '');
210
211
212 -- ******************************************************
213
214 -- Original primary biblioitems Field/Subfields 
215
216
217 -- INSERT INTO `marc_tag_structure` VALUES ('942', 'Biblioitem information', 'General classification', 0, 0, '', ''); 
218
219 -- INSERT INTO marc_subfield_structure VALUES ('942', 'a', 'Institution code', 'Institution code', 0, 0, '', 5, '', '', '', NULL, '', NULL, NULL); 
220 -- INSERT INTO marc_subfield_structure VALUES ('942', 'c', 'item type', 'item type', 0, 0, 'biblioitems.itemtype', 5, 'itemtypes', '', '', NULL, '', NULL, NULL); 
221 -- INSERT INTO marc_subfield_structure VALUES ('942', 'k', 'dewey', 'dewey', 0, 0, 'biblioitems.classification', 5, '', '', '', NULL, '', NULL, NULL); 
222
223
224 -- Current primary biblioitems Field/Subfields 
225
226
227 INSERT INTO `marc_tag_structure` VALUES ('942', 'ADDED ENTRY ELEMENTS (KOHA)', 'ADDED ENTRY ELEMENTS (KOHA)', 0, 0, '', '');
228
229 INSERT INTO `marc_subfield_structure` VALUES ('942', 'a', 'Institution code [OBSOLETE]', 'Institution code [OBSOLETE]', 0, 0, '', 9, '', '', '', NULL, -5, '', '', '');
230 INSERT INTO `marc_subfield_structure` VALUES ('942', 'c', 'Item type', 'Item type', 0, 1, 'biblioitems.itemtype', 9, 'itemtypes', '', '', NULL, 0, '', '', '');
231 INSERT INTO `marc_subfield_structure` VALUES ('942', 'j', 'Location (call number prefix code)', 'Location (call number prefix code)', 0, 0, 'biblioitems.classification', 9, '', '', '', NULL, 0, '', '', '');
232 INSERT INTO `marc_subfield_structure` VALUES ('942', 'k', 'Classification base (DDC to decimal or LCC letter class padded after single letter classes with trailing 0', 'Classification base', 0, 0, 'biblioitems.dewey', 9, '', '', '', NULL, 0, '', '', '');
233 INSERT INTO `marc_subfield_structure` VALUES ('942', 'l', 'Classification subclass (DDC after decimal or LCC number after letters', 'Classification subclass', 0, 0, 'biblioitems.subclass', 9, '', '', '', NULL, 0, '', '', '');
234
235
236 -- ******************************************************
237
238 -- Original items Field/Subfields 
239
240
241 -- INSERT INTO `marc_tag_structure` VALUES ('952', 'ITEM INFORMATION', 'ITEM INFORMATION', 1, 0, '', ''); 
242
243 -- INSERT INTO marc_subfield_structure VALUES ('952', 'b', 'homebranch', 'homebranch', 0, 0, 'items.homebranch', 10, 'branches', '', '', '', '', NULL, NULL); 
244 -- INSERT INTO marc_subfield_structure VALUES ('952', 'd', 'holdingbranch', 'holdingbranch', 0, 0, 'items.holdingbranch', 10, 'branches', '', '', '\'952b\'', '', NULL, NULL); 
245 -- INSERT INTO marc_subfield_structure VALUES ('952', 'p', 'barcode', 'barcode', 0, 1, 'items.barcode', 10, '', '', '', '', '', NULL, NULL); 
246 -- INSERT INTO marc_subfield_structure VALUES ('952', 'r', 'price', 'price', 0, 0, 'items.replacementprice', 10, '', '', '', '', '', NULL, NULL); 
247 -- INSERT INTO marc_subfield_structure VALUES ('952', 'v', 'dateaccessioned', 'dateaccessioned', 0, 0, 'items.dateaccessioned', 10, '', '', '', '', '', NULL, NULL); 
248 -- INSERT INTO marc_subfield_structure VALUES ('952', 'y', 'notforloan', 'notforloan', 0, 0, 'items.notforloan', 10, '', '', '', '', '', NULL, NULL); 
249 -- INSERT INTO marc_subfield_structure VALUES ('952', 'u', 'itemnumber', 'itemnumber', 0, 0, 'items.itemnumber', -1, '', '', '', '', '', NULL, NULL); 
250
251
252
253 -- Recommended items Field/Subfields 
254
255
256 -- INSERT INTO `marc_tag_structure` VALUES ('95k', 'LOCATION AND ITEM INFORMATION (KOHA)', 'LOCATION AND ITEM INFORMATION (KOHA)', 1, 0, '', '');
257
258 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '0', 'Item status (withdrawn) (similar to 876-8 $j)', 'Item status (withdrawn)', 0, 0, 'items.withdrawn', 10, '', '', '', 0, 0, '', '', '');
259 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '1', 'Item status (lost) (similar to 876-8 $j)', 'Item status (lost)', 0, 0, 'items.itemlost', 10, '', '', '', 0, 0, '', '', '');
260 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '2', 'Source of classification or shelving scheme (similar to 852 $2)', 'Source of classification or shelving scheme', 0, 0, '', 10, '', '', '', NULL, 0, '', '', '');
261 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '3', 'Materials specified (similar to 852, 876-8 $3)', 'Materials specified', 0, 0, '', 10, '', '', '', NULL, -1, '', '', '');
262 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '4', 'Use restrictions (similar to 506 $a, 876-8 $h)', 'Use restrictions', 0, 0, 'items.restricted', 10, '', '', '', 0, 0, '', '', '');
263 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '6', 'Linkage (similar to 852, 876-8 $6)', 'Linkage', 0, 0, '', 10, '', '', '', NULL, -6, '', '', '');
264 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '8', 'Sequence number (similar to 852, 876-8 $8)', 'Sequence number', 1, 0, '', 10, '', '', '', NULL, 0, '', '', '');
265 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '9', 'Koha itemnumber (autogenerated similar to 852, 876-8 $3 $8 $t combined)', 'Koha itemnumber', 0, 0, 'items.itemnumber', -1, '', '', '', 0, 0, '', '', '');
266 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'a', 'Location (homebranch) (similar to 852 $a)', 'Location (homebranch)', 0, 0, 'items.homebranch', 10, 'branches', '', '', 0, 0, '', '', '');
267 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'b', 'Sublocation or collection (holdingbranch) (similar to 852 $b)', 'Sublocation or collection (holdingbranch)', 1, 0, 'items.holdingbranch', 10, 'branches', '', '', 0, 0, '', '', '');
268 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'c', 'Shelving location (similar to 852 $c, 876-8 $l)', 'Shelving location', 1, 0, 'items.location', 10, '', '', '', 0, 0, '', '', '');
269 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'd', 'Date acquired (similar to 541, 876-8 $d)', 'Date acquired', 0, 0, 'items.dateaccessioned', 10, '', '', '', 0, 0, '', '', '');
270 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'e', 'Source of acquisition (similar to 541 $a, 876-8 $e)', 'Source of acquisition', 1, 0, 'items.booksellerid', 10, '', '', '', 0, 0, '', '', '');
271 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'f', 'Coded location qualifier (similar to 852 $f)', 'Coded location qualifier', 1, 0, '', 10, '', '', '', NULL, 0, '', '', '');
272 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'g', 'Non-coded location qualifier (similar to 852 $g)', 'Non-coded location qualifier', 1, 0, '', 10, '', '', '', NULL, 0, '', '', '');
273 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'h', 'Classification part (similar to 852 $h)', 'Classification part', 0, 0, '', 10, '', '', '', NULL, 0, '', '', '');
274 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'i', 'Item part (similar to 852 $i)', 'Item part', 1, 0, '', 10, '', '', '', NULL, 0, '', '', '');
275 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'j', 'Shelving control number (similar to 852 $j)', 'Shelving control number', 0, 0, '', 10, '', '', '', NULL, 0, '', '', '');
276 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'k', 'Call number prefix (similar to 852 $k)', 'Call number prefix', 0, 0, '', 10, '', '', '', NULL, 0, '', '', '');
277 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'l', 'Shelving form of title (similar to 852 $l)', 'Shelving form of title', 0, 0, '', 10, '', '', '', NULL, 0, '', '', '');
278 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'm', 'Call number suffix (similar to 852 $m)', 'Call number suffix', 0, 0, '', 10, '', '', '', NULL, 0, '', '', '');
279 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'n', 'Country code (similar to 852 $n)', 'Country code', 0, 0, '', 10, '', '', '', NULL, 0, '', '', '');
280 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'o', 'Call number (similar to 852 $k $h $i $m combined)', 'Call number', 0, 0, 'items.itemcallnumber', 10, '', '', NULL, 0, 0, '', '', '');
281 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'p', 'Piece designation (barcode) (similar to 852, 876-8 $p)', 'Piece designation (barcode)', 0, 1, 'items.barcode', 10, '', '', '', 0, 0, '', '', '');
282 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'q', 'Piece physical condition (similar to 562 $a, 852 $q)', 'Piece physical condition', 0, 0, '', 10, '', '', '', NULL, 0, '', '', '');
283 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'r', 'Invalid or canceled piece designation (canceled barcode) (similar to 876-8 $r)', 'Invalid or canceled piece designation (canceled barcode)', 1, 0, '', 10, '', '', '', NULL, -1, '', '', '');
284 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 's', 'Copyright article-fee code (similar to 018 $a, 852 $s)', 'Copyright article-fee code', 1, 0, '', 10, '', '', '', NULL, 0, '', '', '');
285 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 't', 'Copy number (similar to 852, 876-8 $t)', 'Copy number', 0, 0, '', 10, '', '', '', NULL, 0, '', '', '');
286 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'u', 'Cost, normal purchase price (similar to 541 $h, 876-8 $c)', 'Cost, normal purchase price', 0, 0, 'items.price', 10, '', '', '', 0, 0, '', '', '');
287 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'v', 'Cost, replacement price (similar to 365 $b, 876-8 $c)', 'Cost, replacement price', 0, 0, 'items.replacementprice', 10, '', '', '', 0, 0, '', '', '');
288 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'w', 'Price effective from (similar to 365 $f)', 'Price effective from', 0, 0, 'items.replacementpricedate', 10, '', '', '', 0, 0, '', '', '');
289 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'x', 'Nonpublic note (similar to 852, 876-8 $x)', 'Nonpublic note', 1, 0, '', 10, '', '', '', NULL, 6, '', '', '');
290 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'y', 'Use restrictions (not for loan) (similar to 506 $a, 876-8 $h)', 'Use restrictions (not for loan)', 0, 0, 'items.notforloan', 10, '', '', '', 0, 0, '', '', '');
291 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'z', 'Public note (similar to 852, 876-8 $z)', 'Public note', 0, 0, 'items.itemnotes', 10, '', '', '', 1, 0, '', '', '');
292
293
294
295 -- Current items Field/Subfields 
296
297
298 INSERT INTO `marc_tag_structure` VALUES ('952', 'LOCATION AND ITEM INFORMATION (KOHA)', 'LOCATION AND ITEM INFORMATION (KOHA)', 1, 0, '', '');
299
300 INSERT INTO `marc_subfield_structure` VALUES ('952', '0', 'Item status (withdrawn) (similar to 876-8 $j)', 'Item status (withdrawn)', 0, 0, 'items.withdrawn', 10, '', '', '', 0, 0, '', '', '');
301 INSERT INTO `marc_subfield_structure` VALUES ('952', '1', 'Item status (lost) (similar to 876-8 $j)', 'Item status (lost)', 0, 0, 'items.itemlost', 10, '', '', '', 0, 0, '', '', '');
302 INSERT INTO `marc_subfield_structure` VALUES ('952', '2', 'Source of classification or shelving scheme (similar to 852 $2)', 'Source of classification or shelving scheme', 0, 0, '', 10, '', '', '', NULL, 0, '', '', '');
303 INSERT INTO `marc_subfield_structure` VALUES ('952', '3', 'Materials specified (similar to 852, 876-8 $3)', 'Materials specified', 0, 0, '', 10, '', '', '', NULL, -1, '', '', '');
304 INSERT INTO `marc_subfield_structure` VALUES ('952', '4', 'Use restrictions (similar to 506 $a, 876-8 $h)', 'Use restrictions', 0, 0, 'items.restricted', 10, '', '', '', 0, 0, '', '', '');
305 INSERT INTO `marc_subfield_structure` VALUES ('952', '6', 'Linkage (similar to 852, 876-8 $6)', 'Linkage', 0, 0, '', 10, '', '', '', NULL, -6, '', '', '');
306 INSERT INTO `marc_subfield_structure` VALUES ('952', '8', 'Sequence number (similar to 852, 876-8 $8)', 'Sequence number', 1, 0, '', 10, '', '', '', NULL, 0, '', '', '');
307 INSERT INTO `marc_subfield_structure` VALUES ('952', '9', 'Cost, normal purchase price (similar to 541 $h, 876-8 $c)', 'Cost, normal purchase price', 0, 0, 'items.price', 10, '', '', '', 0, 0, '', '', '');
308 INSERT INTO `marc_subfield_structure` VALUES ('952', 'a', 'Invalid or canceled piece designation (canceled barcode) (similar to 876-8 $r)', 'Invalid or canceled piece designation (canceled barcode)', 1, 0, '', 10, '', '', '', NULL, -1, '', '', '');
309 INSERT INTO `marc_subfield_structure` VALUES ('952', 'b', 'Location (homebranch) (similar to 852 $a)', 'Location (homebranch)', 0, 0, 'items.homebranch', 10, 'branches', '', '', 0, 0, '', '', '');
310 INSERT INTO `marc_subfield_structure` VALUES ('952', 'c', 'Shelving location (similar to 852 $c, 876-8 $l)', 'Shelving location', 1, 0, 'items.location', 10, '', '', '', 0, 0, '', '', '');
311 INSERT INTO `marc_subfield_structure` VALUES ('952', 'd', 'Sublocation or collection (holdingbranch) (similar to 852 $b)', 'Sublocation or collection (holdingbranch)', 0, 0, 'items.holdingbranch', 10, 'branches', '', '', 0, 0, '', '''952b''', '');
312 INSERT INTO `marc_subfield_structure` VALUES ('952', 'e', 'Source of acquisition (similar to 541 $a, 876-8 $e)', 'Source of acquisition', 1, 0, 'items.booksellerid', 10, '', '', '', 0, 0, '', '', '');
313 INSERT INTO `marc_subfield_structure` VALUES ('952', 'f', 'Coded location qualifier (similar to 852 $f)', 'Coded location qualifier', 1, 0, '', 10, '', '', '', NULL, 0, '', '', '');
314 INSERT INTO `marc_subfield_structure` VALUES ('952', 'g', 'Non-coded location qualifier (similar to 852 $g)', 'Non-coded location qualifier', 1, 0, '', 10, '', '', '', NULL, 0, '', '', '');
315 INSERT INTO `marc_subfield_structure` VALUES ('952', 'h', 'Classification part (similar to 852 $h)', 'Classification part', 0, 0, '', 10, '', '', '', NULL, 0, '', '', '');
316 INSERT INTO `marc_subfield_structure` VALUES ('952', 'i', 'Item part (similar to 852 $i)', 'Item part', 1, 0, '', 10, '', '', '', NULL, 0, '', '', '');
317 INSERT INTO `marc_subfield_structure` VALUES ('952', 'j', 'Shelving control number (similar to 852 $j)', 'Shelving control number', 0, 0, '', 10, '', '', '', NULL, 0, '', '', '');
318 INSERT INTO `marc_subfield_structure` VALUES ('952', 'k', 'Call number (similar to 852 $k $h $i $m combined)', 'Call number', 0, 0, 'items.itemcallnumber', 10, '', '', NULL, 0, 0, '', '', '');
319 INSERT INTO `marc_subfield_structure` VALUES ('952', 'l', 'Shelving form of title (similar to 852 $l)', 'Shelving form of title', 0, 0, '', 10, '', '', '', NULL, 0, '', '', '');
320 INSERT INTO `marc_subfield_structure` VALUES ('952', 'm', 'Call number suffix (similar to 852 $m)', 'Call number suffix', 0, 0, '', 10, '', '', '', NULL, 0, '', '', '');
321 INSERT INTO `marc_subfield_structure` VALUES ('952', 'n', 'Country code (similar to 852 $n)', 'Country code', 0, 0, '', 10, '', '', '', NULL, 0, '', '', '');
322 INSERT INTO `marc_subfield_structure` VALUES ('952', 'o', 'Call number prefix (similar to 852 $k)', 'Call number prefix', 0, 0, '', 10, '', '', '', NULL, 0, '', '', '');
323 INSERT INTO `marc_subfield_structure` VALUES ('952', 'p', 'Piece designation (barcode) (similar to 852, 876-8 $p)', 'Piece designation (barcode)', 0, 1, 'items.barcode', 10, '', '', '', 0, 0, '', '', '');
324 INSERT INTO `marc_subfield_structure` VALUES ('952', 'q', 'Piece physical condition (similar to 562 $a, 852 $q)', 'Piece physical condition', 0, 0, '', 10, '', '', '', NULL, 0, '', '', '');
325 INSERT INTO `marc_subfield_structure` VALUES ('952', 'r', 'Cost, replacement price (similar to 365 $b, 876-8 $c)', 'Cost, replacement price', 0, 0, 'items.replacementprice', 10, '', '', '', 0, 0, '', '', '');
326 INSERT INTO `marc_subfield_structure` VALUES ('952', 's', 'Copyright article-fee code (similar to 018 $a, 852 $s)', 'Copyright article-fee code', 1, 0, '', 10, '', '', '', NULL, 0, '', '', '');
327 INSERT INTO `marc_subfield_structure` VALUES ('952', 't', 'Copy number (similar to 852, 876-8 $t)', 'Copy number', 0, 0, '', 10, '', '', '', NULL, 0, '', '', '');
328 INSERT INTO `marc_subfield_structure` VALUES ('952', 'u', 'Koha itemnumber (autogenerated similar to 852, 876-8 $3 $8 $t combined)', 'Koha itemnumber', 0, 0, 'items.itemnumber', -1, '', '', '', 0, 0, '', '', '');
329 INSERT INTO `marc_subfield_structure` VALUES ('952', 'v', 'Date acquired (similar to 541, 876-8 $d)', 'Date acquired', 0, 0, 'items.dateaccessioned', 10, '', '', '', 0, 0, '', '', '');
330 INSERT INTO `marc_subfield_structure` VALUES ('952', 'w', 'Price effective from (similar to 365 $f)', 'Price effective from', 0, 0, 'items.replacementpricedate', 10, '', '', '', 0, 0, '', '', '');
331 INSERT INTO `marc_subfield_structure` VALUES ('952', 'x', 'Nonpublic note (similar to 852, 876-8 $x)', 'Nonpublic note', 1, 0, '', 10, '', '', '', NULL, 6, '', '', '');
332 INSERT INTO `marc_subfield_structure` VALUES ('952', 'y', 'Use restrictions (not for loan) (similar to 506 $a, 876-8 $h)', 'Use restrictions (not for loan)', 0, 0, 'items.notforloan', 10, '', '', '', 0, 0, '', '', '');
333 INSERT INTO `marc_subfield_structure` VALUES ('952', 'z', 'Public note (similar to 852, 876-8 $z)', 'Public note', 0, 0, 'items.itemnotes', 10, '', '', '', 1, 0, '', '', '');
334
335
336 -- *******************************************************
337
338
339
340 -- *******************************************************
341 -- MARC 21 FIELDS/SUBFIELDS AND COMMMONLY USED EXTENSIONS 
342 -- *******************************************************
343
344
345 -- A Few local use codes need specifying.  Several seealso, plugin, and 
346 -- authority framework columns need improving.  $9 for authority record linking 
347 -- needs to be added where not already provided by RLIN specifications. 
348 -- Needs checking for errors but probably tolerable for use on a production. 
349 -- A server can be upgraded easily from later versions of this file.
350 --                                                                          
351 -- In the absense of more column support for qualifying the relative 
352 -- importance of subfields to the record editor, some modest modification of 
353 -- the default framework is needed setting the not-useful non-Koha holdings 
354 -- subfields to not managed in Koha.
355
356 -- MARC fields including letters as part of the field identifier are from RLIN
357 -- and should be expected to remain along with RLIN $% subfields.  RLIN has 
358 -- been using letters in fields because there are not enough local use number 
359 -- fields which have not already been specified for very large union catalogue 
360 -- networks such as RLIN itself.
361
362
363 -- Fields ending in c, o, or r are temporary placeholders for information from
364 -- a numeric value until a non-conflicting way to treat the content under the
365 -- proper original numeric field is adopted.  090 for LC call numbers is much 
366 -- too common and important so 999 is also provided as a temporary place 
367 -- holder until all Koha code for finding control fields has been changed from 
368 -- a numeric test of < 10 to a regular expression match of m/^00/ to prevent 
369 -- mistaken matching of fields with letters such as 09o if they were control 
370 -- fields.
371
372
373 INSERT INTO `marc_tag_structure` VALUES ('000', 'LEADER', 'LEADER', 0, 1, '', '');
374 INSERT INTO `marc_tag_structure` VALUES ('001', 'CONTROL NUMBER', 'CONTROL NUMBER', 0, 1, '', '');
375 INSERT INTO `marc_tag_structure` VALUES ('003', 'CONTROL NUMBER IDENTIFIER', 'CONTROL NUMBER IDENTIFIER', 0, 1, '', '');
376 INSERT INTO `marc_tag_structure` VALUES ('005', 'DATE AND TIME OF LATEST TRANSACTION', 'DATE AND TIME OF LATEST TRANSACTION', 0, 1, '', '');
377 INSERT INTO `marc_tag_structure` VALUES ('006', 'FIXED-LENGTH DATA ELEMENTS--ADDITIONAL MATERIAL CHARACTERISTICS--GENERAL INFORMATION', 'FIXED-LENGTH DATA ELEMENTS--ADDITIONAL MATERIAL CHARACTERISTICS--GENERAL INFORMATION', 1, 0, '', '');
378 INSERT INTO `marc_tag_structure` VALUES ('007', 'PHYSICAL DESCRIPTION FIXED FIELD--GENERAL INFORMATION', 'PHYSICAL DESCRIPTION FIXED FIELD--GENERAL INFORMATION', 1, 0, '', '');
379 INSERT INTO `marc_tag_structure` VALUES ('008', 'FIXED-LENGTH DATA ELEMENTS--GENERAL INFORMATION', 'FIXED-LENGTH DATA ELEMENTS--GENERAL INFORMATION', 0, 1, '', '');
380 INSERT INTO `marc_tag_structure` VALUES ('009', 'PHYSICAL DESCRIPTION FIXED-FIELD FOR ARCHIVAL COLLECTION (VM) [OBSOLETE]', 'PHYSICAL DESCRIPTION FIXED-FIELD FOR ARCHIVAL COLLECTION (VM) [OBSOLETE]', 1, 0, '', '');
381 INSERT INTO `marc_tag_structure` VALUES ('010', 'LIBRARY OF CONGRESS CONTROL NUMBER', 'LIBRARY OF CONGRESS CONTROL NUMBER', 0, 0, '', '');
382 INSERT INTO `marc_tag_structure` VALUES ('011', 'LINKING LIBRARY OF CONGRESS CONTROL NUMBER [OBSOLETE]', 'LINKING LIBRARY OF CONGRESS CONTROL NUMBER [OBSOLETE]', 0, 0, '', '');
383 INSERT INTO `marc_tag_structure` VALUES ('013', 'PATENT CONTROL INFORMATION', 'PATENT CONTROL INFORMATION', 1, 0, '', '');
384 INSERT INTO `marc_tag_structure` VALUES ('015', 'NATIONAL BIBLIOGRAPHY NUMBER', 'NATIONAL BIBLIOGRAPHY NUMBER', 1, 0, '', '');
385 INSERT INTO `marc_tag_structure` VALUES ('016', 'NATIONAL BIBLIOGRAPHIC AGENCY CONTROL NUMBER', 'NATIONAL BIBLIOGRAPHIC AGENCY CONTROL NUMBER', 1, 0, '', '');
386 INSERT INTO `marc_tag_structure` VALUES ('017', 'COPYRIGHT OR LEGAL DEPOSIT NUMBER', 'COPYRIGHT OR LEGAL DEPOSIT NUMBER', 1, 0, '', '');
387 INSERT INTO `marc_tag_structure` VALUES ('018', 'COPYRIGHT ARTICLE-FEE CODE', 'COPYRIGHT ARTICLE-FEE CODE', 0, 0, '', '');
388 INSERT INTO `marc_tag_structure` VALUES ('01e', 'CODED FIELD ERROR (RLIN)', 'CODED FIELD ERROR (RLIN)', 1, 0, '', '');
389 INSERT INTO `marc_tag_structure` VALUES ('020', 'INTERNATIONAL STANDARD BOOK NUMBER', 'INTERNATIONAL STANDARD BOOK NUMBER', 1, 0, NULL, '');
390 INSERT INTO `marc_tag_structure` VALUES ('022', 'INTERNATIONAL STANDARD SERIAL NUMBER', 'INTERNATIONAL STANDARD SERIAL NUMBER', 1, 0, NULL, '');
391 INSERT INTO `marc_tag_structure` VALUES ('023', 'STANDARD FILM NUMBER (VM) [DELETED]', 'STANDARD FILM NUMBER (VM) [DELETED]', 1, 0, NULL, '');
392 INSERT INTO `marc_tag_structure` VALUES ('024', 'OTHER STANDARD IDENTIFIER', 'OTHER STANDARD IDENTIFIER', 1, 0, NULL, '');
393 INSERT INTO `marc_tag_structure` VALUES ('025', 'OVERSEAS ACQUISITION NUMBER', 'OVERSEAS ACQUISITION NUMBER', 1, 0, '', '');
394 INSERT INTO `marc_tag_structure` VALUES ('026', 'FINGERPRINT IDENTIFIER', 'FINGERPRINT IDENTIFIER', 1, 0, '', '');
395 INSERT INTO `marc_tag_structure` VALUES ('027', 'STANDARD TECHNICAL REPORT NUMBER', 'STANDARD TECHNICAL REPORT NUMBER', 1, 0, '', '');
396 INSERT INTO `marc_tag_structure` VALUES ('028', 'PUBLISHER NUMBER', 'PUBLISHER NUMBER', 1, 0, NULL, '');
397 INSERT INTO `marc_tag_structure` VALUES ('029', 'OTHER SYSTEM CONTROL NUMBER (OCLC)', ' (OCLC)', 1, 0, '', '');
398 INSERT INTO `marc_tag_structure` VALUES ('030', 'CODEN DESIGNATION', 'CODEN DESIGNATION', 1, 0, '', '');
399 INSERT INTO `marc_tag_structure` VALUES ('031', 'MUSICAL INCIPITS INFORMATION', 'MUSICAL INCIPITS INFORMATION', 1, 0, '', '');
400 INSERT INTO `marc_tag_structure` VALUES ('032', 'POSTAL REGISTRATION NUMBER', 'POSTAL REGISTRATION NUMBER', 1, 0, '', '');
401 INSERT INTO `marc_tag_structure` VALUES ('033', 'DATE/TIME AND PLACE OF AN EVENT', 'DATE/TIME AND PLACE OF AN EVENT', 1, 0, '', '');
402 INSERT INTO `marc_tag_structure` VALUES ('034', 'CODED CARTOGRAPHIC MATHEMATICAL DATA', 'CODED CARTOGRAPHIC MATHEMATICAL DATA', 1, 0, '', '');
403 INSERT INTO `marc_tag_structure` VALUES ('035', 'SYSTEM CONTROL NUMBER', 'SYSTEM CONTROL NUMBER', 1, 0, NULL, '');
404 INSERT INTO `marc_tag_structure` VALUES ('036', 'ORIGINAL STUDY NUMBER FOR COMPUTER DATA FILES', 'ORIGINAL STUDY NUMBER FOR COMPUTER DATA FILES', 0, 0, '', '');
405 INSERT INTO `marc_tag_structure` VALUES ('037', 'SOURCE OF ACQUISITION', 'SOURCE OF ACQUISITION', 1, 0, NULL, '');
406 INSERT INTO `marc_tag_structure` VALUES ('038', 'RECORD CONTENT LICENSOR', 'RECORD CONTENT LICENSOR', 0, 0, '', '');
407 INSERT INTO `marc_tag_structure` VALUES ('039', 'LEVEL OF BIBLIOGRAPHIC CONTROL AND CODING DETAIL [OBSOLETE]', 'LEVEL OF BIBLIOGRAPHIC CONTROL AND CODING DETAIL [OBSOLETE]', 0, 0, '', '');
408 INSERT INTO `marc_tag_structure` VALUES ('040', 'CATALOGING SOURCE', 'CATALOGING SOURCE', 0, 1, NULL, '');
409 INSERT INTO `marc_tag_structure` VALUES ('041', 'LANGUAGE CODE', 'LANGUAGE CODE', 1, 0, '', '');
410 INSERT INTO `marc_tag_structure` VALUES ('042', 'AUTHENTICATION CODE', 'AUTHENTICATION CODE', 0, 0, '', '');
411 INSERT INTO `marc_tag_structure` VALUES ('043', 'GEOGRAPHIC AREA CODE', 'GEOGRAPHIC AREA CODE', 0, 0, NULL, '');
412 INSERT INTO `marc_tag_structure` VALUES ('044', 'COUNTRY OF PUBLISHING/PRODUCING ENTITY CODE', 'COUNTRY OF PUBLISHING/PRODUCING ENTITY CODE', 0, 0, '', '');
413 INSERT INTO `marc_tag_structure` VALUES ('045', 'TIME PERIOD OF CONTENT', 'TIME PERIOD OF CONTENT', 0, 0, '', '');
414 INSERT INTO `marc_tag_structure` VALUES ('046', 'SPECIAL CODED DATES', 'SPECIAL CODED DATES', 1, 0, '', '');
415 INSERT INTO `marc_tag_structure` VALUES ('047', 'FORM OF MUSICAL COMPOSITION CODE', 'FORM OF MUSICAL COMPOSITION CODE', 0, 0, '', '');
416 INSERT INTO `marc_tag_structure` VALUES ('048', 'NUMBER OF MUSICAL INSTRUMENTS OR VOICES CODE', 'NUMBER OF MUSICAL INSTRUMENTS OR VOICES CODE', 1, 0, '', '');
417 INSERT INTO `marc_tag_structure` VALUES ('049', 'LOCAL HOLDINGS (OCLC)', 'LOCAL HOLDINGS (OCLC)', 0, 0, '', '');
418 INSERT INTO `marc_tag_structure` VALUES ('050', 'LIBRARY OF CONGRESS CALL NUMBER', 'LIBRARY OF CONGRESS CALL NUMBER', 1, 0, NULL, '');
419 INSERT INTO `marc_tag_structure` VALUES ('051', 'LIBRARY OF CONGRESS COPY, ISSUE, OFFPRINT STATEMENT', 'LIBRARY OF CONGRESS COPY, ISSUE, OFFPRINT STATEMENT', 1, 0, NULL, '');
420 INSERT INTO `marc_tag_structure` VALUES ('052', 'GEOGRAPHIC CLASSIFICATION', 'GEOGRAPHIC CLASSIFICATION', 1, 0, NULL, '');
421 INSERT INTO `marc_tag_structure` VALUES ('055', 'CLASSIFICATION NUMBERS ASSIGNED IN CANADA', 'CLASSIFICATION NUMBERS ASSIGNED IN CANADA', 1, 0, NULL, '');
422 INSERT INTO `marc_tag_structure` VALUES ('060', 'NATIONAL LIBRARY OF MEDICINE CALL NUMBER', 'NATIONAL LIBRARY OF MEDICINE CALL NUMBER', 1, 0, NULL, '');
423 INSERT INTO `marc_tag_structure` VALUES ('061', 'NATIONAL LIBRARY OF MEDICINE COPY STATEMENT', 'NATIONAL LIBRARY OF MEDICINE COPY STATEMENT', 1, 0, NULL, '');
424 INSERT INTO `marc_tag_structure` VALUES ('066', 'CHARACTER SETS PRESENT', 'CHARACTER SETS PRESENT', 0, 0, NULL, '');
425 INSERT INTO `marc_tag_structure` VALUES ('070', 'NATIONAL AGRICULTURAL LIBRARY CALL NUMBER', 'NATIONAL AGRICULTURAL LIBRARY CALL NUMBER', 1, 0, NULL, '');
426 INSERT INTO `marc_tag_structure` VALUES ('071', 'NATIONAL AGRICULTURAL LIBRARY COPY STATEMENT', 'NATIONAL AGRICULTURAL LIBRARY COPY STATEMENT', 1, 0, NULL, '');
427 INSERT INTO `marc_tag_structure` VALUES ('072', 'SUBJECT CATEGORY CODE', 'SUBJECT CATEGORY CODE', 1, 0, NULL, '');
428 INSERT INTO `marc_tag_structure` VALUES ('074', 'GPO ITEM NUMBER', 'GPO ITEM NUMBER', 1, 0, NULL, '');
429 INSERT INTO `marc_tag_structure` VALUES ('080', 'UNIVERSAL DECIMAL CLASSIFICATION NUMBER', 'UNIVERSAL DECIMAL CLASSIFICATION NUMBER', 1, 0, NULL, '');
430 INSERT INTO `marc_tag_structure` VALUES ('082', 'DEWEY DECIMAL CLASSIFICATION NUMBER', 'DEWEY DECIMAL CLASSIFICATION NUMBER', 1, 0, NULL, '');
431 INSERT INTO `marc_tag_structure` VALUES ('084', 'OTHER CLASSIFICATION NUMBER', 'OTHER CLASSIFICATION NUMBER', 1, 0, NULL, '');
432 INSERT INTO `marc_tag_structure` VALUES ('086', 'GOVERNMENT DOCUMENT CLASSIFICATION NUMBER', 'GOVERNMENT DOCUMENT CLASSIFICATION NUMBER', 1, 0, NULL, '');
433 INSERT INTO `marc_tag_structure` VALUES ('087', 'REPORT NUMBER [OBSOLETE, CAN/MARC]', 'REPORT NUMBER [OBSOLETE, CAN/MARC]', 1, 0, NULL, '');
434 INSERT INTO `marc_tag_structure` VALUES ('088', 'REPORT NUMBER', 'REPORT NUMBER', 1, 0, NULL, '');
435 INSERT INTO `marc_tag_structure` VALUES ('09o', 'LOCALLY ASSIGNED LC-TYPE CALL NUMBER (OCLC); LOCAL CALL NUMBER (RLIN)', 'LOCALLY ASSIGNED LC-TYPE CALL NUMBER (OCLC); LOCAL CALL NUMBER (OCLC)', 1, 0, '', '');
436 INSERT INTO `marc_tag_structure` VALUES ('091', 'MICROFILM SHELF LOCATION (AM) [OBSOLETE]', 'MICROFILM SHELF LOCATION (AM) [OBSOLETE]', 0, 0, '', '');
437 INSERT INTO `marc_tag_structure` VALUES ('092', 'LOCALLY ASSIGNED DEWEY CALL NUMBER (OCLC)', 'LOCALLY ASSIGNED DEWEY CALL NUMBER (OCLC)', 1, 0, '', '');
438 INSERT INTO `marc_tag_structure` VALUES ('096', 'LOCALLY ASSIGNED NLM-TYPE CALL NUMBER (OCLC)', 'LOCALLY ASSIGNED NLM-TYPE CALL NUMBER (OCLC)', 1, 0, '', '');
439 INSERT INTO `marc_tag_structure` VALUES ('098', 'OTHER CLASSIFICATION SCHEMES (OCLC)', 'OTHER CLASSIFICATION SCHEMES (OCLC)', 1, 0, '', '');
440 INSERT INTO `marc_tag_structure` VALUES ('099', 'LOCAL FREE-TEXT CALL NUMBER (OCLC)', 'LOCAL FREE-TEXT CALL NUMBER (OCLC)', 1, 0, '', '');
441 INSERT INTO `marc_tag_structure` VALUES ('100', 'MAIN ENTRY--PERSONAL NAME', 'MAIN ENTRY--PERSONAL NAME', 0, 0, NULL, '');
442 INSERT INTO `marc_tag_structure` VALUES ('110', 'MAIN ENTRY--CORPORATE NAME', 'MAIN ENTRY--CORPORATE NAME', 0, 0, NULL, '');
443 INSERT INTO `marc_tag_structure` VALUES ('111', 'MAIN ENTRY--MEETING NAME', 'MAIN ENTRY--MEETING NAME', 0, 0, NULL, '');
444 INSERT INTO `marc_tag_structure` VALUES ('130', 'MAIN ENTRY--UNIFORM TITLE', 'MAIN ENTRY--UNIFORM TITLE', 0, 0, NULL, '');
445 INSERT INTO `marc_tag_structure` VALUES ('210', 'ABBREVIATED TITLE', 'ABBREVIATED TITLE', 1, 0, NULL, '');
446 INSERT INTO `marc_tag_structure` VALUES ('211', 'ACRONYM OR SHORTENED TITLE [OBSOLETE]', 'ACRONYM OR SHORTENED TITLE [OBSOLETE]', 1, 0, NULL, '');
447 INSERT INTO `marc_tag_structure` VALUES ('212', 'VARIANT ACCESS TITLE [OBSOLETE]', 'VARIANT ACCESS TITLE [OBSOLETE]', 1, 0, NULL, '');
448 INSERT INTO `marc_tag_structure` VALUES ('214', 'AUGMENTED TITLE [OBSOLETE]', 'AUGMENTED TITLE [OBSOLETE]', 1, 0, NULL, '');
449 INSERT INTO `marc_tag_structure` VALUES ('222', 'KEY TITLE', 'KEY TITLE', 1, 0, NULL, '');
450 INSERT INTO `marc_tag_structure` VALUES ('240', 'UNIFORM TITLE', 'UNIFORM TITLE', 0, 0, 'Unititle', '');
451 INSERT INTO `marc_tag_structure` VALUES ('241', 'ROMANIZED TITLE (BK AM CF MP MU VM) [OBSOLETE]', 'ROMANIZED TITLE (BK AM CF MP MU VM) [OBSOLETE]', 0, 0, '', '');
452 INSERT INTO `marc_tag_structure` VALUES ('242', 'TRANSLATION OF TITLE BY CATALOGING AGENCY', 'TRANSLATION OF TITLE BY CATALOGING AGENCY', 1, 0, NULL, '');
453 INSERT INTO `marc_tag_structure` VALUES ('243', 'COLLECTIVE UNIFORM TITLE', 'COLLECTIVE UNIFORM TITLE', 0, 0, '', '');
454 INSERT INTO `marc_tag_structure` VALUES ('245', 'TITLE STATEMENT', 'TITLE STATEMENT', 0, 1, '', '');
455 INSERT INTO `marc_tag_structure` VALUES ('246', 'VARYING FORM OF TITLE', 'VARYING FORM OF TITLE', 1, 0, NULL, '');
456 INSERT INTO `marc_tag_structure` VALUES ('247', 'FORMER TITLE', 'FORMER TITLE', 1, 0, NULL, '');
457 INSERT INTO `marc_tag_structure` VALUES ('250', 'EDITION STATEMENT', 'EDITION STATEMENT', 0, 0, NULL, '');
458 INSERT INTO `marc_tag_structure` VALUES ('254', 'MUSICAL PRESENTATION STATEMENT', 'MUSICAL PRESENTATION STATEMENT', 0, 0, NULL, '');
459 INSERT INTO `marc_tag_structure` VALUES ('255', 'CARTOGRAPHIC MATHEMATICAL DATA', 'CARTOGRAPHIC MATHEMATICAL DATA', 1, 0, NULL, '');
460 INSERT INTO `marc_tag_structure` VALUES ('256', 'COMPUTER FILE CHARACTERISTICS', 'COMPUTER FILE CHARACTERISTICS', 0, 0, NULL, '');
461 INSERT INTO `marc_tag_structure` VALUES ('257', 'COUNTRY OF PRODUCING ENTITY FOR ARCHIVAL FILMS', 'COUNTRY OF PRODUCING ENTITY FOR ARCHIVAL FILMS', 0, 0, NULL, '');
462 INSERT INTO `marc_tag_structure` VALUES ('258', 'PHILATELIC ISSUE DATE', 'PHILATELIC ISSUE DATE', 1, 0, NULL, '');
463 INSERT INTO `marc_tag_structure` VALUES ('260', 'PUBLICATION, DISTRIBUTION, ETC. (IMPRINT)', 'PUBLICATION, DISTRIBUTION, ETC. (IMPRINT)', 1, 0, NULL, '');
464 INSERT INTO `marc_tag_structure` VALUES ('261', 'IMPRINT STATEMENT FOR FILMS (Pre-AACR 1 Revised) [OBSOLETE, CAN/MARC], [LOCAL, USA]', 'IMPRINT STATEMENT FOR FILMS (Pre-AACR 1 Revised) [OBSOLETE, CAN/MARC], [LOCAL, USA]', 0, 0, NULL, '');
465 INSERT INTO `marc_tag_structure` VALUES ('262', 'IMPRINT STATEMENT FOR SOUND RECORDINGS (Pre-AACR 2) [LOCAL, USA]', 'IMPRINT STATEMENT FOR SOUND RECORDINGS (Pre-AACR 2) [LOCAL, USA]', 0, 0, NULL, '');
466 INSERT INTO `marc_tag_structure` VALUES ('263', 'PROJECTED PUBLICATION DATE', 'PROJECTED PUBLICATION DATE', 0, 0, NULL, '');
467 INSERT INTO `marc_tag_structure` VALUES ('265', 'SOURCE FOR ACQUISITION/SUBSCRIPTION ADDRESS [OBSOLETE]', 'SOURCE FOR ACQUISITION/SUBSCRIPTION ADDRESS [OBSOLETE]', 0, 0, NULL, '');
468 INSERT INTO `marc_tag_structure` VALUES ('270', 'ADDRESS', 'ADDRESS', 1, 0, NULL, '');
469 INSERT INTO `marc_tag_structure` VALUES ('300', 'PHYSICAL DESCRIPTION', 'PHYSICAL DESCRIPTION', 1, 1, NULL, '');
470 INSERT INTO `marc_tag_structure` VALUES ('301', 'PHYSICAL DESCRIPTION FOR FILMS (PRE-AACR 2) (VM) [OBSOLETE, USMARC]', 'PHYSICAL DESCRIPTION FOR FILMS (PRE-AACR 2) (VM) [OBSOLETE, USMARC]', 0, 0, NULL, '');
471 INSERT INTO `marc_tag_structure` VALUES ('302', 'PAGE OR ITEM COUNT (BK AM) [OBSOLETE]', 'PAGE OR ITEM COUNT (BK AM) [OBSOLETE]', 0, 0, NULL, '');
472 INSERT INTO `marc_tag_structure` VALUES ('303', 'UNIT COUNT (AM) [OBSOLETE, USMARC]', 'UNIT COUNT (AM) [OBSOLETE, USMARC]', 0, 0, NULL, '');
473 INSERT INTO `marc_tag_structure` VALUES ('304', 'LINEAR FOOTAGE (AM) [OBSOLETE, USMARC]', 'LINEAR FOOTAGE (AM) [OBSOLETE, USMARC]', 0, 0, NULL, '');
474 INSERT INTO `marc_tag_structure` VALUES ('305', 'PHYSICAL DESCRIPTION FOR SOUND RECORDINGS (Pre-AACR 2) (MU) [OBSOLETE]', 'PHYSICAL DESCRIPTION FOR SOUND RECORDINGS (Pre-AACR 2) (MU) [OBSOLETE]', 0, 0, NULL, '');
475 INSERT INTO `marc_tag_structure` VALUES ('306', 'PLAYING TIME', 'PLAYING TIME', 0, 0, NULL, '');
476 INSERT INTO `marc_tag_structure` VALUES ('307', 'HOURS, ETC.', 'HOURS, ETC.', 1, 0, NULL, '');
477 INSERT INTO `marc_tag_structure` VALUES ('308', 'PHYSICAL DESCRIPTION FOR FILMS (ARCHIVAL) (VM) [OBSOLETE]', 'PHYSICAL DESCRIPTION FOR FILMS (ARCHIVAL) (VM) [OBSOLETE]', 1, 0, NULL, '');
478 INSERT INTO `marc_tag_structure` VALUES ('310', 'CURRENT PUBLICATION FREQUENCY', 'CURRENT PUBLICATION FREQUENCY', 0, 0, NULL, '');
479 INSERT INTO `marc_tag_structure` VALUES ('315', 'FREQUENCY (CF MP) [OBSOLETE]', 'FREQUENCY (CF MP) [OBSOLETE]', 0, 0, NULL, '');
480 INSERT INTO `marc_tag_structure` VALUES ('321', 'FORMER PUBLICATION FREQUENCY', 'FORMER PUBLICATION FREQUENCY', 1, 0, NULL, '');
481 INSERT INTO `marc_tag_structure` VALUES ('340', 'PHYSICAL MEDIUM', 'PHYSICAL MEDIUM', 1, 0, NULL, '');
482 INSERT INTO `marc_tag_structure` VALUES ('342', 'GEOSPATIAL REFERENCE DATA', 'GEOSPATIAL REFERENCE DATA', 1, 0, NULL, '');
483 INSERT INTO `marc_tag_structure` VALUES ('343', 'PLANAR COORDINATE DATA', 'PLANAR COORDINATE DATA', 1, 0, NULL, '');
484 INSERT INTO `marc_tag_structure` VALUES ('350', 'PRICE (NR) (BK AM CF MU VM SE) [OBSOLETE]', 'PRICE (NR) (BK AM CF MU VM SE) [OBSOLETE]', 1, 0, NULL, '');
485 INSERT INTO `marc_tag_structure` VALUES ('351', 'ORGANIZATION AND ARRANGEMENT OF MATERIALS', 'ORGANIZATION AND ARRANGEMENT OF MATERIALS', 1, 0, NULL, '');
486 INSERT INTO `marc_tag_structure` VALUES ('352', 'DIGITAL GRAPHIC REPRESENTATION', 'DIGITAL GRAPHIC REPRESENTATION', 1, 0, NULL, '');
487 INSERT INTO `marc_tag_structure` VALUES ('355', 'SECURITY CLASSIFICATION CONTROL', 'SECURITY CLASSIFICATION CONTROL', 1, 0, NULL, '');
488 INSERT INTO `marc_tag_structure` VALUES ('357', 'ORIGINATOR DISSEMINATION CONTROL', 'ORIGINATOR DISSEMINATION CONTROL', 0, 0, NULL, '');
489 INSERT INTO `marc_tag_structure` VALUES ('359', 'RENTAL PRICE (VM) [OBSOLETE]', 'RENTAL PRICE (VM) [OBSOLETE]', 0, 0, NULL, '');
490 INSERT INTO `marc_tag_structure` VALUES ('362', 'DATES OF PUBLICATION AND/OR SEQUENTIAL DESIGNATION', 'DATES OF PUBLICATION AND/OR SEQUENTIAL DESIGNATION', 1, 0, NULL, '');
491 INSERT INTO `marc_tag_structure` VALUES ('365', 'TRADE PRICE', 'TRADE PRICE', 1, 0, NULL, '');
492 INSERT INTO `marc_tag_structure` VALUES ('366', 'TRADE AVAILABILITY INFORMATION', 'TRADE AVAILABILITY INFORMATION', 1, 0, NULL, '');
493 INSERT INTO `marc_tag_structure` VALUES ('400', 'SERIES STATEMENT/ADDED ENTRY--PERSONAL NAME [OBSOLETE, CAN/MARC], [LOCAL, USA]', 'SERIES STATEMENT/ADDED ENTRY--PERSONAL NAME [OBSOLETE, CAN/MARC], [LOCAL, USA]', 1, 0, NULL, '');
494 INSERT INTO `marc_tag_structure` VALUES ('410', 'SERIES STATEMENT/ADDED ENTRY--CORPORATE NAME [OBSOLETE, CAN/MARC], [LOCAL, USA]', 'SERIES STATEMENT/ADDED ENTRY--CORPORATE NAME [OBSOLETE, CAN/MARC], [LOCAL, USA]', 1, 0, NULL, '');
495 INSERT INTO `marc_tag_structure` VALUES ('411', 'SERIES STATEMENT/ADDED ENTRY--MEETING NAME [OBSOLETE, CAN/MARC], [LOCAL, USA]', 'SERIES STATEMENT/ADDED ENTRY--MEETING NAME [OBSOLETE, CAN/MARC], [LOCAL, USA]', 1, 0, NULL, '');
496 INSERT INTO `marc_tag_structure` VALUES ('440', 'SERIES STATEMENT/ADDED ENTRY--TITLE', 'SERIES STATEMENT/ADDED ENTRY--TITLE', 1, 0, NULL, '');
497 INSERT INTO `marc_tag_structure` VALUES ('490', 'SERIES STATEMENT', 'SERIES STATEMENT', 1, 0, '', '');
498 INSERT INTO `marc_tag_structure` VALUES ('500', 'GENERAL NOTE', 'GENERAL NOTE', 1, 0, NULL, '');
499 INSERT INTO `marc_tag_structure` VALUES ('501', 'WITH NOTE', 'WITH NOTE', 1, 0, NULL, '');
500 INSERT INTO `marc_tag_structure` VALUES ('502', 'DISSERTATION NOTE', 'DISSERTATION NOTE', 1, 0, NULL, '');
501 INSERT INTO `marc_tag_structure` VALUES ('503', 'BIBLIOGRAPHIC HISTORY NOTE (BK CF MU) [OBSOLETE]', 'BIBLIOGRAPHIC HISTORY NOTE (BK CF MU) [OBSOLETE]', 1, 0, NULL, '');
502 INSERT INTO `marc_tag_structure` VALUES ('504', 'BIBLIOGRAPHY, ETC. NOTE', 'BIBLIOGRAPHY, ETC. NOTE', 1, 0, NULL, '');
503 INSERT INTO `marc_tag_structure` VALUES ('505', 'FORMATTED CONTENTS NOTE', 'FORMATTED CONTENTS NOTE', 1, 0, NULL, '');
504 INSERT INTO `marc_tag_structure` VALUES ('506', 'RESTRICTIONS ON ACCESS NOTE', 'RESTRICTIONS ON ACCESS NOTE', 1, 0, NULL, '');
505 INSERT INTO `marc_tag_structure` VALUES ('507', 'SCALE NOTE FOR GRAPHIC MATERIAL', 'SCALE NOTE FOR GRAPHIC MATERIAL', 0, 0, NULL, '');
506 INSERT INTO `marc_tag_structure` VALUES ('508', 'CREATION/PRODUCTION CREDITS NOTE', 'CREATION/PRODUCTION CREDITS NOTE', 1, 0, NULL, '');
507 INSERT INTO `marc_tag_structure` VALUES ('509', 'INFORMAL NOTES (RLIN)', 'INFORMAL NOTES (RLIN)', 0, 0, NULL, '');
508 INSERT INTO `marc_tag_structure` VALUES ('510', 'CITATION/REFERENCES NOTE', 'CITATION/REFERENCES NOTE', 1, 0, NULL, '');
509 INSERT INTO `marc_tag_structure` VALUES ('511', 'PARTICIPANT OR PERFORMER NOTE', 'PARTICIPANT OR PERFORMER NOTE', 1, 0, NULL, '');
510 INSERT INTO `marc_tag_structure` VALUES ('512', 'EARLIER OR LATER VOLUMES SEPARATELY CATALOGED NOTE (SE) [OBSOLETE]', 'EARLIER OR LATER VOLUMES SEPARATELY CATALOGED NOTE (SE) [OBSOLETE]', 1, 0, NULL, '');
511 INSERT INTO `marc_tag_structure` VALUES ('513', 'TYPE OF REPORT AND PERIOD COVERED NOTE', 'TYPE OF REPORT AND PERIOD COVERED NOTE', 1, 0, NULL, '');
512 INSERT INTO `marc_tag_structure` VALUES ('514', 'DATA QUALITY NOTE', 'DATA QUALITY NOTE', 0, 0, NULL, '');
513 INSERT INTO `marc_tag_structure` VALUES ('515', 'NUMBERING PECULIARITIES NOTE', 'NUMBERING PECULIARITIES NOTE', 1, 0, NULL, '');
514 INSERT INTO `marc_tag_structure` VALUES ('516', 'TYPE OF COMPUTER FILE OR DATA NOTE', 'TYPE OF COMPUTER FILE OR DATA NOTE', 1, 0, NULL, '');
515 INSERT INTO `marc_tag_structure` VALUES ('517', 'CATEGORIES OF FILMS NOTE (ARCHIVAL) (VM) [OBSOLETE]', 'CATEGORIES OF FILMS NOTE (ARCHIVAL) (VM) [OBSOLETE]', 0, 0, NULL, '');
516 INSERT INTO `marc_tag_structure` VALUES ('518', 'DATE/TIME AND PLACE OF AN EVENT NOTE', 'DATE/TIME AND PLACE OF AN EVENT NOTE', 1, 0, NULL, '');
517 INSERT INTO `marc_tag_structure` VALUES ('520', 'SUMMARY, ETC.', 'SUMMARY, ETC.', 1, 0, NULL, '');
518 INSERT INTO `marc_tag_structure` VALUES ('521', 'TARGET AUDIENCE NOTE', 'TARGET AUDIENCE NOTE', 1, 0, NULL, '');
519 INSERT INTO `marc_tag_structure` VALUES ('522', 'GEOGRAPHIC COVERAGE NOTE', 'GEOGRAPHIC COVERAGE NOTE', 1, 0, NULL, '');
520 INSERT INTO `marc_tag_structure` VALUES ('523', 'TIME PERIOD OF CONTENT NOTE (CF) [OBSOLETE]', 'TIME PERIOD OF CONTENT NOTE (CF) [OBSOLETE]', 0, 0, NULL, '');
521 INSERT INTO `marc_tag_structure` VALUES ('524', 'PREFERRED CITATION OF DESCRIBED MATERIALS NOTE', 'PREFERRED CITATION OF DESCRIBED MATERIALS NOTE', 1, 0, NULL, '');
522 INSERT INTO `marc_tag_structure` VALUES ('525', 'SUPPLEMENT NOTE', 'SUPPLEMENT NOTE', 0, 0, NULL, '');
523 INSERT INTO `marc_tag_structure` VALUES ('526', 'STUDY PROGRAM INFORMATION NOTE', 'STUDY PROGRAM INFORMATION NOTE', 0, 0, NULL, '');
524 INSERT INTO `marc_tag_structure` VALUES ('527', 'CENSORSHIP NOTE (VM) [OBSOLETE]', 'CENSORSHIP NOTE (VM) [OBSOLETE]', 1, 0, NULL, '');
525 INSERT INTO `marc_tag_structure` VALUES ('530', 'ADDITIONAL PHYSICAL FORM AVAILABLE NOTE', 'ADDITIONAL PHYSICAL FORM AVAILABLE NOTE', 1, 0, NULL, '');
526 INSERT INTO `marc_tag_structure` VALUES ('533', 'REPRODUCTION NOTE', 'REPRODUCTION NOTE', 1, 0, NULL, '');
527 INSERT INTO `marc_tag_structure` VALUES ('534', 'ORIGINAL VERSION NOTE', 'ORIGINAL VERSION NOTE', 1, 0, NULL, '');
528 INSERT INTO `marc_tag_structure` VALUES ('535', 'LOCATION OF ORIGINALS/DUPLICATES NOTE', 'LOCATION OF ORIGINALS/DUPLICATES NOTE', 1, 0, NULL, '');
529 INSERT INTO `marc_tag_structure` VALUES ('536', 'FUNDING INFORMATION NOTE', 'FUNDING INFORMATION NOTE', 1, 0, NULL, '');
530 INSERT INTO `marc_tag_structure` VALUES ('537', 'SOURCE OF DATA NOTE (CF) [OBSOLETE]', 'SOURCE OF DATA NOTE (CF) [OBSOLETE]', 0, 0, NULL, '');
531 INSERT INTO `marc_tag_structure` VALUES ('538', 'SYSTEM DETAILS NOTE', 'SYSTEM DETAILS NOTE', 1, 0, NULL, '');
532 INSERT INTO `marc_tag_structure` VALUES ('540', 'TERMS GOVERNING USE AND REPRODUCTION NOTE', 'TERMS GOVERNING USE AND REPRODUCTION NOTE', 1, 0, NULL, '');
533 INSERT INTO `marc_tag_structure` VALUES ('541', 'IMMEDIATE SOURCE OF ACQUISITION NOTE', 'IMMEDIATE SOURCE OF ACQUISITION NOTE', 1, 0, NULL, '');
534 INSERT INTO `marc_tag_structure` VALUES ('543', 'SOLICITATION INFORMATION NOTE (AM) [OBSOLETE]', 'SOLICITATION INFORMATION NOTE (AM) [OBSOLETE]', 1, 0, NULL, '');
535 INSERT INTO `marc_tag_structure` VALUES ('544', 'LOCATION OF OTHER ARCHIVAL MATERIALS NOTE', 'LOCATION OF OTHER ARCHIVAL MATERIALS NOTE', 1, 0, NULL, '');
536 INSERT INTO `marc_tag_structure` VALUES ('546', 'LANGUAGE NOTE', 'LANGUAGE NOTE', 1, 0, NULL, '');
537 INSERT INTO `marc_tag_structure` VALUES ('547', 'FORMER TITLE COMPLEXITY NOTE', 'FORMER TITLE COMPLEXITY NOTE', 1, 0, NULL, '');
538 INSERT INTO `marc_tag_structure` VALUES ('550', 'ISSUING BODY NOTE', 'ISSUING BODY NOTE', 1, 0, NULL, '');
539 INSERT INTO `marc_tag_structure` VALUES ('552', 'ENTITY AND ATTRIBUTE INFORMATION NOTE', 'ENTITY AND ATTRIBUTE INFORMATION NOTE', 1, 0, NULL, '');
540 INSERT INTO `marc_tag_structure` VALUES ('555', 'CUMULATIVE INDEX/FINDING AIDS NOTE', 'CUMULATIVE INDEX/FINDING AIDS NOTE', 1, 0, NULL, '');
541 INSERT INTO `marc_tag_structure` VALUES ('556', 'INFORMATION ABOUT DOCUMENTATION NOTE', 'INFORMATION ABOUT DOCUMENTATION NOTE', 1, 0, NULL, '');
542 INSERT INTO `marc_tag_structure` VALUES ('561', 'OWNERSHIP AND CUSTODIAL HISTORY', 'OWNERSHIP AND CUSTODIAL HISTORY', 1, 0, NULL, '');
543 INSERT INTO `marc_tag_structure` VALUES ('562', 'COPY AND VERSION IDENTIFICATION NOTE', 'COPY AND VERSION IDENTIFICATION NOTE', 1, 0, NULL, '');
544 INSERT INTO `marc_tag_structure` VALUES ('563', 'BINDING INFORMATION', 'BINDING INFORMATION', 1, 0, NULL, '');
545 INSERT INTO `marc_tag_structure` VALUES ('565', 'CASE FILE CHARACTERISTICS NOTE', 'CASE FILE CHARACTERISTICS NOTE', 1, 0, NULL, '');
546 INSERT INTO `marc_tag_structure` VALUES ('567', 'METHODOLOGY NOTE', 'METHODOLOGY NOTE', 1, 0, NULL, '');
547 INSERT INTO `marc_tag_structure` VALUES ('570', 'EDITOR NOTE (SE) [OBSOLETE]', 'EDITOR NOTE (SE) [OBSOLETE]', 1, 0, NULL, '');
548 INSERT INTO `marc_tag_structure` VALUES ('580', 'LINKING ENTRY COMPLEXITY NOTE', 'LINKING ENTRY COMPLEXITY NOTE', 1, 0, NULL, '');
549 INSERT INTO `marc_tag_structure` VALUES ('581', 'PUBLICATIONS ABOUT DESCRIBED MATERIALS NOTE', 'PUBLICATIONS ABOUT DESCRIBED MATERIALS NOTE', 1, 0, NULL, '');
550 INSERT INTO `marc_tag_structure` VALUES ('582', 'RELATED COMPUTER FILES NOTE (CF) [OBSOLETE]', 'RELATED COMPUTER FILES NOTE (CF) [OBSOLETE]', 1, 0, NULL, '');
551 INSERT INTO `marc_tag_structure` VALUES ('583', 'ACTION NOTE', 'ACTION NOTE', 1, 0, NULL, '');
552 INSERT INTO `marc_tag_structure` VALUES ('584', 'ACCUMULATION AND FREQUENCY OF USE NOTE', 'ACCUMULATION AND FREQUENCY OF USE NOTE', 1, 0, NULL, '');
553 INSERT INTO `marc_tag_structure` VALUES ('585', 'EXHIBITIONS NOTE', 'EXHIBITIONS NOTE', 1, 0, NULL, '');
554 INSERT INTO `marc_tag_structure` VALUES ('586', 'AWARDS NOTE', 'AWARDS NOTE', 1, 0, NULL, '');
555 INSERT INTO `marc_tag_structure` VALUES ('590', 'LOCAL NOTE (RLIN)', 'LOCAL NOTE (RLIN)', 1, 0, NULL, '');
556 INSERT INTO `marc_tag_structure` VALUES ('600', 'SUBJECT ADDED ENTRY--PERSONAL NAME', 'SUBJECT ADDED ENTRY--PERSONAL NAME', 1, 0, NULL, '');
557 INSERT INTO `marc_tag_structure` VALUES ('610', 'SUBJECT ADDED ENTRY--CORPORATE NAME', 'SUBJECT ADDED ENTRY--CORPORATE NAME', 1, 0, NULL, '');
558 INSERT INTO `marc_tag_structure` VALUES ('611', 'SUBJECT ADDED ENTRY--MEETING NAME', 'SUBJECT ADDED ENTRY--MEETING NAME', 1, 0, NULL, '');
559 INSERT INTO `marc_tag_structure` VALUES ('630', 'SUBJECT ADDED ENTRY--UNIFORM TITLE', 'SUBJECT ADDED ENTRY--UNIFORM TITLE', 1, 0, NULL, '');
560 INSERT INTO `marc_tag_structure` VALUES ('648', 'SUBJECT ADDED ENTRY--CHRONOLOGICAL TERM', 'SUBJECT ADDED ENTRY--CHRONOLOGICAL TERM', 1, 0, NULL, '');
561 INSERT INTO `marc_tag_structure` VALUES ('650', 'SUBJECT ADDED ENTRY--TOPICAL TERM', 'SUBJECT ADDED ENTRY--TOPICAL TERM', 1, 0, NULL, '');
562 INSERT INTO `marc_tag_structure` VALUES ('651', 'SUBJECT ADDED ENTRY--GEOGRAPHIC NAME', 'SUBJECT ADDED ENTRY--GEOGRAPHIC NAME', 1, 0, NULL, '');
563 INSERT INTO `marc_tag_structure` VALUES ('652', 'SUBJECT ADDED ENTRY--REVERSE GEOGRAPHIC (BK MP SE) [OBSOLETE]', 'SUBJECT ADDED ENTRY--REVERSE GEOGRAPHIC (BK MP SE) [OBSOLETE]', 1, 0, NULL, '');
564 INSERT INTO `marc_tag_structure` VALUES ('653', 'INDEX TERM--UNCONTROLLED', 'INDEX TERM--UNCONTROLLED', 1, 0, NULL, '');
565 INSERT INTO `marc_tag_structure` VALUES ('654', 'SUBJECT ADDED ENTRY--FACETED TOPICAL TERM', 'SUBJECT ADDED ENTRY--FACETED TOPICAL TERM', 1, 0, NULL, '');
566 INSERT INTO `marc_tag_structure` VALUES ('655', 'INDEX TERM--GENRE/FORM', 'INDEX TERM--GENRE/FORM', 1, 0, NULL, '');
567 INSERT INTO `marc_tag_structure` VALUES ('656', 'INDEX TERM--OCCUPATION', 'INDEX TERM--OCCUPATION', 1, 0, NULL, '');
568 INSERT INTO `marc_tag_structure` VALUES ('657', 'INDEX TERM--FUNCTION', 'INDEX TERM--FUNCTION', 1, 0, NULL, '');
569 INSERT INTO `marc_tag_structure` VALUES ('658', 'INDEX TERM--CURRICULUM OBJECTIVE', 'INDEX TERM--CURRICULUM OBJECTIVE', 1, 0, NULL, '');
570 INSERT INTO `marc_tag_structure` VALUES ('662', 'SUBJECT ADDED ENTRY--HIERARCHICAL PLACE NAME', 'SUBJECT ADDED ENTRY--HIERARCHICAL PLACE NAME', 1, 0, NULL, '');
571 INSERT INTO `marc_tag_structure` VALUES ('690', 'LOCAL SUBJECT ADDED ENTRY--TOPICAL TERM (OCLC, RLIN)', 'LOCAL SUBJECT ADDED ENTRY--TOPICAL TERM (OCLC, RLIN)', 1, 0, '', '');
572 INSERT INTO `marc_tag_structure` VALUES ('691', 'LOCAL SUBJECT ADDED ENTRY--GEOGRAPHIC NAME (RLIN)', 'LOCAL SUBJECT ADDED ENTRY--GEOGRAPHIC NAME (RLIN)', 1, 0, '', '');
573 INSERT INTO `marc_tag_structure` VALUES ('696', 'LOCAL SUBJECT ADDED ENTRY--PERSONAL NAME (RLIN)', 'LOCAL SUBJECT ADDED ENTRY--PERSONAL NAME (RLIN)', 1, 0, '', '');
574 INSERT INTO `marc_tag_structure` VALUES ('697', 'LOCAL SUBJECT ADDED ENTRY--CORPORATE NAME (RLIN)', 'LOCAL SUBJECT ADDED ENTRY--CORPORATE NAME (RLIN)', 1, 0, '', '');
575 INSERT INTO `marc_tag_structure` VALUES ('698', 'LOCAL SUBJECT ADDED ENTRY--MEETING NAME (RLIN)', 'LOCAL SUBJECT ADDED ENTRY--MEETING NAME (RLIN)', 1, 0, '', '');
576 INSERT INTO `marc_tag_structure` VALUES ('699', 'LOCAL SUBJECT ADDED ENTRY--UNIFORM TITLE (RLIN)', 'LOCAL SUBJECT ADDED ENTRY--UNIFORM TITLE (RLIN)', 1, 0, '', '');
577 INSERT INTO `marc_tag_structure` VALUES ('700', 'ADDED ENTRY--PERSONAL NAME', 'ADDED ENTRY--PERSONAL NAME', 1, 0, NULL, '');
578 INSERT INTO `marc_tag_structure` VALUES ('705', 'ADDED ENTRY--PERSONAL NAME (PERFORMER) (MU) [OBSOLETE]', 'ADDED ENTRY--PERSONAL NAME (PERFORMER) (MU) [OBSOLETE]', 1, 0, NULL, '');
579 INSERT INTO `marc_tag_structure` VALUES ('710', 'ADDED ENTRY--CORPORATE NAME', 'ADDED ENTRY--CORPORATE NAME', 1, 0, NULL, '');
580 INSERT INTO `marc_tag_structure` VALUES ('711', 'ADDED ENTRY--MEETING NAME', 'ADDED ENTRY--MEETING NAME', 1, 0, NULL, '');
581 INSERT INTO `marc_tag_structure` VALUES ('715', 'ADDED ENTRY--CORPORATE NAME (PERFORMER) (MU) [OBSOLETE]', 'ADDED ENTRY--CORPORATE NAME (PERFORMER) (MU) [OBSOLETE]', 1, 0, NULL, '');
582 INSERT INTO `marc_tag_structure` VALUES ('720', 'ADDED ENTRY--UNCONTROLLED NAME', 'ADDED ENTRY--UNCONTROLLED NAME', 1, 0, NULL, '');
583 INSERT INTO `marc_tag_structure` VALUES ('730', 'ADDED ENTRY--UNIFORM TITLE', 'ADDED ENTRY--UNIFORM TITLE', 1, 0, NULL, '');
584 INSERT INTO `marc_tag_structure` VALUES ('740', 'ADDED ENTRY--UNCONTROLLED RELATED/ANALYTICAL TITLE', 'ADDED ENTRY--UNCONTROLLED RELATED/ANALYTICAL TITLE', 1, 0, NULL, '');
585 INSERT INTO `marc_tag_structure` VALUES ('752', 'ADDED ENTRY--HIERARCHICAL PLACE NAME', 'ADDED ENTRY--HIERARCHICAL PLACE NAME', 1, 0, NULL, '');
586 INSERT INTO `marc_tag_structure` VALUES ('753', 'SYSTEM DETAILS ACCESS TO COMPUTER FILES', 'SYSTEM DETAILS ACCESS TO COMPUTER FILES', 1, 0, NULL, '');
587 INSERT INTO `marc_tag_structure` VALUES ('754', 'ADDED ENTRY--TAXONOMIC IDENTIFICATION', 'ADDED ENTRY--TAXONOMIC IDENTIFICATION', 1, 0, NULL, '');
588 INSERT INTO `marc_tag_structure` VALUES ('755', 'ADDED ENTRY--PHYSICAL CHARACTERISTICS [OBSOLETE]', 'ADDED ENTRY--PHYSICAL CHARACTERISTICS [OBSOLETE]', 1, 0, NULL, '');
589 INSERT INTO `marc_tag_structure` VALUES ('760', 'MAIN SERIES ENTRY', 'MAIN SERIES ENTRY', 1, 0, NULL, '');
590 INSERT INTO `marc_tag_structure` VALUES ('762', 'SUBSERIES ENTRY', 'SUBSERIES ENTRY', 1, 0, NULL, '');
591 INSERT INTO `marc_tag_structure` VALUES ('765', 'ORIGINAL LANGUAGE ENTRY', 'ORIGINAL LANGUAGE ENTRY', 1, 0, NULL, '');
592 INSERT INTO `marc_tag_structure` VALUES ('767', 'TRANSLATION ENTRY', 'TRANSLATION ENTRY', 1, 0, NULL, '');
593 INSERT INTO `marc_tag_structure` VALUES ('770', 'SUPPLEMENT/SPECIAL ISSUE ENTRY', 'SUPPLEMENT/SPECIAL ISSUE ENTRY', 1, 0, NULL, '');
594 INSERT INTO `marc_tag_structure` VALUES ('772', 'SUPPLEMENT PARENT ENTRY', 'SUPPLEMENT PARENT ENTRY', 1, 0, NULL, '');
595 INSERT INTO `marc_tag_structure` VALUES ('773', 'HOST ITEM ENTRY', 'HOST ITEM ENTRY', 1, 0, NULL, '');
596 INSERT INTO `marc_tag_structure` VALUES ('774', 'CONSTITUENT UNIT ENTRY', 'CONSTITUENT UNIT ENTRY', 1, 0, NULL, '');
597 INSERT INTO `marc_tag_structure` VALUES ('775', 'OTHER EDITION ENTRY', 'OTHER EDITION ENTRY', 1, 0, NULL, '');
598 INSERT INTO `marc_tag_structure` VALUES ('776', 'ADDITIONAL PHYSICAL FORM ENTRY', 'ADDITIONAL PHYSICAL FORM ENTRY', 1, 0, NULL, '');
599 INSERT INTO `marc_tag_structure` VALUES ('777', 'ISSUED WITH ENTRY', 'ISSUED WITH ENTRY', 1, 0, NULL, '');
600 INSERT INTO `marc_tag_structure` VALUES ('780', 'PRECEDING ENTRY', 'PRECEDING ENTRY', 1, 0, NULL, '');
601 INSERT INTO `marc_tag_structure` VALUES ('785', 'SUCCEEDING ENTRY', 'SUCCEEDING ENTRY', 1, 0, NULL, '');
602 INSERT INTO `marc_tag_structure` VALUES ('786', 'DATA SOURCE ENTRY', 'DATA SOURCE ENTRY', 1, 0, NULL, '');
603 INSERT INTO `marc_tag_structure` VALUES ('787', 'NONSPECIFIC RELATIONSHIP ENTRY', 'NONSPECIFIC RELATIONSHIP ENTRY', 1, 0, NULL, '');
604 INSERT INTO `marc_tag_structure` VALUES ('789', 'COMPONENT ITEM ENTRY (RLIN)', 'COMPONENT ITEM ENTRY (RLIN)', 1, 0, '', '');
605 INSERT INTO `marc_tag_structure` VALUES ('796', 'LOCAL ADDED ENTRY--PERSONAL NAME (RLIN)', 'LOCAL ADDED ENTRY--PERSONAL NAME (RLIN)', 1, 0, '', '');
606 INSERT INTO `marc_tag_structure` VALUES ('797', 'LOCAL ADDED ENTRY--CORPORATE NAME (RLIN)', 'LOCAL ADDED ENTRY--CORPORATE NAME (RLIN)', 1, 0, '', '');
607 INSERT INTO `marc_tag_structure` VALUES ('798', 'LOCAL ADDED ENTRY--MEETING NAME (RLIN)', 'LOCAL ADDED ENTRY--MEETING NAME (RLIN)', 1, 0, '', '');
608 INSERT INTO `marc_tag_structure` VALUES ('799', 'LOCAL ADDED ENTRY--UNIFORM TITLE (RLIN)', 'LOCAL ADDED ENTRY--UNIFORM TITLE (RLIN)', 1, 0, '', '');
609 INSERT INTO `marc_tag_structure` VALUES ('800', 'SERIES ADDED ENTRY--PERSONAL NAME', 'SERIES ADDED ENTRY--PERSONAL NAME', 1, 0, NULL, '');
610 INSERT INTO `marc_tag_structure` VALUES ('810', 'SERIES ADDED ENTRY--CORPORATE NAME', 'SERIES ADDED ENTRY--CORPORATE NAME', 1, 0, NULL, '');
611 INSERT INTO `marc_tag_structure` VALUES ('811', 'SERIES ADDED ENTRY--MEETING NAME', 'SERIES ADDED ENTRY--MEETING NAME', 1, 0, NULL, '');
612 INSERT INTO `marc_tag_structure` VALUES ('830', 'SERIES ADDED ENTRY--UNIFORM TITLE', 'SERIES ADDED ENTRY--UNIFORM TITLE', 1, 0, NULL, '');
613 INSERT INTO `marc_tag_structure` VALUES ('840', 'SERIES ADDED ENTRY--TITLE [OBSOLETE]', 'SERIES ADDED ENTRY--TITLE [OBSOLETE]', 1, 0, NULL, '');
614 INSERT INTO `marc_tag_structure` VALUES ('841', 'HOLDINGS CODED DATA VALUES', 'HOLDINGS CODED DATA VALUES', 0, 0, NULL, '');
615 INSERT INTO `marc_tag_structure` VALUES ('842', 'TEXTUAL PHYSICAL FORM DESIGNATOR', 'TEXTUAL PHYSICAL FORM DESIGNATOR', 0, 0, NULL, '');
616 INSERT INTO `marc_tag_structure` VALUES ('843', 'REPRODUCTION NOTE', 'REPRODUCTION NOTE', 1, 0, NULL, '');
617 INSERT INTO `marc_tag_structure` VALUES ('844', 'NAME OF UNIT', 'NAME OF UNIT', 0, 0, NULL, '');
618 INSERT INTO `marc_tag_structure` VALUES ('845', 'TERMS GOVERNING USE AND REPRODUCTION NOTE', 'TERMS GOVERNING USE AND REPRODUCTION NOTE', 1, 0, NULL, '');
619 INSERT INTO `marc_tag_structure` VALUES ('850', 'HOLDING INSTITUTION', 'HOLDING INSTITUTION', 1, 0, NULL, '');
620 INSERT INTO `marc_tag_structure` VALUES ('851', 'LOCATION [OBSOLETE]', 'LOCATION [OBSOLETE]', 1, 0, NULL, '');
621 INSERT INTO `marc_tag_structure` VALUES ('852', 'LOCATION/CALL NUMBER', 'LOCATION/CALL NUMBER', 1, 0, NULL, '');
622 INSERT INTO `marc_tag_structure` VALUES ('853', 'CAPTIONS AND PATTERN--BASIC BIBLIOGRAPHIC UNIT', 'CAPTIONS AND PATTERN--BASIC BIBLIOGRAPHIC UNIT', 1, 0, NULL, '');
623 INSERT INTO `marc_tag_structure` VALUES ('854', 'CAPTIONS AND PATTERN--SUPPLEMENTARY MATERIAL', 'CAPTIONS AND PATTERN--SUPPLEMENTARY MATERIAL', 1, 0, NULL, '');
624 INSERT INTO `marc_tag_structure` VALUES ('855', 'CAPTIONS AND PATTERN--INDEXES', 'CAPTIONS AND PATTERN--INDEXES', 1, 0, NULL, '');
625 INSERT INTO `marc_tag_structure` VALUES ('856', 'ELECTRONIC LOCATION AND ACCESS', 'ELECTRONIC LOCATION AND ACCESS', 1, 0, NULL, '');
626 INSERT INTO `marc_tag_structure` VALUES ('859', 'LOCAL CONTROL INFORMATION (RLIN)', 'LOCAL CONTROL INFORMATION (RLIN)', 1, 0, '', '');
627 INSERT INTO `marc_tag_structure` VALUES ('863', 'ENUMERATION AND CHRONOLOGY--BASIC BIBLIOGRAPHIC UNIT', 'ENUMERATION AND CHRONOLOGY--BASIC BIBLIOGRAPHIC UNIT', 1, 0, NULL, '');
628 INSERT INTO `marc_tag_structure` VALUES ('864', 'ENUMERATION AND CHRONOLOGY--SUPPLEMENTARY MATERIAL', 'ENUMERATION AND CHRONOLOGY--SUPPLEMENTARY MATERIAL', 1, 0, NULL, '');
629 INSERT INTO `marc_tag_structure` VALUES ('865', 'ENUMERATION AND CHRONOLOGY--INDEXES', 'ENUMERATION AND CHRONOLOGY--INDEXES', 1, 0, NULL, '');
630 INSERT INTO `marc_tag_structure` VALUES ('866', 'TEXTUAL HOLDINGS--BASIC BIBLIOGRAPHIC UNIT', 'TEXTUAL HOLDINGS--BASIC BIBLIOGRAPHIC UNIT', 1, 0, NULL, '');
631 INSERT INTO `marc_tag_structure` VALUES ('867', 'TEXTUAL HOLDINGS--SUPPLEMENTARY MATERIAL', 'TEXTUAL HOLDINGS--SUPPLEMENTARY MATERIAL', 1, 0, NULL, '');
632 INSERT INTO `marc_tag_structure` VALUES ('868', 'TEXTUAL HOLDINGS--INDEXES', 'TEXTUAL HOLDINGS--INDEXES', 1, 0, NULL, '');
633 INSERT INTO `marc_tag_structure` VALUES ('870', 'VARIANT PERSONAL NAME (SE) [OBSOLETE]', 'VARIANT PERSONAL NAME (SE) [OBSOLETE]', 1, 0, NULL, '');
634 INSERT INTO `marc_tag_structure` VALUES ('871', 'VARIANT CORPORATE NAME (SE)[OBSOLETE]', 'VARIANT CORPORATE NAME (SE)[OBSOLETE]', 1, 0, NULL, '');
635 INSERT INTO `marc_tag_structure` VALUES ('872', 'VARIANT CONFERENCE OR MEETING NAME (SE) [OBSOLETE]', 'VARIANT CONFERENCE OR MEETING NAME (SE) [OBSOLETE]', 1, 0, NULL, '');
636 INSERT INTO `marc_tag_structure` VALUES ('873', 'VARIANT UNIFORM TITLE HEADING (SE) [OBSOLETE]', 'VARIANT UNIFORM TITLE HEADING (SE) [OBSOLETE]', 1, 0, NULL, '');
637 INSERT INTO `marc_tag_structure` VALUES ('876', 'ITEM INFORMATION--BASIC BIBLIOGRAPHIC UNIT', 'ITEM INFORMATION--BASIC BIBLIOGRAPHIC UNIT', 1, 0, NULL, '');
638 INSERT INTO `marc_tag_structure` VALUES ('877', 'ITEM INFORMATION--SUPPLEMENTARY MATERIAL', 'ITEM INFORMATION--SUPPLEMENTARY MATERIAL', 1, 0, NULL, '');
639 INSERT INTO `marc_tag_structure` VALUES ('878', 'ITEM INFORMATION--INDEXES', 'ITEM INFORMATION--INDEXES', 1, 0, NULL, '');
640 INSERT INTO `marc_tag_structure` VALUES ('880', 'ALTERNATE GRAPHIC REPRESENTATION', 'ALTERNATE GRAPHIC REPRESENTATION', 1, 0, NULL, '');
641 INSERT INTO `marc_tag_structure` VALUES ('886', 'FOREIGN MARC INFORMATION FIELD', 'FOREIGN MARC INFORMATION FIELD', 1, 0, NULL, '');
642 INSERT INTO `marc_tag_structure` VALUES ('887', 'NON-MARC INFORMATION FIELD', 'NON-MARC INFORMATION FIELD', 1, 0, NULL, '');
643 INSERT INTO `marc_tag_structure` VALUES ('896', 'LOCAL SERIES ADDED ENTRY--PERSONAL NAME (RLIN)', 'LOCAL SERIES ADDED ENTRY--PERSONAL NAME (RLIN)', 1, 0, '', '');
644 INSERT INTO `marc_tag_structure` VALUES ('897', 'LOCAL SERIES ADDED ENTRY--CORPORATE NAME (RLIN)', 'LOCAL SERIES ADDED ENTRY--CORPORATE NAME (RLIN)', 1, 0, '', '');
645 INSERT INTO `marc_tag_structure` VALUES ('898', 'LOCAL SERIES ADDED ENTRY--MEETING NAME (RLIN)', 'LOCAL SERIES ADDED ENTRY--MEETING NAME (RLIN)', 1, 0, '', '');
646 INSERT INTO `marc_tag_structure` VALUES ('899', 'LOCAL SERIES ADDED ENTRY--UNIFORM TITLE (RLIN)', 'LOCAL SERIES ADDED ENTRY--UNIFORM TITLE (RLIN)', 1, 0, '', '');
647 INSERT INTO `marc_tag_structure` VALUES ('89e', 'ERRONEOUS FIELD, ERR (RLIN)', 'ERRONEOUS FIELD, ERR (RLIN)', 1, 0, '', '');
648 INSERT INTO `marc_tag_structure` VALUES ('900', 'EQUIVALENCE OR CROSS-REFERENCE-PERSONAL NAME [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-PERSONAL NAME [LOCAL, CANADA]', 1, 0, '', '');
649 INSERT INTO `marc_tag_structure` VALUES ('901', 'LOCAL DATA ELEMENT A, LDA (RLIN)', 'LOCAL DATA ELEMENT A, LDA (RLIN)', 1, 0, '', '');
650 INSERT INTO `marc_tag_structure` VALUES ('902', 'LOCAL DATA ELEMENT B, LDB (RLIN)', 'LOCAL DATA ELEMENT B, LDB (RLIN)', 1, 0, '', '');
651 INSERT INTO `marc_tag_structure` VALUES ('903', 'LOCAL DATA ELEMENT C, LDC (RLIN)', 'LOCAL DATA ELEMENT C, LDC (RLIN)', 1, 0, '', '');
652 INSERT INTO `marc_tag_structure` VALUES ('904', 'LOCAL DATA ELEMENT D, LDD (RLIN)', 'LOCAL DATA ELEMENT D, LDD (RLIN)', 1, 0, '', '');
653 INSERT INTO `marc_tag_structure` VALUES ('905', 'LOCAL DATA ELEMENT E, LDE (RLIN)', 'LOCAL DATA ELEMENT E, LDE (RLIN)', 1, 0, '', '');
654 INSERT INTO `marc_tag_structure` VALUES ('906', 'LOCAL DATA ELEMENT F, LDF (RLIN)', 'LOCAL DATA ELEMENT F, LDF (RLIN)', 1, 0, '', '');
655 INSERT INTO `marc_tag_structure` VALUES ('907', 'LOCAL DATA ELEMENT G, LDG (RLIN)', 'LOCAL DATA ELEMENT G, LDG (RLIN)', 1, 0, '', '');
656 INSERT INTO `marc_tag_structure` VALUES ('908', 'PUT COMMAND PARAMETER (RLIN)', 'PUT COMMAND PARAMETER (RLIN)', 0, 0, '', '');
657 INSERT INTO `marc_tag_structure` VALUES ('910', 'EQUIVALENCE OR CROSS-REFERENCE-CORPORATE NAME [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-CORPORATE NAME [LOCAL, CANADA]', 1, 0, '', '');
658 INSERT INTO `marc_tag_structure` VALUES ('91o', 'USER-OPTION DATA (COLC)', 'USER-OPTION DATA (OCLC)', 0, 0, '', '');
659 INSERT INTO `marc_tag_structure` VALUES ('91r', 'RLG STANDARDS NOTE (RLIN)', 'RLG STANDARDS NOTE (RLIN)', 1, 0, '', '');
660 INSERT INTO `marc_tag_structure` VALUES ('911', 'EQUIVALENCE OR CROSS-REFERENCE-CONFERENCE OR MEETING NAME [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-CONFERENCE OR MEETING NAME [LOCAL, CANADA]', 1, 0, '', '');
661 INSERT INTO `marc_tag_structure` VALUES ('930', 'EQUIVALENCE OR CROSS-REFERENCE-UNIFORM TITLE HEADING [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-UNIFORM TITLE HEADING [LOCAL, CANADA]', 1, 0, '', '');
662 INSERT INTO `marc_tag_structure` VALUES ('93r', 'SUMMARY HOLDINGS STATEMENT (RLIN)', 'SUMMARY HOLDINGS STATEMENT (RLIN)', 1, 0, '', '');
663 INSERT INTO `marc_tag_structure` VALUES ('936', 'OCLC/CONSER MISCELLANEOUS DATA (OCLC); PIECE USED FOR CATALOGING (pre-AACR2) (RLIN)', 'OCLC/CONSER MISCELLANEOUS DATA (OCLC); PIECE USED FOR CATALOGING (pre-AACR2) (RLIN)', 0, 0, '', '');
664 INSERT INTO `marc_tag_structure` VALUES ('940', 'EQUIVALENCE OR CROSS-REFERENCE--UNIFORM TITLE [OBSOLETE] [CAN/MARC only]', 'EQUIVALENCE OR CROSS-REFERENCE--UNIFORM TITLE [OBSOLETE] [CAN/MARC only]', 1, 0, '', '');
665 INSERT INTO `marc_tag_structure` VALUES ('941', 'EQUIVALENCE OR CROSS-REFERENCE--ROMANIZED TITLE [OBSOLETE] [CAN/MARC only]', 'EQUIVALENCE OR CROSS-REFERENCE--ROMANIZED TITLE [OBSOLETE] [CAN/MARC only]', 1, 0, '', '');
666 INSERT INTO `marc_tag_structure` VALUES ('943', 'EQUIVALENCE OR CROSS-REFERENCE--COLLECTIVE TITLE [OBSOLETE] [CAN/MARC only]', 'EQUIVALENCE OR CROSS-REFERENCE--COLLECTIVE TITLE [OBSOLETE] [CAN/MARC only]', 1, 0, '', '');
667 INSERT INTO `marc_tag_structure` VALUES ('945', 'LOCAL PROCESSING INFORMATION (OCLC)', 'LOCAL PROCESSING INFORMATION (OCLC)', 1, 0, '', '');
668 INSERT INTO `marc_tag_structure` VALUES ('94c', 'EQUIVALENCE OR CROSS-REFERENCE--TITLE [OBSOLETE] [CAN/MARC only]', 'EQUIVALENCE OR CROSS-REFERENCE--TITLE [OBSOLETE] [CAN/MARC only]', 1, 0, '', '');
669 INSERT INTO `marc_tag_structure` VALUES ('946', 'LOCAL PROCESSING INFORMATION (OCLC)', 'LOCAL PROCESSING INFORMATION (OCLC)', 1, 0, '', '');
670 INSERT INTO `marc_tag_structure` VALUES ('947', 'LOCAL PROCESSING INFORMATION (OCLC)', 'LOCAL PROCESSING INFORMATION (OCLC)', 1, 0, '', '');
671 INSERT INTO `marc_tag_structure` VALUES ('948', 'LOCAL PROCESSING INFORMATION (OCLC); SERIES PART DESIGNATOR (RLIN)', 'LOCAL PROCESSING INFORMATION (OCLC); SERIES PART DESIGNATOR (RLIN)', 1, 0, '', '');
672 INSERT INTO `marc_tag_structure` VALUES ('949', 'LOCAL PROCESSING INFORMATION (OCLC)', 'LOCAL PROCESSING INFORMATION (OCLC)', 1, 0, '', '');
673 INSERT INTO `marc_tag_structure` VALUES ('94a', 'ANALYSIS TREATMENT NOTE (RLIN)', 'ANALYSIS TREATMENT NOTE (RLIN)', 1, 0, '', '');
674 INSERT INTO `marc_tag_structure` VALUES ('94b', 'TREATMENT CODES (RLIN)', 'TREATMENT CODES (RLIN)', 1, 0, '', '');
675 INSERT INTO `marc_tag_structure` VALUES ('950', 'LOCAL HOLDINGS (RLIN)', 'LOCAL HOLDINGS (RLIN)', 1, 0, '', '');
676 INSERT INTO `marc_tag_structure` VALUES ('951', 'EQUIVALENCE OR CROSS-REFERENCE--GEOGRAPHIC NAME/AREA NAME [OBSOLETE] [CAN/MARC only]', 'EQUIVALENCE OR CROSS-REFERENCE-GEOGRAPHIC NAME/AREA NAME [OBSOLETE] [CAN/MARC only]', 1, 0, '', '');
677 INSERT INTO `marc_tag_structure` VALUES ('95c', 'EQUIVALENCE OR CROSS-REFERENCE--HIERARCHICAL PLACE NAME [OBSOLETE] [CAN/MARC only]', 'EQUIVALENCE OR CROSS-REFERENCE-HIERARCHICAL PLACE NAME [OBSOLETE] [CAN/MARC only]', 1, 0, '', '');
678 INSERT INTO `marc_tag_structure` VALUES ('95r', 'CLUSTER MEMBER (RLIN)', 'CLUSTER MEMBER (RLIN)', 1, 0, '', '');
679 INSERT INTO `marc_tag_structure` VALUES ('955', 'COPY-LEVEL INFORMATION (RLIN)', 'COPY-LEVEL INFORMATION (RLIN)', 1, 0, '', '');
680 INSERT INTO `marc_tag_structure` VALUES ('956', 'LOCAL ELECTRONIC LOCATION AND ACCESS (OCLC)', 'LOCAL ELECTRONIC LOCATION AND ACCESS (OCLC)', 1, 0, '', '');
681 INSERT INTO `marc_tag_structure` VALUES ('960', 'PHYSICAL LOCATION (RLIN)', 'PHYSICAL LOCATION (RLIN)', 1, 0, '', '');
682 INSERT INTO `marc_tag_structure` VALUES ('967', 'ADDITIONAL ESTC CODES (RLIN)', 'ADDITIONAL ESTC CODES (RLIN)', 1, 0, '', '');
683 INSERT INTO `marc_tag_structure` VALUES ('980', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--PERSONAL NAME/TITLE [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--PERSONAL NAME/TITLE [LOCAL, CANADA]', 1, 0, '', '');
684 INSERT INTO `marc_tag_structure` VALUES ('981', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--CORPORATE NAME/TITLE [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--CORPORATE NAME/TITLE [LOCAL, CANADA]', 1, 0, '', '');
685 INSERT INTO `marc_tag_structure` VALUES ('982', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--CONFERENCE OR MEETING NAME/TITLE [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--CONFERENCE OR MEETING NAME/TITLE [LOCAL, CANADA]', 1, 0, '', '');
686 INSERT INTO `marc_tag_structure` VALUES ('983', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--TITLE/UNIFORM TITLE [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE--SERIES STATEMENT-TITLE/UNIFORM TITLE [LOCAL, CANADA]', 1, 0, '', '');
687 INSERT INTO `marc_tag_structure` VALUES ('984', 'WLN AUTOMATIC HOLDINGS STATEMENT (OCLC)', 'WLN AUTOMATIC HOLDINGS STATEMENT (OCLC)', 1, 0, '', '');
688 INSERT INTO `marc_tag_structure` VALUES ('987', 'LOCAL ROMANIZATION/CONVERSION HISTORY (OCLC)', 'LOCAL ROMANIZATION/CONVERSION HISTORY (OCLC)', 1, 0, '', '');
689 INSERT INTO `marc_tag_structure` VALUES ('990', 'EQUIVALENCES OR CROSS-REFERENCES [LOCAL, CANADA]', 'EQUIVALENCES OR CROSS-REFERENCES [LOCAL, CANADA]', 1, 0, '', '');
690 INSERT INTO `marc_tag_structure` VALUES ('995', 'RECOMMANDATION 995 [LOCAL, UNIMARC FRANCE]', 'RECOMMANDATION 995 [LOCAL, UNIMARC FRANCE]', 1, 0, '', '');
691 INSERT INTO `marc_tag_structure` VALUES ('998', 'LOCAL CONTROL INFORMATION (RLIN)', 'LOCAL CONTROL INFORMATION (RLIN)', 1, 0, '', '');
692 INSERT INTO `marc_tag_structure` VALUES ('999', '090: LOCALLY ASSIGNED LC-TYPE CALL NUMBER (OCLC); LOCAL CALL NUMBER (RLIN)', '090: LOCALLY ASSIGNED LC-TYPE CALL NUMBER (OCLC); LOCAL CALL NUMBER (OCLC)', 1, 0, '', '');
693 INSERT INTO `marc_tag_structure` VALUES ('b99', 'PRIVATE LOCAL INFORMATION (RLIN)', 'PRIVATE LOCAL INFORMATION (RLIN)', 1, 0, '', '');
694 INSERT INTO `marc_tag_structure` VALUES ('u01', 'UNIT IDENTIFICATION, STATUS, AND TYPE (RLIN)', 'UNIT IDENTIFICATION, STATUS, AND TYPE (RLIN)', 0, 0, '', '');
695 INSERT INTO `marc_tag_structure` VALUES ('u02', 'STANDARD NUMBER (RLIN)', 'STANDARD NUMBER (RLIN)', 0, 0, '', '');
696 INSERT INTO `marc_tag_structure` VALUES ('u08', 'CODED INFORMATION (RLIN)', 'CODED INFORMATION (RLIN)', 0, 0, '', '');
697 INSERT INTO `marc_tag_structure` VALUES ('u10', 'REQUESTER IDENTIFICATION (RLIN)', 'REQUESTER IDENTIFICATION (RLIN)', 1, 0, '', '');
698 INSERT INTO `marc_tag_structure` VALUES ('u11', 'DEPARTMENT REPORT REQUEST (RLIN)', 'DEPARTMENT REPORT REQUEST (RLIN)', 1, 0, '', '');
699 INSERT INTO `marc_tag_structure` VALUES ('u20', 'SUPPLIER IDENTIFICATION, SUPN (RLIN)', 'SUPPLIER IDENTIFICATION, SUPN (RLIN)', 0, 0, '', '');
700 INSERT INTO `marc_tag_structure` VALUES ('u21', 'LIBRARY CODES FOR VENDOR AND ORDER (RLIN)', 'LIBRARY CODES FOR VENDOR AND ORDER (RLIN)', 0, 0, '', '');
701 INSERT INTO `marc_tag_structure` VALUES ('u22', 'SUPPLIER CODES AND CATALOG INFORMATION (RLIN)', 'SUPPLIER CODES AND CATALOG INFORMATION (RLIN)', 0, 0, '', '');
702 INSERT INTO `marc_tag_structure` VALUES ('u25', 'SUPPLIER REPORT(S) (RLIN)', 'SUPPLIER REPORT(S) (RLIN)', 0, 0, '', '');
703 INSERT INTO `marc_tag_structure` VALUES ('u30', 'INTERVALS (RLIN)', 'INTERVALS (RLIN)', 0, 0, '', '');
704 INSERT INTO `marc_tag_structure` VALUES ('u31', 'CLAIM COUNTS (RLIN)', 'CLAIM COUNTS (RLIN)', 0, 0, '', '');
705 INSERT INTO `marc_tag_structure` VALUES ('u33', 'INVOICE CLAIM (RLIN)', 'INVOICE CLAIM (RLIN)', 0, 0, '', '');
706 INSERT INTO `marc_tag_structure` VALUES ('u34', 'EXTENDED PROCUREMENT CLAIM AND REVIEW (RLIN)', 'EXTENDED PROCUREMENT CLAIM AND REVIEW (RLIN)', 0, 0, '', '');
707 INSERT INTO `marc_tag_structure` VALUES ('u40', 'EXTENDED PROCUREMENT CODES (RLIN)', 'EXTENDED PROCUREMENT CODES (RLIN)', 0, 0, '', '');
708 INSERT INTO `marc_tag_structure` VALUES ('u50', 'ACQUISITIONS NOTES (RLIN)', 'ACQUISITIONS NOTES (RLIN)', 0, 0, '', '');
709 INSERT INTO `marc_tag_structure` VALUES ('u51', 'SELECTION NOTES (RLIN)', 'SELECTION NOTES (RLIN)', 0, 0, '', '');
710 INSERT INTO `marc_tag_structure` VALUES ('u52', 'SUPPLIER INSTRUCTIONS AND NOTES, SINT (RLIN)', 'SUPPLIER INSTRUCTIONS AND NOTES, SINT (RLIN)', 0, 0, '', '');
711 INSERT INTO `marc_tag_structure` VALUES ('u53', 'CLAIM INSTRUCTIONS AND NOTES, CLNT (RLIN)', 'CLAIM INSTRUCTIONS AND NOTES, CLNT (RLIN)', 0, 0, '', '');
712 INSERT INTO `marc_tag_structure` VALUES ('u54', 'NOTES TO SERIALS DEPARTMENT (RLIN)', 'NOTES TO SERIALS DEPARTMENT (RLIN)', 0, 0, '', '');
713 INSERT INTO `marc_tag_structure` VALUES ('u55', 'CATALOGING NOTES (RLIN)', 'CATALOGING NOTES (RLIN)', 0, 0, '', '');
714 INSERT INTO `marc_tag_structure` VALUES ('u5f', 'ACCOUNTING NOTES (RLIN)', 'ACCOUNTING NOTES (RLIN)', 0, 0, '', '');
715 INSERT INTO `marc_tag_structure` VALUES ('u70', 'MATERIAL AND LOCATION INFORMATION (RLIN)', 'MATERIAL AND LOCATION INFORMATION (RLIN)', 0, 0, '', '');
716 INSERT INTO `marc_tag_structure` VALUES ('u71', 'FUND ACCOUNT (RLIN)', 'FUND ACCOUNT (RLIN)', 0, 0, '', '');
717 INSERT INTO `marc_tag_structure` VALUES ('u75', 'ITEM DETAILS (RLIN)', 'ITEM DETAILS (RLIN)', 1, 0, '', '');
718 INSERT INTO `marc_tag_structure` VALUES ('u7f', 'PRICE INFORMATION (RLIN)', 'PRICE INFORMATION (RLIN)', 1, 0, '', '');
719 INSERT INTO `marc_tag_structure` VALUES ('u90', 'TAPE OUTPUT, TAPE (RLIN)', 'TAPE OUTPUT, TAPE (RLIN)', 0, 0, '', '');
720 INSERT INTO `marc_tag_structure` VALUES ('ufi', 'FISCAL INFORMATION, FI (RLIN)', 'FISCAL INFORMATION, FI (RLIN)', 1, 0, '', '');
721
722
723
724 INSERT INTO `marc_subfield_structure` VALUES ('000', '@', 'fixed length control field', 'fixed length control field', 0, 1, '', 0, '', '', 'marc21_leader.pl', 0, 0, '', '', '');
725 INSERT INTO `marc_subfield_structure` VALUES ('001', '@', 'control field', 'control field', 0, 1, '', 0, '', '', '', 0, 0, '', '', '');
726 INSERT INTO `marc_subfield_structure` VALUES ('003', '@', 'control field', 'control field', 0, 1, '', 0, '', '', 'marc21_field_003.pl', 0, 0, '', '', '');
727 INSERT INTO `marc_subfield_structure` VALUES ('005', '@', 'control field', 'control field', 0, 1, '', 0, '', '', 'marc21_field_005.pl', 0, 0, '', '', '');
728 INSERT INTO `marc_subfield_structure` VALUES ('006', '@', 'fixed length control field', 'fixed length control field', 0, 0, '', 0, '', '', 'marc21_field_006.pl', 0, -1, '', '', '');
729 INSERT INTO `marc_subfield_structure` VALUES ('007', '@', 'fixed length control field', 'fixed length control field', 0, 0, '', 0, '', '', 'marc21_field_007.pl', 0, 0, '', '', '');
730 INSERT INTO `marc_subfield_structure` VALUES ('008', '@', 'fixed length control field', 'fixed length control field', 0, 1, '', 0, '', '', 'marc21_field_008.pl', 0, 0, '', '', '');
731 INSERT INTO `marc_subfield_structure` VALUES ('009', '@', 'fixed length control field', 'fixed length control field', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
732 INSERT INTO `marc_subfield_structure` VALUES ('010', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', NULL, 0, -6, '', '', '');
733 INSERT INTO `marc_subfield_structure` VALUES ('010', 'a', 'LC control number', 'LC control number', 0, 0, 'biblioitems.lccn', 0, '', '', '', 0, 0, '', '', '');
734 INSERT INTO `marc_subfield_structure` VALUES ('010', 'b', 'NUCMC control number', 'NUCMC control number', 1, 0, '', 0, '', '', '', 0, -1, '', '', '');
735 INSERT INTO `marc_subfield_structure` VALUES ('010', 'z', 'Canceled/invalid LC control number', 'Canceled/invalid LC control number', 1, 0, '', 0, '', '', '', 0, -1, '', '', '');
736 INSERT INTO `marc_subfield_structure` VALUES ('011', 'a', 'LC control number', 'LC control number', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
737 INSERT INTO `marc_subfield_structure` VALUES ('013', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', NULL, 0, -6, '', '', '');
738 INSERT INTO `marc_subfield_structure` VALUES ('013', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
739 INSERT INTO `marc_subfield_structure` VALUES ('013', 'a', 'Number', 'Number', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
740 INSERT INTO `marc_subfield_structure` VALUES ('013', 'b', 'Country', 'Country', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
741 INSERT INTO `marc_subfield_structure` VALUES ('013', 'c', 'Type of number', 'Type of number', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
742 INSERT INTO `marc_subfield_structure` VALUES ('013', 'd', 'Date', 'Date', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
743 INSERT INTO `marc_subfield_structure` VALUES ('013', 'e', 'Status', 'Status', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
744 INSERT INTO `marc_subfield_structure` VALUES ('013', 'f', 'Party to document', 'Party to document', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
745 INSERT INTO `marc_subfield_structure` VALUES ('015', '2', 'Source', 'Source', 0, 0, '', 0, '', '', NULL, 0, 0, '', '', '');
746 INSERT INTO `marc_subfield_structure` VALUES ('015', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
747 INSERT INTO `marc_subfield_structure` VALUES ('015', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
748 INSERT INTO `marc_subfield_structure` VALUES ('015', 'a', 'National bibliography number', 'National bibliography number', 1, 0, '', 0, '', '', '', 0, 0, '', '', '');
749 INSERT INTO `marc_subfield_structure` VALUES ('016', '2', 'Source', 'Source', 0, 0, '', 0, '', '', '', 0, 0, '', '', '');
750 INSERT INTO `marc_subfield_structure` VALUES ('016', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
751 INSERT INTO `marc_subfield_structure` VALUES ('016', 'a', 'Record control number', 'Record control number', 0, 0, '', 0, '', '', '', 0, 0, '', '', '');
752 INSERT INTO `marc_subfield_structure` VALUES ('016', 'z', 'Canceled or invalid record control number', 'Canceled or invalid record control number', 1, 0, '', 0, '', '', '', 0, -1, '', '', '');
753 INSERT INTO `marc_subfield_structure` VALUES ('017', '2', 'Source', 'Source', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
754 INSERT INTO `marc_subfield_structure` VALUES ('017', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
755 INSERT INTO `marc_subfield_structure` VALUES ('017', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
756 INSERT INTO `marc_subfield_structure` VALUES ('017', 'a', 'Copyright or legal deposit number', 'Copyright or legal deposit number', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
757 INSERT INTO `marc_subfield_structure` VALUES ('017', 'b', 'Assigning agency', 'Assigning agency', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
758 INSERT INTO `marc_subfield_structure` VALUES ('017', 'd', 'Date', 'Date', 0, 0, '', 0, '', '', NULL, 0, -6, '', '', '');
759 INSERT INTO `marc_subfield_structure` VALUES ('017', 'i', 'Display text', 'Display text', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
760 INSERT INTO `marc_subfield_structure` VALUES ('018', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
761 INSERT INTO `marc_subfield_structure` VALUES ('018', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
762 INSERT INTO `marc_subfield_structure` VALUES ('018', 'a', 'Copyright article-fee code', 'Copyright article-fee code', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
763 INSERT INTO `marc_subfield_structure` VALUES ('01e', 'a', 'Coded field error', 'Coded field error', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
764 INSERT INTO `marc_subfield_structure` VALUES ('020', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
765 INSERT INTO `marc_subfield_structure` VALUES ('020', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
766 INSERT INTO `marc_subfield_structure` VALUES ('020', 'a', 'International Standard Book Number', 'International Standard Book Number', 0, 0, 'biblioitems.isbn', 0, '', '', '', 0, 0, '', '', '');
767 INSERT INTO `marc_subfield_structure` VALUES ('020', 'c', 'Terms of availability', 'Terms of availability', 0, 0, '', 0, '', '', '', 0, 0, '', '', '');
768 INSERT INTO `marc_subfield_structure` VALUES ('020', 'z', 'Cancelled/invalid ISBN', 'Cancelled/invalid ISBN', 1, 0, '', 0, '', '', '', 0, -1, '', '', '');
769 INSERT INTO `marc_subfield_structure` VALUES ('022', '2', 'Source', 'Source', 0, 0, '', 0, '', '', '', 0, 0, '', '', '');
770 INSERT INTO `marc_subfield_structure` VALUES ('022', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
771 INSERT INTO `marc_subfield_structure` VALUES ('022', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
772 INSERT INTO `marc_subfield_structure` VALUES ('022', 'a', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, 'biblioitems.issn', 0, '', '', '', 0, 0, '', '', '');
773 INSERT INTO `marc_subfield_structure` VALUES ('022', 'y', 'Incorrect ISSN', 'Incorrect ISSN', 1, 0, '', 0, '', '', '', 0, -1, '', '', '');
774 INSERT INTO `marc_subfield_structure` VALUES ('022', 'z', 'Canceled ISSN', 'Canceled ISSN', 1, 0, '', 0, '', '', '', 0, -1, '', '', '');
775 INSERT INTO `marc_subfield_structure` VALUES ('023', 'a', 'Standard film number', 'Standard film number', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
776 INSERT INTO `marc_subfield_structure` VALUES ('024', '2', 'Source of number or code', 'Source of number or code', 0, 0, '', 0, '', '', '', 0, 0, '', '', '');
777 INSERT INTO `marc_subfield_structure` VALUES ('024', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
778 INSERT INTO `marc_subfield_structure` VALUES ('024', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
779 INSERT INTO `marc_subfield_structure` VALUES ('024', 'a', 'Standard number or code', 'Standard number or code', 0, 0, '', 0, '', '', '', 0, 0, '', '', '');
780 INSERT INTO `marc_subfield_structure` VALUES ('024', 'b', 'Additional codes following the standard number [OBSOLETE]', 'Additional codes following the standard number [OBSOLETE]', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
781 INSERT INTO `marc_subfield_structure` VALUES ('024', 'c', 'Terms of availability', 'Terms of availability', 0, 0, '', 0, '', '', '', 0, 0, '', '', '');
782 INSERT INTO `marc_subfield_structure` VALUES ('024', 'd', 'Additional codes following the standard number or code', 'Additional codes following the standard number or code', 0, 0, '', 0, '', '', '', 0, 0, '', '', '');
783 INSERT INTO `marc_subfield_structure` VALUES ('024', 'z', 'Canceled/invalid standard number or code', 'Canceled/invalid standard number or code', 1, 0, '', 0, '', '', '', 0, -1, '', '', '');
784 INSERT INTO `marc_subfield_structure` VALUES ('025', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
785 INSERT INTO `marc_subfield_structure` VALUES ('025', 'a', 'Overseas acquisition number', 'Overseas acquisition number', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
786 INSERT INTO `marc_subfield_structure` VALUES ('026', '2', 'Source', 'Source', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
787 INSERT INTO `marc_subfield_structure` VALUES ('026', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
788 INSERT INTO `marc_subfield_structure` VALUES ('026', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
789 INSERT INTO `marc_subfield_structure` VALUES ('026', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
790 INSERT INTO `marc_subfield_structure` VALUES ('026', 'a', 'First and second groups of characters', 'First and second groups of characters', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
791 INSERT INTO `marc_subfield_structure` VALUES ('026', 'b', 'Third and fourth groups of characters', 'Third and fourth groups of characters', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
792 INSERT INTO `marc_subfield_structure` VALUES ('026', 'c', 'Date', 'Date', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
793 INSERT INTO `marc_subfield_structure` VALUES ('026', 'd', 'Number of volume or part', 'Number of volume or part', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
794 INSERT INTO `marc_subfield_structure` VALUES ('026', 'e', 'unparsed fingerprint', 'unparsed fingerprint', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
795 INSERT INTO `marc_subfield_structure` VALUES ('027', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
796 INSERT INTO `marc_subfield_structure` VALUES ('027', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
797 INSERT INTO `marc_subfield_structure` VALUES ('027', 'a', 'Standard technical report number', 'Standard technical report number', 0, 0, '', 0, '', '', '', 0, -1, '', '', '');
798 INSERT INTO `marc_subfield_structure` VALUES ('027', 'z', 'Canceled/invalid number', 'Canceled/invalid number', 1, 0, '', 0, '', '', '', 0, -1, '', '', '');
799 INSERT INTO `marc_subfield_structure` VALUES ('028', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
800 INSERT INTO `marc_subfield_structure` VALUES ('028', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
801 INSERT INTO `marc_subfield_structure` VALUES ('028', 'a', 'Publisher number', 'Publisher number', 0, 0, '', 0, '', '', '', 0, 0, '', '', '');
802 INSERT INTO `marc_subfield_structure` VALUES ('028', 'b', 'Source', 'Source', 0, 0, '', 0, '', '', '', 0, 0, '', '', '');
803 INSERT INTO `marc_subfield_structure` VALUES ('030', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
804 INSERT INTO `marc_subfield_structure` VALUES ('030', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
805 INSERT INTO `marc_subfield_structure` VALUES ('030', 'a', 'CODEN', 'CODEN', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
806 INSERT INTO `marc_subfield_structure` VALUES ('030', 'z', 'Canceled/invalid CODEN', 'Canceled/invalid CODEN', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
807 INSERT INTO `marc_subfield_structure` VALUES ('031', '2', 'System code', 'System code', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
808 INSERT INTO `marc_subfield_structure` VALUES ('031', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
809 INSERT INTO `marc_subfield_structure` VALUES ('031', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
810 INSERT INTO `marc_subfield_structure` VALUES ('031', 'a', 'Number of work', 'Number of work', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
811 INSERT INTO `marc_subfield_structure` VALUES ('031', 'b', 'Number of movement', 'Number of movement', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
812 INSERT INTO `marc_subfield_structure` VALUES ('031', 'c', 'Number of excerpt', 'Number of excerpt', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
813 INSERT INTO `marc_subfield_structure` VALUES ('031', 'd', 'Caption or heading', 'Caption or heading', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
814 INSERT INTO `marc_subfield_structure` VALUES ('031', 'e', 'Role', 'Role', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
815 INSERT INTO `marc_subfield_structure` VALUES ('031', 'g', 'Clef', 'Clef', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
816 INSERT INTO `marc_subfield_structure` VALUES ('031', 'm', 'Voice/instrument', 'Voice/instrument', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
817 INSERT INTO `marc_subfield_structure` VALUES ('031', 'n', 'Key signature', 'Key signature', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
818 INSERT INTO `marc_subfield_structure` VALUES ('031', 'o', 'Time signature', 'Time signature', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
819 INSERT INTO `marc_subfield_structure` VALUES ('031', 'p', 'Musical notation', 'Musical notation', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
820 INSERT INTO `marc_subfield_structure` VALUES ('031', 'q', 'General note', 'General note', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
821 INSERT INTO `marc_subfield_structure` VALUES ('031', 'r', 'Key or mode', 'Key or mode', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
822 INSERT INTO `marc_subfield_structure` VALUES ('031', 's', 'Coded validity note', 'Coded validity note', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
823 INSERT INTO `marc_subfield_structure` VALUES ('031', 't', 'Text incipit', 'Text incipit', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
824 INSERT INTO `marc_subfield_structure` VALUES ('031', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 0, '', '', '', 1, -6, '', '', '');
825 INSERT INTO `marc_subfield_structure` VALUES ('031', 'y', 'Link text', 'Link text', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
826 INSERT INTO `marc_subfield_structure` VALUES ('031', 'z', 'Public note', 'Public note', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
827 INSERT INTO `marc_subfield_structure` VALUES ('032', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', NULL, 0, -6, '', '', '');
828 INSERT INTO `marc_subfield_structure` VALUES ('032', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
829 INSERT INTO `marc_subfield_structure` VALUES ('032', 'a', 'Postal registration number', 'Postal registration number', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
830 INSERT INTO `marc_subfield_structure` VALUES ('032', 'b', 'Source (agency assigning number)', 'Source (agency assigning number)', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
831 INSERT INTO `marc_subfield_structure` VALUES ('033', '3', 'Materials specified', 'Materials specified', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
832 INSERT INTO `marc_subfield_structure` VALUES ('033', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
833 INSERT INTO `marc_subfield_structure` VALUES ('033', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
834 INSERT INTO `marc_subfield_structure` VALUES ('033', 'a', 'Formatted date/time', 'Formatted date/time', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
835 INSERT INTO `marc_subfield_structure` VALUES ('033', 'b', 'Geographic classification area code', 'Geographic classification area code', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
836 INSERT INTO `marc_subfield_structure` VALUES ('033', 'c', 'Geographic classification subarea code', 'Geographic classification subarea code', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
837 INSERT INTO `marc_subfield_structure` VALUES ('034', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
838 INSERT INTO `marc_subfield_structure` VALUES ('034', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
839 INSERT INTO `marc_subfield_structure` VALUES ('034', 'a', 'Category of scale', 'Category of scale', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
840 INSERT INTO `marc_subfield_structure` VALUES ('034', 'b', 'Constant ratio linear horizontal scale', 'Constant ratio linear horizontal scale', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
841 INSERT INTO `marc_subfield_structure` VALUES ('034', 'c', 'Constant ratio linear vertical scale', 'Constant ratio linear vertical scale', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
842 INSERT INTO `marc_subfield_structure` VALUES ('034', 'd', 'Coordinates--westernmost longitude', 'Coordinates--westernmost longitude', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
843 INSERT INTO `marc_subfield_structure` VALUES ('034', 'e', 'Coordinates--easternmost longitude', 'Coordinates--easternmost longitude', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
844 INSERT INTO `marc_subfield_structure` VALUES ('034', 'f', 'Coordinates--northernmost latitude', 'Coordinates--northernmost latitude', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
845 INSERT INTO `marc_subfield_structure` VALUES ('034', 'g', 'Coordinates--southernmost latitude', 'Coordinates--southernmost latitude', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
846 INSERT INTO `marc_subfield_structure` VALUES ('034', 'h', 'Angular scale', 'Angular scale', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
847 INSERT INTO `marc_subfield_structure` VALUES ('034', 'j', 'Declination--northern limit', 'Declination--northern limit', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
848 INSERT INTO `marc_subfield_structure` VALUES ('034', 'k', 'Declination--southern limit', 'Declination--southern limit', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
849 INSERT INTO `marc_subfield_structure` VALUES ('034', 'm', 'Right ascension--eastern limit', 'Right ascension--eastern limit', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
850 INSERT INTO `marc_subfield_structure` VALUES ('034', 'n', 'Right ascension--western limit', 'Right ascension--western limit', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
851 INSERT INTO `marc_subfield_structure` VALUES ('034', 'p', 'Equinox', 'Equinox', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
852 INSERT INTO `marc_subfield_structure` VALUES ('034', 's', 'G-ring latitude', 'G-ring latitude', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
853 INSERT INTO `marc_subfield_structure` VALUES ('034', 't', 'G-ring longitude', 'G-ring longitude', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
854 INSERT INTO `marc_subfield_structure` VALUES ('035', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
855 INSERT INTO `marc_subfield_structure` VALUES ('035', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
856 INSERT INTO `marc_subfield_structure` VALUES ('035', 'a', 'System control number', 'System control number', 0, 0, '', 0, '', '', '', 0, 0, '', '', '');
857 INSERT INTO `marc_subfield_structure` VALUES ('035', 'z', 'Canceled/invalid control number', 'Canceled/invalid control number', 1, 0, '', 0, '', '', '', 0, -1, '', '', '');
858 INSERT INTO `marc_subfield_structure` VALUES ('036', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
859 INSERT INTO `marc_subfield_structure` VALUES ('036', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
860 INSERT INTO `marc_subfield_structure` VALUES ('036', 'a', 'Original study number', 'Original study number', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
861 INSERT INTO `marc_subfield_structure` VALUES ('036', 'b', 'Source (agency assigning number)', 'Source (agency assigning number)', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
862 INSERT INTO `marc_subfield_structure` VALUES ('037', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
863 INSERT INTO `marc_subfield_structure` VALUES ('037', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
864 INSERT INTO `marc_subfield_structure` VALUES ('037', 'a', 'Stock number', 'Stock number', 0, 0, '', 0, '', '', '', 0, -1, '', '', '');
865 INSERT INTO `marc_subfield_structure` VALUES ('037', 'b', 'Source of stock number/acquisition', 'Source of stock number/acquisition', 0, 0, '', 0, '', '', '', 0, -1, '', '', '');
866 INSERT INTO `marc_subfield_structure` VALUES ('037', 'c', 'Terms of availability', 'Terms of availability', 1, 0, '', 0, '', '', '', 0, -1, '', '', '');
867 INSERT INTO `marc_subfield_structure` VALUES ('037', 'f', 'Form of issue', 'Form of issue', 1, 0, '', 0, '', '', '', 0, -1, '', '', '');
868 INSERT INTO `marc_subfield_structure` VALUES ('037', 'g', 'Additional format characteristics', 'Additional format characteristics', 1, 0, '', 0, '', '', '', 0, -1, '', '', '');
869 INSERT INTO `marc_subfield_structure` VALUES ('037', 'n', 'Note', 'Note', 1, 0, '', 0, '', '', '', 0, -1, '', '', '');
870 INSERT INTO `marc_subfield_structure` VALUES ('038', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
871 INSERT INTO `marc_subfield_structure` VALUES ('038', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
872 INSERT INTO `marc_subfield_structure` VALUES ('038', 'a', 'Record content licensor', 'Record content licensor', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
873 INSERT INTO `marc_subfield_structure` VALUES ('039', 'a', 'Level of rules in bibliographic description', 'Level of rules in bibliographic description', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
874 INSERT INTO `marc_subfield_structure` VALUES ('039', 'b', 'Level of effort used to assign nonsubject heading access points', 'Level of effort used to assign nonsubject heading access points', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
875 INSERT INTO `marc_subfield_structure` VALUES ('039', 'c', 'Level of effort used to assign subject headings', 'Level of effort used to assign subject headings', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
876 INSERT INTO `marc_subfield_structure` VALUES ('039', 'd', 'Level of effort used to assign classification', 'Level of effort used to assign classification', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
877 INSERT INTO `marc_subfield_structure` VALUES ('039', 'e', 'Number of fixed field character positions coded', 'Number of fixed field character positions coded', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
878 INSERT INTO `marc_subfield_structure` VALUES ('040', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
879 INSERT INTO `marc_subfield_structure` VALUES ('040', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
880 INSERT INTO `marc_subfield_structure` VALUES ('040', 'a', 'Original cataloging agency', 'Original cataloging agency', 0, 0, '', 0, '', '', '', 0, 0, '', '', '');
881 INSERT INTO `marc_subfield_structure` VALUES ('040', 'b', 'Language of cataloging', 'Language of cataloging', 0, 0, '', 0, '', '', '', 0, 0, '', '', '');
882 INSERT INTO `marc_subfield_structure` VALUES ('040', 'c', 'Transcribing agency', 'Transcribing agency', 0, 1, '', 0, '', '', '', 0, 0, '', '', '');
883 INSERT INTO `marc_subfield_structure` VALUES ('040', 'd', 'Modifying agency', 'Modifying agency', 1, 0, '', 0, '', '', '', 0, 0, '', '', '');
884 INSERT INTO `marc_subfield_structure` VALUES ('040', 'e', 'Description conventions', 'Description conventions', 0, 0, '', 0, '', '', '', 0, -1, '', '', '');
885 INSERT INTO `marc_subfield_structure` VALUES ('041', '2', 'Source of code', 'Source of code', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
886 INSERT INTO `marc_subfield_structure` VALUES ('041', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
887 INSERT INTO `marc_subfield_structure` VALUES ('041', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
888 INSERT INTO `marc_subfield_structure` VALUES ('041', 'a', 'Language code of text/sound track or separate title', 'Language code of text/sound track or separate title', 1, 0, '', 0, '', '', '', 0, -1, '', '', '');
889 INSERT INTO `marc_subfield_structure` VALUES ('041', 'b', 'Language code of summary or abstract/overprinted title or subtitle', 'Language code of summary or abstract/overprinted title or subtitle', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
890 INSERT INTO `marc_subfield_structure` VALUES ('041', 'c', 'Languages of separate titles (VM) [OBSOLETE] ; Languages of available translation  (SE) [OBSOLETE]', 'Languages of separate titles (VM) [OBSOLETE] ; Languages of available translation  (SE) [OBSOLETE]', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
891 INSERT INTO `marc_subfield_structure` VALUES ('041', 'd', 'Language code of sung or spoken text', 'Language code of sung or spoken text', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
892 INSERT INTO `marc_subfield_structure` VALUES ('041', 'e', 'Language code of librettos', 'Language code of librettos', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
893 INSERT INTO `marc_subfield_structure` VALUES ('041', 'f', 'Language code of table of contents', 'Language code of table of contents', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
894 INSERT INTO `marc_subfield_structure` VALUES ('041', 'g', 'Language code of accompanying material other than librettos', 'Language code of accompanying material other than librettos', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
895 INSERT INTO `marc_subfield_structure` VALUES ('041', 'h', 'Language code of original and/or intermediate translations of text', 'Language code of original and/or intermediate translations of text', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
896 INSERT INTO `marc_subfield_structure` VALUES ('042', 'a', 'Authentication code', 'Authentication code', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
897 INSERT INTO `marc_subfield_structure` VALUES ('043', '2', 'Source of local code', 'Source of local code', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
898 INSERT INTO `marc_subfield_structure` VALUES ('043', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
899 INSERT INTO `marc_subfield_structure` VALUES ('043', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
900 INSERT INTO `marc_subfield_structure` VALUES ('043', 'a', 'Geographic area code', 'Geographic area code', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
901 INSERT INTO `marc_subfield_structure` VALUES ('043', 'b', 'Local GAC code', 'Local GAC code', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
902 INSERT INTO `marc_subfield_structure` VALUES ('043', 'c', 'ISO code', 'ISO code', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
903 INSERT INTO `marc_subfield_structure` VALUES ('044', '2', 'Source of local subentity code', 'Source of local subentity code', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
904 INSERT INTO `marc_subfield_structure` VALUES ('044', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
905 INSERT INTO `marc_subfield_structure` VALUES ('044', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
906 INSERT INTO `marc_subfield_structure` VALUES ('044', 'a', 'MARC country code', 'MARC country code', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
907 INSERT INTO `marc_subfield_structure` VALUES ('044', 'b', 'Local subentity code', 'Local subentity code', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
908 INSERT INTO `marc_subfield_structure` VALUES ('044', 'c', 'ISO country code', 'ISO country code', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
909 INSERT INTO `marc_subfield_structure` VALUES ('045', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
910 INSERT INTO `marc_subfield_structure` VALUES ('045', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
911 INSERT INTO `marc_subfield_structure` VALUES ('045', 'a', 'Time period code', 'Time period code', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
912 INSERT INTO `marc_subfield_structure` VALUES ('045', 'b', 'Formatted 9999 B.C. through C.E. time period', 'Formatted 9999 B.C. through C.E. time period', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
913 INSERT INTO `marc_subfield_structure` VALUES ('045', 'c', 'Formatted pre-9999 B.C. time period', 'Formatted pre-9999 B.C. time period', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
914 INSERT INTO `marc_subfield_structure` VALUES ('046', '2', 'Source of date', 'Source of date', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
915 INSERT INTO `marc_subfield_structure` VALUES ('046', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
916 INSERT INTO `marc_subfield_structure` VALUES ('046', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
917 INSERT INTO `marc_subfield_structure` VALUES ('046', 'a', 'Type of date code', 'Type of date code', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
918 INSERT INTO `marc_subfield_structure` VALUES ('046', 'b', 'Date 1 (B.C. date)', 'Date 1 (B.C. date)', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
919 INSERT INTO `marc_subfield_structure` VALUES ('046', 'c', 'Date 1 (C.E. date)', 'Date 1 (C.E. date)', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
920 INSERT INTO `marc_subfield_structure` VALUES ('046', 'd', 'Date 2 (B.C. date)', 'Date 2 (B.C. date)', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
921 INSERT INTO `marc_subfield_structure` VALUES ('046', 'e', 'Date 2 (C.E. date)', 'Date 2 (C.E. date)', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
922 INSERT INTO `marc_subfield_structure` VALUES ('046', 'j', 'Date resource modified', 'Date resource modified', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
923 INSERT INTO `marc_subfield_structure` VALUES ('046', 'k', 'Beginning or single date created', 'Beginning or single date created', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
924 INSERT INTO `marc_subfield_structure` VALUES ('046', 'l', 'Ending date created', 'Ending date created', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
925 INSERT INTO `marc_subfield_structure` VALUES ('046', 'm', 'Beginning of date valid', 'Beginning of date valid', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
926 INSERT INTO `marc_subfield_structure` VALUES ('046', 'n', 'End of date valid', 'End of date valid', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
927 INSERT INTO `marc_subfield_structure` VALUES ('047', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
928 INSERT INTO `marc_subfield_structure` VALUES ('047', 'a', 'Form of musical composition code', 'Form of musical composition code', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
929 INSERT INTO `marc_subfield_structure` VALUES ('048', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
930 INSERT INTO `marc_subfield_structure` VALUES ('048', 'a', 'Performer or ensemble', 'Performer or ensemble', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
931 INSERT INTO `marc_subfield_structure` VALUES ('048', 'b', 'Soloist', 'Soloist', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
932 INSERT INTO `marc_subfield_structure` VALUES ('049', 'a', 'Holding library', 'Holding library', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
933 INSERT INTO `marc_subfield_structure` VALUES ('049', 'c', 'Copy statement', 'Copy statement', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
934 INSERT INTO `marc_subfield_structure` VALUES ('049', 'd', 'Definition of bibliographic subdivisions', 'Definition of bibliographic subdivisions', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
935 INSERT INTO `marc_subfield_structure` VALUES ('049', 'l', 'Local processing data', 'Local processing data', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
936 INSERT INTO `marc_subfield_structure` VALUES ('049', 'm', 'Missing elements', 'Missing elements', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
937 INSERT INTO `marc_subfield_structure` VALUES ('049', 'n', 'Notes about holdings', 'Notes about holdings', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
938 INSERT INTO `marc_subfield_structure` VALUES ('049', 'o', 'Local processing data', 'Local processing data', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
939 INSERT INTO `marc_subfield_structure` VALUES ('049', 'p', 'Secondary bibliographic subdivision', 'Secondary bibliographic subdivision', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
940 INSERT INTO `marc_subfield_structure` VALUES ('049', 'q', 'Third bibliographic subdivision', 'Third bibliographic subdivision', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
941 INSERT INTO `marc_subfield_structure` VALUES ('049', 'r', 'Fourth bibliographic subdivision', 'Fourth bibliographic subdivision', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
942 INSERT INTO `marc_subfield_structure` VALUES ('049', 's', 'Fifth bibliographic subdivision', 'Fifth bibliographic subdivision', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
943 INSERT INTO `marc_subfield_structure` VALUES ('049', 't', 'Sixth bibliographic subdivision', 'Sixth bibliographic subdivision', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
944 INSERT INTO `marc_subfield_structure` VALUES ('049', 'u', 'Seventh bibliographic subdivision', 'Seventh bibliographic subdivision', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
945 INSERT INTO `marc_subfield_structure` VALUES ('049', 'v', 'Primary bibliographic subdivision', 'Primary bibliographic subdivision', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
946 INSERT INTO `marc_subfield_structure` VALUES ('049', 'y', 'Inclusive dates of publication or coverage', 'Inclusive dates of publication or coverage', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
947 INSERT INTO `marc_subfield_structure` VALUES ('050', '3', 'Materials specified', 'Materials specified', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
948 INSERT INTO `marc_subfield_structure` VALUES ('050', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
949 INSERT INTO `marc_subfield_structure` VALUES ('050', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
950 INSERT INTO `marc_subfield_structure` VALUES ('050', 'a', 'Classification number', 'Classification number', 1, 0, '', 0, '', '', '', 0, 0, '', '', '');
951 INSERT INTO `marc_subfield_structure` VALUES ('050', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', 0, 0, '', '', '');
952 INSERT INTO `marc_subfield_structure` VALUES ('050', 'd', 'Supplementary class number (MU) [OBSOLETE]', 'Supplementary class number (MU) [OBSOLETE]', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
953 INSERT INTO `marc_subfield_structure` VALUES ('051', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
954 INSERT INTO `marc_subfield_structure` VALUES ('051', 'a', 'Classification number', 'Classification number', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
955 INSERT INTO `marc_subfield_structure` VALUES ('051', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
956 INSERT INTO `marc_subfield_structure` VALUES ('051', 'c', 'Copy information', 'Copy information', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
957 INSERT INTO `marc_subfield_structure` VALUES ('052', '2', 'Code Source', 'Code Source', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
958 INSERT INTO `marc_subfield_structure` VALUES ('052', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
959 INSERT INTO `marc_subfield_structure` VALUES ('052', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
960 INSERT INTO `marc_subfield_structure` VALUES ('052', 'a', 'Geographic classification area code', 'Geographic classification area code', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
961 INSERT INTO `marc_subfield_structure` VALUES ('052', 'b', 'Geographic classification subarea code', 'Geographic classification subarea code', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
962 INSERT INTO `marc_subfield_structure` VALUES ('052', 'c', 'Subject (MP) [OBSOLETE]', 'Subject (MP) [OBSOLETE]', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
963 INSERT INTO `marc_subfield_structure` VALUES ('052', 'd', 'Populated place name', 'Populated place name', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
964 INSERT INTO `marc_subfield_structure` VALUES ('055', '2', 'Source of call/class number', 'Source of call/class number', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
965 INSERT INTO `marc_subfield_structure` VALUES ('055', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
966 INSERT INTO `marc_subfield_structure` VALUES ('055', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
967 INSERT INTO `marc_subfield_structure` VALUES ('055', 'a', 'Classification number', 'Classification number', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
968 INSERT INTO `marc_subfield_structure` VALUES ('055', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
969 INSERT INTO `marc_subfield_structure` VALUES ('060', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, '', '', '');
970 INSERT INTO `marc_subfield_structure` VALUES ('060', 'a', 'Classification number', 'Classification number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, '', '', '');
971 INSERT INTO `marc_subfield_structure` VALUES ('060', 'b', 'Item number', 'Item number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, '', '', '');
972 INSERT INTO `marc_subfield_structure` VALUES ('061', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
973 INSERT INTO `marc_subfield_structure` VALUES ('061', 'a', 'Classification number', 'Classification number', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
974 INSERT INTO `marc_subfield_structure` VALUES ('061', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
975 INSERT INTO `marc_subfield_structure` VALUES ('061', 'c', 'Copy information', 'Copy information', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
976 INSERT INTO `marc_subfield_structure` VALUES ('066', 'a', 'Primary G0 character set', 'Primary G0 character set', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, '', '', '');
977 INSERT INTO `marc_subfield_structure` VALUES ('066', 'b', 'Primary G1 character set', 'Primary G1 character set', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, '', '', '');
978 INSERT INTO `marc_subfield_structure` VALUES ('066', 'c', 'Alternate G0 or G1 character set', 'Alternate G0 or G1 character set', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, '', '', '');
979 INSERT INTO `marc_subfield_structure` VALUES ('070', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, '', '', '');
980 INSERT INTO `marc_subfield_structure` VALUES ('070', 'a', 'Classification number', 'Classification number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, '', '', '');
981 INSERT INTO `marc_subfield_structure` VALUES ('070', 'b', 'Item number', 'Item number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, '', '', '');
982 INSERT INTO `marc_subfield_structure` VALUES ('071', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
983 INSERT INTO `marc_subfield_structure` VALUES ('071', 'a', 'Classification number', 'Classification number', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
984 INSERT INTO `marc_subfield_structure` VALUES ('071', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
985 INSERT INTO `marc_subfield_structure` VALUES ('071', 'c', 'Copy information', 'Copy information', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
986 INSERT INTO `marc_subfield_structure` VALUES ('072', '2', 'Source', 'Source', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, '', '', '');
987 INSERT INTO `marc_subfield_structure` VALUES ('072', '6', 'Linkage', 'Linkage', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, '', '', '');
988 INSERT INTO `marc_subfield_structure` VALUES ('072', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, '', '', '');
989 INSERT INTO `marc_subfield_structure` VALUES ('072', 'a', 'Subject category code', 'Subject category code', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, '', '', '');
990 INSERT INTO `marc_subfield_structure` VALUES ('072', 'x', 'Subject category code subdivision', 'Subject category code subdivision', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, '', '', '');
991 INSERT INTO `marc_subfield_structure` VALUES ('074', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, '', '', '');
992 INSERT INTO `marc_subfield_structure` VALUES ('074', 'a', 'GPO item number', 'GPO item number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -1, '', '', '');
993 INSERT INTO `marc_subfield_structure` VALUES ('074', 'z', 'Canceled/invalid GPO item number', 'Canceled/invalid GPO item number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -1, '', '', '');
994 INSERT INTO `marc_subfield_structure` VALUES ('080', '2', 'Edition identifier', 'Edition identifier', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, '', '', '');
995 INSERT INTO `marc_subfield_structure` VALUES ('080', '6', 'Linkage', 'Linkage', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, '', '', '');
996 INSERT INTO `marc_subfield_structure` VALUES ('080', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, '', '', '');
997 INSERT INTO `marc_subfield_structure` VALUES ('080', 'a', 'Universal Decimal Classification number', 'Universal Decimal Classification number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, '', '', '');
998 INSERT INTO `marc_subfield_structure` VALUES ('080', 'b', 'Item number', 'Item number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, '', '', '');
999 INSERT INTO `marc_subfield_structure` VALUES ('080', 'x', 'Common auxiliary subdivision', 'Common auxiliary subdivision', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, '', '', '');
1000 INSERT INTO `marc_subfield_structure` VALUES ('082', '2', 'Edition number', 'Edition number', 0, 0, '', 0, '', '', '', NULL, 0, '', '', '');
1001 INSERT INTO `marc_subfield_structure` VALUES ('082', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', NULL, -6, '', '', '');
1002 INSERT INTO `marc_subfield_structure` VALUES ('082', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', NULL, -6, '', '', '');
1003 INSERT INTO `marc_subfield_structure` VALUES ('082', 'a', 'Classification number', 'Classification number', 1, 0, '', 0, '', '', '', NULL, 0, '', '', '');
1004 INSERT INTO `marc_subfield_structure` VALUES ('082', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', NULL, 0, '', '', '');
1005 INSERT INTO `marc_subfield_structure` VALUES ('084', '2', 'Source of number', 'Source of number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, '', '', '');
1006 INSERT INTO `marc_subfield_structure` VALUES ('084', '6', 'Linkage', 'Linkage', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, '', '', '');
1007 INSERT INTO `marc_subfield_structure` VALUES ('084', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, '', '', '');
1008 INSERT INTO `marc_subfield_structure` VALUES ('084', 'a', 'Classification number', 'Classification number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, '', '', '');
1009 INSERT INTO `marc_subfield_structure` VALUES ('084', 'b', 'Item number', 'Item number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, '', '', '');
1010 INSERT INTO `marc_subfield_structure` VALUES ('086', '2', 'Number source', 'Number source', 0, 0, NULL, 0, NULL, NULL, '', NULL, -1, '', '', '');
1011 INSERT INTO `marc_subfield_structure` VALUES ('086', '6', 'Linkage', 'Linkage', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, '', '', '');
1012 INSERT INTO `marc_subfield_structure` VALUES ('086', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, '', '', '');
1013 INSERT INTO `marc_subfield_structure` VALUES ('086', 'a', 'Classification number', 'Classification number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -1, '', '', '');
1014 INSERT INTO `marc_subfield_structure` VALUES ('086', 'z', 'Canceled/invalid classification number', 'Canceled/invalid classification number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -1, '', '', '');
1015 INSERT INTO `marc_subfield_structure` VALUES ('087', 'a', 'Report number [OBSOLETE, CAN/MARC]', 'Report number [OBSOLETE, CAN/MARC]', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
1016 INSERT INTO `marc_subfield_structure` VALUES ('087', 'z', 'Canceled/invalid report number [OBSOLETE, CAN/MARC]', 'Canceled/invalid report number [OBSOLETE, CAN/MARC]', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
1017 INSERT INTO `marc_subfield_structure` VALUES ('088', '6', 'Linkage', 'Linkage', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, '', '', '');
1018 INSERT INTO `marc_subfield_structure` VALUES ('088', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, '', '', '');
1019 INSERT INTO `marc_subfield_structure` VALUES ('088', 'a', 'Report number', 'Report number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, '', '', '');
1020 INSERT INTO `marc_subfield_structure` VALUES ('088', 'z', 'Canceled/invalid report number', 'Canceled/invalid report number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, '', '', '');
1021 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'a', 'Classification number (OCLC) (R) ; Classification number, CALL (RLIN) (NR)', 'Classification number (OCLC) (R) ; Classification number, CALL (RLIN) (NR)', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
1022 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'b', 'Local cutter number (OCLC) ; Book number/undivided call number, CALL (RLIN)', 'Local cutter number (OCLC) ; Book number/undivided call number, CALL (RLIN)', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
1023 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'e', 'Feature heading (OCLC)', 'Feature heading (OCLC)', 0, 0, '', 0, '', '', '', 0, 5, '', '', '');
1024 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'f', 'Filing suffix (OCLC); Footnote, FNT (RLIN)', 'Filing suffix (OCLC); Footnote, FNT (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, '', '', '');
1025 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'h', 'Output transaction history, HST (RLIN)', 'Output transaction history, HST (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, '', '', '');
1026 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'i', 'Output transaction instruction, INS (RLIN)', 'Output transaction instruction, INS (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, '', '', '');
1027 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'l', 'Extra card control statement, EXT (RLIN)', 'Extra card control statement, EXT (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, '', '', '');
1028 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'n', 'Additional local notes, ANT (RLIN)', 'Additional local notes, ANT (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, '', '', '');
1029 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'p', 'Pathfinder code, PTH (RLIN)', 'Pathfinder code, PTH (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, '', '', '');
1030 INSERT INTO `marc_subfield_structure` VALUES ('09o', 't', 'Field suppresion, FSP (RLIN)', 'Field suppresion, FSP (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, '', '', '');
1031 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'v', 'Volumes, VOL (RLIN)', 'Volumes, VOL (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, '', '', '');
1032 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'y', 'Date, VOL (RLIN)', 'Date, VOL (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, '', '', '');
1033 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'z', 'Retention, VOL (RLIN)', 'Retention, VOL (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, '', '', '');
1034 INSERT INTO `marc_subfield_structure` VALUES ('091', 'a', 'Microfilm shelf location', 'Microfilm shelf location', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
1035 INSERT INTO `marc_subfield_structure` VALUES ('092', '2', 'Edition number', 'Edition number', 0, 0, '', 0, '', '', '', NULL, -6, '', '', '');
1036 INSERT INTO `marc_subfield_structure` VALUES ('092', 'a', 'Classification number', 'Classification number', 0, 0, '', 0, '', '', '', NULL, -6, '', '', '');
1037 INSERT INTO `marc_subfield_structure` VALUES ('092', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', NULL, -6, '', '', '');
1038 INSERT INTO `marc_subfield_structure` VALUES ('092', 'e', 'Feature heading', 'Feature heading', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
1039 INSERT INTO `marc_subfield_structure` VALUES ('092', 'f', 'Filing suffix', 'Filing suffix', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
1040 INSERT INTO `marc_subfield_structure` VALUES ('096', 'a', 'Classification number', 'Classification number', 0, 0, '', 0, '', '', '', NULL, -6, '', '', '');
1041 INSERT INTO `marc_subfield_structure` VALUES ('096', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', NULL, -6, '', '', '');
1042 INSERT INTO `marc_subfield_structure` VALUES ('096', 'e', 'Feature heading', 'Feature heading', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
1043 INSERT INTO `marc_subfield_structure` VALUES ('096', 'f', 'Filing suffix', 'Filing suffix', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
1044 INSERT INTO `marc_subfield_structure` VALUES ('098', 'a', 'Call number based on other classification scheme', 'Call number based on other classification scheme', 0, 0, '', 0, '', '', '', NULL, -6, '', '', '');
1045 INSERT INTO `marc_subfield_structure` VALUES ('098', 'e', 'Feature heading', 'Feature heading', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
1046 INSERT INTO `marc_subfield_structure` VALUES ('098', 'f', 'Filing suffix', 'Filing suffix', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
1047 INSERT INTO `marc_subfield_structure` VALUES ('099', 'a', 'Classification number', 'Classification number', 1, 0, '', 0, '', '', '', NULL, -6, '', '', '');
1048 INSERT INTO `marc_subfield_structure` VALUES ('099', 'e', 'Feature heading', 'Feature heading', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
1049 INSERT INTO `marc_subfield_structure` VALUES ('099', 'f', 'Filing suffix', 'Filing suffix', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
1050 INSERT INTO `marc_subfield_structure` VALUES ('100', '4', 'Relator code', 'Relator code', 1, 0, '', 1, '', '', '', 0, -6, '', '', '');
1051 INSERT INTO `marc_subfield_structure` VALUES ('100', '6', 'Linkage', 'Linkage', 0, 0, '', 1, '', '', '', 0, -6, '', '', '');
1052 INSERT INTO `marc_subfield_structure` VALUES ('100', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 1, '', '', '', 0, -6, '', '', '');
1053 INSERT INTO `marc_subfield_structure` VALUES ('100', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, '', '', '');
1054 INSERT INTO `marc_subfield_structure` VALUES ('100', 'a', 'Personal name', 'Personal name', 0, 0, 'biblio.author', 1, '', '', '', 0, 0, '', '''100b'',''100c'',''100q'',''100d'',''100e'',''110a'',''110b'',''110c'',''110d'',''110e'',''700a'',''700b'',''700c'',''700q'',''700d'',''700e'',''710a'',''710b'',''710c'',''710d'',''710e'',''720a'',''720e'',''900a''', '');
1055 INSERT INTO `marc_subfield_structure` VALUES ('100', 'b', 'Numeration', 'Numeration', 0, 0, '', 1, '', '', '', 0, -1, '', '', '');
1056 INSERT INTO `marc_subfield_structure` VALUES ('100', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 1, '', '', '', 0, -1, '', '', '');
1057 INSERT INTO `marc_subfield_structure` VALUES ('100', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 1, '', '', '', 0, 0, '', '', '');
1058 INSERT INTO `marc_subfield_structure` VALUES ('100', 'e', 'Relator term', 'Relator term', 1, 0, '', 1, '', '', '', 0, -1, '', '', '');
1059 INSERT INTO `marc_subfield_structure` VALUES ('100', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 1, '', '', '', 0, -6, '', '', '');
1060 INSERT INTO `marc_subfield_structure` VALUES ('100', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 1, '', '', '', 0, -6, '', '', '');
1061 INSERT INTO `marc_subfield_structure` VALUES ('100', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 1, '', '', '', 0, -6, '', '', '');
1062 INSERT INTO `marc_subfield_structure` VALUES ('100', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 1, '', '', '', 0, -6, '', '', '');
1063 INSERT INTO `marc_subfield_structure` VALUES ('100', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 1, '', '', '', 0, -6, '', '', '');
1064 INSERT INTO `marc_subfield_structure` VALUES ('100', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 1, '', '', '', 0, -6, '', '', '');
1065 INSERT INTO `marc_subfield_structure` VALUES ('100', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 1, '', '', '', 0, -6, '', '', '');
1066 INSERT INTO `marc_subfield_structure` VALUES ('100', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 1, '', '', '', 0, 0, '', '', '');
1067 INSERT INTO `marc_subfield_structure` VALUES ('100', 't', 'Title of a work', 'Title of a work', 0, 0, '', 1, '', '', '', 0, -6, '', '', '');
1068 INSERT INTO `marc_subfield_structure` VALUES ('100', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 1, '', '', '', 0, -6, '', '', '');
1069 INSERT INTO `marc_subfield_structure` VALUES ('110', '4', 'Relator code', 'Relator code', 1, 0, '', 1, '', '', '', NULL, -6, '', '', '');
1070 INSERT INTO `marc_subfield_structure` VALUES ('110', '6', 'Linkage', 'Linkage', 0, 0, '', 1, '', '', '', NULL, -6, '', '', '');
1071 INSERT INTO `marc_subfield_structure` VALUES ('110', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 1, '', '', '', NULL, -6, '', '', '');
1072 INSERT INTO `marc_subfield_structure` VALUES ('110', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, '', '', '');
1073 INSERT INTO `marc_subfield_structure` VALUES ('110', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 1, '', '', '', NULL, 0, '', '', '');
1074 INSERT INTO `marc_subfield_structure` VALUES ('110', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 1, '', '', '', NULL, 0, '', '', '');
1075 INSERT INTO `marc_subfield_structure` VALUES ('110', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 1, '', '', '', NULL, -1, '', '', '');
1076 INSERT INTO `marc_subfield_structure` VALUES ('110', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 1, '', '', '', NULL, -1, '', '', '');
1077 INSERT INTO `marc_subfield_structure` VALUES ('110', 'e', 'Relator term', 'Relator term', 1, 0, '', 1, '', '', '', NULL, -1, '', '', '');
1078 INSERT INTO `marc_subfield_structure` VALUES ('110', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 1, '', '', '', NULL, -6, '', '', '');
1079 INSERT INTO `marc_subfield_structure` VALUES ('110', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 1, '', '', '', NULL, -6, '', '', '');
1080 INSERT INTO `marc_subfield_structure` VALUES ('110', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 1, '', '', '', NULL, -6, '', '', '');
1081 INSERT INTO `marc_subfield_structure` VALUES ('110', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 1, '', '', '', NULL, -6, '', '', '');
1082 INSERT INTO `marc_subfield_structure` VALUES ('110', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 1, '', '', '', NULL, -6, '', '', '');
1083 INSERT INTO `marc_subfield_structure` VALUES ('110', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 1, '', '', '', NULL, -6, '', '', '');
1084 INSERT INTO `marc_subfield_structure` VALUES ('110', 't', 'Title of a work', 'Title of a work', 0, 0, '', 1, '', '', '', NULL, -6, '', '', '');
1085 INSERT INTO `marc_subfield_structure` VALUES ('110', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 1, '', '', '', NULL, -6, '', '', '');
1086 INSERT INTO `marc_subfield_structure` VALUES ('111', '4', 'Relator code', 'Relator code', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, '', '', '');
1087 INSERT INTO `marc_subfield_structure` VALUES ('111', '6', 'Linkage', 'Linkage', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, '', '', '');
1088 INSERT INTO `marc_subfield_structure` VALUES ('111', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, '', '', '');
1089 INSERT INTO `marc_subfield_structure` VALUES ('111', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, '', '', '');
1090 INSERT INTO `marc_subfield_structure` VALUES ('111', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 1, NULL, NULL, '', NULL, -1, '', '', '');
1091 INSERT INTO `marc_subfield_structure` VALUES ('111', 'b', 'Number [OBSOLETE]', 'Number [OBSOLETE]', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, '', '', '');
1092 INSERT INTO `marc_subfield_structure` VALUES ('111', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 1, NULL, NULL, '', NULL, -1, '', '', '');
1093 INSERT INTO `marc_subfield_structure` VALUES ('111', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 1, NULL, NULL, '', NULL, -1, '', '', '');
1094 INSERT INTO `marc_subfield_structure` VALUES ('111', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 1, NULL, NULL, '', NULL, -1, '', '', '');
1095 INSERT INTO `marc_subfield_structure` VALUES ('111', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, '', '', '');
1096 INSERT INTO `marc_subfield_structure` VALUES ('111', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, '', '', '');
1097 INSERT INTO `marc_subfield_structure` VALUES ('111', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, '', '', '');
1098 INSERT INTO `marc_subfield_structure` VALUES ('111', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, '', '', '');
1099 INSERT INTO `marc_subfield_structure` VALUES ('111', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, '', '', '');
1100 INSERT INTO `marc_subfield_structure` VALUES ('111', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, '', '', '');
1101 INSERT INTO `marc_subfield_structure` VALUES ('111', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, '', '', '');
1102 INSERT INTO `marc_subfield_structure` VALUES ('111', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, '', '', '');
1103 INSERT INTO `marc_subfield_structure` VALUES ('111', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, '', '', '');
1104 INSERT INTO `marc_subfield_structure` VALUES ('130', '6', 'Linkage', 'Linkage', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, '', '', '');
1105 INSERT INTO `marc_subfield_structure` VALUES ('130', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, '', '', '');
1106 INSERT INTO `marc_subfield_structure` VALUES ('130', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, '', '', '');
1107 INSERT INTO `marc_subfield_structure` VALUES ('130', 'a', 'Uniform title', 'Uniform title', 0, 0, NULL, 1, NULL, NULL, '', NULL, -1, '', '', '');
1108 INSERT INTO `marc_subfield_structure` VALUES ('130', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, '', '', '');
1109 INSERT INTO `marc_subfield_structure` VALUES ('130', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, '', '', '');
1110 INSERT INTO `marc_subfield_structure` VALUES ('130', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, '', '', '');
1111 INSERT INTO `marc_subfield_structure` VALUES ('130', 'h', 'Medium', 'Medium', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, '', '', '');
1112 INSERT INTO `marc_subfield_structure` VALUES ('130', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, '', '', '');
1113 INSERT INTO `marc_subfield_structure` VALUES ('130', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 1, NULL, NULL, '', NULL, -1, '', '', '');
1114 INSERT INTO `marc_subfield_structure` VALUES ('130', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, '', '', '');
1115 INSERT INTO `marc_subfield_structure` VALUES ('130', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, '', '', '');
1116 INSERT INTO `marc_subfield_structure` VALUES ('130', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, '', '', '');
1117 INSERT INTO `marc_subfield_structure` VALUES ('130', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, '', '', '');
1118 INSERT INTO `marc_subfield_structure` VALUES ('130', 'r', 'Key for music', 'Key for music', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, '', '', '');
1119 INSERT INTO `marc_subfield_structure` VALUES ('130', 's', 'Version', 'Version', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, '', '', '');
1120 INSERT INTO `marc_subfield_structure` VALUES ('130', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, '', '', '');
1121 INSERT INTO `marc_subfield_structure` VALUES ('210', '2', 'Source', 'Source', 1, 0, NULL, 2, NULL, NULL, '', NULL, -1, '', '', '');
1122 INSERT INTO `marc_subfield_structure` VALUES ('210', '6', 'Linkage', 'Linkage', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, '', '', '');
1123 INSERT INTO `marc_subfield_structure` VALUES ('210', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 2, NULL, NULL, '', NULL, -6, '', '', '');
1124 INSERT INTO `marc_subfield_structure` VALUES ('210', 'a', 'Abbreviated title', 'Abbreviated title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -1, '', '', '');
1125 INSERT INTO `marc_subfield_structure` VALUES ('210', 'b', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 2, NULL, NULL, '', NULL, -1, '', '', '');
1126 INSERT INTO `marc_subfield_structure` VALUES ('211', '6', 'Linkage', 'Linkage', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, '', '', '');
1127 INSERT INTO `marc_subfield_structure` VALUES ('211', 'a', 'Acronym or shortened title', 'Acronym or shortened title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, '', '', '');
1128 INSERT INTO `marc_subfield_structure` VALUES ('212', '6', 'Linkage', 'Linkage', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, '', '', '');
1129 INSERT INTO `marc_subfield_structure` VALUES ('212', 'a', 'Variant access title', 'Variant access title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, '', '', '');
1130 INSERT INTO `marc_subfield_structure` VALUES ('214', '6', 'Linkage', 'Linkage', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, '', '', '');
1131 INSERT INTO `marc_subfield_structure` VALUES ('214', 'a', 'Augmented title', 'Augmented title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, '', '', '');
1132 INSERT INTO `marc_subfield_structure` VALUES ('222', '6', 'Linkage', 'Linkage', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, '', '', '');
1133 INSERT INTO `marc_subfield_structure` VALUES ('222', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 2, NULL, NULL, '', NULL, -6, '', '', '');
1134 INSERT INTO `marc_subfield_structure` VALUES ('222', 'a', 'Key title', 'Key title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -1, '', '', '');
1135 INSERT INTO `marc_subfield_structure` VALUES ('222', 'b', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 2, NULL, NULL, '', NULL, -1, '', '', '');
1136 INSERT INTO `marc_subfield_structure` VALUES ('240', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', 0, -6, '', '', '');
1137 INSERT INTO `marc_subfield_structure` VALUES ('240', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', 0, -6, '', '', '');
1138 INSERT INTO `marc_subfield_structure` VALUES ('240', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, '', '', '');
1139 INSERT INTO `marc_subfield_structure` VALUES ('240', 'a', 'Uniform title', 'Uniform title', 0, 0, 'biblio.unititle', 2, '', '', '', 1, -1, '', '', '');
1140 INSERT INTO `marc_subfield_structure` VALUES ('240', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 2, '', '', '', 0, -6, '', '', '');
1141 INSERT INTO `marc_subfield_structure` VALUES ('240', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 2, '', '', '', 0, -6, '', '', '');
1142 INSERT INTO `marc_subfield_structure` VALUES ('240', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 2, '', '', '', 0, -6, '', '', '');
1143 INSERT INTO `marc_subfield_structure` VALUES ('240', 'h', 'Medium', 'Medium', 0, 0, '', 2, '', '', '', 0, -1, '', '', '');
1144 INSERT INTO `marc_subfield_structure` VALUES ('240', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 2, '', '', '', 0, -6, '', '', '');
1145 INSERT INTO `marc_subfield_structure` VALUES ('240', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 2, '', '', '', 0, -1, '', '', '');
1146 INSERT INTO `marc_subfield_structure` VALUES ('240', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 2, '', '', '', 0, -6, '', '', '');
1147 INSERT INTO `marc_subfield_structure` VALUES ('240', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 2, '', '', '', 0, -6, '', '', '');
1148 INSERT INTO `marc_subfield_structure` VALUES ('240', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 2, '', '', '', 0, -6, '', '', '');
1149 INSERT INTO `marc_subfield_structure` VALUES ('240', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 2, '', '', '', 0, -6, '', '', '');
1150 INSERT INTO `marc_subfield_structure` VALUES ('240', 'r', 'Key for music', 'Key for music', 0, 0, '', 2, '', '', '', 0, -6, '', '', '');
1151 INSERT INTO `marc_subfield_structure` VALUES ('240', 's', 'Version', 'Version', 0, 0, '', 2, '', '', '', 0, -1, '', '', '');
1152 INSERT INTO `marc_subfield_structure` VALUES ('241', 'a', 'Romanized title', 'Romanized title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, '', '', '');
1153 INSERT INTO `marc_subfield_structure` VALUES ('241', 'h', 'Medium', 'Medium', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, '', '', '');
1154 INSERT INTO `marc_subfield_structure` VALUES ('242', '6', 'Linkage', 'Linkage', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, '', '', '');
1155 INSERT INTO `marc_subfield_structure` VALUES ('242', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 2, NULL, NULL, '', NULL, -6, '', '', '');
1156 INSERT INTO `marc_subfield_structure` VALUES ('242', 'a', 'Title', 'Title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, '', '', '');
1157 INSERT INTO `marc_subfield_structure` VALUES ('242', 'b', 'Remainder of title', 'Remainder of title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, '', '', '');
1158 INSERT INTO `marc_subfield_structure` VALUES ('242', 'c', 'Statement of responsibility, etc', 'Statement of responsibility, etc', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, '', '', '');
1159 INSERT INTO `marc_subfield_structure` VALUES ('242', 'd', 'Designation of section (BK AM MP MU VM SE) [OBSOLETE]', 'Designation of section (BK AM MP MU VM SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1160 INSERT INTO `marc_subfield_structure` VALUES ('242', 'e', 'Name of part/section (BK AM MP MU VM SE) [OBSOLETE]', 'Name of part/section (BK AM MP MU VM SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1161 INSERT INTO `marc_subfield_structure` VALUES ('242', 'h', 'Medium', 'Medium', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, '', '', '');
1162 INSERT INTO `marc_subfield_structure` VALUES ('242', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, NULL, 2, NULL, NULL, '', NULL, -6, '', '', '');
1163 INSERT INTO `marc_subfield_structure` VALUES ('242', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 2, NULL, NULL, '', NULL, -6, '', '', '');
1164 INSERT INTO `marc_subfield_structure` VALUES ('242', 'y', 'Language code of translated title', 'Language code of translated title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, '', '', '');
1165 INSERT INTO `marc_subfield_structure` VALUES ('243', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', 0, -6, '', '', '');
1166 INSERT INTO `marc_subfield_structure` VALUES ('243', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', 0, -6, '', '', '');
1167 INSERT INTO `marc_subfield_structure` VALUES ('243', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, '', '', '');
1168 INSERT INTO `marc_subfield_structure` VALUES ('243', 'a', 'Uniform title', 'Unifor title', 0, 0, '', 2, '', '', '', 1, -1, '', '', '');
1169 INSERT INTO `marc_subfield_structure` VALUES ('243', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 2, '', '', '', 0, -6, '', '', '');
1170 INSERT INTO `marc_subfield_structure` VALUES ('243', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 2, '', '', '', 0, -6, '', '', '');
1171 INSERT INTO `marc_subfield_structure` VALUES ('243', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 2, '', '', '', 0, -6, '', '', '');
1172 INSERT INTO `marc_subfield_structure` VALUES ('243', 'h', 'Medium', 'Medium', 0, 0, '', 2, '', '', '', 0, -1, '', '', '');
1173 INSERT INTO `marc_subfield_structure` VALUES ('243', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 2, '', '', '', 0, -6, '', '', '');
1174 INSERT INTO `marc_subfield_structure` VALUES ('243', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 2, '', '', '', 0, -1, '', '', '');
1175 INSERT INTO `marc_subfield_structure` VALUES ('243', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 2, '', '', '', 0, -6, '', '', '');
1176 INSERT INTO `marc_subfield_structure` VALUES ('243', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 2, '', '', '', 0, -6, '', '', '');
1177 INSERT INTO `marc_subfield_structure` VALUES ('243', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 2, '', '', '', 0, -6, '', '', '');
1178 INSERT INTO `marc_subfield_structure` VALUES ('243', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 2, '', '', '', 0, -6, '', '', '');
1179 INSERT INTO `marc_subfield_structure` VALUES ('243', 'r', 'Key for music', 'Key for music', 0, 0, '', 2, '', '', '', 0, -6, '', '', '');
1180 INSERT INTO `marc_subfield_structure` VALUES ('243', 's', 'Version', 'Version', 0, 0, '', 2, '', '', '', 0, -1, '', '', '');
1181 INSERT INTO `marc_subfield_structure` VALUES ('245', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1182 INSERT INTO `marc_subfield_structure` VALUES ('245', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1183 INSERT INTO `marc_subfield_structure` VALUES ('245', 'a', 'Title', 'Title', 0, 1, 'biblio.title', 2, '', '', '', NULL, 0, '', '''245b'',''245f'',''245g'',''245k'',''245n'',''245p'',''245s'',''245h'',''246i'',''246a'',''246b'',''246f'',''246g'',''246n'',''246p'',''246h'',''242a'',''242b'',''242n'',''242p'',''242h''', '');
1184 INSERT INTO `marc_subfield_structure` VALUES ('245', 'b', 'Remainder of title', 'Remainder of title', 0, 0, 'bibliosubtitle.subtitle', 2, '', '', '', NULL, 0, '', '', '');
1185 INSERT INTO `marc_subfield_structure` VALUES ('245', 'c', 'Statement of responsibility, etc', 'Statement of responsibility, etc', 0, 0, '', 2, '', '', '', NULL, 0, '', '', '');
1186 INSERT INTO `marc_subfield_structure` VALUES ('245', 'd', 'Designation of section/part/series (SE) [OBSOLETE]', 'Designation of section section/part/series: (SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1187 INSERT INTO `marc_subfield_structure` VALUES ('245', 'e', 'Name of part/section/series (SE) [OBSOLETE]', 'Name of part/section/series (SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1188 INSERT INTO `marc_subfield_structure` VALUES ('245', 'f', 'Inclusive dates', 'Inclusive dates', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1189 INSERT INTO `marc_subfield_structure` VALUES ('245', 'g', 'Bulk dates', 'Bulk dates', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1190 INSERT INTO `marc_subfield_structure` VALUES ('245', 'h', 'Medium', 'Medium', 0, 0, '', 2, '', '', '', NULL, 0, '', '', '');
1191 INSERT INTO `marc_subfield_structure` VALUES ('245', 'k', 'Form', 'Form', 1, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1192 INSERT INTO `marc_subfield_structure` VALUES ('245', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1193 INSERT INTO `marc_subfield_structure` VALUES ('245', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1194 INSERT INTO `marc_subfield_structure` VALUES ('245', 's', 'Version', 'Version', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1195 INSERT INTO `marc_subfield_structure` VALUES ('246', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1196 INSERT INTO `marc_subfield_structure` VALUES ('246', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1197 INSERT INTO `marc_subfield_structure` VALUES ('246', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1198 INSERT INTO `marc_subfield_structure` VALUES ('246', 'a', 'Title proper/short title', 'Title proper/short title', 0, 0, '', 2, '', '', '', NULL, -1, '', '', '');
1199 INSERT INTO `marc_subfield_structure` VALUES ('246', 'b', 'Remainder of title', 'Remainder of title', 0, 0, '', 2, '', '', '', NULL, -1, '', '', '');
1200 INSERT INTO `marc_subfield_structure` VALUES ('246', 'd', 'Designation of section/part/series (SE) [OBSOLETE]', 'Designation of section section/part/series (SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1201 INSERT INTO `marc_subfield_structure` VALUES ('246', 'e', 'Name of part/section/series (SE) [OBSOLETE]', 'Name of part/section/series (SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1202 INSERT INTO `marc_subfield_structure` VALUES ('246', 'f', 'Date or sequential designation', 'Date or sequential designation', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1203 INSERT INTO `marc_subfield_structure` VALUES ('246', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1204 INSERT INTO `marc_subfield_structure` VALUES ('246', 'h', 'Medium', 'Medium', 0, 0, '', 2, '', '', '', NULL, -1, '', '', '');
1205 INSERT INTO `marc_subfield_structure` VALUES ('246', 'i', 'Display text', 'Display text', 0, 0, '', 2, '', '', '', NULL, -1, '', '', '');
1206 INSERT INTO `marc_subfield_structure` VALUES ('246', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1207 INSERT INTO `marc_subfield_structure` VALUES ('246', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1208 INSERT INTO `marc_subfield_structure` VALUES ('247', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1209 INSERT INTO `marc_subfield_structure` VALUES ('247', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1210 INSERT INTO `marc_subfield_structure` VALUES ('247', 'a', 'Title', 'Title', 0, 0, '', 2, '', '', '', NULL, -1, '', '', '');
1211 INSERT INTO `marc_subfield_structure` VALUES ('247', 'b', 'Remainder of title', 'Remainder of title', 0, 0, '', 2, '', '', '', NULL, -1, '', '', '');
1212 INSERT INTO `marc_subfield_structure` VALUES ('247', 'd', 'Designation of section (SE) [OBSOLETE]', 'Designation of section (SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1213 INSERT INTO `marc_subfield_structure` VALUES ('247', 'e', 'Name of part/section (SE) [OBSOLETE]', 'Name of part/section (SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1214 INSERT INTO `marc_subfield_structure` VALUES ('247', 'f', 'Date or sequential designation', 'Date or sequential designation', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1215 INSERT INTO `marc_subfield_structure` VALUES ('247', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1216 INSERT INTO `marc_subfield_structure` VALUES ('247', 'h', 'Medium', 'Medium', 0, 0, '', 2, '', '', '', NULL, -1, '', '', '');
1217 INSERT INTO `marc_subfield_structure` VALUES ('247', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1218 INSERT INTO `marc_subfield_structure` VALUES ('247', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1219 INSERT INTO `marc_subfield_structure` VALUES ('247', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1220 INSERT INTO `marc_subfield_structure` VALUES ('250', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1221 INSERT INTO `marc_subfield_structure` VALUES ('250', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1222 INSERT INTO `marc_subfield_structure` VALUES ('250', 'a', 'Edition statement', 'Edition statement', 0, 0, '', 2, '', '', '', NULL, 0, '', '', '');
1223 INSERT INTO `marc_subfield_structure` VALUES ('250', 'b', 'Remainder of edition statement', 'Remainder of edition statement', 0, 0, '', 2, '', '', '', NULL, 0, '', '', '');
1224 INSERT INTO `marc_subfield_structure` VALUES ('254', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1225 INSERT INTO `marc_subfield_structure` VALUES ('254', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1226 INSERT INTO `marc_subfield_structure` VALUES ('254', 'a', 'Musical presentation statement', 'Musical presentation statement', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1227 INSERT INTO `marc_subfield_structure` VALUES ('255', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1228 INSERT INTO `marc_subfield_structure` VALUES ('255', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1229 INSERT INTO `marc_subfield_structure` VALUES ('255', 'a', 'Statement of scale', 'Statement of scale', 1, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1230 INSERT INTO `marc_subfield_structure` VALUES ('255', 'b', 'Statement of projection', 'Statement of projection', 1, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1231 INSERT INTO `marc_subfield_structure` VALUES ('255', 'c', 'Statement of coordinates', 'Statement of coordinates', 1, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1232 INSERT INTO `marc_subfield_structure` VALUES ('255', 'd', 'Statement of zone', 'Statement of zone', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1233 INSERT INTO `marc_subfield_structure` VALUES ('255', 'e', 'Statement of equinox', 'Statement of equinox', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1234 INSERT INTO `marc_subfield_structure` VALUES ('255', 'f', 'Outer G-ring coordinate pairs', 'Outer G-ring coordinate pairs', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1235 INSERT INTO `marc_subfield_structure` VALUES ('255', 'g', 'Exclusion G-ring coordinate pairs', 'Exclusion G-ring coordinate pairs', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1236 INSERT INTO `marc_subfield_structure` VALUES ('256', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1237 INSERT INTO `marc_subfield_structure` VALUES ('256', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1238 INSERT INTO `marc_subfield_structure` VALUES ('256', 'a', 'Computer file characteristics', 'Computer file characteristics', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1239 INSERT INTO `marc_subfield_structure` VALUES ('257', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1240 INSERT INTO `marc_subfield_structure` VALUES ('257', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1241 INSERT INTO `marc_subfield_structure` VALUES ('257', 'a', 'Country of producing entity', 'Country of producing entity', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1242 INSERT INTO `marc_subfield_structure` VALUES ('258', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1243 INSERT INTO `marc_subfield_structure` VALUES ('258', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1244 INSERT INTO `marc_subfield_structure` VALUES ('258', 'a', 'Issuing jurisdiction', 'Issuing jurisdiction', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1245 INSERT INTO `marc_subfield_structure` VALUES ('258', 'b', 'Denomination', 'Denomination', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1246 INSERT INTO `marc_subfield_structure` VALUES ('260', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1247 INSERT INTO `marc_subfield_structure` VALUES ('260', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1248 INSERT INTO `marc_subfield_structure` VALUES ('260', 'a', 'Place of publication, distribution, etc', 'Place of publication, distribution, etc', 1, 0, 'biblioitems.place', 2, '', '', '', NULL, 0, '', '', '');
1249 INSERT INTO `marc_subfield_structure` VALUES ('260', 'b', 'Name of publisher, distributor, etc', 'Name of publisher, distributor, etc', 1, 0, 'biblioitems.publishercode', 2, '', '', '', NULL, 0, '', '', '');
1250 INSERT INTO `marc_subfield_structure` VALUES ('260', 'c', 'Date of publication, distribution, etc', 'Date of publication, distribution, etc', 1, 0, 'biblio.copyrightdate', 2, '', '', '', NULL, 0, '', '', '');
1251 INSERT INTO `marc_subfield_structure` VALUES ('260', 'd', 'Plate or publisher\'s number for music (Pre-AACR 2) [OBSOLETE, CAN/MARC], [LOCAL, USA]', 'Plate or publisher\'s number for music (Pre-AACR 2) [OBSOLETE, CAN/MARC], [LOCAL, USA]', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1252 INSERT INTO `marc_subfield_structure` VALUES ('260', 'e', 'Place of manufacture', 'Place of manufacture', 1, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1253 INSERT INTO `marc_subfield_structure` VALUES ('260', 'f', 'Manufacturer', 'Manufacturer', 1, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1254 INSERT INTO `marc_subfield_structure` VALUES ('260', 'g', 'Date of manufacture', 'Date of manufacture', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1255 INSERT INTO `marc_subfield_structure` VALUES ('260', 'k', 'Identification/manufacturer number [OBSOLETE, CAN/MARC]', 'Identification/manufacturer number [OBSOLETE, CAN/MARC]', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1256 INSERT INTO `marc_subfield_structure` VALUES ('260', 'l', 'Matrix and/or take number [OBSOLETE, CAN/MARC]', 'Matrix and/or take number [OBSOLETE, CAN/MARC]', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1257 INSERT INTO `marc_subfield_structure` VALUES ('261', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1258 INSERT INTO `marc_subfield_structure` VALUES ('261', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1259 INSERT INTO `marc_subfield_structure` VALUES ('261', 'a', 'Producing company', 'Producing company', 1, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1260 INSERT INTO `marc_subfield_structure` VALUES ('261', 'b', 'Releasing company (primary distributor)', 'Releasing company (primary distributor)', 1, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1261 INSERT INTO `marc_subfield_structure` VALUES ('261', 'c', 'Date of production, release, etc.', 'Date of production, release, etc.', 1, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1262 INSERT INTO `marc_subfield_structure` VALUES ('261', 'd', 'Date of production, release, etc.', 'Date of production, release, etc.', 1, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1263 INSERT INTO `marc_subfield_structure` VALUES ('261', 'e', 'Contractual producer', 'Contractual producer', 1, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1264 INSERT INTO `marc_subfield_structure` VALUES ('261', 'f', 'Place of production, release, etc.', 'Place of production, release, etc.', 1, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1265 INSERT INTO `marc_subfield_structure` VALUES ('262', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1266 INSERT INTO `marc_subfield_structure` VALUES ('262', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1267 INSERT INTO `marc_subfield_structure` VALUES ('262', 'a', 'Place of production, release, etc.', 'Place of production, release, etc.', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1268 INSERT INTO `marc_subfield_structure` VALUES ('262', 'b', 'Publisher or trade name', 'Publisher or trade name', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1269 INSERT INTO `marc_subfield_structure` VALUES ('262', 'c', 'Date of production, release, etc.', 'Date of production, release, etc.', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1270 INSERT INTO `marc_subfield_structure` VALUES ('262', 'k', 'Serial identification', 'Serial identification', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1271 INSERT INTO `marc_subfield_structure` VALUES ('262', 'l', 'Matrix and/or take number', 'Matrix and/or take number', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1272 INSERT INTO `marc_subfield_structure` VALUES ('263', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1273 INSERT INTO `marc_subfield_structure` VALUES ('263', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1274 INSERT INTO `marc_subfield_structure` VALUES ('263', 'a', 'Projected publication date', 'Projected publication date', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1275 INSERT INTO `marc_subfield_structure` VALUES ('265', '6', 'Linkage [OBSOLETE]', 'Linkage [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1276 INSERT INTO `marc_subfield_structure` VALUES ('265', 'a', 'Source for acquisition/subscription address [OBSOLETE]', 'Source for acquisition/subscription address [OBSOLETE]', 1, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1277 INSERT INTO `marc_subfield_structure` VALUES ('270', '4', 'Relator code', 'Relator code', 1, 0, NULL, 2, NULL, NULL, '', NULL, -6, '', '', '');
1278 INSERT INTO `marc_subfield_structure` VALUES ('270', '6', 'Linkage', 'Linkage', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, '', '', '');
1279 INSERT INTO `marc_subfield_structure` VALUES ('270', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 2, NULL, NULL, '', NULL, -6, '', '', '');
1280 INSERT INTO `marc_subfield_structure` VALUES ('270', 'a', 'Address', 'Address', 1, 0, NULL, 2, NULL, NULL, '', NULL, -6, '', '', '');
1281 INSERT INTO `marc_subfield_structure` VALUES ('270', 'b', 'City', 'City', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, '', '', '');
1282 INSERT INTO `marc_subfield_structure` VALUES ('270', 'c', 'State or province', 'State or province', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, '', '', '');
1283 INSERT INTO `marc_subfield_structure` VALUES ('270', 'd', 'Country', 'Country', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, '', '', '');
1284 INSERT INTO `marc_subfield_structure` VALUES ('270', 'e', 'Postal code', 'Postal code', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, '', '', '');
1285 INSERT INTO `marc_subfield_structure` VALUES ('270', 'f', 'Terms preceding attention name', 'Terms preceding attention name', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, '', '', '');
1286 INSERT INTO `marc_subfield_structure` VALUES ('270', 'g', 'Attention name', 'Attention name', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, '', '', '');
1287 INSERT INTO `marc_subfield_structure` VALUES ('270', 'h', 'Attention position', 'Attention position', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, '', '', '');
1288 INSERT INTO `marc_subfield_structure` VALUES ('270', 'i', 'Type of address', 'Type of address', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, '', '', '');
1289 INSERT INTO `marc_subfield_structure` VALUES ('270', 'j', 'Specialized telephone number', 'Specialized telephone number', 1, 0, NULL, 2, NULL, NULL, '', NULL, -6, '', '', '');
1290 INSERT INTO `marc_subfield_structure` VALUES ('270', 'k', 'Telephone number', 'Telephone number', 1, 0, NULL, 2, NULL, NULL, '', NULL, -6, '', '', '');
1291 INSERT INTO `marc_subfield_structure` VALUES ('270', 'l', 'Fax number', 'Fax number', 1, 0, NULL, 2, NULL, NULL, '', NULL, -6, '', '', '');
1292 INSERT INTO `marc_subfield_structure` VALUES ('270', 'm', 'Electronic mail address', 'Electronic mail address', 1, 0, NULL, 2, NULL, NULL, '', NULL, -6, '', '', '');
1293 INSERT INTO `marc_subfield_structure` VALUES ('270', 'n', 'TDD or TTY number', 'TDD or TTY number', 1, 0, NULL, 2, NULL, NULL, '', NULL, -6, '', '', '');
1294 INSERT INTO `marc_subfield_structure` VALUES ('270', 'p', 'Contact person', 'Contact person', 1, 0, NULL, 2, NULL, NULL, '', NULL, -6, '', '', '');
1295 INSERT INTO `marc_subfield_structure` VALUES ('270', 'q', 'Title of contact person', 'Title of contact person', 1, 0, NULL, 2, NULL, NULL, '', NULL, -6, '', '', '');
1296 INSERT INTO `marc_subfield_structure` VALUES ('270', 'r', 'Hours', 'Hours', 1, 0, NULL, 2, NULL, NULL, '', NULL, -6, '', '', '');
1297 INSERT INTO `marc_subfield_structure` VALUES ('270', 'z', 'Public note', 'Public note', 1, 0, NULL, 2, NULL, NULL, '', NULL, -6, '', '', '');
1298 INSERT INTO `marc_subfield_structure` VALUES ('300', '3', 'Materials specified', 'Materials specified', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1299 INSERT INTO `marc_subfield_structure` VALUES ('300', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1300 INSERT INTO `marc_subfield_structure` VALUES ('300', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1301 INSERT INTO `marc_subfield_structure` VALUES ('300', 'a', 'Extent', 'Extent', 1, 1, 'biblioitems.pages', 3, '', '', '', NULL, 0, '', '', '');
1302 INSERT INTO `marc_subfield_structure` VALUES ('300', 'b', 'Other physical details', 'Other physical details', 0, 0, 'biblioitems.illus', 3, '', '', '', 0, 0, '', '', '');
1303 INSERT INTO `marc_subfield_structure` VALUES ('300', 'c', 'Dimensions', 'Dimensions', 1, 0, 'biblioitems.size', 3, '', '', '', NULL, 0, '', '', '');
1304 INSERT INTO `marc_subfield_structure` VALUES ('300', 'd', 'Accompanying material [OBSOLETE, CAN/MARC]', 'Accompanying material [OBSOLETE, CAN/MARC]', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1305 INSERT INTO `marc_subfield_structure` VALUES ('300', 'e', 'Accompanying material', 'Accompanying material', 0, 0, '', 3, '', '', '', NULL, 0, '', '', '');
1306 INSERT INTO `marc_subfield_structure` VALUES ('300', 'f', 'Type of unit', 'Type of unit', 1, 0, '', 3, '', '', '', NULL, 0, '', '', '');
1307 INSERT INTO `marc_subfield_structure` VALUES ('300', 'g', 'Size of unit', 'Size of unit', 1, 0, '', 3, '', '', '', NULL, 0, '', '', '');
1308 INSERT INTO `marc_subfield_structure` VALUES ('300', 'k', 'Speed [Videodiscs, pre-AACR2 records only] [OBSOLETE, CAN/MARC]', 'Speed [Videodiscs, pre-AACR2 records only] [OBSOLETE, CAN/MARC]', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1309 INSERT INTO `marc_subfield_structure` VALUES ('300', 'm', 'Identification/manufacturer number [pre-AACR2 records only] [OBSOLETE, CAN/MARC]', 'Identification/manufacturer number [pre-AACR2 records only] [OBSOLETE, CAN/MARC]', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1310 INSERT INTO `marc_subfield_structure` VALUES ('300', 'n', 'Matrix and/or take number [Sound recordings, pre-AACR2 records only] [OBSOLETE, CAN/MARC]', 'Matrix and/or take number [Sound recordings, pre-AACR2 records only] [OBSOLETE, CAN/MARC]', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1311 INSERT INTO `marc_subfield_structure` VALUES ('301', 'a', 'Extent of item', 'Extent of item', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1312 INSERT INTO `marc_subfield_structure` VALUES ('301', 'b', 'Sound characteristics', 'Sound characteristics', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1313 INSERT INTO `marc_subfield_structure` VALUES ('301', 'c', 'Color characteristics', 'Color characteristics', 0, 0, '', 3, '', '', NULL, NULL, -6, '', '', '');
1314 INSERT INTO `marc_subfield_structure` VALUES ('301', 'd', 'Dimensions', 'Dimensions', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1315 INSERT INTO `marc_subfield_structure` VALUES ('301', 'e', 'Sound characteristics', 'Sound characteristics', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1316 INSERT INTO `marc_subfield_structure` VALUES ('301', 'f', 'Speed', 'Speed', 0, 0, '', 3, '', '', NULL, NULL, -6, '', '', '');
1317 INSERT INTO `marc_subfield_structure` VALUES ('302', 'a', 'Page count', 'Page count', 0, 0, '', 3, '', '', NULL, NULL, -6, '', '', '');
1318 INSERT INTO `marc_subfield_structure` VALUES ('303', 'a', 'Unit count', 'Unit count', 0, 0, '', 3, '', '', NULL, NULL, -6, '', '', '');
1319 INSERT INTO `marc_subfield_structure` VALUES ('304', 'a', 'Linear footage', 'Linear footage', 0, 0, '', 3, '', '', NULL, NULL, -6, '', '', '');
1320 INSERT INTO `marc_subfield_structure` VALUES ('305', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1321 INSERT INTO `marc_subfield_structure` VALUES ('305', 'a', 'Extent', 'Extent', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1322 INSERT INTO `marc_subfield_structure` VALUES ('305', 'b', 'Other physical details', 'Other physical details', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1323 INSERT INTO `marc_subfield_structure` VALUES ('305', 'c', 'Dimensions', 'Dimensions', 0, 0, '', 3, '', '', NULL, NULL, -6, '', '', '');
1324 INSERT INTO `marc_subfield_structure` VALUES ('305', 'd', 'Microgroove or standard', 'Microgroove or standard', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1325 INSERT INTO `marc_subfield_structure` VALUES ('305', 'e', 'Stereophonic, monaural', 'Stereophonic, monaural', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1326 INSERT INTO `marc_subfield_structure` VALUES ('305', 'f', 'Number of tracks', 'Number of tracks', 0, 0, '', 3, '', '', NULL, NULL, -6, '', '', '');
1327 INSERT INTO `marc_subfield_structure` VALUES ('305', 'm', 'Serial identification', 'Serial identification', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1328 INSERT INTO `marc_subfield_structure` VALUES ('305', 'n', 'Matrix and/or take number', 'Matrix and/or take number', 0, 0, '', 3, '', '', NULL, NULL, -6, '', '', '');
1329 INSERT INTO `marc_subfield_structure` VALUES ('306', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1330 INSERT INTO `marc_subfield_structure` VALUES ('306', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1331 INSERT INTO `marc_subfield_structure` VALUES ('306', 'a', 'Playing time', 'Playing time', 0, 0, '', 3, '', '', '', NULL, 0, '', '', '');
1332 INSERT INTO `marc_subfield_structure` VALUES ('307', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1333 INSERT INTO `marc_subfield_structure` VALUES ('307', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1334 INSERT INTO `marc_subfield_structure` VALUES ('307', 'a', 'Hours', 'Hours', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1335 INSERT INTO `marc_subfield_structure` VALUES ('307', 'b', 'Additional information', 'Additional information', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1336 INSERT INTO `marc_subfield_structure` VALUES ('308', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1337 INSERT INTO `marc_subfield_structure` VALUES ('308', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1338 INSERT INTO `marc_subfield_structure` VALUES ('308', 'a', 'Number of reels', 'Number of reels', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1339 INSERT INTO `marc_subfield_structure` VALUES ('308', 'b', 'Footage', 'Footage', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1340 INSERT INTO `marc_subfield_structure` VALUES ('308', 'c', 'Sound characteristics', 'Sound characteristics', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1341 INSERT INTO `marc_subfield_structure` VALUES ('308', 'd', 'Color characteristics', 'Color characteristics', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1342 INSERT INTO `marc_subfield_structure` VALUES ('308', 'e', 'Width', 'Width', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1343 INSERT INTO `marc_subfield_structure` VALUES ('308', 'f', 'Presentation format', 'Presentation format', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1344 INSERT INTO `marc_subfield_structure` VALUES ('310', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1345 INSERT INTO `marc_subfield_structure` VALUES ('310', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1346 INSERT INTO `marc_subfield_structure` VALUES ('310', 'a', 'Current publication frequency', 'Current publication frequency', 0, 0, NULL, 3, NULL, NULL, '', NULL, -1, '', '', '');
1347 INSERT INTO `marc_subfield_structure` VALUES ('310', 'b', 'Date of current publication frequency', 'Date of current publication frequency', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1348 INSERT INTO `marc_subfield_structure` VALUES ('315', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1349 INSERT INTO `marc_subfield_structure` VALUES ('315', 'a', 'Frequency', 'Frequency', 1, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1350 INSERT INTO `marc_subfield_structure` VALUES ('315', 'b', 'Dates of frequency', 'Dates of frequency', 1, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1351 INSERT INTO `marc_subfield_structure` VALUES ('321', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1352 INSERT INTO `marc_subfield_structure` VALUES ('321', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1353 INSERT INTO `marc_subfield_structure` VALUES ('321', 'a', 'Former publication frequency', 'Former publication frequency', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1354 INSERT INTO `marc_subfield_structure` VALUES ('321', 'b', 'Former publication frequency', 'Former publication frequency', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1355 INSERT INTO `marc_subfield_structure` VALUES ('340', '3', 'Materials specified', 'Materials specified', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1356 INSERT INTO `marc_subfield_structure` VALUES ('340', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1357 INSERT INTO `marc_subfield_structure` VALUES ('340', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1358 INSERT INTO `marc_subfield_structure` VALUES ('340', 'a', 'Material base and configuration', 'Material base and configuration', 1, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1359 INSERT INTO `marc_subfield_structure` VALUES ('340', 'b', 'Dimensions', 'Dimensions', 1, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1360 INSERT INTO `marc_subfield_structure` VALUES ('340', 'c', 'Materials applied to surface', 'Materials applied to surface', 1, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1361 INSERT INTO `marc_subfield_structure` VALUES ('340', 'd', 'Information recording technique', 'Information recording technique', 1, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1362 INSERT INTO `marc_subfield_structure` VALUES ('340', 'e', 'Support', 'Support', 1, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1363 INSERT INTO `marc_subfield_structure` VALUES ('340', 'f', 'Production rate/ratio', 'Production rate/ratio', 1, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1364 INSERT INTO `marc_subfield_structure` VALUES ('340', 'h', 'Location within medium', 'Location within medium', 1, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1365 INSERT INTO `marc_subfield_structure` VALUES ('340', 'i', 'Technical specifications of medium', 'Technical specifications of medium', 1, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1366 INSERT INTO `marc_subfield_structure` VALUES ('342', '2', 'Reference method used', 'Reference method used', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1367 INSERT INTO `marc_subfield_structure` VALUES ('342', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1368 INSERT INTO `marc_subfield_structure` VALUES ('342', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1369 INSERT INTO `marc_subfield_structure` VALUES ('342', 'a', 'Name', 'Name', 1, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1370 INSERT INTO `marc_subfield_structure` VALUES ('342', 'b', 'Coordinate or distance units', 'Coordinate or distance units', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1371 INSERT INTO `marc_subfield_structure` VALUES ('342', 'c', 'Latitude resolution', 'Latitude resolution', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1372 INSERT INTO `marc_subfield_structure` VALUES ('342', 'd', 'Longitude resolution', 'Longitude resolution', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1373 INSERT INTO `marc_subfield_structure` VALUES ('342', 'e', 'Standard parallel or oblique line latitude', 'Standard parallel or oblique line latitude', 1, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1374 INSERT INTO `marc_subfield_structure` VALUES ('342', 'f', 'Oblique line longitude', 'Oblique line longitude', 1, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1375 INSERT INTO `marc_subfield_structure` VALUES ('342', 'g', 'Longitude of central meridian or projection center', 'Longitude of central meridian or projection center', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1376 INSERT INTO `marc_subfield_structure` VALUES ('342', 'h', 'Latitude of projection origin or projection center', 'Latitude of projection origin or projection center', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1377 INSERT INTO `marc_subfield_structure` VALUES ('342', 'i', 'False easting', 'False easting', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1378 INSERT INTO `marc_subfield_structure` VALUES ('342', 'j', 'False northing', 'False northing', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1379 INSERT INTO `marc_subfield_structure` VALUES ('342', 'k', 'Scale factor', 'Scale factor', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1380 INSERT INTO `marc_subfield_structure` VALUES ('342', 'l', 'Height of perspective point above surface', 'Height of perspective point above surface', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1381 INSERT INTO `marc_subfield_structure` VALUES ('342', 'm', 'Azimuthal angle', 'Azimuthal angle', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1382 INSERT INTO `marc_subfield_structure` VALUES ('342', 'n', 'Azimuth measure point longitude or straight vertical longitude from pole', 'Azimuth measure point longitude or straight vertical longitude from pole', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1383 INSERT INTO `marc_subfield_structure` VALUES ('342', 'o', 'Landsat number and path number', 'Landsat number and path number', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1384 INSERT INTO `marc_subfield_structure` VALUES ('342', 'p', 'Zone identifier', 'Zone identifier', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1385 INSERT INTO `marc_subfield_structure` VALUES ('342', 'q', 'Ellipsoid name', 'Ellipsoid name', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1386 INSERT INTO `marc_subfield_structure` VALUES ('342', 'r', 'Semi-major axis', 'Semi-major axis', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1387 INSERT INTO `marc_subfield_structure` VALUES ('342', 's', 'Denominator of flattening ratio', 'Denominator of flattening ratio', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1388 INSERT INTO `marc_subfield_structure` VALUES ('342', 't', 'Vertical resolution', 'Vertical resolution', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1389 INSERT INTO `marc_subfield_structure` VALUES ('342', 'u', 'Vertical encoding method', 'Vertical encoding method', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1390 INSERT INTO `marc_subfield_structure` VALUES ('342', 'v', 'Local planar, local, or other projection or grid description', 'Local planar, local, or other projection or grid description', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1391 INSERT INTO `marc_subfield_structure` VALUES ('342', 'w', 'Local planar or local georeference information', 'Local planar or local georeference information', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1392 INSERT INTO `marc_subfield_structure` VALUES ('343', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1393 INSERT INTO `marc_subfield_structure` VALUES ('343', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1394 INSERT INTO `marc_subfield_structure` VALUES ('343', 'a', 'Planar coordinate encoding method', 'Planar coordinate encoding method', 1, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1395 INSERT INTO `marc_subfield_structure` VALUES ('343', 'b', 'Planar distance units', 'Planar distance units', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1396 INSERT INTO `marc_subfield_structure` VALUES ('343', 'c', 'Abscissa resolution', 'Abscissa resolution', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1397 INSERT INTO `marc_subfield_structure` VALUES ('343', 'd', 'Ordinate resolution', 'Ordinate resolution', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1398 INSERT INTO `marc_subfield_structure` VALUES ('343', 'e', 'Distance resolution', 'Distance resolution', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1399 INSERT INTO `marc_subfield_structure` VALUES ('343', 'f', 'Bearing resolution', 'Bearing resolution', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1400 INSERT INTO `marc_subfield_structure` VALUES ('343', 'g', 'Bearing unit', 'Bearing unit', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1401 INSERT INTO `marc_subfield_structure` VALUES ('343', 'h', 'Bearing reference direction', 'Bearing reference direction', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1402 INSERT INTO `marc_subfield_structure` VALUES ('343', 'i', 'Bearing reference meridian', 'Bearing reference meridian', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1403 INSERT INTO `marc_subfield_structure` VALUES ('350', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1404 INSERT INTO `marc_subfield_structure` VALUES ('350', 'a', 'Price', 'Price', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1405 INSERT INTO `marc_subfield_structure` VALUES ('350', 'b', 'Form of issue', 'Form of issue', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1406 INSERT INTO `marc_subfield_structure` VALUES ('351', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1407 INSERT INTO `marc_subfield_structure` VALUES ('351', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1408 INSERT INTO `marc_subfield_structure` VALUES ('351', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1409 INSERT INTO `marc_subfield_structure` VALUES ('351', 'a', 'Organization', 'Organization', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1410 INSERT INTO `marc_subfield_structure` VALUES ('351', 'b', 'Arrangement', 'Arrangement', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1411 INSERT INTO `marc_subfield_structure` VALUES ('351', 'c', 'Hierarchical level', 'Hierarchical level', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1412 INSERT INTO `marc_subfield_structure` VALUES ('352', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1413 INSERT INTO `marc_subfield_structure` VALUES ('352', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1414 INSERT INTO `marc_subfield_structure` VALUES ('352', 'a', 'Direct reference method', 'Direct reference method', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1415 INSERT INTO `marc_subfield_structure` VALUES ('352', 'b', 'Object type', 'Object type', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1416 INSERT INTO `marc_subfield_structure` VALUES ('352', 'c', 'Object count', 'Object count', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1417 INSERT INTO `marc_subfield_structure` VALUES ('352', 'd', 'Row count', 'Row count', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1418 INSERT INTO `marc_subfield_structure` VALUES ('352', 'e', 'Column count', 'Column count', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1419 INSERT INTO `marc_subfield_structure` VALUES ('352', 'f', 'Vertical count', 'Vertical count', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1420 INSERT INTO `marc_subfield_structure` VALUES ('352', 'g', 'VPF topology level', 'VPF topology level', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1421 INSERT INTO `marc_subfield_structure` VALUES ('352', 'i', 'Indirect reference description', 'Indirect reference description', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1422 INSERT INTO `marc_subfield_structure` VALUES ('355', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1423 INSERT INTO `marc_subfield_structure` VALUES ('355', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1424 INSERT INTO `marc_subfield_structure` VALUES ('355', 'a', 'Security classification', 'Security classification', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1425 INSERT INTO `marc_subfield_structure` VALUES ('355', 'b', 'Handling instructions', 'Handling instructions', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1426 INSERT INTO `marc_subfield_structure` VALUES ('355', 'c', 'External dissemination information', 'External dissemination information', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1427 INSERT INTO `marc_subfield_structure` VALUES ('355', 'd', 'Downgrading or declassification event', 'Downgrading or declassification event', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1428 INSERT INTO `marc_subfield_structure` VALUES ('355', 'e', 'Classification system', 'Classification system', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1429 INSERT INTO `marc_subfield_structure` VALUES ('355', 'f', 'Country of origin code', 'Country of origin code', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1430 INSERT INTO `marc_subfield_structure` VALUES ('355', 'g', 'Downgrading date', 'Downgrading date', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1431 INSERT INTO `marc_subfield_structure` VALUES ('355', 'h', 'Declassification date', 'Declassification date', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1432 INSERT INTO `marc_subfield_structure` VALUES ('355', 'j', 'Authorization', 'Authorization', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1433 INSERT INTO `marc_subfield_structure` VALUES ('357', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1434 INSERT INTO `marc_subfield_structure` VALUES ('357', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1435 INSERT INTO `marc_subfield_structure` VALUES ('357', 'a', 'Originator control term', 'Originator control term', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1436 INSERT INTO `marc_subfield_structure` VALUES ('357', 'b', 'Originating agency', 'Originating agency', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1437 INSERT INTO `marc_subfield_structure` VALUES ('357', 'c', 'Authorized recipients of material', 'Authorized recipients of material', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1438 INSERT INTO `marc_subfield_structure` VALUES ('357', 'g', 'Other restrictions', 'Other restrictions', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1439 INSERT INTO `marc_subfield_structure` VALUES ('359', 'a', 'Rental price', 'Rental price', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1440 INSERT INTO `marc_subfield_structure` VALUES ('362', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1441 INSERT INTO `marc_subfield_structure` VALUES ('362', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1442 INSERT INTO `marc_subfield_structure` VALUES ('362', 'a', 'Dates of publication and/or sequential designation', 'Dates of publication and/or sequential designation', 0, 0, 'biblioitems.volumedesc', 3, NULL, NULL, '', NULL, -1, '', '', '');
1443 INSERT INTO `marc_subfield_structure` VALUES ('362', 'z', 'Source of information', 'Source of information', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1444 INSERT INTO `marc_subfield_structure` VALUES ('365', '2', 'Source of price type code', 'Source of price type code', 0, 0, '', 3, '', '', '', NULL, -1, '', '', '');
1445 INSERT INTO `marc_subfield_structure` VALUES ('365', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1446 INSERT INTO `marc_subfield_structure` VALUES ('365', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1447 INSERT INTO `marc_subfield_structure` VALUES ('365', 'a', 'Price type code', 'Price type code', 0, 0, '', 3, '', '', '', NULL, -1, '', '', '');
1448 INSERT INTO `marc_subfield_structure` VALUES ('365', 'b', 'Price amount', 'Price amount', 0, 0, '', 3, '', '', '', NULL, -1, '', '', '');
1449 INSERT INTO `marc_subfield_structure` VALUES ('365', 'c', 'Price type code', 'Price type code', 0, 0, '', 3, '', '', '', NULL, -1, '', '', '');
1450 INSERT INTO `marc_subfield_structure` VALUES ('365', 'd', 'Unit of pricing', 'Unit of pricing', 0, 0, '', 3, '', '', '', NULL, -1, '', '', '');
1451 INSERT INTO `marc_subfield_structure` VALUES ('365', 'e', 'Price note', 'Price note', 0, 0, '', 3, '', '', '', NULL, -1, '', '', '');
1452 INSERT INTO `marc_subfield_structure` VALUES ('365', 'f', 'Price effective from', 'Price effective from', 0, 0, '', 3, '', '', '', NULL, -1, '', '', '');
1453 INSERT INTO `marc_subfield_structure` VALUES ('365', 'g', 'Price effective until', 'Price effective until', 0, 0, '', 3, '', '', '', NULL, -1, '', '', '');
1454 INSERT INTO `marc_subfield_structure` VALUES ('365', 'h', 'Tax rate 1', 'Tax rate 1', 0, 0, '', 3, '', '', '', NULL, -1, '', '', '');
1455 INSERT INTO `marc_subfield_structure` VALUES ('365', 'i', 'Tax rate 2', 'Tax rate 2', 0, 0, '', 3, '', '', '', NULL, -1, '', '', '');
1456 INSERT INTO `marc_subfield_structure` VALUES ('365', 'j', 'ISO country code', 'ISO country code', 0, 0, '', 3, '', '', '', NULL, -1, '', '', '');
1457 INSERT INTO `marc_subfield_structure` VALUES ('365', 'k', 'MARC country code', 'MARC country code', 0, 0, '', 3, '', '', '', NULL, -1, '', '', '');
1458 INSERT INTO `marc_subfield_structure` VALUES ('365', 'm', 'Identification of pricing entity', 'Identification of pricing entity', 0, 0, '', 3, '', '', '', NULL, -1, '', '', '');
1459 INSERT INTO `marc_subfield_structure` VALUES ('366', '2', 'Source of availability status code', 'Source of availability status code', 0, 0, '', 3, '', '', '', NULL, -1, '', '', '');
1460 INSERT INTO `marc_subfield_structure` VALUES ('366', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1461 INSERT INTO `marc_subfield_structure` VALUES ('366', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1462 INSERT INTO `marc_subfield_structure` VALUES ('366', 'a', 'Publishers\' compressed title identification', 'Publishers\' compressed title identification', 0, 0, '', 3, '', '', '', NULL, -1, '', '', '');
1463 INSERT INTO `marc_subfield_structure` VALUES ('366', 'b', 'Detailed date of publication', 'Detailed date of publication', 0, 0, '', 3, '', '', '', NULL, -1, '', '', '');
1464 INSERT INTO `marc_subfield_structure` VALUES ('366', 'c', 'Availability status code', 'Availability status code', 0, 0, '', 3, '', '', '', NULL, -1, '', '', '');
1465 INSERT INTO `marc_subfield_structure` VALUES ('366', 'd', 'Expected next availability date', 'Expected next availability date', 0, 0, '', 3, '', '', '', NULL, -1, '', '', '');
1466 INSERT INTO `marc_subfield_structure` VALUES ('366', 'e', 'Note', 'Note', 0, 0, '', 3, '', '', '', NULL, -1, '', '', '');
1467 INSERT INTO `marc_subfield_structure` VALUES ('366', 'f', 'Publishers\' discount category', 'Publishers\' discount category', 0, 0, '', 3, '', '', '', NULL, -1, '', '', '');
1468 INSERT INTO `marc_subfield_structure` VALUES ('366', 'g', 'Date made out of print', 'Date made out of print', 0, 0, '', 3, '', '', '', NULL, -1, '', '', '');
1469 INSERT INTO `marc_subfield_structure` VALUES ('366', 'j', 'ISO country code', 'ISO country code', 0, 0, '', 3, '', '', '', NULL, -1, '', '', '');
1470 INSERT INTO `marc_subfield_structure` VALUES ('366', 'k', 'MARC country code', 'MARC country code', 0, 0, '', 3, '', '', '', NULL, -1, '', '', '');
1471 INSERT INTO `marc_subfield_structure` VALUES ('366', 'm', 'Identification of agency', 'Identification of agency', 0, 0, '', 3, '', '', '', NULL, -1, '', '', '');
1472 INSERT INTO `marc_subfield_structure` VALUES ('400', '4', 'Relator code', 'Relator code', 1, 0, '', 4, '', '', '', 0, -6, '', '', '');
1473 INSERT INTO `marc_subfield_structure` VALUES ('400', '6', 'Linkage', 'Linkage', 0, 0, '', 4, '', '', '', 0, -6, '', '', '');
1474 INSERT INTO `marc_subfield_structure` VALUES ('400', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 4, '', '', '', 0, -6, '', '', '');
1475 INSERT INTO `marc_subfield_structure` VALUES ('400', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, '', '', '');
1476 INSERT INTO `marc_subfield_structure` VALUES ('400', 'a', 'Personal name', 'Personal name', 0, 0, '', 4, '', '', '', 0, -6, '', '', '');
1477 INSERT INTO `marc_subfield_structure` VALUES ('400', 'b', 'Numeration', 'Numeration', 0, 0, '', 4, '', '', '', 0, -6, '', '', '');
1478 INSERT INTO `marc_subfield_structure` VALUES ('400', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 4, '', '', '', 0, -6, '', '', '');
1479 INSERT INTO `marc_subfield_structure` VALUES ('400', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 4, '', '', '', 0, -6, '', '', '');
1480 INSERT INTO `marc_subfield_structure` VALUES ('400', 'e', 'Relator term', 'Relator term', 1, 0, '', 4, '', '', '', 0, -6, '', '', '');
1481 INSERT INTO `marc_subfield_structure` VALUES ('400', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 4, '', '', '', 0, -6, '', '', '');
1482 INSERT INTO `marc_subfield_structure` VALUES ('400', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 4, '', '', '', 0, -6, '', '', '');
1483 INSERT INTO `marc_subfield_structure` VALUES ('400', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 4, '', '', '', 0, -6, '', '', '');
1484 INSERT INTO `marc_subfield_structure` VALUES ('400', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 4, '', '', '', 0, -6, '', '', '');
1485 INSERT INTO `marc_subfield_structure` VALUES ('400', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 4, '', '', '', 0, -6, '', '', '');
1486 INSERT INTO `marc_subfield_structure` VALUES ('400', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 4, '', '', '', 0, -6, '', '', '');
1487 INSERT INTO `marc_subfield_structure` VALUES ('400', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 4, '', '', '', 0, -6, '', '', '');
1488 INSERT INTO `marc_subfield_structure` VALUES ('400', 't', 'Title of a work', 'Title of a work', 0, 0, '', 4, '', '', '', 0, -6, '', '', '');
1489 INSERT INTO `marc_subfield_structure` VALUES ('400', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 4, '', '', '', 0, -6, '', '', '');
1490 INSERT INTO `marc_subfield_structure` VALUES ('400', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 4, '', '', '', NULL, -6, '', '', '');
1491 INSERT INTO `marc_subfield_structure` VALUES ('400', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 4, '', '', '', NULL, -6, '', '', '');
1492 INSERT INTO `marc_subfield_structure` VALUES ('410', '4', 'Relator code', 'Relator code', 1, 0, '', 4, '', '', '', NULL, -6, '', '', '');
1493 INSERT INTO `marc_subfield_structure` VALUES ('410', '6', 'Linkage', 'Linkage', 0, 0, '', 4, '', '', '', NULL, -6, '', '', '');
1494 INSERT INTO `marc_subfield_structure` VALUES ('410', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 4, '', '', '', NULL, -6, '', '', '');
1495 INSERT INTO `marc_subfield_structure` VALUES ('410', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, '', '', '');
1496 INSERT INTO `marc_subfield_structure` VALUES ('410', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 4, '', '', '', NULL, -6, '', '', '');
1497 INSERT INTO `marc_subfield_structure` VALUES ('410', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 4, '', '', '', NULL, -6, '', '', '');
1498 INSERT INTO `marc_subfield_structure` VALUES ('410', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 4, '', '', '', NULL, -6, '', '', '');
1499 INSERT INTO `marc_subfield_structure` VALUES ('410', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 4, '', '', '', NULL, -6, '', '', '');
1500 INSERT INTO `marc_subfield_structure` VALUES ('410', 'e', 'Relator term', 'Relator term', 1, 0, '', 4, '', '', '', NULL, -6, '', '', '');
1501 INSERT INTO `marc_subfield_structure` VALUES ('410', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 4, '', '', '', NULL, -6, '', '', '');
1502 INSERT INTO `marc_subfield_structure` VALUES ('410', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 4, '', '', '', NULL, -6, '', '', '');
1503 INSERT INTO `marc_subfield_structure` VALUES ('410', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 4, '', '', '', NULL, -6, '', '', '');
1504 INSERT INTO `marc_subfield_structure` VALUES ('410', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 4, '', '', '', NULL, -6, '', '', '');
1505 INSERT INTO `marc_subfield_structure` VALUES ('410', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 4, '', '', '', NULL, -6, '', '', '');
1506 INSERT INTO `marc_subfield_structure` VALUES ('410', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 4, '', '', '', NULL, -6, '', '', '');
1507 INSERT INTO `marc_subfield_structure` VALUES ('410', 't', 'Title of a work', 'Title of a work', 0, 0, '', 4, '', '', '', NULL, -6, '', '', '');
1508 INSERT INTO `marc_subfield_structure` VALUES ('410', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 4, '', '', '', NULL, -6, '', '', '');
1509 INSERT INTO `marc_subfield_structure` VALUES ('410', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 4, '', '', '', NULL, -6, '', '', '');
1510 INSERT INTO `marc_subfield_structure` VALUES ('410', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 4, '', '', '', NULL, -6, '', '', '');
1511 INSERT INTO `marc_subfield_structure` VALUES ('411', '4', 'Relator code', 'Relator code', 1, 0, NULL, 4, NULL, NULL, '', NULL, -6, '', '', '');
1512 INSERT INTO `marc_subfield_structure` VALUES ('411', '6', 'Linkage', 'Linkage', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, '', '', '');
1513 INSERT INTO `marc_subfield_structure` VALUES ('411', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 4, NULL, NULL, '', NULL, -6, '', '', '');
1514 INSERT INTO `marc_subfield_structure` VALUES ('411', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, '', '', '');
1515 INSERT INTO `marc_subfield_structure` VALUES ('411', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, '', '', '');
1516 INSERT INTO `marc_subfield_structure` VALUES ('411', 'b', 'Number [OBSOLETE]', 'Number [OBSOLETE]', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, '', '', '');
1517 INSERT INTO `marc_subfield_structure` VALUES ('411', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, '', '', '');
1518 INSERT INTO `marc_subfield_structure` VALUES ('411', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, '', '', '');
1519 INSERT INTO `marc_subfield_structure` VALUES ('411', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 4, NULL, NULL, '', NULL, -6, '', '', '');
1520 INSERT INTO `marc_subfield_structure` VALUES ('411', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, '', '', '');
1521 INSERT INTO `marc_subfield_structure` VALUES ('411', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, '', '', '');
1522 INSERT INTO `marc_subfield_structure` VALUES ('411', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 4, NULL, NULL, '', NULL, -6, '', '', '');
1523 INSERT INTO `marc_subfield_structure` VALUES ('411', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, '', '', '');
1524 INSERT INTO `marc_subfield_structure` VALUES ('411', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 4, NULL, NULL, '', NULL, -6, '', '', '');
1525 INSERT INTO `marc_subfield_structure` VALUES ('411', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 4, NULL, NULL, '', NULL, -6, '', '', '');
1526 INSERT INTO `marc_subfield_structure` VALUES ('411', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, '', '', '');
1527 INSERT INTO `marc_subfield_structure` VALUES ('411', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, '', '', '');
1528 INSERT INTO `marc_subfield_structure` VALUES ('411', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, '', '', '');
1529 INSERT INTO `marc_subfield_structure` VALUES ('411', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 4, '', '', '', NULL, -6, '', '', '');
1530 INSERT INTO `marc_subfield_structure` VALUES ('411', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 4, '', '', '', NULL, -6, '', '', '');
1531 INSERT INTO `marc_subfield_structure` VALUES ('440', '6', 'Linkage', 'Linkage', 0, 0, '', 4, '', '', '', NULL, -6, '', '', '');
1532 INSERT INTO `marc_subfield_structure` VALUES ('440', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 4, '', '', '', NULL, -6, '', '', '');
1533 INSERT INTO `marc_subfield_structure` VALUES ('440', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, '', '', '');
1534 INSERT INTO `marc_subfield_structure` VALUES ('440', 'a', 'Title', 'Title', 0, 0, 'biblio.seriestitle', 4, '', '', '', NULL, 0, '', '', '');
1535 INSERT INTO `marc_subfield_structure` VALUES ('440', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, 'biblioitems.number', 4, '', '', '', NULL, 0, '', '', '');
1536 INSERT INTO `marc_subfield_structure` VALUES ('440', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 4, '', '', '', NULL, 0, '', '', '');
1537 INSERT INTO `marc_subfield_structure` VALUES ('440', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, 'biblioitems.volume', 4, '', '', '', NULL, 0, '', '', '');
1538 INSERT INTO `marc_subfield_structure` VALUES ('440', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 4, '', '', '', NULL, 0, '', '', '');
1539 INSERT INTO `marc_subfield_structure` VALUES ('490', '6', 'Linkage', 'Linkage', 0, 0, '', 4, '', '', '', NULL, -6, '', '', '');
1540 INSERT INTO `marc_subfield_structure` VALUES ('490', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 4, '', '', NULL, NULL, -6, '', '', '');
1541 INSERT INTO `marc_subfield_structure` VALUES ('490', 'a', 'Series statement', 'Series statement', 1, 0, '', 4, '', '', '', NULL, -1, '', '', '');
1542 INSERT INTO `marc_subfield_structure` VALUES ('490', 'l', 'Library of Congress call number', 'Library of Congress call number', 0, 0, '', 4, '', '', '', NULL, -6, '', '', '');
1543 INSERT INTO `marc_subfield_structure` VALUES ('490', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 1, 0, '', 4, '', '', '', NULL, -1, '', '', '');
1544 INSERT INTO `marc_subfield_structure` VALUES ('490', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 4, '', '', '', NULL, -1, '', '', '');
1545 INSERT INTO `marc_subfield_structure` VALUES ('500', '3', 'Materials specified', 'Materials specified', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1546 INSERT INTO `marc_subfield_structure` VALUES ('500', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1547 INSERT INTO `marc_subfield_structure` VALUES ('500', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1548 INSERT INTO `marc_subfield_structure` VALUES ('500', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1549 INSERT INTO `marc_subfield_structure` VALUES ('500', 'a', 'General note', 'General note', 0, 0, 'biblio.notes', 5, '', '', '', NULL, 0, '', '', '');
1550 INSERT INTO `marc_subfield_structure` VALUES ('500', 'l', 'Library of Congress call number (SE) [OBSOLETE]', 'Library of Congress call number (SE) [OBSOLETE]', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1551 INSERT INTO `marc_subfield_structure` VALUES ('500', 'n', 'n (RLIN) [OBSOLETE]', 'n (RLIN) [OBSOLETE]', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1552 INSERT INTO `marc_subfield_structure` VALUES ('500', 'x', 'International Standard Serial Number (SE) [OBSOLETE]', 'International Standard Serial Number (SE) [OBSOLETE]', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1553 INSERT INTO `marc_subfield_structure` VALUES ('500', 'z', 'Source of note information (AM SE) [OBSOLETE]', 'Source of note information (AM SE) [OBSOLETE]', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1554 INSERT INTO `marc_subfield_structure` VALUES ('501', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1555 INSERT INTO `marc_subfield_structure` VALUES ('501', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1556 INSERT INTO `marc_subfield_structure` VALUES ('501', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1557 INSERT INTO `marc_subfield_structure` VALUES ('501', 'a', 'With note', 'With note', 0, 0, '', 5, '', '', '', NULL, 0, '', '', '');
1558 INSERT INTO `marc_subfield_structure` VALUES ('502', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1559 INSERT INTO `marc_subfield_structure` VALUES ('502', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1560 INSERT INTO `marc_subfield_structure` VALUES ('502', 'a', 'Dissertation note', 'Dissertation note', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1561 INSERT INTO `marc_subfield_structure` VALUES ('503', '8', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1562 INSERT INTO `marc_subfield_structure` VALUES ('503', 'a', 'Bibliographic history note', 'Bibliographic history note', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1563 INSERT INTO `marc_subfield_structure` VALUES ('504', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1564 INSERT INTO `marc_subfield_structure` VALUES ('504', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1565 INSERT INTO `marc_subfield_structure` VALUES ('504', 'a', 'Bibliography, etc', 'Bibliography, etc', 0, 0, '', 5, NULL, NULL, '', NULL, 0, '', '', '');
1566 INSERT INTO `marc_subfield_structure` VALUES ('504', 'b', 'Number of references', 'Number of references', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1567 INSERT INTO `marc_subfield_structure` VALUES ('505', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1568 INSERT INTO `marc_subfield_structure` VALUES ('505', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1569 INSERT INTO `marc_subfield_structure` VALUES ('505', 'a', 'Formatted contents note', 'Formatted contents note', 0, 0, '', 5, '', '', '', NULL, 0, '', '', '');
1570 INSERT INTO `marc_subfield_structure` VALUES ('505', 'g', 'Miscellaneous information', 'Miscellaneous information', 1, 0, '', 5, '', '', '', NULL, 0, '', '', '');
1571 INSERT INTO `marc_subfield_structure` VALUES ('505', 'r', 'Statement of responsibility', 'Statement of responsibility', 1, 0, '', 5, '', '', '', NULL, 0, '', '', '');
1572 INSERT INTO `marc_subfield_structure` VALUES ('505', 't', 'Title', 'Title', 1, 0, '', 5, '', '', '', NULL, 0, '', '', '');
1573 INSERT INTO `marc_subfield_structure` VALUES ('505', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, 0, '', '', '');
1574 INSERT INTO `marc_subfield_structure` VALUES ('506', '3', 'Materials specified', 'Materials specified', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1575 INSERT INTO `marc_subfield_structure` VALUES ('506', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1576 INSERT INTO `marc_subfield_structure` VALUES ('506', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1577 INSERT INTO `marc_subfield_structure` VALUES ('506', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1578 INSERT INTO `marc_subfield_structure` VALUES ('506', 'a', 'Terms governing access', 'Terms governing access', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1579 INSERT INTO `marc_subfield_structure` VALUES ('506', 'b', 'Jurisdiction', 'Jurisdiction', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1580 INSERT INTO `marc_subfield_structure` VALUES ('506', 'c', 'Physical access provisions', 'Physical access provisions', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1581 INSERT INTO `marc_subfield_structure` VALUES ('506', 'd', 'Authorized users', 'Authorized users', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1582 INSERT INTO `marc_subfield_structure` VALUES ('506', 'e', 'Authorization', 'Authorization', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1583 INSERT INTO `marc_subfield_structure` VALUES ('506', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -6, '', '', '');
1584 INSERT INTO `marc_subfield_structure` VALUES ('507', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1585 INSERT INTO `marc_subfield_structure` VALUES ('507', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1586 INSERT INTO `marc_subfield_structure` VALUES ('507', 'a', 'Representative fraction of scale note', 'Representative fraction of scale note', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1587 INSERT INTO `marc_subfield_structure` VALUES ('507', 'b', 'Remainder of scale note', 'Remainder of scale note', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1588 INSERT INTO `marc_subfield_structure` VALUES ('508', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1589 INSERT INTO `marc_subfield_structure` VALUES ('508', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1590 INSERT INTO `marc_subfield_structure` VALUES ('508', 'a', 'Creation/production credits note', 'Creation/production credits note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -1, '', '', '');
1591 INSERT INTO `marc_subfield_structure` VALUES ('509', 'a', 'Informal Notes', 'Informal Notes', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1592 INSERT INTO `marc_subfield_structure` VALUES ('510', '3', 'Materials specified', 'Materials specified', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1593 INSERT INTO `marc_subfield_structure` VALUES ('510', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1594 INSERT INTO `marc_subfield_structure` VALUES ('510', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1595 INSERT INTO `marc_subfield_structure` VALUES ('510', 'a', 'Name of source', 'Name of source', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1596 INSERT INTO `marc_subfield_structure` VALUES ('510', 'b', 'Coverage of source', 'Coverage of source', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1597 INSERT INTO `marc_subfield_structure` VALUES ('510', 'c', 'Location within source', 'Location within source', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1598 INSERT INTO `marc_subfield_structure` VALUES ('510', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1599 INSERT INTO `marc_subfield_structure` VALUES ('511', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1600 INSERT INTO `marc_subfield_structure` VALUES ('511', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1601 INSERT INTO `marc_subfield_structure` VALUES ('511', 'a', 'Participant or performer note', 'Participant or performer note', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1602 INSERT INTO `marc_subfield_structure` VALUES ('512', '6', 'Linkage', 'Linkage', 0, 0, '', -1, '', '', '', NULL, -6, '', '', '');
1603 INSERT INTO `marc_subfield_structure` VALUES ('512', 'a', 'Earlier or later volumes separately cataloged note', 'Earlier or later volumes separately cataloged note', 0, 0, '', -1, '', '', '', NULL, -6, '', '', '');
1604 INSERT INTO `marc_subfield_structure` VALUES ('513', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1605 INSERT INTO `marc_subfield_structure` VALUES ('513', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1606 INSERT INTO `marc_subfield_structure` VALUES ('513', 'a', 'Type of report', 'Type of report', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1607 INSERT INTO `marc_subfield_structure` VALUES ('513', 'b', 'Period covered', 'Period covered', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1608 INSERT INTO `marc_subfield_structure` VALUES ('514', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1609 INSERT INTO `marc_subfield_structure` VALUES ('514', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1610 INSERT INTO `marc_subfield_structure` VALUES ('514', 'a', 'Attribute accuracy report', 'Attribute accuracy report', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1611 INSERT INTO `marc_subfield_structure` VALUES ('514', 'b', 'Attribute accuracy value', 'Attribute accuracy value', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1612 INSERT INTO `marc_subfield_structure` VALUES ('514', 'c', 'Attribute accuracy explanation', 'Attribute accuracy explanation', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1613 INSERT INTO `marc_subfield_structure` VALUES ('514', 'd', 'Logical consistency report', 'Logical consistency report', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1614 INSERT INTO `marc_subfield_structure` VALUES ('514', 'e', 'Completeness report', 'Completeness report', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1615 INSERT INTO `marc_subfield_structure` VALUES ('514', 'f', 'Horizontal position accuracy report', 'Horizontal position accuracy report', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1616 INSERT INTO `marc_subfield_structure` VALUES ('514', 'g', 'Horizontal position accuracy value', 'Horizontal position accuracy value', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1617 INSERT INTO `marc_subfield_structure` VALUES ('514', 'h', 'Horizontal position accuracy explanation', 'Horizontal position accuracy explanation', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1618 INSERT INTO `marc_subfield_structure` VALUES ('514', 'i', 'Vertical positional accuracy report', 'Vertical positional accuracy report', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1619 INSERT INTO `marc_subfield_structure` VALUES ('514', 'j', 'Vertical positional accuracy value', 'Vertical positional accuracy value', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1620 INSERT INTO `marc_subfield_structure` VALUES ('514', 'k', 'Vertical positional accuracy explanation', 'Vertical positional accuracy explanation', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1621 INSERT INTO `marc_subfield_structure` VALUES ('514', 'm', 'Cloud cover', 'Cloud cover', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1622 INSERT INTO `marc_subfield_structure` VALUES ('514', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -6, '', '', '');
1623 INSERT INTO `marc_subfield_structure` VALUES ('514', 'z', 'Display note', 'Display note', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1624 INSERT INTO `marc_subfield_structure` VALUES ('515', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1625 INSERT INTO `marc_subfield_structure` VALUES ('515', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1626 INSERT INTO `marc_subfield_structure` VALUES ('515', 'a', 'Numbering peculiarities note', 'Numbering peculiarities note', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1627 INSERT INTO `marc_subfield_structure` VALUES ('515', 'z', 'Source of note information (SE) [OBSOLETE]', 'Source of note information (SE) [OBSOLETE]', 0, 0, '', -1, '', '', '', NULL, -6, '', '', '');
1628 INSERT INTO `marc_subfield_structure` VALUES ('516', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1629 INSERT INTO `marc_subfield_structure` VALUES ('516', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1630 INSERT INTO `marc_subfield_structure` VALUES ('516', 'a', 'Type of computer file or data note', 'Type of computer file or data note', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1631 INSERT INTO `marc_subfield_structure` VALUES ('517', 'a', 'Different formats', 'Different formats', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1632 INSERT INTO `marc_subfield_structure` VALUES ('517', 'b', 'Content descriptors', 'Content descriptors', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1633 INSERT INTO `marc_subfield_structure` VALUES ('517', 'c', 'Additional animation techniques', 'Additional animation techniques', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1634 INSERT INTO `marc_subfield_structure` VALUES ('518', '3', 'Materials specified', 'Materials specified', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1635 INSERT INTO `marc_subfield_structure` VALUES ('518', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1636 INSERT INTO `marc_subfield_structure` VALUES ('518', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1637 INSERT INTO `marc_subfield_structure` VALUES ('518', 'a', 'Date/time and place of an event note', 'Date/time and place of an event note', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1638 INSERT INTO `marc_subfield_structure` VALUES ('520', '3', 'Materials specified', 'Materials specified', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1639 INSERT INTO `marc_subfield_structure` VALUES ('520', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1640 INSERT INTO `marc_subfield_structure` VALUES ('520', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1641 INSERT INTO `marc_subfield_structure` VALUES ('520', 'a', 'Summary, etc', 'Summary, etc', 0, 0, 'biblio.abstract', 5, '', '', '', NULL, 0, '', '', '');
1642 INSERT INTO `marc_subfield_structure` VALUES ('520', 'b', 'Expansion of summary note', 'Expansion of summary note', 0, 0, '', 5, '', '', '', NULL, 0, '', '', '');
1643 INSERT INTO `marc_subfield_structure` VALUES ('520', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, 0, '', '', '');
1644 INSERT INTO `marc_subfield_structure` VALUES ('520', 'z', 'Source of note information [OBSOLETE]', 'Source of note information [OBSOLETE]', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1645 INSERT INTO `marc_subfield_structure` VALUES ('521', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1646 INSERT INTO `marc_subfield_structure` VALUES ('521', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1647 INSERT INTO `marc_subfield_structure` VALUES ('521', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1648 INSERT INTO `marc_subfield_structure` VALUES ('521', 'a', 'Target audience note', 'Target audience note', 1, 0, NULL, 5, NULL, NULL, '', NULL, 0, '', '', '');
1649 INSERT INTO `marc_subfield_structure` VALUES ('521', 'b', 'Source', 'Source', 0, 0, NULL, 5, NULL, NULL, '', NULL, 0, '', '', '');
1650 INSERT INTO `marc_subfield_structure` VALUES ('522', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1651 INSERT INTO `marc_subfield_structure` VALUES ('522', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1652 INSERT INTO `marc_subfield_structure` VALUES ('522', 'a', 'Geographic coverage note', 'Geographic coverage note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -1, '', '', '');
1653 INSERT INTO `marc_subfield_structure` VALUES ('523', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1654 INSERT INTO `marc_subfield_structure` VALUES ('523', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1655 INSERT INTO `marc_subfield_structure` VALUES ('523', 'a', 'Time period of content note', 'Time period of content note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1656 INSERT INTO `marc_subfield_structure` VALUES ('524', '2', 'Source of schema used', 'Source of schema used', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1657 INSERT INTO `marc_subfield_structure` VALUES ('524', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1658 INSERT INTO `marc_subfield_structure` VALUES ('524', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1659 INSERT INTO `marc_subfield_structure` VALUES ('524', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1660 INSERT INTO `marc_subfield_structure` VALUES ('524', 'a', 'Preferred citation of described materials note', 'Preferred citation of described materials note', 0, 0, NULL, 5, NULL, NULL, '', NULL, 0, '', '', '');
1661 INSERT INTO `marc_subfield_structure` VALUES ('525', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1662 INSERT INTO `marc_subfield_structure` VALUES ('525', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1663 INSERT INTO `marc_subfield_structure` VALUES ('525', 'a', 'Supplement note', 'Supplement note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1664 INSERT INTO `marc_subfield_structure` VALUES ('525', 'z', 'Source of note information (SE) [OBSOLETE]', 'Source of note information (SE) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1665 INSERT INTO `marc_subfield_structure` VALUES ('526', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1666 INSERT INTO `marc_subfield_structure` VALUES ('526', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1667 INSERT INTO `marc_subfield_structure` VALUES ('526', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1668 INSERT INTO `marc_subfield_structure` VALUES ('526', 'a', 'Program name', 'Program name', 0, 0, '', 5, '', '', '', NULL, 0, '', '', '');
1669 INSERT INTO `marc_subfield_structure` VALUES ('526', 'b', 'Interest level', 'Interest level', 0, 0, '', 5, '', '', '', NULL, 0, '', '', '');
1670 INSERT INTO `marc_subfield_structure` VALUES ('526', 'c', 'Reading level', 'Reading level', 0, 0, '', 5, '', '', '', NULL, 0, '', '', '');
1671 INSERT INTO `marc_subfield_structure` VALUES ('526', 'd', 'Title point value', 'Title point value', 0, 0, '', 5, '', '', '', NULL, 0, '', '', '');
1672 INSERT INTO `marc_subfield_structure` VALUES ('526', 'i', 'Display text', 'Display text', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1673 INSERT INTO `marc_subfield_structure` VALUES ('526', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 5, '', '', '', NULL, 6, '', '', '');
1674 INSERT INTO `marc_subfield_structure` VALUES ('526', 'z', 'Public note', 'Public note', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1675 INSERT INTO `marc_subfield_structure` VALUES ('527', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1676 INSERT INTO `marc_subfield_structure` VALUES ('527', 'a', 'Censorship note', 'Censorship note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1677 INSERT INTO `marc_subfield_structure` VALUES ('530', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1678 INSERT INTO `marc_subfield_structure` VALUES ('530', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1679 INSERT INTO `marc_subfield_structure` VALUES ('530', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1680 INSERT INTO `marc_subfield_structure` VALUES ('530', 'a', 'Additional physical form available note', 'Additional physical form available note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1681 INSERT INTO `marc_subfield_structure` VALUES ('530', 'b', 'Availability source', 'Availability source', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1682 INSERT INTO `marc_subfield_structure` VALUES ('530', 'c', 'Availability conditions', 'Availability conditions', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1683 INSERT INTO `marc_subfield_structure` VALUES ('530', 'd', 'Order number', 'Order number', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1684 INSERT INTO `marc_subfield_structure` VALUES ('530', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, NULL, 5, NULL, NULL, '', 1, -6, '', '', '');
1685 INSERT INTO `marc_subfield_structure` VALUES ('530', 'z', 'Source of note information (AM CF VM SE) [OBSOLETE]', 'Source of note information (AM CF VM SE) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1686 INSERT INTO `marc_subfield_structure` VALUES ('533', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1687 INSERT INTO `marc_subfield_structure` VALUES ('533', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1688 INSERT INTO `marc_subfield_structure` VALUES ('533', '7', 'Fixed-length data elements of reproduction', 'Fixed-length data elements of reproduction', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1689 INSERT INTO `marc_subfield_structure` VALUES ('533', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1690 INSERT INTO `marc_subfield_structure` VALUES ('533', 'a', 'Type of reproduction', 'Type of reproduction', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1691 INSERT INTO `marc_subfield_structure` VALUES ('533', 'b', 'Place of reproduction', 'Place of reproduction', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1692 INSERT INTO `marc_subfield_structure` VALUES ('533', 'c', 'Agency responsible for reproduction', 'Agency responsible for reproduction', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1693 INSERT INTO `marc_subfield_structure` VALUES ('533', 'd', 'Date of reproduction', 'Date of reproduction', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1694 INSERT INTO `marc_subfield_structure` VALUES ('533', 'e', 'Physical description of reproduction', 'Physical description of reproduction', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1695 INSERT INTO `marc_subfield_structure` VALUES ('533', 'f', 'Series statement of reproduction', 'Series statement of reproduction', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1696 INSERT INTO `marc_subfield_structure` VALUES ('533', 'm', 'Dates and/or sequential designation of issues reproduced', 'Dates and/or sequential designation of issues reproduced', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1697 INSERT INTO `marc_subfield_structure` VALUES ('533', 'n', 'Note about reproduction', 'Note about reproduction', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1698 INSERT INTO `marc_subfield_structure` VALUES ('534', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1699 INSERT INTO `marc_subfield_structure` VALUES ('534', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1700 INSERT INTO `marc_subfield_structure` VALUES ('534', 'a', 'Main entry of original', 'Main entry of original', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1701 INSERT INTO `marc_subfield_structure` VALUES ('534', 'b', 'Edition statement of original', 'Edition statement of original', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1702 INSERT INTO `marc_subfield_structure` VALUES ('534', 'c', 'Publication, distribution, etc', 'Publication, distribution, etc', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1703 INSERT INTO `marc_subfield_structure` VALUES ('534', 'e', 'Physical description, etc', 'Physical description, etc', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1704 INSERT INTO `marc_subfield_structure` VALUES ('534', 'f', 'Series statement of original', 'Series statement of original', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1705 INSERT INTO `marc_subfield_structure` VALUES ('534', 'k', 'Key title of original', 'Key title of original', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1706 INSERT INTO `marc_subfield_structure` VALUES ('534', 'l', 'Location of original', 'Location of original', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1707 INSERT INTO `marc_subfield_structure` VALUES ('534', 'm', 'Material specific details', 'Material specific details', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1708 INSERT INTO `marc_subfield_structure` VALUES ('534', 'n', 'Note about original', 'Note about original', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1709 INSERT INTO `marc_subfield_structure` VALUES ('534', 'p', 'Introductory phrase', 'Introductory phrase', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1710 INSERT INTO `marc_subfield_structure` VALUES ('534', 't', 'Title statement of original', 'Title statement of original', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1711 INSERT INTO `marc_subfield_structure` VALUES ('534', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1712 INSERT INTO `marc_subfield_structure` VALUES ('534', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1713 INSERT INTO `marc_subfield_structure` VALUES ('535', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1714 INSERT INTO `marc_subfield_structure` VALUES ('535', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1715 INSERT INTO `marc_subfield_structure` VALUES ('535', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1716 INSERT INTO `marc_subfield_structure` VALUES ('535', 'a', 'Custodian', 'Custodian', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1717 INSERT INTO `marc_subfield_structure` VALUES ('535', 'b', 'Postal address', 'Postal address', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1718 INSERT INTO `marc_subfield_structure` VALUES ('535', 'c', 'Country', 'Country', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1719 INSERT INTO `marc_subfield_structure` VALUES ('535', 'd', 'Telecommunications address', 'Telecommunications address', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1720 INSERT INTO `marc_subfield_structure` VALUES ('535', 'g', 'Repository location code', 'Repository location code', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1721 INSERT INTO `marc_subfield_structure` VALUES ('536', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1722 INSERT INTO `marc_subfield_structure` VALUES ('536', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1723 INSERT INTO `marc_subfield_structure` VALUES ('536', 'a', 'Text of note', 'Text of note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1724 INSERT INTO `marc_subfield_structure` VALUES ('536', 'b', 'Contract number', 'Contract number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1725 INSERT INTO `marc_subfield_structure` VALUES ('536', 'c', 'Grant number', 'Grant number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1726 INSERT INTO `marc_subfield_structure` VALUES ('536', 'd', 'Undifferentiated number', 'Undifferentiated number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1727 INSERT INTO `marc_subfield_structure` VALUES ('536', 'e', 'Program element number', 'Program element number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1728 INSERT INTO `marc_subfield_structure` VALUES ('536', 'f', 'Project number', 'Project number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1729 INSERT INTO `marc_subfield_structure` VALUES ('536', 'g', 'Task number', 'Task number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1730 INSERT INTO `marc_subfield_structure` VALUES ('536', 'h', 'Work unit number', 'Work unit number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1731 INSERT INTO `marc_subfield_structure` VALUES ('537', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1732 INSERT INTO `marc_subfield_structure` VALUES ('537', 'a', 'Source of data note', 'Source of data note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1733 INSERT INTO `marc_subfield_structure` VALUES ('538', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1734 INSERT INTO `marc_subfield_structure` VALUES ('538', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1735 INSERT INTO `marc_subfield_structure` VALUES ('538', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1736 INSERT INTO `marc_subfield_structure` VALUES ('538', 'a', 'System details note', 'System details note', 0, 0, '', 5, '', '', '', NULL, -1, '', '', '');
1737 INSERT INTO `marc_subfield_structure` VALUES ('538', 'i', 'Display text', 'Display text', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1738 INSERT INTO `marc_subfield_structure` VALUES ('538', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, 0, '', '', '');
1739 INSERT INTO `marc_subfield_structure` VALUES ('540', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1740 INSERT INTO `marc_subfield_structure` VALUES ('540', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1741 INSERT INTO `marc_subfield_structure` VALUES ('540', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1742 INSERT INTO `marc_subfield_structure` VALUES ('540', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1743 INSERT INTO `marc_subfield_structure` VALUES ('540', 'a', 'Terms governing use and reproduction', 'Terms governing use and reproduction', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1744 INSERT INTO `marc_subfield_structure` VALUES ('540', 'b', 'Jurisdiction', 'Jurisdiction', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1745 INSERT INTO `marc_subfield_structure` VALUES ('540', 'c', 'Authorization', 'Authorization', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1746 INSERT INTO `marc_subfield_structure` VALUES ('540', 'd', 'Authorized users', 'Authorized users', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1747 INSERT INTO `marc_subfield_structure` VALUES ('540', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -6, '', '', '');
1748 INSERT INTO `marc_subfield_structure` VALUES ('541', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1749 INSERT INTO `marc_subfield_structure` VALUES ('541', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1750 INSERT INTO `marc_subfield_structure` VALUES ('541', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1751 INSERT INTO `marc_subfield_structure` VALUES ('541', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1752 INSERT INTO `marc_subfield_structure` VALUES ('541', 'a', 'Source of acquisition', 'Source of acquisition', 0, 0, '', 5, '', '', '', NULL, 1, '', '', '');
1753 INSERT INTO `marc_subfield_structure` VALUES ('541', 'b', 'Address', 'Address', 0, 0, '', 5, '', '', '', NULL, 1, '', '', '');
1754 INSERT INTO `marc_subfield_structure` VALUES ('541', 'c', 'Method of acquisition', 'Method of acquisition', 0, 0, '', 5, '', '', '', NULL, 1, '', '', '');
1755 INSERT INTO `marc_subfield_structure` VALUES ('541', 'd', 'Date of acquisition', 'Date of acquisition', 0, 0, '', 5, '', '', '', NULL, 1, '', '', '');
1756 INSERT INTO `marc_subfield_structure` VALUES ('541', 'e', 'Accession number', 'Accession number', 0, 0, '', 5, '', '', '', NULL, 1, '', '', '');
1757 INSERT INTO `marc_subfield_structure` VALUES ('541', 'f', 'Owner', 'Owner', 0, 0, '', 5, '', '', '', NULL, 1, '', '', '');
1758 INSERT INTO `marc_subfield_structure` VALUES ('541', 'h', 'Purchase price', 'Purchase price', 0, 0, '', 5, '', '', '', NULL, 1, '', '', '');
1759 INSERT INTO `marc_subfield_structure` VALUES ('541', 'n', 'Extent', 'Extent', 0, 0, '', 5, '', '', '', NULL, 1, '', '', '');
1760 INSERT INTO `marc_subfield_structure` VALUES ('541', 'o', 'Type of unit', 'Type of unit', 1, 0, '', 5, '', '', '', NULL, 1, '', '', '');
1761 INSERT INTO `marc_subfield_structure` VALUES ('543', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1762 INSERT INTO `marc_subfield_structure` VALUES ('543', 'a', 'Solicitation information note', 'Solicitation information note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1763 INSERT INTO `marc_subfield_structure` VALUES ('544', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1764 INSERT INTO `marc_subfield_structure` VALUES ('544', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1765 INSERT INTO `marc_subfield_structure` VALUES ('544', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1766 INSERT INTO `marc_subfield_structure` VALUES ('544', 'a', 'Custodian', 'Custodian', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1767 INSERT INTO `marc_subfield_structure` VALUES ('544', 'b', 'Address', 'Address', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1768 INSERT INTO `marc_subfield_structure` VALUES ('544', 'c', 'Country', 'Country', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1769 INSERT INTO `marc_subfield_structure` VALUES ('544', 'd', 'Title', 'Title', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1770 INSERT INTO `marc_subfield_structure` VALUES ('544', 'e', 'Provenance', 'Provenance', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1771 INSERT INTO `marc_subfield_structure` VALUES ('544', 'n', 'Note', 'Note', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1772 INSERT INTO `marc_subfield_structure` VALUES ('545', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1773 INSERT INTO `marc_subfield_structure` VALUES ('545', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1774 INSERT INTO `marc_subfield_structure` VALUES ('545', 'a', 'Biographical or historical note', 'Biographical or historical note', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1775 INSERT INTO `marc_subfield_structure` VALUES ('545', 'b', 'Expansion', 'Expansion', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1776 INSERT INTO `marc_subfield_structure` VALUES ('545', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -6, '', '', '');
1777 INSERT INTO `marc_subfield_structure` VALUES ('546', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1778 INSERT INTO `marc_subfield_structure` VALUES ('546', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1779 INSERT INTO `marc_subfield_structure` VALUES ('546', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1780 INSERT INTO `marc_subfield_structure` VALUES ('546', 'a', 'Language note', 'Language note', 0, 0, NULL, 5, NULL, NULL, '', NULL, 0, '', '', '');
1781 INSERT INTO `marc_subfield_structure` VALUES ('546', 'b', 'Information code or alphabet', 'Information code or alphabet', 1, 0, NULL, 5, NULL, NULL, '', NULL, 0, '', '', '');
1782 INSERT INTO `marc_subfield_structure` VALUES ('546', 'z', 'Source of note information (SE) [OBSOLETE]', 'Source of note information (SE) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1783 INSERT INTO `marc_subfield_structure` VALUES ('547', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1784 INSERT INTO `marc_subfield_structure` VALUES ('547', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1785 INSERT INTO `marc_subfield_structure` VALUES ('547', 'a', 'Former title complexity note', 'Former title complexity note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1786 INSERT INTO `marc_subfield_structure` VALUES ('547', 'z', 'Source of note information (SE) [OBSOLETE]', 'Source of note information (SE) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1787 INSERT INTO `marc_subfield_structure` VALUES ('550', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1788 INSERT INTO `marc_subfield_structure` VALUES ('550', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1789 INSERT INTO `marc_subfield_structure` VALUES ('550', 'a', 'Issuing body note', 'Issuing body note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1790 INSERT INTO `marc_subfield_structure` VALUES ('550', 'z', 'Source of note information (SE) [OBSOLETE]', 'Source of note information (SE) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1791 INSERT INTO `marc_subfield_structure` VALUES ('552', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1792 INSERT INTO `marc_subfield_structure` VALUES ('552', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1793 INSERT INTO `marc_subfield_structure` VALUES ('552', 'a', 'Entity type label', 'Entity type label', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1794 INSERT INTO `marc_subfield_structure` VALUES ('552', 'b', 'Entity type definition and source', 'Entity type definition and source', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1795 INSERT INTO `marc_subfield_structure` VALUES ('552', 'c', 'Attribute label', 'Attribute label', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1796 INSERT INTO `marc_subfield_structure` VALUES ('552', 'd', 'Attribute definition and source', 'Attribute definition and source', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1797 INSERT INTO `marc_subfield_structure` VALUES ('552', 'e', 'Enumerated domain value', 'Enumerated domain value', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1798 INSERT INTO `marc_subfield_structure` VALUES ('552', 'f', 'Enumerated domain value definition and source', 'Enumerated domain value definition and source', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1799 INSERT INTO `marc_subfield_structure` VALUES ('552', 'g', 'Range domain minimum and maximum', 'Range domain minimum and maximum', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1800 INSERT INTO `marc_subfield_structure` VALUES ('552', 'h', 'Codeset name and source', 'Codeset name and source', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1801 INSERT INTO `marc_subfield_structure` VALUES ('552', 'i', 'Unrepresentable domain', 'Unrepresentable domain', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1802 INSERT INTO `marc_subfield_structure` VALUES ('552', 'j', 'Attribute units of measurement and resolution', 'Attribute units of measurement and resolution', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1803 INSERT INTO `marc_subfield_structure` VALUES ('552', 'k', 'Beginning date and ending date of attribute values', 'Beginning date and ending date of attribute values', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1804 INSERT INTO `marc_subfield_structure` VALUES ('552', 'l', 'Attribute value accuracy', 'Attribute value accuracy', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1805 INSERT INTO `marc_subfield_structure` VALUES ('552', 'm', 'Attribute value accuracy explanation', 'Attribute value accuracy explanation', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1806 INSERT INTO `marc_subfield_structure` VALUES ('552', 'n', 'Attribute measurement frequency', 'Attribute measurement frequency', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1807 INSERT INTO `marc_subfield_structure` VALUES ('552', 'o', 'Entity and attribute overview', 'Entity and attribute overview', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1808 INSERT INTO `marc_subfield_structure` VALUES ('552', 'p', 'Entity and attribute detail citation', 'Entity and attribute detail citation', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1809 INSERT INTO `marc_subfield_structure` VALUES ('552', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -6, '', '', '');
1810 INSERT INTO `marc_subfield_structure` VALUES ('552', 'z', 'Display note', 'Display note', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1811 INSERT INTO `marc_subfield_structure` VALUES ('555', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1812 INSERT INTO `marc_subfield_structure` VALUES ('555', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1813 INSERT INTO `marc_subfield_structure` VALUES ('555', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1814 INSERT INTO `marc_subfield_structure` VALUES ('555', 'a', 'Cumulative index/finding aids note', 'Cumulative index/finding aids note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -1, '', '', '');
1815 INSERT INTO `marc_subfield_structure` VALUES ('555', 'b', 'Availability source', 'Availability source', 1, 0, NULL, 5, NULL, NULL, '', NULL, -1, '', '', '');
1816 INSERT INTO `marc_subfield_structure` VALUES ('555', 'c', 'Degree of control', 'Degree of control', 0, 0, NULL, 5, NULL, NULL, '', NULL, -1, '', '', '');
1817 INSERT INTO `marc_subfield_structure` VALUES ('555', 'd', 'Bibliographic reference', 'Bibliographic reference', 0, 0, NULL, 5, NULL, NULL, '', NULL, -1, '', '', '');
1818 INSERT INTO `marc_subfield_structure` VALUES ('555', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, NULL, 5, NULL, NULL, '', 1, -1, '', '', '');
1819 INSERT INTO `marc_subfield_structure` VALUES ('556', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1820 INSERT INTO `marc_subfield_structure` VALUES ('556', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1821 INSERT INTO `marc_subfield_structure` VALUES ('556', 'a', 'Information about documentation note', 'Information about documentation note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -1, '', '', '');
1822 INSERT INTO `marc_subfield_structure` VALUES ('556', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -1, '', '', '');
1823 INSERT INTO `marc_subfield_structure` VALUES ('561', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1824 INSERT INTO `marc_subfield_structure` VALUES ('561', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1825 INSERT INTO `marc_subfield_structure` VALUES ('561', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1826 INSERT INTO `marc_subfield_structure` VALUES ('561', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1827 INSERT INTO `marc_subfield_structure` VALUES ('561', 'a', 'History', 'History', 0, 0, '', 5, '', '', '', NULL, 6, '', '', '');
1828 INSERT INTO `marc_subfield_structure` VALUES ('561', 'b', 'Time of collation [OBSOLETE]', 'Time of collation [OBSOLETE]', 0, 0, '', 5, '', '', '', NULL, 6, '', '', '');
1829 INSERT INTO `marc_subfield_structure` VALUES ('562', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1830 INSERT INTO `marc_subfield_structure` VALUES ('562', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, NULL, -1, NULL, NULL, '', NULL, -6, '', '', '');
1831 INSERT INTO `marc_subfield_structure` VALUES ('562', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1832 INSERT INTO `marc_subfield_structure` VALUES ('562', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1833 INSERT INTO `marc_subfield_structure` VALUES ('562', 'a', 'Identifying markings', 'Identifying markings', 1, 0, NULL, 5, NULL, NULL, '', NULL, -1, '', '', '');
1834 INSERT INTO `marc_subfield_structure` VALUES ('562', 'b', 'Copy identification', 'Copy identification', 1, 0, NULL, 5, NULL, NULL, '', NULL, -1, '', '', '');
1835 INSERT INTO `marc_subfield_structure` VALUES ('562', 'c', 'Version identification', 'Version identification', 1, 0, NULL, 5, NULL, NULL, '', NULL, -1, '', '', '');
1836 INSERT INTO `marc_subfield_structure` VALUES ('562', 'd', 'Presentation format', 'Presentation format', 1, 0, NULL, 5, NULL, NULL, '', NULL, -1, '', '', '');
1837 INSERT INTO `marc_subfield_structure` VALUES ('562', 'e', 'Number of copies', 'Number of copies', 1, 0, NULL, 5, NULL, NULL, '', NULL, -1, '', '', '');
1838 INSERT INTO `marc_subfield_structure` VALUES ('563', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1839 INSERT INTO `marc_subfield_structure` VALUES ('563', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, NULL, -1, NULL, NULL, '', NULL, -6, '', '', '');
1840 INSERT INTO `marc_subfield_structure` VALUES ('563', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1841 INSERT INTO `marc_subfield_structure` VALUES ('563', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1842 INSERT INTO `marc_subfield_structure` VALUES ('563', 'a', 'Binding note', 'Binding note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -1, '', '', '');
1843 INSERT INTO `marc_subfield_structure` VALUES ('563', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, NULL, 5, NULL, NULL, '', 1, -1, '', '', '');
1844 INSERT INTO `marc_subfield_structure` VALUES ('565', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1845 INSERT INTO `marc_subfield_structure` VALUES ('565', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1846 INSERT INTO `marc_subfield_structure` VALUES ('565', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1847 INSERT INTO `marc_subfield_structure` VALUES ('565', 'a', 'Number of cases/variables', 'Number of cases/variables', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1848 INSERT INTO `marc_subfield_structure` VALUES ('565', 'b', 'Name of variable', 'Name of variable', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1849 INSERT INTO `marc_subfield_structure` VALUES ('565', 'c', 'Unit of analysis', 'Unit of analysis', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1850 INSERT INTO `marc_subfield_structure` VALUES ('565', 'd', 'Universe of data', 'Universe of data', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1851 INSERT INTO `marc_subfield_structure` VALUES ('565', 'e', 'Filing scheme or code', 'Filing scheme or code', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1852 INSERT INTO `marc_subfield_structure` VALUES ('567', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1853 INSERT INTO `marc_subfield_structure` VALUES ('567', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1854 INSERT INTO `marc_subfield_structure` VALUES ('567', 'a', 'Methodology note', 'Methodology note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1855 INSERT INTO `marc_subfield_structure` VALUES ('570', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1856 INSERT INTO `marc_subfield_structure` VALUES ('570', 'a', 'Editor note', 'Editor note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1857 INSERT INTO `marc_subfield_structure` VALUES ('570', 'z', 'Source of note information', 'Source of note information', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1858 INSERT INTO `marc_subfield_structure` VALUES ('580', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1859 INSERT INTO `marc_subfield_structure` VALUES ('580', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1860 INSERT INTO `marc_subfield_structure` VALUES ('580', 'a', 'Linking entry complexity note', 'Linking entry complexity note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1861 INSERT INTO `marc_subfield_structure` VALUES ('580', 'z', 'Source of note information [OBSOLETE]', 'Source of note information [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1862 INSERT INTO `marc_subfield_structure` VALUES ('581', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1863 INSERT INTO `marc_subfield_structure` VALUES ('581', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1864 INSERT INTO `marc_subfield_structure` VALUES ('581', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1865 INSERT INTO `marc_subfield_structure` VALUES ('581', 'a', 'Publications about described materials note', 'Publications about described materials note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1866 INSERT INTO `marc_subfield_structure` VALUES ('581', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1867 INSERT INTO `marc_subfield_structure` VALUES ('582', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1868 INSERT INTO `marc_subfield_structure` VALUES ('582', 'a', 'Related computer files note', 'Related computer files note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1869 INSERT INTO `marc_subfield_structure` VALUES ('583', '2', 'Source of term', 'Source of term', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1870 INSERT INTO `marc_subfield_structure` VALUES ('583', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1871 INSERT INTO `marc_subfield_structure` VALUES ('583', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1872 INSERT INTO `marc_subfield_structure` VALUES ('583', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1873 INSERT INTO `marc_subfield_structure` VALUES ('583', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1874 INSERT INTO `marc_subfield_structure` VALUES ('583', 'a', 'Action', 'Action', 0, 0, '', 5, '', '', '', NULL, 0, '', '', '');
1875 INSERT INTO `marc_subfield_structure` VALUES ('583', 'b', 'Action identification', 'Action identification', 1, 0, '', 5, '', '', '', NULL, 0, '', '', '');
1876 INSERT INTO `marc_subfield_structure` VALUES ('583', 'c', 'Time/date of action', 'Time/date of action', 1, 0, '', 5, '', '', '', NULL, 0, '', '', '');
1877 INSERT INTO `marc_subfield_structure` VALUES ('583', 'd', 'Action interval', 'Action interval', 1, 0, '', 5, '', '', '', NULL, 0, '', '', '');
1878 INSERT INTO `marc_subfield_structure` VALUES ('583', 'e', 'Contingency for action', 'Contingency for action', 1, 0, '', 5, '', '', '', NULL, 0, '', '', '');
1879 INSERT INTO `marc_subfield_structure` VALUES ('583', 'f', 'Authorization', 'Authorization', 1, 0, '', 5, '', '', '', NULL, 0, '', '', '');
1880 INSERT INTO `marc_subfield_structure` VALUES ('583', 'h', 'Jurisdiction', 'Jurisdiction', 0, 0, '', 5, '', '', '', NULL, 0, '', '', '');
1881 INSERT INTO `marc_subfield_structure` VALUES ('583', 'i', 'Method of action', 'Method of action', 1, 0, '', 5, '', '', '', NULL, 0, '', '', '');
1882 INSERT INTO `marc_subfield_structure` VALUES ('583', 'j', 'Site of action', 'Site of action', 1, 0, '', 5, '', '', '', NULL, 0, '', '', '');
1883 INSERT INTO `marc_subfield_structure` VALUES ('583', 'k', 'Action agent', 'Action agent', 1, 0, '', 5, '', '', '', NULL, 0, '', '', '');
1884 INSERT INTO `marc_subfield_structure` VALUES ('583', 'l', 'Status', 'Status', 1, 0, '', 5, '', '', '', NULL, 0, '', '', '');
1885 INSERT INTO `marc_subfield_structure` VALUES ('583', 'n', 'Extent', 'Extent', 1, 0, '', 5, '', '', '', NULL, 0, '', '', '');
1886 INSERT INTO `marc_subfield_structure` VALUES ('583', 'o', 'Type of unit', 'Type of unit', 1, 0, '', 5, '', '', '', NULL, 0, '', '', '');
1887 INSERT INTO `marc_subfield_structure` VALUES ('583', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, 0, '', '', '');
1888 INSERT INTO `marc_subfield_structure` VALUES ('583', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 5, '', '', '', NULL, 4, '', '', '');
1889 INSERT INTO `marc_subfield_structure` VALUES ('583', 'z', 'Public note', 'Public note', 1, 0, '', 5, '', '', '', NULL, 0, '', '', '');
1890 INSERT INTO `marc_subfield_structure` VALUES ('584', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1891 INSERT INTO `marc_subfield_structure` VALUES ('584', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1892 INSERT INTO `marc_subfield_structure` VALUES ('584', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1893 INSERT INTO `marc_subfield_structure` VALUES ('584', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1894 INSERT INTO `marc_subfield_structure` VALUES ('584', 'a', 'Accumulation', 'Accumulation', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1895 INSERT INTO `marc_subfield_structure` VALUES ('584', 'b', 'Frequency of use', 'Frequency of use', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1896 INSERT INTO `marc_subfield_structure` VALUES ('585', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -1, '', '', '');
1897 INSERT INTO `marc_subfield_structure` VALUES ('585', '5', 'Institution to which field applies', 'Institution to which field applies', 0, -6, '', 5, '', '', '', NULL, -6, '', '', '');
1898 INSERT INTO `marc_subfield_structure` VALUES ('585', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1899 INSERT INTO `marc_subfield_structure` VALUES ('585', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1900 INSERT INTO `marc_subfield_structure` VALUES ('585', 'a', 'Exhibitions note', 'Exhibitions note', 0, 0, '', 5, '', '', '', NULL, -1, '', '', '');
1901 INSERT INTO `marc_subfield_structure` VALUES ('586', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1902 INSERT INTO `marc_subfield_structure` VALUES ('586', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1903 INSERT INTO `marc_subfield_structure` VALUES ('586', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1904 INSERT INTO `marc_subfield_structure` VALUES ('586', 'a', 'Awards note', 'Awards note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -1, '', '', '');
1905 INSERT INTO `marc_subfield_structure` VALUES ('590', '6', 'Linkage (RLIN)', 'Linkage (RLIN)', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1906 INSERT INTO `marc_subfield_structure` VALUES ('590', '8', 'Field link and sequence number (RLIN)', 'Field link and sequence number (RLIN)', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1907 INSERT INTO `marc_subfield_structure` VALUES ('590', 'a', 'Local note', 'Local note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1908 INSERT INTO `marc_subfield_structure` VALUES ('590', 'b', 'Provenance (VM) [OBSOLETE]', 'Provenance (VM) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1909 INSERT INTO `marc_subfield_structure` VALUES ('590', 'c', 'Condition of individual reels (VM) [OBSOLETE]', 'Condition of individual reels (VM) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1910 INSERT INTO `marc_subfield_structure` VALUES ('590', 'd', 'Origin of safety copy (VM) [OBSOLETE]', 'Origin of safety copy (VM) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1911 INSERT INTO `marc_subfield_structure` VALUES ('600', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, 0, '', '', '');
1912 INSERT INTO `marc_subfield_structure` VALUES ('600', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
1913 INSERT INTO `marc_subfield_structure` VALUES ('600', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
1914 INSERT INTO `marc_subfield_structure` VALUES ('600', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
1915 INSERT INTO `marc_subfield_structure` VALUES ('600', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
1916 INSERT INTO `marc_subfield_structure` VALUES ('600', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, '', '', '');
1917 INSERT INTO `marc_subfield_structure` VALUES ('600', 'a', 'Personal name', 'Personal name', 0, 0, '', 6, '', '', '', NULL, 0, '', '', '');
1918 INSERT INTO `marc_subfield_structure` VALUES ('600', 'b', 'Numeration', 'Numeration', 0, 0, '', 6, '', '', '', NULL, -1, '', '', '');
1919 INSERT INTO `marc_subfield_structure` VALUES ('600', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 6, '', '', '', NULL, -1, '', '', '');
1920 INSERT INTO `marc_subfield_structure` VALUES ('600', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 6, '', '', '', NULL, 0, '', '', '');
1921 INSERT INTO `marc_subfield_structure` VALUES ('600', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
1922 INSERT INTO `marc_subfield_structure` VALUES ('600', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
1923 INSERT INTO `marc_subfield_structure` VALUES ('600', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
1924 INSERT INTO `marc_subfield_structure` VALUES ('600', 'h', 'Medium', 'Medium', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
1925 INSERT INTO `marc_subfield_structure` VALUES ('600', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
1926 INSERT INTO `marc_subfield_structure` VALUES ('600', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
1927 INSERT INTO `marc_subfield_structure` VALUES ('600', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
1928 INSERT INTO `marc_subfield_structure` VALUES ('600', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
1929 INSERT INTO `marc_subfield_structure` VALUES ('600', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
1930 INSERT INTO `marc_subfield_structure` VALUES ('600', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
1931 INSERT INTO `marc_subfield_structure` VALUES ('600', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
1932 INSERT INTO `marc_subfield_structure` VALUES ('600', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 6, '', '', '', NULL, 0, '', '', '');
1933 INSERT INTO `marc_subfield_structure` VALUES ('600', 'r', 'Key for music', 'Key for music', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
1934 INSERT INTO `marc_subfield_structure` VALUES ('600', 's', 'Version', 'Version', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
1935 INSERT INTO `marc_subfield_structure` VALUES ('600', 't', 'Title of a work', 'Title of a work', 0, 0, '', 6, '', '', '', NULL, 0, '', '', '');
1936 INSERT INTO `marc_subfield_structure` VALUES ('600', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
1937 INSERT INTO `marc_subfield_structure` VALUES ('600', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, 0, '', '', '');
1938 INSERT INTO `marc_subfield_structure` VALUES ('600', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, 0, '', '', '');
1939 INSERT INTO `marc_subfield_structure` VALUES ('600', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, 0, '', '', '');
1940 INSERT INTO `marc_subfield_structure` VALUES ('600', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, 0, '', '', '');
1941 INSERT INTO `marc_subfield_structure` VALUES ('610', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, 0, '', '', '');
1942 INSERT INTO `marc_subfield_structure` VALUES ('610', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
1943 INSERT INTO `marc_subfield_structure` VALUES ('610', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
1944 INSERT INTO `marc_subfield_structure` VALUES ('610', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
1945 INSERT INTO `marc_subfield_structure` VALUES ('610', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
1946 INSERT INTO `marc_subfield_structure` VALUES ('610', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, '', '', '');
1947 INSERT INTO `marc_subfield_structure` VALUES ('610', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 6, '', '', '', NULL, 0, '', '', '');
1948 INSERT INTO `marc_subfield_structure` VALUES ('610', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 6, '', '', '', NULL, 0, '', '', '');
1949 INSERT INTO `marc_subfield_structure` VALUES ('610', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 6, '', '', '', NULL, -1, '', '', '');
1950 INSERT INTO `marc_subfield_structure` VALUES ('610', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 6, '', '', '', NULL, -1, '', '', '');
1951 INSERT INTO `marc_subfield_structure` VALUES ('610', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
1952 INSERT INTO `marc_subfield_structure` VALUES ('610', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
1953 INSERT INTO `marc_subfield_structure` VALUES ('610', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
1954 INSERT INTO `marc_subfield_structure` VALUES ('610', 'h', 'Medium', 'Medium', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
1955 INSERT INTO `marc_subfield_structure` VALUES ('610', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
1956 INSERT INTO `marc_subfield_structure` VALUES ('610', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
1957 INSERT INTO `marc_subfield_structure` VALUES ('610', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
1958 INSERT INTO `marc_subfield_structure` VALUES ('610', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
1959 INSERT INTO `marc_subfield_structure` VALUES ('610', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
1960 INSERT INTO `marc_subfield_structure` VALUES ('610', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
1961 INSERT INTO `marc_subfield_structure` VALUES ('610', 'r', 'Key for music', 'Key for music', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
1962 INSERT INTO `marc_subfield_structure` VALUES ('610', 's', 'Version', 'Version', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
1963 INSERT INTO `marc_subfield_structure` VALUES ('610', 't', 'Title of a work', 'Title of a work', 0, 0, '', 6, '', '', '', NULL, 0, '', '', '');
1964 INSERT INTO `marc_subfield_structure` VALUES ('610', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
1965 INSERT INTO `marc_subfield_structure` VALUES ('610', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, 0, '', '', '');
1966 INSERT INTO `marc_subfield_structure` VALUES ('610', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, 0, '', '', '');
1967 INSERT INTO `marc_subfield_structure` VALUES ('610', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, 0, '', '', '');
1968 INSERT INTO `marc_subfield_structure` VALUES ('610', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, 0, '', '', '');
1969 INSERT INTO `marc_subfield_structure` VALUES ('611', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, '', '', '');
1970 INSERT INTO `marc_subfield_structure` VALUES ('611', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
1971 INSERT INTO `marc_subfield_structure` VALUES ('611', '4', 'Relator code', 'Relator code', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
1972 INSERT INTO `marc_subfield_structure` VALUES ('611', '6', 'Linkage', 'Linkage', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
1973 INSERT INTO `marc_subfield_structure` VALUES ('611', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
1974 INSERT INTO `marc_subfield_structure` VALUES ('611', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, '', '', '');
1975 INSERT INTO `marc_subfield_structure` VALUES ('611', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, '', '', '');
1976 INSERT INTO `marc_subfield_structure` VALUES ('611', 'b', 'Number  (BK CF MP MU SE VM MX)  [OBSOLETE]', 'Number  (BK CF MP MU SE VM MX)  [OBSOLETE]', 1, 0, NULL, -1, NULL, NULL, '', NULL, -6, '', '', '');
1977 INSERT INTO `marc_subfield_structure` VALUES ('611', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, '', '', '');
1978 INSERT INTO `marc_subfield_structure` VALUES ('611', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, '', '', '');
1979 INSERT INTO `marc_subfield_structure` VALUES ('611', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, '', '', '');
1980 INSERT INTO `marc_subfield_structure` VALUES ('611', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
1981 INSERT INTO `marc_subfield_structure` VALUES ('611', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
1982 INSERT INTO `marc_subfield_structure` VALUES ('611', 'h', 'Medium', 'Medium', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
1983 INSERT INTO `marc_subfield_structure` VALUES ('611', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
1984 INSERT INTO `marc_subfield_structure` VALUES ('611', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
1985 INSERT INTO `marc_subfield_structure` VALUES ('611', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
1986 INSERT INTO `marc_subfield_structure` VALUES ('611', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
1987 INSERT INTO `marc_subfield_structure` VALUES ('611', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
1988 INSERT INTO `marc_subfield_structure` VALUES ('611', 's', 'Version', 'Version', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
1989 INSERT INTO `marc_subfield_structure` VALUES ('611', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, '', '', '');
1990 INSERT INTO `marc_subfield_structure` VALUES ('611', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
1991 INSERT INTO `marc_subfield_structure` VALUES ('611', 'v', 'Form subdivision', 'Form subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, '', '', '');
1992 INSERT INTO `marc_subfield_structure` VALUES ('611', 'x', 'General subdivision', 'General subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, '', '', '');
1993 INSERT INTO `marc_subfield_structure` VALUES ('611', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, '', '', '');
1994 INSERT INTO `marc_subfield_structure` VALUES ('611', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, '', '', '');
1995 INSERT INTO `marc_subfield_structure` VALUES ('630', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, '', '', '');
1996 INSERT INTO `marc_subfield_structure` VALUES ('630', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
1997 INSERT INTO `marc_subfield_structure` VALUES ('630', '4', 'Relator code', 'Relator code', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
1998 INSERT INTO `marc_subfield_structure` VALUES ('630', '6', 'Linkage', 'Linkage', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
1999 INSERT INTO `marc_subfield_structure` VALUES ('630', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2000 INSERT INTO `marc_subfield_structure` VALUES ('630', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, '', '', '');
2001 INSERT INTO `marc_subfield_structure` VALUES ('630', 'a', 'Uniform title', 'Uniform title', 0, 0, NULL, 6, NULL, NULL, '', NULL, 0, '', '', '');
2002 INSERT INTO `marc_subfield_structure` VALUES ('630', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2003 INSERT INTO `marc_subfield_structure` VALUES ('630', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -1, '', '', '');
2004 INSERT INTO `marc_subfield_structure` VALUES ('630', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2005 INSERT INTO `marc_subfield_structure` VALUES ('630', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2006 INSERT INTO `marc_subfield_structure` VALUES ('630', 'h', 'Medium', 'Medium', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2007 INSERT INTO `marc_subfield_structure` VALUES ('630', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2008 INSERT INTO `marc_subfield_structure` VALUES ('630', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, 0, '', '', '');
2009 INSERT INTO `marc_subfield_structure` VALUES ('630', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2010 INSERT INTO `marc_subfield_structure` VALUES ('630', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2011 INSERT INTO `marc_subfield_structure` VALUES ('630', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2012 INSERT INTO `marc_subfield_structure` VALUES ('630', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2013 INSERT INTO `marc_subfield_structure` VALUES ('630', 'r', 'Key for music', 'Key for music', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2014 INSERT INTO `marc_subfield_structure` VALUES ('630', 's', 'Version', 'Version', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2015 INSERT INTO `marc_subfield_structure` VALUES ('630', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, 0, '', '', '');
2016 INSERT INTO `marc_subfield_structure` VALUES ('630', 'v', 'Form subdivision', 'Form subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, 0, '', '', '');
2017 INSERT INTO `marc_subfield_structure` VALUES ('630', 'x', 'General subdivision', 'General subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, 0, '', '', '');
2018 INSERT INTO `marc_subfield_structure` VALUES ('630', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, 0, '', '', '');
2019 INSERT INTO `marc_subfield_structure` VALUES ('630', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, 0, '', '', '');
2020 INSERT INTO `marc_subfield_structure` VALUES ('648', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, NULL, 6, NULL, NULL, '', NULL, 0, '', '', '');
2021 INSERT INTO `marc_subfield_structure` VALUES ('648', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2022 INSERT INTO `marc_subfield_structure` VALUES ('648', '6', 'Linkage', 'Linkage', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2023 INSERT INTO `marc_subfield_structure` VALUES ('648', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2024 INSERT INTO `marc_subfield_structure` VALUES ('648', 'a', 'Chronological term', 'Chronological term', 0, 0, NULL, 6, NULL, NULL, '', NULL, 0, '', '', '');
2025 INSERT INTO `marc_subfield_structure` VALUES ('648', 'v', 'Form subdivision', 'Form subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, 0, '', '', '');
2026 INSERT INTO `marc_subfield_structure` VALUES ('648', 'x', 'General subdivision', 'General subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, 0, '', '', '');
2027 INSERT INTO `marc_subfield_structure` VALUES ('648', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, 0, '', '', '');
2028 INSERT INTO `marc_subfield_structure` VALUES ('648', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, 0, '', '', '');
2029 INSERT INTO `marc_subfield_structure` VALUES ('650', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', 0, 0, '', '', '');
2030 INSERT INTO `marc_subfield_structure` VALUES ('650', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', 0, -6, '', '', '');
2031 INSERT INTO `marc_subfield_structure` VALUES ('650', '4', 'Relator code', 'Relator code', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2032 INSERT INTO `marc_subfield_structure` VALUES ('650', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', 0, -6, '', '', '');
2033 INSERT INTO `marc_subfield_structure` VALUES ('650', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', 0, -6, '', '', '');
2034 INSERT INTO `marc_subfield_structure` VALUES ('650', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, '', '', '');
2035 INSERT INTO `marc_subfield_structure` VALUES ('650', 'a', 'Topical term or geographic name as entry element', 'Topical term or geographic name as entry element', 0, 0, 'bibliosubject.subject', 6, '', '', '', 0, 0, '', '''6003'',''600a'',''600b'',''600c'',''600d'',''600e'',''600f'',''600g'',''600h'',''600k'',''600l'',''600m'',''600n'',''600o'',''600p'',''600r'',''600s'',''600t'',''600u'',''600x'',''600z'',''600y'',''600v'',''6103'',''610a'',''610b'',''610c'',''610d'',''610e'',''610f'',''610g'',''610h'',''610k'',''610l'',''610m'',''610n'',''610o'',''610p'',''610r'',''610s'',''610t'',''610u'',''610x'',''610z'',''610y'',''610v'',''6113'',''611a'',''611b'',''611c'',''611d'',''611e'',''611f'',''611g'',''611h'',''611k'',''611l'',''611m'',''611n'',''611o'',''611p'',''611r'',''611s'',''611t'',''611u'',''611x'',''611z'',''611y'',''611v'',''630a'',''630b'',''630c'',''630d'',''630e'',''630f'',''630g'',''630h'',''630k'',''630l'',''630m'',''630n'',''630o'',''630p'',''630r'',''630s'',''630t'',''630x'',''630z'',''630y'',''630v'',''6483'',''648a'',''648x'',''648z'',''648y'',''648v'',''6503'',''650b'',''650c'',''650d'',''650e'',''650x'',''650z'',''650y'',''650v'',''6513'',''651a'',''651b'',''651c'',''651d'',''651e'',''651x'',''651z'',''651y'',''651v'',''653a'',''6543'',''654a'',''654b'',''654x'',''654z'',''654y'',''654v'',''6553'',''655a'',''655b'',''655x'',''655z'',''655y'',''655v'',''6563'',''656a'',''656k'',''656x'',''656z'',''656y'',''656v'',''6573'',''657a'',''657x'',''657z'',''657y'',''657v'',''658a'',''658b'',''658c'',''658d'',''658v''', '');
2036 INSERT INTO `marc_subfield_structure` VALUES ('650', 'b', 'Topical term following geographic name as entry element', 'Topical term following geographic name as entry element', 0, 0, '', 6, '', '', '', 0, -1, '', '', '');
2037 INSERT INTO `marc_subfield_structure` VALUES ('650', 'c', 'Location of event', 'Location of event', 0, 0, '', 6, '', '', '', 0, -1, '', '', '');
2038 INSERT INTO `marc_subfield_structure` VALUES ('650', 'd', 'Active dates', 'Active dates', 0, 0, '', 6, '', '', '', 0, -1, '', '', '');
2039 INSERT INTO `marc_subfield_structure` VALUES ('650', 'e', 'Relator term', 'Relator term', 0, 0, '', 6, '', '', '', 0, -1, '', '', '');
2040 INSERT INTO `marc_subfield_structure` VALUES ('650', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', 0, 0, '', '', '');
2041 INSERT INTO `marc_subfield_structure` VALUES ('650', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', 0, 0, '', '', '');
2042 INSERT INTO `marc_subfield_structure` VALUES ('650', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', 0, 0, '', '', '');
2043 INSERT INTO `marc_subfield_structure` VALUES ('650', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', 0, 0, '', '', '');
2044 INSERT INTO `marc_subfield_structure` VALUES ('651', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, 0, '', '', '');
2045 INSERT INTO `marc_subfield_structure` VALUES ('651', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2046 INSERT INTO `marc_subfield_structure` VALUES ('651', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2047 INSERT INTO `marc_subfield_structure` VALUES ('651', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2048 INSERT INTO `marc_subfield_structure` VALUES ('651', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2049 INSERT INTO `marc_subfield_structure` VALUES ('651', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, '', '', '');
2050 INSERT INTO `marc_subfield_structure` VALUES ('651', 'a', 'Geographic name', 'Geographic name', 0, 0, '', 6, '', '', '', NULL, 0, '', '', '');
2051 INSERT INTO `marc_subfield_structure` VALUES ('651', 'b', 'Geographic name following place entry element [OBSOLETE]', 'Geographic name following place entry element [OBSOLETE]', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2052 INSERT INTO `marc_subfield_structure` VALUES ('651', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -1, '', '', '');
2053 INSERT INTO `marc_subfield_structure` VALUES ('651', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, 0, '', '', '');
2054 INSERT INTO `marc_subfield_structure` VALUES ('651', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, 0, '', '', '');
2055 INSERT INTO `marc_subfield_structure` VALUES ('651', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, 0, '', '', '');
2056 INSERT INTO `marc_subfield_structure` VALUES ('651', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, 0, '', '', '');
2057 INSERT INTO `marc_subfield_structure` VALUES ('652', 'a', 'Geographic name of place element', 'Geographic name of place element', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2058 INSERT INTO `marc_subfield_structure` VALUES ('652', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2059 INSERT INTO `marc_subfield_structure` VALUES ('652', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2060 INSERT INTO `marc_subfield_structure` VALUES ('652', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2061 INSERT INTO `marc_subfield_structure` VALUES ('653', '6', 'Linkage', 'Linkage', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2062 INSERT INTO `marc_subfield_structure` VALUES ('653', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2063 INSERT INTO `marc_subfield_structure` VALUES ('653', 'a', 'Uncontrolled term', 'Uncontrolled term', 1, 0, NULL, 6, NULL, NULL, '', NULL, 0, '', '', '');
2064 INSERT INTO `marc_subfield_structure` VALUES ('654', '2', 'Source of term', 'Source of term', 0, 0, '', 6, '', '', '', NULL, 0, '', '', '');
2065 INSERT INTO `marc_subfield_structure` VALUES ('654', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2066 INSERT INTO `marc_subfield_structure` VALUES ('654', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2067 INSERT INTO `marc_subfield_structure` VALUES ('654', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2068 INSERT INTO `marc_subfield_structure` VALUES ('654', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2069 INSERT INTO `marc_subfield_structure` VALUES ('654', 'a', 'Focus term', 'Focus term', 1, 0, '', 6, '', '', '', NULL, 0, '', '', '');
2070 INSERT INTO `marc_subfield_structure` VALUES ('654', 'b', 'Non-focus term', 'Non-focus term', 1, 0, '', 6, '', '', '', NULL, 0, '', '', '');
2071 INSERT INTO `marc_subfield_structure` VALUES ('654', 'c', 'Facet/hierarchy designation', 'Facet/hierarchy designation', 1, 0, '', 6, '', '', '', NULL, 0, '', '', '');
2072 INSERT INTO `marc_subfield_structure` VALUES ('654', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -1, '', '', '');
2073 INSERT INTO `marc_subfield_structure` VALUES ('654', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, 0, '', '', '');
2074 INSERT INTO `marc_subfield_structure` VALUES ('654', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, 0, '', '', '');
2075 INSERT INTO `marc_subfield_structure` VALUES ('654', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, 0, '', '', '');
2076 INSERT INTO `marc_subfield_structure` VALUES ('654', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, 0, '', '', '');
2077 INSERT INTO `marc_subfield_structure` VALUES ('655', '2', 'Source of term', 'Source of term', 0, 0, '', 6, '', '', '', NULL, 0, '', '', '');
2078 INSERT INTO `marc_subfield_structure` VALUES ('655', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2079 INSERT INTO `marc_subfield_structure` VALUES ('655', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2080 INSERT INTO `marc_subfield_structure` VALUES ('655', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2081 INSERT INTO `marc_subfield_structure` VALUES ('655', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2082 INSERT INTO `marc_subfield_structure` VALUES ('655', 'a', 'Genre/form data or focus term', 'Genre/form data or focus term', 0, 0, '', 6, '', '', '', NULL, 0, '', '', '');
2083 INSERT INTO `marc_subfield_structure` VALUES ('655', 'b', 'Non-focus term', 'Non-focus term', 1, 0, '', 6, '', '', '', NULL, 0, '', '', '');
2084 INSERT INTO `marc_subfield_structure` VALUES ('655', 'c', 'Facet/hierarchy designation', 'Facet/hierarchy designation', 1, 0, '', 6, '', '', '', NULL, 0, '', '', '');
2085 INSERT INTO `marc_subfield_structure` VALUES ('655', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, 0, '', '', '');
2086 INSERT INTO `marc_subfield_structure` VALUES ('655', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, 0, '', '', '');
2087 INSERT INTO `marc_subfield_structure` VALUES ('655', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, 0, '', '', '');
2088 INSERT INTO `marc_subfield_structure` VALUES ('655', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, 0, '', '', '');
2089 INSERT INTO `marc_subfield_structure` VALUES ('656', '2', 'Source of term', 'Source of term', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2090 INSERT INTO `marc_subfield_structure` VALUES ('656', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2091 INSERT INTO `marc_subfield_structure` VALUES ('656', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2092 INSERT INTO `marc_subfield_structure` VALUES ('656', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2093 INSERT INTO `marc_subfield_structure` VALUES ('656', 'a', 'Occupation', 'Occupation', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2094 INSERT INTO `marc_subfield_structure` VALUES ('656', 'k', 'Form', 'Form', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2095 INSERT INTO `marc_subfield_structure` VALUES ('656', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2096 INSERT INTO `marc_subfield_structure` VALUES ('656', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2097 INSERT INTO `marc_subfield_structure` VALUES ('656', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2098 INSERT INTO `marc_subfield_structure` VALUES ('656', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2099 INSERT INTO `marc_subfield_structure` VALUES ('657', '2', 'Source of term', 'Source of term', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2100 INSERT INTO `marc_subfield_structure` VALUES ('657', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2101 INSERT INTO `marc_subfield_structure` VALUES ('657', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2102 INSERT INTO `marc_subfield_structure` VALUES ('657', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2103 INSERT INTO `marc_subfield_structure` VALUES ('657', 'a', 'Function', 'Function', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2104 INSERT INTO `marc_subfield_structure` VALUES ('657', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2105 INSERT INTO `marc_subfield_structure` VALUES ('657', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2106 INSERT INTO `marc_subfield_structure` VALUES ('657', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2107 INSERT INTO `marc_subfield_structure` VALUES ('657', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2108 INSERT INTO `marc_subfield_structure` VALUES ('658', '2', 'Source of term', 'Source of term', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2109 INSERT INTO `marc_subfield_structure` VALUES ('658', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2110 INSERT INTO `marc_subfield_structure` VALUES ('658', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2111 INSERT INTO `marc_subfield_structure` VALUES ('658', 'a', 'Main curriculum objective', 'Main curriculum objective', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2112 INSERT INTO `marc_subfield_structure` VALUES ('658', 'b', 'Subordinate curriculum objective', 'Subordinate curriculum objective', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2113 INSERT INTO `marc_subfield_structure` VALUES ('658', 'c', 'Curriculum code', 'Curriculum code', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2114 INSERT INTO `marc_subfield_structure` VALUES ('658', 'd', 'Correlation factor', 'Correlation factor', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2115 INSERT INTO `marc_subfield_structure` VALUES ('662', '2', 'Source of term', 'Source of term', 0, 0, '', 6, '', '', '', NULL, 0, '', '', '');
2116 INSERT INTO `marc_subfield_structure` VALUES ('662', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2117 INSERT INTO `marc_subfield_structure` VALUES ('662', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2118 INSERT INTO `marc_subfield_structure` VALUES ('662', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2119 INSERT INTO `marc_subfield_structure` VALUES ('662', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2120 INSERT INTO `marc_subfield_structure` VALUES ('662', 'a', 'Country or larger entity', 'Country or larger entity', 1, 0, '', 6, '', '', '', NULL, 0, '', '', '');
2121 INSERT INTO `marc_subfield_structure` VALUES ('662', 'b', 'First-order political jurisdiction', 'First-order political jurisdiction', 0, 0, '', 6, '', '', '', NULL, 0, '', '', '');
2122 INSERT INTO `marc_subfield_structure` VALUES ('662', 'c', 'Intermediate political jurisdiction', 'Intermediate political jurisdiction', 1, 0, '', 6, '', '', '', NULL, 0, '', '', '');
2123 INSERT INTO `marc_subfield_structure` VALUES ('662', 'd', 'City', 'City', 0, 0, '', 6, '', '', '', NULL, 0, '', '', '');
2124 INSERT INTO `marc_subfield_structure` VALUES ('662', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -1, '', '', '');
2125 INSERT INTO `marc_subfield_structure` VALUES ('662', 'f', 'City subsection', 'City subsection', 1, 0, '', 6, '', '', '', NULL, 0, '', '', '');
2126 INSERT INTO `marc_subfield_structure` VALUES ('662', 'g', 'Other nonjurisdictional geographic region and feature', 'Other nonjurisdictional geographic region and feature', 1, 0, '', 6, '', '', '', NULL, 0, '', '', '');
2127 INSERT INTO `marc_subfield_structure` VALUES ('662', 'h', 'Extraterrestrial area', 'Extraterrestrial area', 1, 0, '', 6, '', '', '', NULL, 0, '', '', '');
2128 INSERT INTO `marc_subfield_structure` VALUES ('690', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, '', '', '');
2129 INSERT INTO `marc_subfield_structure` VALUES ('690', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', 0, 0, '', '', '');
2130 INSERT INTO `marc_subfield_structure` VALUES ('690', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', 0, -6, '', '', '');
2131 INSERT INTO `marc_subfield_structure` VALUES ('690', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', 0, -6, '', '', '');
2132 INSERT INTO `marc_subfield_structure` VALUES ('690', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', 0, -6, '', '', '');
2133 INSERT INTO `marc_subfield_structure` VALUES ('690', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, '', '', '');
2134 INSERT INTO `marc_subfield_structure` VALUES ('690', 'a', 'Topical term or geographic name as entry element', 'Topical term or geographic name as entry element', 0, 0, '', 6, '', '', '', 0, 0, '', '', '');
2135 INSERT INTO `marc_subfield_structure` VALUES ('690', 'b', 'Topical term following geographic name as entry element', 'Topical term following geographic name as entry element', 0, 0, '', 6, '', '', '', 0, -1, '', '', '');
2136 INSERT INTO `marc_subfield_structure` VALUES ('690', 'c', 'Location of event', 'Location of event', 0, 0, '', 6, '', '', '', 0, -6, '', '', '');
2137 INSERT INTO `marc_subfield_structure` VALUES ('690', 'd', 'Active dates', 'Active dates', 0, 0, '', 6, '', '', '', 0, -1, '', '', '');
2138 INSERT INTO `marc_subfield_structure` VALUES ('690', 'e', 'Relator term', 'Relator term', 0, 0, '', 6, '', '', '', 0, -1, '', '', '');
2139 INSERT INTO `marc_subfield_structure` VALUES ('690', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', 0, 0, '', '', '');
2140 INSERT INTO `marc_subfield_structure` VALUES ('690', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', 0, 0, '', '', '');
2141 INSERT INTO `marc_subfield_structure` VALUES ('690', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', 0, 0, '', '', '');
2142 INSERT INTO `marc_subfield_structure` VALUES ('690', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', 0, 0, '', '', '');
2143 INSERT INTO `marc_subfield_structure` VALUES ('691', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, '', '', '');
2144 INSERT INTO `marc_subfield_structure` VALUES ('691', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2145 INSERT INTO `marc_subfield_structure` VALUES ('691', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2146 INSERT INTO `marc_subfield_structure` VALUES ('691', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2147 INSERT INTO `marc_subfield_structure` VALUES ('691', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2148 INSERT INTO `marc_subfield_structure` VALUES ('691', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, '', '', '');
2149 INSERT INTO `marc_subfield_structure` VALUES ('691', 'a', 'Geographic name', 'Geographic name', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2150 INSERT INTO `marc_subfield_structure` VALUES ('691', 'b', 'Geographic name following place entry element [OBSOLETE]', 'Geographic name following place entry element [OBSOLETE]', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2151 INSERT INTO `marc_subfield_structure` VALUES ('691', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2152 INSERT INTO `marc_subfield_structure` VALUES ('691', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2153 INSERT INTO `marc_subfield_structure` VALUES ('691', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2154 INSERT INTO `marc_subfield_structure` VALUES ('691', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2155 INSERT INTO `marc_subfield_structure` VALUES ('696', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, '', '', '');
2156 INSERT INTO `marc_subfield_structure` VALUES ('696', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2157 INSERT INTO `marc_subfield_structure` VALUES ('696', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2158 INSERT INTO `marc_subfield_structure` VALUES ('696', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2159 INSERT INTO `marc_subfield_structure` VALUES ('696', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2160 INSERT INTO `marc_subfield_structure` VALUES ('696', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2161 INSERT INTO `marc_subfield_structure` VALUES ('696', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, '', '', '');
2162 INSERT INTO `marc_subfield_structure` VALUES ('696', 'a', 'Personal name', 'Personal name', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
2163 INSERT INTO `marc_subfield_structure` VALUES ('696', 'b', 'Numeration', 'Numeration', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2164 INSERT INTO `marc_subfield_structure` VALUES ('696', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2165 INSERT INTO `marc_subfield_structure` VALUES ('696', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2166 INSERT INTO `marc_subfield_structure` VALUES ('696', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2167 INSERT INTO `marc_subfield_structure` VALUES ('696', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2168 INSERT INTO `marc_subfield_structure` VALUES ('696', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2169 INSERT INTO `marc_subfield_structure` VALUES ('696', 'h', 'Medium', 'Medium', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2170 INSERT INTO `marc_subfield_structure` VALUES ('696', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2171 INSERT INTO `marc_subfield_structure` VALUES ('696', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2172 INSERT INTO `marc_subfield_structure` VALUES ('696', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2173 INSERT INTO `marc_subfield_structure` VALUES ('696', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2174 INSERT INTO `marc_subfield_structure` VALUES ('696', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2175 INSERT INTO `marc_subfield_structure` VALUES ('696', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2176 INSERT INTO `marc_subfield_structure` VALUES ('696', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2177 INSERT INTO `marc_subfield_structure` VALUES ('696', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2178 INSERT INTO `marc_subfield_structure` VALUES ('696', 'r', 'Key for music', 'Key for music', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2179 INSERT INTO `marc_subfield_structure` VALUES ('696', 's', 'Version', 'Version', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2180 INSERT INTO `marc_subfield_structure` VALUES ('696', 't', 'Title of a work', 'Title of a work', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2181 INSERT INTO `marc_subfield_structure` VALUES ('696', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2182 INSERT INTO `marc_subfield_structure` VALUES ('696', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2183 INSERT INTO `marc_subfield_structure` VALUES ('696', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2184 INSERT INTO `marc_subfield_structure` VALUES ('696', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2185 INSERT INTO `marc_subfield_structure` VALUES ('696', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2186 INSERT INTO `marc_subfield_structure` VALUES ('697', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, '', '', '');
2187 INSERT INTO `marc_subfield_structure` VALUES ('697', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2188 INSERT INTO `marc_subfield_structure` VALUES ('697', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2189 INSERT INTO `marc_subfield_structure` VALUES ('697', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2190 INSERT INTO `marc_subfield_structure` VALUES ('697', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2191 INSERT INTO `marc_subfield_structure` VALUES ('697', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2192 INSERT INTO `marc_subfield_structure` VALUES ('697', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, '', '', '');
2193 INSERT INTO `marc_subfield_structure` VALUES ('697', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2194 INSERT INTO `marc_subfield_structure` VALUES ('697', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2195 INSERT INTO `marc_subfield_structure` VALUES ('697', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2196 INSERT INTO `marc_subfield_structure` VALUES ('697', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2197 INSERT INTO `marc_subfield_structure` VALUES ('697', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2198 INSERT INTO `marc_subfield_structure` VALUES ('697', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2199 INSERT INTO `marc_subfield_structure` VALUES ('697', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2200 INSERT INTO `marc_subfield_structure` VALUES ('697', 'h', 'Medium', 'Medium', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2201 INSERT INTO `marc_subfield_structure` VALUES ('697', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2202 INSERT INTO `marc_subfield_structure` VALUES ('697', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2203 INSERT INTO `marc_subfield_structure` VALUES ('697', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2204 INSERT INTO `marc_subfield_structure` VALUES ('697', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2205 INSERT INTO `marc_subfield_structure` VALUES ('697', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2206 INSERT INTO `marc_subfield_structure` VALUES ('697', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2207 INSERT INTO `marc_subfield_structure` VALUES ('697', 'r', 'Key for music', 'Key for music', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2208 INSERT INTO `marc_subfield_structure` VALUES ('697', 's', 'Version', 'Version', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2209 INSERT INTO `marc_subfield_structure` VALUES ('697', 't', 'Title of a work', 'Title of a work', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2210 INSERT INTO `marc_subfield_structure` VALUES ('697', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2211 INSERT INTO `marc_subfield_structure` VALUES ('697', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2212 INSERT INTO `marc_subfield_structure` VALUES ('697', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2213 INSERT INTO `marc_subfield_structure` VALUES ('697', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2214 INSERT INTO `marc_subfield_structure` VALUES ('697', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2215 INSERT INTO `marc_subfield_structure` VALUES ('698', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, '', '', '');
2216 INSERT INTO `marc_subfield_structure` VALUES ('698', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2217 INSERT INTO `marc_subfield_structure` VALUES ('698', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2218 INSERT INTO `marc_subfield_structure` VALUES ('698', '4', 'Relator code', 'Relator code', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2219 INSERT INTO `marc_subfield_structure` VALUES ('698', '6', 'Linkage', 'Linkage', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2220 INSERT INTO `marc_subfield_structure` VALUES ('698', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2221 INSERT INTO `marc_subfield_structure` VALUES ('698', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, '', '', '');
2222 INSERT INTO `marc_subfield_structure` VALUES ('698', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2223 INSERT INTO `marc_subfield_structure` VALUES ('698', 'b', 'Number  (BK CF MP MU SE VM MX)  [OBSOLETE]', 'Number  (BK CF MP MU SE VM MX)  [OBSOLETE]', 1, 0, NULL, -1, NULL, NULL, '', NULL, -6, '', '', '');
2224 INSERT INTO `marc_subfield_structure` VALUES ('698', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2225 INSERT INTO `marc_subfield_structure` VALUES ('698', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2226 INSERT INTO `marc_subfield_structure` VALUES ('698', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2227 INSERT INTO `marc_subfield_structure` VALUES ('698', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2228 INSERT INTO `marc_subfield_structure` VALUES ('698', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2229 INSERT INTO `marc_subfield_structure` VALUES ('698', 'h', 'Medium', 'Medium', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2230 INSERT INTO `marc_subfield_structure` VALUES ('698', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2231 INSERT INTO `marc_subfield_structure` VALUES ('698', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2232 INSERT INTO `marc_subfield_structure` VALUES ('698', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2233 INSERT INTO `marc_subfield_structure` VALUES ('698', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2234 INSERT INTO `marc_subfield_structure` VALUES ('698', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2235 INSERT INTO `marc_subfield_structure` VALUES ('698', 's', 'Version', 'Version', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2236 INSERT INTO `marc_subfield_structure` VALUES ('698', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2237 INSERT INTO `marc_subfield_structure` VALUES ('698', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2238 INSERT INTO `marc_subfield_structure` VALUES ('698', 'v', 'Form subdivision', 'Form subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2239 INSERT INTO `marc_subfield_structure` VALUES ('698', 'x', 'General subdivision', 'General subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2240 INSERT INTO `marc_subfield_structure` VALUES ('698', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2241 INSERT INTO `marc_subfield_structure` VALUES ('698', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2242 INSERT INTO `marc_subfield_structure` VALUES ('699', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, '', '', '');
2243 INSERT INTO `marc_subfield_structure` VALUES ('699', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2244 INSERT INTO `marc_subfield_structure` VALUES ('699', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2245 INSERT INTO `marc_subfield_structure` VALUES ('699', '6', 'Linkage', 'Linkage', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2246 INSERT INTO `marc_subfield_structure` VALUES ('699', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2247 INSERT INTO `marc_subfield_structure` VALUES ('699', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, '', '', '');
2248 INSERT INTO `marc_subfield_structure` VALUES ('699', 'a', 'Uniform title', 'Uniform title', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2249 INSERT INTO `marc_subfield_structure` VALUES ('699', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2250 INSERT INTO `marc_subfield_structure` VALUES ('699', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2251 INSERT INTO `marc_subfield_structure` VALUES ('699', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2252 INSERT INTO `marc_subfield_structure` VALUES ('699', 'h', 'Medium', 'Medium', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2253 INSERT INTO `marc_subfield_structure` VALUES ('699', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2254 INSERT INTO `marc_subfield_structure` VALUES ('699', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2255 INSERT INTO `marc_subfield_structure` VALUES ('699', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2256 INSERT INTO `marc_subfield_structure` VALUES ('699', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2257 INSERT INTO `marc_subfield_structure` VALUES ('699', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2258 INSERT INTO `marc_subfield_structure` VALUES ('699', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2259 INSERT INTO `marc_subfield_structure` VALUES ('699', 'r', 'Key for music', 'Key for music', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2260 INSERT INTO `marc_subfield_structure` VALUES ('699', 's', 'Version', 'Version', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2261 INSERT INTO `marc_subfield_structure` VALUES ('699', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2262 INSERT INTO `marc_subfield_structure` VALUES ('699', 'v', 'Form subdivision', 'Form subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2263 INSERT INTO `marc_subfield_structure` VALUES ('699', 'x', 'General subdivision', 'General subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2264 INSERT INTO `marc_subfield_structure` VALUES ('699', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2265 INSERT INTO `marc_subfield_structure` VALUES ('700', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2266 INSERT INTO `marc_subfield_structure` VALUES ('700', '4', 'Relator code', 'Relator code', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2267 INSERT INTO `marc_subfield_structure` VALUES ('700', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2268 INSERT INTO `marc_subfield_structure` VALUES ('700', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2269 INSERT INTO `marc_subfield_structure` VALUES ('700', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2270 INSERT INTO `marc_subfield_structure` VALUES ('700', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, '', '', '');
2271 INSERT INTO `marc_subfield_structure` VALUES ('700', 'a', 'Personal name', 'Personal name', 0, 0, 'additionalauthors.author', 7, '', '', '', NULL, -1, '', '', '');
2272 INSERT INTO `marc_subfield_structure` VALUES ('700', 'b', 'Numeration', 'Numeration', 0, 0, '', 7, '', '', '', NULL, -1, '', '', '');
2273 INSERT INTO `marc_subfield_structure` VALUES ('700', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 7, '', '', '', NULL, -1, '', '', '');
2274 INSERT INTO `marc_subfield_structure` VALUES ('700', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 7, '', '', '', NULL, -1, '', '', '');
2275 INSERT INTO `marc_subfield_structure` VALUES ('700', 'e', 'Relator term', 'Relator term', 1, 0, '', 7, '', '', '', NULL, -1, '', '', '');
2276 INSERT INTO `marc_subfield_structure` VALUES ('700', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2277 INSERT INTO `marc_subfield_structure` VALUES ('700', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2278 INSERT INTO `marc_subfield_structure` VALUES ('700', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2279 INSERT INTO `marc_subfield_structure` VALUES ('700', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2280 INSERT INTO `marc_subfield_structure` VALUES ('700', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2281 INSERT INTO `marc_subfield_structure` VALUES ('700', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2282 INSERT INTO `marc_subfield_structure` VALUES ('700', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2283 INSERT INTO `marc_subfield_structure` VALUES ('700', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2284 INSERT INTO `marc_subfield_structure` VALUES ('700', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2285 INSERT INTO `marc_subfield_structure` VALUES ('700', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2286 INSERT INTO `marc_subfield_structure` VALUES ('700', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 7, '', '', '', NULL, 0, '', '', '');
2287 INSERT INTO `marc_subfield_structure` VALUES ('700', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2288 INSERT INTO `marc_subfield_structure` VALUES ('700', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2289 INSERT INTO `marc_subfield_structure` VALUES ('700', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2290 INSERT INTO `marc_subfield_structure` VALUES ('700', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2291 INSERT INTO `marc_subfield_structure` VALUES ('700', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2292 INSERT INTO `marc_subfield_structure` VALUES ('705', 'a', 'Personal name', 'Personal name', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2293 INSERT INTO `marc_subfield_structure` VALUES ('705', 'b', 'Numeration', 'Numeration', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2294 INSERT INTO `marc_subfield_structure` VALUES ('705', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2295 INSERT INTO `marc_subfield_structure` VALUES ('705', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2296 INSERT INTO `marc_subfield_structure` VALUES ('705', 'e', 'Relator term', 'Relator term', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2297 INSERT INTO `marc_subfield_structure` VALUES ('705', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2298 INSERT INTO `marc_subfield_structure` VALUES ('705', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2299 INSERT INTO `marc_subfield_structure` VALUES ('705', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2300 INSERT INTO `marc_subfield_structure` VALUES ('705', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2301 INSERT INTO `marc_subfield_structure` VALUES ('705', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2302 INSERT INTO `marc_subfield_structure` VALUES ('705', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2303 INSERT INTO `marc_subfield_structure` VALUES ('705', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2304 INSERT INTO `marc_subfield_structure` VALUES ('705', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2305 INSERT INTO `marc_subfield_structure` VALUES ('705', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2306 INSERT INTO `marc_subfield_structure` VALUES ('705', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2307 INSERT INTO `marc_subfield_structure` VALUES ('705', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2308 INSERT INTO `marc_subfield_structure` VALUES ('705', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2309 INSERT INTO `marc_subfield_structure` VALUES ('710', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2310 INSERT INTO `marc_subfield_structure` VALUES ('710', '4', 'Relator code', 'Relator code', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2311 INSERT INTO `marc_subfield_structure` VALUES ('710', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2312 INSERT INTO `marc_subfield_structure` VALUES ('710', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2313 INSERT INTO `marc_subfield_structure` VALUES ('710', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2314 INSERT INTO `marc_subfield_structure` VALUES ('710', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, '', '', '');
2315 INSERT INTO `marc_subfield_structure` VALUES ('710', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 7, '', '', '', NULL, -1, '', '', '');
2316 INSERT INTO `marc_subfield_structure` VALUES ('710', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 7, '', '', '', NULL, -1, '', '', '');
2317 INSERT INTO `marc_subfield_structure` VALUES ('710', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 7, '', '', '', NULL, -1, '', '', '');
2318 INSERT INTO `marc_subfield_structure` VALUES ('710', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 7, '', '', '', NULL, -1, '', '', '');
2319 INSERT INTO `marc_subfield_structure` VALUES ('710', 'e', 'Relator term', 'Relator term', 1, 0, '', 7, '', '', '', NULL, -1, '', '', '');
2320 INSERT INTO `marc_subfield_structure` VALUES ('710', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2321 INSERT INTO `marc_subfield_structure` VALUES ('710', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2322 INSERT INTO `marc_subfield_structure` VALUES ('710', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2323 INSERT INTO `marc_subfield_structure` VALUES ('710', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2324 INSERT INTO `marc_subfield_structure` VALUES ('710', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2325 INSERT INTO `marc_subfield_structure` VALUES ('710', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2326 INSERT INTO `marc_subfield_structure` VALUES ('710', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2327 INSERT INTO `marc_subfield_structure` VALUES ('710', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2328 INSERT INTO `marc_subfield_structure` VALUES ('710', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2329 INSERT INTO `marc_subfield_structure` VALUES ('710', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2330 INSERT INTO `marc_subfield_structure` VALUES ('710', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2331 INSERT INTO `marc_subfield_structure` VALUES ('710', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2332 INSERT INTO `marc_subfield_structure` VALUES ('710', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2333 INSERT INTO `marc_subfield_structure` VALUES ('710', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2334 INSERT INTO `marc_subfield_structure` VALUES ('711', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2335 INSERT INTO `marc_subfield_structure` VALUES ('711', '4', 'Relator code', 'Relator code', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2336 INSERT INTO `marc_subfield_structure` VALUES ('711', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2337 INSERT INTO `marc_subfield_structure` VALUES ('711', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2338 INSERT INTO `marc_subfield_structure` VALUES ('711', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2339 INSERT INTO `marc_subfield_structure` VALUES ('711', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, '', '', '');
2340 INSERT INTO `marc_subfield_structure` VALUES ('711', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 7, NULL, NULL, '', NULL, -1, '', '', '');
2341 INSERT INTO `marc_subfield_structure` VALUES ('711', 'b', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2342 INSERT INTO `marc_subfield_structure` VALUES ('711', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 7, NULL, NULL, '', NULL, -1, '', '', '');
2343 INSERT INTO `marc_subfield_structure` VALUES ('711', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 7, NULL, NULL, '', NULL, -1, '', '', '');
2344 INSERT INTO `marc_subfield_structure` VALUES ('711', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 7, NULL, NULL, '', NULL, -1, '', '', '');
2345 INSERT INTO `marc_subfield_structure` VALUES ('711', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2346 INSERT INTO `marc_subfield_structure` VALUES ('711', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2347 INSERT INTO `marc_subfield_structure` VALUES ('711', 'h', 'Medium', 'Medium', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2348 INSERT INTO `marc_subfield_structure` VALUES ('711', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2349 INSERT INTO `marc_subfield_structure` VALUES ('711', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2350 INSERT INTO `marc_subfield_structure` VALUES ('711', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2351 INSERT INTO `marc_subfield_structure` VALUES ('711', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2352 INSERT INTO `marc_subfield_structure` VALUES ('711', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2353 INSERT INTO `marc_subfield_structure` VALUES ('711', 's', 'Version', 'Version', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2354 INSERT INTO `marc_subfield_structure` VALUES ('711', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2355 INSERT INTO `marc_subfield_structure` VALUES ('711', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2356 INSERT INTO `marc_subfield_structure` VALUES ('711', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2357 INSERT INTO `marc_subfield_structure` VALUES ('715', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 7, '', '', '', 0, -6, '', '', '');
2358 INSERT INTO `marc_subfield_structure` VALUES ('715', 'a', 'Corporate name or jurisdiction name', 'Corporate name or jurisdiction name', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2359 INSERT INTO `marc_subfield_structure` VALUES ('715', 'b', 'Subordinate unit', 'Subordinate unit', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2360 INSERT INTO `marc_subfield_structure` VALUES ('715', 'e', 'Relator term', 'Relator term', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2361 INSERT INTO `marc_subfield_structure` VALUES ('715', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2362 INSERT INTO `marc_subfield_structure` VALUES ('715', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2363 INSERT INTO `marc_subfield_structure` VALUES ('715', 'h', 'Medium', 'Medium', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2364 INSERT INTO `marc_subfield_structure` VALUES ('715', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2365 INSERT INTO `marc_subfield_structure` VALUES ('715', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2366 INSERT INTO `marc_subfield_structure` VALUES ('715', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2367 INSERT INTO `marc_subfield_structure` VALUES ('715', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2368 INSERT INTO `marc_subfield_structure` VALUES ('715', 'r', 'Key for music', 'Key for music', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2369 INSERT INTO `marc_subfield_structure` VALUES ('715', 's', 'Version', 'Version', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2370 INSERT INTO `marc_subfield_structure` VALUES ('715', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2371 INSERT INTO `marc_subfield_structure` VALUES ('715', 'u', 'Nonprinting information', 'Nonprinting information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2372 INSERT INTO `marc_subfield_structure` VALUES ('720', '4', 'Relator code', 'Relator code', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2373 INSERT INTO `marc_subfield_structure` VALUES ('720', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2374 INSERT INTO `marc_subfield_structure` VALUES ('720', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2375 INSERT INTO `marc_subfield_structure` VALUES ('720', 'a', 'Name', 'Name', 0, 0, '', 7, NULL, NULL, '', NULL, -1, '', '', '');
2376 INSERT INTO `marc_subfield_structure` VALUES ('720', 'e', 'Relator term', 'Relator term', 1, 0, NULL, 7, NULL, NULL, '', NULL, -1, '', '', '');
2377 INSERT INTO `marc_subfield_structure` VALUES ('730', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2378 INSERT INTO `marc_subfield_structure` VALUES ('730', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2379 INSERT INTO `marc_subfield_structure` VALUES ('730', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2380 INSERT INTO `marc_subfield_structure` VALUES ('730', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2381 INSERT INTO `marc_subfield_structure` VALUES ('730', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, '', '', '');
2382 INSERT INTO `marc_subfield_structure` VALUES ('730', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 7, '', '', '', NULL, -1, '', '', '');
2383 INSERT INTO `marc_subfield_structure` VALUES ('730', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2384 INSERT INTO `marc_subfield_structure` VALUES ('730', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2385 INSERT INTO `marc_subfield_structure` VALUES ('730', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2386 INSERT INTO `marc_subfield_structure` VALUES ('730', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2387 INSERT INTO `marc_subfield_structure` VALUES ('730', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2388 INSERT INTO `marc_subfield_structure` VALUES ('730', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -1, '', '', '');
2389 INSERT INTO `marc_subfield_structure` VALUES ('730', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2390 INSERT INTO `marc_subfield_structure` VALUES ('730', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2391 INSERT INTO `marc_subfield_structure` VALUES ('730', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2392 INSERT INTO `marc_subfield_structure` VALUES ('730', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2393 INSERT INTO `marc_subfield_structure` VALUES ('730', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2394 INSERT INTO `marc_subfield_structure` VALUES ('730', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2395 INSERT INTO `marc_subfield_structure` VALUES ('730', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2396 INSERT INTO `marc_subfield_structure` VALUES ('730', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2397 INSERT INTO `marc_subfield_structure` VALUES ('740', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2398 INSERT INTO `marc_subfield_structure` VALUES ('740', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2399 INSERT INTO `marc_subfield_structure` VALUES ('740', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2400 INSERT INTO `marc_subfield_structure` VALUES ('740', 'a', 'Uncontrolled related/analytical title', 'Uncontrolled related/analytical title', 0, 0, '', 7, '', '', '', NULL, 0, '', '', '');
2401 INSERT INTO `marc_subfield_structure` VALUES ('740', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2402 INSERT INTO `marc_subfield_structure` VALUES ('740', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2403 INSERT INTO `marc_subfield_structure` VALUES ('740', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2404 INSERT INTO `marc_subfield_structure` VALUES ('752', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2405 INSERT INTO `marc_subfield_structure` VALUES ('752', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2406 INSERT INTO `marc_subfield_structure` VALUES ('752', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2407 INSERT INTO `marc_subfield_structure` VALUES ('752', 'a', 'Country or larger entity', 'Country or larger entity', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2408 INSERT INTO `marc_subfield_structure` VALUES ('752', 'b', 'First-order political jurisdiction', 'First-order political jurisdiction', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2409 INSERT INTO `marc_subfield_structure` VALUES ('752', 'c', 'Intermediate political jurisdiction', 'Intermediate political jurisdiction', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2410 INSERT INTO `marc_subfield_structure` VALUES ('752', 'd', 'City', 'City', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2411 INSERT INTO `marc_subfield_structure` VALUES ('752', 'f', 'City subsection', 'City subsection', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2412 INSERT INTO `marc_subfield_structure` VALUES ('752', 'g', 'Other nonjurisdictional geographic region and feature', 'Other nonjurisdictional geographic region and feature', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2413 INSERT INTO `marc_subfield_structure` VALUES ('752', 'h', 'Extraterrestrial area', 'Extraterrestrial area', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2414 INSERT INTO `marc_subfield_structure` VALUES ('753', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2415 INSERT INTO `marc_subfield_structure` VALUES ('753', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2416 INSERT INTO `marc_subfield_structure` VALUES ('753', 'a', 'Make and model of machine', 'Make and model of machine', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2417 INSERT INTO `marc_subfield_structure` VALUES ('753', 'b', 'Programming language', 'Programming language', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2418 INSERT INTO `marc_subfield_structure` VALUES ('753', 'c', 'Operating system', 'Operating system', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2419 INSERT INTO `marc_subfield_structure` VALUES ('754', '2', 'Source of taxonomic identification', 'Source of taxonomic identification', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2420 INSERT INTO `marc_subfield_structure` VALUES ('754', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2421 INSERT INTO `marc_subfield_structure` VALUES ('754', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2422 INSERT INTO `marc_subfield_structure` VALUES ('754', 'a', 'Taxonomic name', 'Taxonomic name', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2423 INSERT INTO `marc_subfield_structure` VALUES ('754', 'c', 'Taxonomic category', 'Taxonomic category', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2424 INSERT INTO `marc_subfield_structure` VALUES ('754', 'd', 'Common or alternative name', 'Common or alternative name', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2425 INSERT INTO `marc_subfield_structure` VALUES ('754', 'x', 'Non-public note', 'Non-public note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2426 INSERT INTO `marc_subfield_structure` VALUES ('754', 'z', 'Public note', 'Public note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2427 INSERT INTO `marc_subfield_structure` VALUES ('755', '2', 'Source of taxonomic identification', 'Source of taxonomic identification', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2428 INSERT INTO `marc_subfield_structure` VALUES ('755', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2429 INSERT INTO `marc_subfield_structure` VALUES ('755', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2430 INSERT INTO `marc_subfield_structure` VALUES ('755', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2431 INSERT INTO `marc_subfield_structure` VALUES ('755', 'a', 'Access term', 'Access term', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2432 INSERT INTO `marc_subfield_structure` VALUES ('755', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2433 INSERT INTO `marc_subfield_structure` VALUES ('755', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2434 INSERT INTO `marc_subfield_structure` VALUES ('755', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2435 INSERT INTO `marc_subfield_structure` VALUES ('760', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2436 INSERT INTO `marc_subfield_structure` VALUES ('760', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2437 INSERT INTO `marc_subfield_structure` VALUES ('760', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2438 INSERT INTO `marc_subfield_structure` VALUES ('760', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2439 INSERT INTO `marc_subfield_structure` VALUES ('760', 'b', 'Edition', 'Edition', 0, 0, NULL, -6, NULL, NULL, '', NULL, 0, '', '', '');
2440 INSERT INTO `marc_subfield_structure` VALUES ('760', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2441 INSERT INTO `marc_subfield_structure` VALUES ('760', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2442 INSERT INTO `marc_subfield_structure` VALUES ('760', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2443 INSERT INTO `marc_subfield_structure` VALUES ('760', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2444 INSERT INTO `marc_subfield_structure` VALUES ('760', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2445 INSERT INTO `marc_subfield_structure` VALUES ('760', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2446 INSERT INTO `marc_subfield_structure` VALUES ('760', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2447 INSERT INTO `marc_subfield_structure` VALUES ('760', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2448 INSERT INTO `marc_subfield_structure` VALUES ('760', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2449 INSERT INTO `marc_subfield_structure` VALUES ('760', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2450 INSERT INTO `marc_subfield_structure` VALUES ('760', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2451 INSERT INTO `marc_subfield_structure` VALUES ('760', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2452 INSERT INTO `marc_subfield_structure` VALUES ('760', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2453 INSERT INTO `marc_subfield_structure` VALUES ('760', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2454 INSERT INTO `marc_subfield_structure` VALUES ('762', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2455 INSERT INTO `marc_subfield_structure` VALUES ('762', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2456 INSERT INTO `marc_subfield_structure` VALUES ('762', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2457 INSERT INTO `marc_subfield_structure` VALUES ('762', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2458 INSERT INTO `marc_subfield_structure` VALUES ('762', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2459 INSERT INTO `marc_subfield_structure` VALUES ('762', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2460 INSERT INTO `marc_subfield_structure` VALUES ('762', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2461 INSERT INTO `marc_subfield_structure` VALUES ('762', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2462 INSERT INTO `marc_subfield_structure` VALUES ('762', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2463 INSERT INTO `marc_subfield_structure` VALUES ('762', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2464 INSERT INTO `marc_subfield_structure` VALUES ('762', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2465 INSERT INTO `marc_subfield_structure` VALUES ('762', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2466 INSERT INTO `marc_subfield_structure` VALUES ('762', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2467 INSERT INTO `marc_subfield_structure` VALUES ('762', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2468 INSERT INTO `marc_subfield_structure` VALUES ('762', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2469 INSERT INTO `marc_subfield_structure` VALUES ('762', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2470 INSERT INTO `marc_subfield_structure` VALUES ('762', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2471 INSERT INTO `marc_subfield_structure` VALUES ('762', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2472 INSERT INTO `marc_subfield_structure` VALUES ('762', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2473 INSERT INTO `marc_subfield_structure` VALUES ('765', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2474 INSERT INTO `marc_subfield_structure` VALUES ('765', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2475 INSERT INTO `marc_subfield_structure` VALUES ('765', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2476 INSERT INTO `marc_subfield_structure` VALUES ('765', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2477 INSERT INTO `marc_subfield_structure` VALUES ('765', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2478 INSERT INTO `marc_subfield_structure` VALUES ('765', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2479 INSERT INTO `marc_subfield_structure` VALUES ('765', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2480 INSERT INTO `marc_subfield_structure` VALUES ('765', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2481 INSERT INTO `marc_subfield_structure` VALUES ('765', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2482 INSERT INTO `marc_subfield_structure` VALUES ('765', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2483 INSERT INTO `marc_subfield_structure` VALUES ('765', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2484 INSERT INTO `marc_subfield_structure` VALUES ('765', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2485 INSERT INTO `marc_subfield_structure` VALUES ('765', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2486 INSERT INTO `marc_subfield_structure` VALUES ('765', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2487 INSERT INTO `marc_subfield_structure` VALUES ('765', 'q', 'Parallel title (BK SE)  [OBSOLETE]', 'Parallel title (BK SE)  [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2488 INSERT INTO `marc_subfield_structure` VALUES ('765', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2489 INSERT INTO `marc_subfield_structure` VALUES ('765', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2490 INSERT INTO `marc_subfield_structure` VALUES ('765', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2491 INSERT INTO `marc_subfield_structure` VALUES ('765', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2492 INSERT INTO `marc_subfield_structure` VALUES ('765', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2493 INSERT INTO `marc_subfield_structure` VALUES ('765', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2494 INSERT INTO `marc_subfield_structure` VALUES ('765', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2495 INSERT INTO `marc_subfield_structure` VALUES ('765', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2496 INSERT INTO `marc_subfield_structure` VALUES ('767', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2497 INSERT INTO `marc_subfield_structure` VALUES ('767', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2498 INSERT INTO `marc_subfield_structure` VALUES ('767', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2499 INSERT INTO `marc_subfield_structure` VALUES ('767', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2500 INSERT INTO `marc_subfield_structure` VALUES ('767', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2501 INSERT INTO `marc_subfield_structure` VALUES ('767', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2502 INSERT INTO `marc_subfield_structure` VALUES ('767', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2503 INSERT INTO `marc_subfield_structure` VALUES ('767', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2504 INSERT INTO `marc_subfield_structure` VALUES ('767', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2505 INSERT INTO `marc_subfield_structure` VALUES ('767', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2506 INSERT INTO `marc_subfield_structure` VALUES ('767', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2507 INSERT INTO `marc_subfield_structure` VALUES ('767', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2508 INSERT INTO `marc_subfield_structure` VALUES ('767', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2509 INSERT INTO `marc_subfield_structure` VALUES ('767', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2510 INSERT INTO `marc_subfield_structure` VALUES ('767', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2511 INSERT INTO `marc_subfield_structure` VALUES ('767', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2512 INSERT INTO `marc_subfield_structure` VALUES ('767', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2513 INSERT INTO `marc_subfield_structure` VALUES ('767', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2514 INSERT INTO `marc_subfield_structure` VALUES ('767', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2515 INSERT INTO `marc_subfield_structure` VALUES ('767', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2516 INSERT INTO `marc_subfield_structure` VALUES ('767', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2517 INSERT INTO `marc_subfield_structure` VALUES ('767', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2518 INSERT INTO `marc_subfield_structure` VALUES ('767', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2519 INSERT INTO `marc_subfield_structure` VALUES ('770', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2520 INSERT INTO `marc_subfield_structure` VALUES ('770', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2521 INSERT INTO `marc_subfield_structure` VALUES ('770', '8', 'Field link and sequence number', 'Field link and sequence number ', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2522 INSERT INTO `marc_subfield_structure` VALUES ('770', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2523 INSERT INTO `marc_subfield_structure` VALUES ('770', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2524 INSERT INTO `marc_subfield_structure` VALUES ('770', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2525 INSERT INTO `marc_subfield_structure` VALUES ('770', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2526 INSERT INTO `marc_subfield_structure` VALUES ('770', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2527 INSERT INTO `marc_subfield_structure` VALUES ('770', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2528 INSERT INTO `marc_subfield_structure` VALUES ('770', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2529 INSERT INTO `marc_subfield_structure` VALUES ('770', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2530 INSERT INTO `marc_subfield_structure` VALUES ('770', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2531 INSERT INTO `marc_subfield_structure` VALUES ('770', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2532 INSERT INTO `marc_subfield_structure` VALUES ('770', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2533 INSERT INTO `marc_subfield_structure` VALUES ('770', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2534 INSERT INTO `marc_subfield_structure` VALUES ('770', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2535 INSERT INTO `marc_subfield_structure` VALUES ('770', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2536 INSERT INTO `marc_subfield_structure` VALUES ('770', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2537 INSERT INTO `marc_subfield_structure` VALUES ('770', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2538 INSERT INTO `marc_subfield_structure` VALUES ('770', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2539 INSERT INTO `marc_subfield_structure` VALUES ('770', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2540 INSERT INTO `marc_subfield_structure` VALUES ('770', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2541 INSERT INTO `marc_subfield_structure` VALUES ('770', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2542 INSERT INTO `marc_subfield_structure` VALUES ('772', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2543 INSERT INTO `marc_subfield_structure` VALUES ('772', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2544 INSERT INTO `marc_subfield_structure` VALUES ('772', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2545 INSERT INTO `marc_subfield_structure` VALUES ('772', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2546 INSERT INTO `marc_subfield_structure` VALUES ('772', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2547 INSERT INTO `marc_subfield_structure` VALUES ('772', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2548 INSERT INTO `marc_subfield_structure` VALUES ('772', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2549 INSERT INTO `marc_subfield_structure` VALUES ('772', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2550 INSERT INTO `marc_subfield_structure` VALUES ('772', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2551 INSERT INTO `marc_subfield_structure` VALUES ('772', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2552 INSERT INTO `marc_subfield_structure` VALUES ('772', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2553 INSERT INTO `marc_subfield_structure` VALUES ('772', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2554 INSERT INTO `marc_subfield_structure` VALUES ('772', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2555 INSERT INTO `marc_subfield_structure` VALUES ('772', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2556 INSERT INTO `marc_subfield_structure` VALUES ('772', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2557 INSERT INTO `marc_subfield_structure` VALUES ('772', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2558 INSERT INTO `marc_subfield_structure` VALUES ('772', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2559 INSERT INTO `marc_subfield_structure` VALUES ('772', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2560 INSERT INTO `marc_subfield_structure` VALUES ('772', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2561 INSERT INTO `marc_subfield_structure` VALUES ('772', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2562 INSERT INTO `marc_subfield_structure` VALUES ('772', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2563 INSERT INTO `marc_subfield_structure` VALUES ('772', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2564 INSERT INTO `marc_subfield_structure` VALUES ('772', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2565 INSERT INTO `marc_subfield_structure` VALUES ('773', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2566 INSERT INTO `marc_subfield_structure` VALUES ('773', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2567 INSERT INTO `marc_subfield_structure` VALUES ('773', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2568 INSERT INTO `marc_subfield_structure` VALUES ('773', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2569 INSERT INTO `marc_subfield_structure` VALUES ('773', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2570 INSERT INTO `marc_subfield_structure` VALUES ('773', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2571 INSERT INTO `marc_subfield_structure` VALUES ('773', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2572 INSERT INTO `marc_subfield_structure` VALUES ('773', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2573 INSERT INTO `marc_subfield_structure` VALUES ('773', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2574 INSERT INTO `marc_subfield_structure` VALUES ('773', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2575 INSERT INTO `marc_subfield_structure` VALUES ('773', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2576 INSERT INTO `marc_subfield_structure` VALUES ('773', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2577 INSERT INTO `marc_subfield_structure` VALUES ('773', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2578 INSERT INTO `marc_subfield_structure` VALUES ('773', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2579 INSERT INTO `marc_subfield_structure` VALUES ('773', 'p', 'Abbreviated title', 'Abbreviated title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2580 INSERT INTO `marc_subfield_structure` VALUES ('773', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2581 INSERT INTO `marc_subfield_structure` VALUES ('773', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2582 INSERT INTO `marc_subfield_structure` VALUES ('773', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2583 INSERT INTO `marc_subfield_structure` VALUES ('773', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2584 INSERT INTO `marc_subfield_structure` VALUES ('773', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2585 INSERT INTO `marc_subfield_structure` VALUES ('773', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2586 INSERT INTO `marc_subfield_structure` VALUES ('773', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2587 INSERT INTO `marc_subfield_structure` VALUES ('773', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2588 INSERT INTO `marc_subfield_structure` VALUES ('774', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2589 INSERT INTO `marc_subfield_structure` VALUES ('774', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2590 INSERT INTO `marc_subfield_structure` VALUES ('774', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2591 INSERT INTO `marc_subfield_structure` VALUES ('774', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2592 INSERT INTO `marc_subfield_structure` VALUES ('774', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2593 INSERT INTO `marc_subfield_structure` VALUES ('774', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2594 INSERT INTO `marc_subfield_structure` VALUES ('774', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2595 INSERT INTO `marc_subfield_structure` VALUES ('774', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2596 INSERT INTO `marc_subfield_structure` VALUES ('774', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2597 INSERT INTO `marc_subfield_structure` VALUES ('774', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2598 INSERT INTO `marc_subfield_structure` VALUES ('774', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2599 INSERT INTO `marc_subfield_structure` VALUES ('774', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2600 INSERT INTO `marc_subfield_structure` VALUES ('774', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2601 INSERT INTO `marc_subfield_structure` VALUES ('774', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2602 INSERT INTO `marc_subfield_structure` VALUES ('774', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2603 INSERT INTO `marc_subfield_structure` VALUES ('774', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2604 INSERT INTO `marc_subfield_structure` VALUES ('774', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2605 INSERT INTO `marc_subfield_structure` VALUES ('774', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2606 INSERT INTO `marc_subfield_structure` VALUES ('774', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2607 INSERT INTO `marc_subfield_structure` VALUES ('774', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2608 INSERT INTO `marc_subfield_structure` VALUES ('774', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2609 INSERT INTO `marc_subfield_structure` VALUES ('774', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2610 INSERT INTO `marc_subfield_structure` VALUES ('775', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2611 INSERT INTO `marc_subfield_structure` VALUES ('775', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2612 INSERT INTO `marc_subfield_structure` VALUES ('775', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2613 INSERT INTO `marc_subfield_structure` VALUES ('775', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2614 INSERT INTO `marc_subfield_structure` VALUES ('775', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2615 INSERT INTO `marc_subfield_structure` VALUES ('775', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2616 INSERT INTO `marc_subfield_structure` VALUES ('775', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2617 INSERT INTO `marc_subfield_structure` VALUES ('775', 'e', 'Language code', 'Language code', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2618 INSERT INTO `marc_subfield_structure` VALUES ('775', 'f', 'Country code', 'Country code', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2619 INSERT INTO `marc_subfield_structure` VALUES ('775', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2620 INSERT INTO `marc_subfield_structure` VALUES ('775', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2621 INSERT INTO `marc_subfield_structure` VALUES ('775', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2622 INSERT INTO `marc_subfield_structure` VALUES ('775', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2623 INSERT INTO `marc_subfield_structure` VALUES ('775', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2624 INSERT INTO `marc_subfield_structure` VALUES ('775', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2625 INSERT INTO `marc_subfield_structure` VALUES ('775', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2626 INSERT INTO `marc_subfield_structure` VALUES ('775', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2627 INSERT INTO `marc_subfield_structure` VALUES ('775', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2628 INSERT INTO `marc_subfield_structure` VALUES ('775', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2629 INSERT INTO `marc_subfield_structure` VALUES ('775', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2630 INSERT INTO `marc_subfield_structure` VALUES ('775', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2631 INSERT INTO `marc_subfield_structure` VALUES ('775', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2632 INSERT INTO `marc_subfield_structure` VALUES ('775', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2633 INSERT INTO `marc_subfield_structure` VALUES ('775', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2634 INSERT INTO `marc_subfield_structure` VALUES ('775', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2635 INSERT INTO `marc_subfield_structure` VALUES ('776', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2636 INSERT INTO `marc_subfield_structure` VALUES ('776', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2637 INSERT INTO `marc_subfield_structure` VALUES ('776', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2638 INSERT INTO `marc_subfield_structure` VALUES ('776', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2639 INSERT INTO `marc_subfield_structure` VALUES ('776', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2640 INSERT INTO `marc_subfield_structure` VALUES ('776', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2641 INSERT INTO `marc_subfield_structure` VALUES ('776', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2642 INSERT INTO `marc_subfield_structure` VALUES ('776', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2643 INSERT INTO `marc_subfield_structure` VALUES ('776', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2644 INSERT INTO `marc_subfield_structure` VALUES ('776', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2645 INSERT INTO `marc_subfield_structure` VALUES ('776', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2646 INSERT INTO `marc_subfield_structure` VALUES ('776', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2647 INSERT INTO `marc_subfield_structure` VALUES ('776', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2648 INSERT INTO `marc_subfield_structure` VALUES ('776', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2649 INSERT INTO `marc_subfield_structure` VALUES ('776', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2650 INSERT INTO `marc_subfield_structure` VALUES ('776', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2651 INSERT INTO `marc_subfield_structure` VALUES ('776', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2652 INSERT INTO `marc_subfield_structure` VALUES ('776', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2653 INSERT INTO `marc_subfield_structure` VALUES ('776', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2654 INSERT INTO `marc_subfield_structure` VALUES ('776', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2655 INSERT INTO `marc_subfield_structure` VALUES ('776', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2656 INSERT INTO `marc_subfield_structure` VALUES ('776', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2657 INSERT INTO `marc_subfield_structure` VALUES ('776', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2658 INSERT INTO `marc_subfield_structure` VALUES ('777', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2659 INSERT INTO `marc_subfield_structure` VALUES ('777', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2660 INSERT INTO `marc_subfield_structure` VALUES ('777', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2661 INSERT INTO `marc_subfield_structure` VALUES ('777', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2662 INSERT INTO `marc_subfield_structure` VALUES ('777', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2663 INSERT INTO `marc_subfield_structure` VALUES ('777', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2664 INSERT INTO `marc_subfield_structure` VALUES ('777', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2665 INSERT INTO `marc_subfield_structure` VALUES ('777', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2666 INSERT INTO `marc_subfield_structure` VALUES ('777', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2667 INSERT INTO `marc_subfield_structure` VALUES ('777', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2668 INSERT INTO `marc_subfield_structure` VALUES ('777', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2669 INSERT INTO `marc_subfield_structure` VALUES ('777', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2670 INSERT INTO `marc_subfield_structure` VALUES ('777', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2671 INSERT INTO `marc_subfield_structure` VALUES ('777', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2672 INSERT INTO `marc_subfield_structure` VALUES ('777', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2673 INSERT INTO `marc_subfield_structure` VALUES ('777', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2674 INSERT INTO `marc_subfield_structure` VALUES ('777', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2675 INSERT INTO `marc_subfield_structure` VALUES ('777', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2676 INSERT INTO `marc_subfield_structure` VALUES ('777', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2677 INSERT INTO `marc_subfield_structure` VALUES ('777', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2678 INSERT INTO `marc_subfield_structure` VALUES ('780', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2679 INSERT INTO `marc_subfield_structure` VALUES ('780', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2680 INSERT INTO `marc_subfield_structure` VALUES ('780', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2681 INSERT INTO `marc_subfield_structure` VALUES ('780', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2682 INSERT INTO `marc_subfield_structure` VALUES ('780', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2683 INSERT INTO `marc_subfield_structure` VALUES ('780', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2684 INSERT INTO `marc_subfield_structure` VALUES ('780', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2685 INSERT INTO `marc_subfield_structure` VALUES ('780', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2686 INSERT INTO `marc_subfield_structure` VALUES ('780', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2687 INSERT INTO `marc_subfield_structure` VALUES ('780', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2688 INSERT INTO `marc_subfield_structure` VALUES ('780', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2689 INSERT INTO `marc_subfield_structure` VALUES ('780', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2690 INSERT INTO `marc_subfield_structure` VALUES ('780', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2691 INSERT INTO `marc_subfield_structure` VALUES ('780', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2692 INSERT INTO `marc_subfield_structure` VALUES ('780', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2693 INSERT INTO `marc_subfield_structure` VALUES ('780', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2694 INSERT INTO `marc_subfield_structure` VALUES ('780', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2695 INSERT INTO `marc_subfield_structure` VALUES ('780', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2696 INSERT INTO `marc_subfield_structure` VALUES ('780', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2697 INSERT INTO `marc_subfield_structure` VALUES ('780', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2698 INSERT INTO `marc_subfield_structure` VALUES ('780', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2699 INSERT INTO `marc_subfield_structure` VALUES ('780', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2700 INSERT INTO `marc_subfield_structure` VALUES ('780', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2701 INSERT INTO `marc_subfield_structure` VALUES ('785', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2702 INSERT INTO `marc_subfield_structure` VALUES ('785', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2703 INSERT INTO `marc_subfield_structure` VALUES ('785', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2704 INSERT INTO `marc_subfield_structure` VALUES ('785', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2705 INSERT INTO `marc_subfield_structure` VALUES ('785', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2706 INSERT INTO `marc_subfield_structure` VALUES ('785', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2707 INSERT INTO `marc_subfield_structure` VALUES ('785', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2708 INSERT INTO `marc_subfield_structure` VALUES ('785', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2709 INSERT INTO `marc_subfield_structure` VALUES ('785', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2710 INSERT INTO `marc_subfield_structure` VALUES ('785', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2711 INSERT INTO `marc_subfield_structure` VALUES ('785', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2712 INSERT INTO `marc_subfield_structure` VALUES ('785', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2713 INSERT INTO `marc_subfield_structure` VALUES ('785', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2714 INSERT INTO `marc_subfield_structure` VALUES ('785', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2715 INSERT INTO `marc_subfield_structure` VALUES ('785', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2716 INSERT INTO `marc_subfield_structure` VALUES ('785', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2717 INSERT INTO `marc_subfield_structure` VALUES ('785', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2718 INSERT INTO `marc_subfield_structure` VALUES ('785', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2719 INSERT INTO `marc_subfield_structure` VALUES ('785', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2720 INSERT INTO `marc_subfield_structure` VALUES ('785', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2721 INSERT INTO `marc_subfield_structure` VALUES ('785', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2722 INSERT INTO `marc_subfield_structure` VALUES ('785', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2723 INSERT INTO `marc_subfield_structure` VALUES ('785', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2724 INSERT INTO `marc_subfield_structure` VALUES ('786', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2725 INSERT INTO `marc_subfield_structure` VALUES ('786', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2726 INSERT INTO `marc_subfield_structure` VALUES ('786', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2727 INSERT INTO `marc_subfield_structure` VALUES ('786', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2728 INSERT INTO `marc_subfield_structure` VALUES ('786', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2729 INSERT INTO `marc_subfield_structure` VALUES ('786', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2730 INSERT INTO `marc_subfield_structure` VALUES ('786', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2731 INSERT INTO `marc_subfield_structure` VALUES ('786', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2732 INSERT INTO `marc_subfield_structure` VALUES ('786', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2733 INSERT INTO `marc_subfield_structure` VALUES ('786', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2734 INSERT INTO `marc_subfield_structure` VALUES ('786', 'j', 'Period of content', 'Period of content', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2735 INSERT INTO `marc_subfield_structure` VALUES ('786', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2736 INSERT INTO `marc_subfield_structure` VALUES ('786', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2737 INSERT INTO `marc_subfield_structure` VALUES ('786', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2738 INSERT INTO `marc_subfield_structure` VALUES ('786', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2739 INSERT INTO `marc_subfield_structure` VALUES ('786', 'p', 'Abbreviated title', 'Abbreviated title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2740 INSERT INTO `marc_subfield_structure` VALUES ('786', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2741 INSERT INTO `marc_subfield_structure` VALUES ('786', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2742 INSERT INTO `marc_subfield_structure` VALUES ('786', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2743 INSERT INTO `marc_subfield_structure` VALUES ('786', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2744 INSERT INTO `marc_subfield_structure` VALUES ('786', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2745 INSERT INTO `marc_subfield_structure` VALUES ('786', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2746 INSERT INTO `marc_subfield_structure` VALUES ('786', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2747 INSERT INTO `marc_subfield_structure` VALUES ('786', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2748 INSERT INTO `marc_subfield_structure` VALUES ('787', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2749 INSERT INTO `marc_subfield_structure` VALUES ('787', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2750 INSERT INTO `marc_subfield_structure` VALUES ('787', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2751 INSERT INTO `marc_subfield_structure` VALUES ('787', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2752 INSERT INTO `marc_subfield_structure` VALUES ('787', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2753 INSERT INTO `marc_subfield_structure` VALUES ('787', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2754 INSERT INTO `marc_subfield_structure` VALUES ('787', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2755 INSERT INTO `marc_subfield_structure` VALUES ('787', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2756 INSERT INTO `marc_subfield_structure` VALUES ('787', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2757 INSERT INTO `marc_subfield_structure` VALUES ('787', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2758 INSERT INTO `marc_subfield_structure` VALUES ('787', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2759 INSERT INTO `marc_subfield_structure` VALUES ('787', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2760 INSERT INTO `marc_subfield_structure` VALUES ('787', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2761 INSERT INTO `marc_subfield_structure` VALUES ('787', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2762 INSERT INTO `marc_subfield_structure` VALUES ('787', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2763 INSERT INTO `marc_subfield_structure` VALUES ('787', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2764 INSERT INTO `marc_subfield_structure` VALUES ('787', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2765 INSERT INTO `marc_subfield_structure` VALUES ('787', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2766 INSERT INTO `marc_subfield_structure` VALUES ('787', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2767 INSERT INTO `marc_subfield_structure` VALUES ('787', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2768 INSERT INTO `marc_subfield_structure` VALUES ('787', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2769 INSERT INTO `marc_subfield_structure` VALUES ('787', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2770 INSERT INTO `marc_subfield_structure` VALUES ('787', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2771 INSERT INTO `marc_subfield_structure` VALUES ('789', '%', '%', '%', 0, 0, '', 7, '', '', '', 0, -6, '', '', '');
2772 INSERT INTO `marc_subfield_structure` VALUES ('789', '2', '2', '2', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2773 INSERT INTO `marc_subfield_structure` VALUES ('789', '3', '3', '3', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2774 INSERT INTO `marc_subfield_structure` VALUES ('789', '4', '4', '4', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2775 INSERT INTO `marc_subfield_structure` VALUES ('789', '5', '5', '5', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2776 INSERT INTO `marc_subfield_structure` VALUES ('789', '6', '6', '6', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2777 INSERT INTO `marc_subfield_structure` VALUES ('789', '7', '7', '7', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2778 INSERT INTO `marc_subfield_structure` VALUES ('789', '8', '8', '8', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2779 INSERT INTO `marc_subfield_structure` VALUES ('789', '9', '9', '9', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2780 INSERT INTO `marc_subfield_structure` VALUES ('789', 'a', 'a', 'a', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2781 INSERT INTO `marc_subfield_structure` VALUES ('789', 'b', 'b', 'b', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2782 INSERT INTO `marc_subfield_structure` VALUES ('789', 'c', 'c', 'c', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2783 INSERT INTO `marc_subfield_structure` VALUES ('789', 'd', 'd', 'd', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2784 INSERT INTO `marc_subfield_structure` VALUES ('789', 'e', 'e', 'e', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2785 INSERT INTO `marc_subfield_structure` VALUES ('789', 'f', 'f', 'f', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2786 INSERT INTO `marc_subfield_structure` VALUES ('789', 'g', 'g', 'g', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2787 INSERT INTO `marc_subfield_structure` VALUES ('789', 'h', 'h', 'h', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2788 INSERT INTO `marc_subfield_structure` VALUES ('789', 'i', 'i', 'i', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2789 INSERT INTO `marc_subfield_structure` VALUES ('789', 'j', 'j', 'j', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2790 INSERT INTO `marc_subfield_structure` VALUES ('789', 'k', 'k', 'k', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2791 INSERT INTO `marc_subfield_structure` VALUES ('789', 'l', 'l', 'l', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2792 INSERT INTO `marc_subfield_structure` VALUES ('789', 'm', 'm', 'm', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2793 INSERT INTO `marc_subfield_structure` VALUES ('789', 'n', 'n', 'n', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2794 INSERT INTO `marc_subfield_structure` VALUES ('789', 'o', 'o', 'o', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2795 INSERT INTO `marc_subfield_structure` VALUES ('789', 'p', 'p', 'p', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2796 INSERT INTO `marc_subfield_structure` VALUES ('789', 'q', 'q', 'q', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2797 INSERT INTO `marc_subfield_structure` VALUES ('789', 'r', 'r', 'r', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2798 INSERT INTO `marc_subfield_structure` VALUES ('789', 's', 's', 's', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2799 INSERT INTO `marc_subfield_structure` VALUES ('789', 't', 't', 't', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2800 INSERT INTO `marc_subfield_structure` VALUES ('789', 'u', 'u', 'u', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2801 INSERT INTO `marc_subfield_structure` VALUES ('789', 'v', 'v', 'v', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2802 INSERT INTO `marc_subfield_structure` VALUES ('789', 'w', 'w', 'w', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2803 INSERT INTO `marc_subfield_structure` VALUES ('789', 'x', 'x', 'x', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2804 INSERT INTO `marc_subfield_structure` VALUES ('789', 'y', 'y', 'y', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2805 INSERT INTO `marc_subfield_structure` VALUES ('789', 'z', 'z', 'z', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2806 INSERT INTO `marc_subfield_structure` VALUES ('796', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 7, '', '', '', 0, -6, '', '', '');
2807 INSERT INTO `marc_subfield_structure` VALUES ('796', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2808 INSERT INTO `marc_subfield_structure` VALUES ('796', '4', 'Relator code', 'Relator code', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2809 INSERT INTO `marc_subfield_structure` VALUES ('796', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2810 INSERT INTO `marc_subfield_structure` VALUES ('796', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2811 INSERT INTO `marc_subfield_structure` VALUES ('796', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2812 INSERT INTO `marc_subfield_structure` VALUES ('796', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, '', '', '');
2813 INSERT INTO `marc_subfield_structure` VALUES ('796', 'a', 'Personal name', 'Personal name', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2814 INSERT INTO `marc_subfield_structure` VALUES ('796', 'b', 'Numeration', 'Numeration', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2815 INSERT INTO `marc_subfield_structure` VALUES ('796', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2816 INSERT INTO `marc_subfield_structure` VALUES ('796', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2817 INSERT INTO `marc_subfield_structure` VALUES ('796', 'e', 'Relator term', 'Relator term', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2818 INSERT INTO `marc_subfield_structure` VALUES ('796', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2819 INSERT INTO `marc_subfield_structure` VALUES ('796', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2820 INSERT INTO `marc_subfield_structure` VALUES ('796', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2821 INSERT INTO `marc_subfield_structure` VALUES ('796', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2822 INSERT INTO `marc_subfield_structure` VALUES ('796', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2823 INSERT INTO `marc_subfield_structure` VALUES ('796', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2824 INSERT INTO `marc_subfield_structure` VALUES ('796', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2825 INSERT INTO `marc_subfield_structure` VALUES ('796', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2826 INSERT INTO `marc_subfield_structure` VALUES ('796', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2827 INSERT INTO `marc_subfield_structure` VALUES ('796', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2828 INSERT INTO `marc_subfield_structure` VALUES ('796', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2829 INSERT INTO `marc_subfield_structure` VALUES ('796', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2830 INSERT INTO `marc_subfield_structure` VALUES ('796', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2831 INSERT INTO `marc_subfield_structure` VALUES ('796', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2832 INSERT INTO `marc_subfield_structure` VALUES ('796', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2833 INSERT INTO `marc_subfield_structure` VALUES ('796', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2834 INSERT INTO `marc_subfield_structure` VALUES ('797', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 7, '', '', '', 0, -6, '', '', '');
2835 INSERT INTO `marc_subfield_structure` VALUES ('797', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2836 INSERT INTO `marc_subfield_structure` VALUES ('797', '4', 'Relator code', 'Relator code', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2837 INSERT INTO `marc_subfield_structure` VALUES ('797', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2838 INSERT INTO `marc_subfield_structure` VALUES ('797', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2839 INSERT INTO `marc_subfield_structure` VALUES ('797', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2840 INSERT INTO `marc_subfield_structure` VALUES ('797', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, '', '', '');
2841 INSERT INTO `marc_subfield_structure` VALUES ('797', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2842 INSERT INTO `marc_subfield_structure` VALUES ('797', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2843 INSERT INTO `marc_subfield_structure` VALUES ('797', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2844 INSERT INTO `marc_subfield_structure` VALUES ('797', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2845 INSERT INTO `marc_subfield_structure` VALUES ('797', 'e', 'Relator term', 'Relator term', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2846 INSERT INTO `marc_subfield_structure` VALUES ('797', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2847 INSERT INTO `marc_subfield_structure` VALUES ('797', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2848 INSERT INTO `marc_subfield_structure` VALUES ('797', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2849 INSERT INTO `marc_subfield_structure` VALUES ('797', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2850 INSERT INTO `marc_subfield_structure` VALUES ('797', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2851 INSERT INTO `marc_subfield_structure` VALUES ('797', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2852 INSERT INTO `marc_subfield_structure` VALUES ('797', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2853 INSERT INTO `marc_subfield_structure` VALUES ('797', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2854 INSERT INTO `marc_subfield_structure` VALUES ('797', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2855 INSERT INTO `marc_subfield_structure` VALUES ('797', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2856 INSERT INTO `marc_subfield_structure` VALUES ('797', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2857 INSERT INTO `marc_subfield_structure` VALUES ('797', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2858 INSERT INTO `marc_subfield_structure` VALUES ('797', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2859 INSERT INTO `marc_subfield_structure` VALUES ('797', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2860 INSERT INTO `marc_subfield_structure` VALUES ('798', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, '', '', '');
2861 INSERT INTO `marc_subfield_structure` VALUES ('798', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2862 INSERT INTO `marc_subfield_structure` VALUES ('798', '4', 'Relator code', 'Relator code', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2863 INSERT INTO `marc_subfield_structure` VALUES ('798', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2864 INSERT INTO `marc_subfield_structure` VALUES ('798', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2865 INSERT INTO `marc_subfield_structure` VALUES ('798', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2866 INSERT INTO `marc_subfield_structure` VALUES ('798', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, '', '', '');
2867 INSERT INTO `marc_subfield_structure` VALUES ('798', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2868 INSERT INTO `marc_subfield_structure` VALUES ('798', 'b', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2869 INSERT INTO `marc_subfield_structure` VALUES ('798', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2870 INSERT INTO `marc_subfield_structure` VALUES ('798', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2871 INSERT INTO `marc_subfield_structure` VALUES ('798', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2872 INSERT INTO `marc_subfield_structure` VALUES ('798', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2873 INSERT INTO `marc_subfield_structure` VALUES ('798', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2874 INSERT INTO `marc_subfield_structure` VALUES ('798', 'h', 'Medium', 'Medium', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2875 INSERT INTO `marc_subfield_structure` VALUES ('798', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2876 INSERT INTO `marc_subfield_structure` VALUES ('798', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2877 INSERT INTO `marc_subfield_structure` VALUES ('798', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2878 INSERT INTO `marc_subfield_structure` VALUES ('798', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2879 INSERT INTO `marc_subfield_structure` VALUES ('798', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2880 INSERT INTO `marc_subfield_structure` VALUES ('798', 's', 'Version', 'Version', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2881 INSERT INTO `marc_subfield_structure` VALUES ('798', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2882 INSERT INTO `marc_subfield_structure` VALUES ('798', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2883 INSERT INTO `marc_subfield_structure` VALUES ('798', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2884 INSERT INTO `marc_subfield_structure` VALUES ('799', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 7, '', '', '', 0, -6, '', '', '');
2885 INSERT INTO `marc_subfield_structure` VALUES ('799', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2886 INSERT INTO `marc_subfield_structure` VALUES ('799', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2887 INSERT INTO `marc_subfield_structure` VALUES ('799', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2888 INSERT INTO `marc_subfield_structure` VALUES ('799', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2889 INSERT INTO `marc_subfield_structure` VALUES ('799', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, '', '', '');
2890 INSERT INTO `marc_subfield_structure` VALUES ('799', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2891 INSERT INTO `marc_subfield_structure` VALUES ('799', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2892 INSERT INTO `marc_subfield_structure` VALUES ('799', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2893 INSERT INTO `marc_subfield_structure` VALUES ('799', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2894 INSERT INTO `marc_subfield_structure` VALUES ('799', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2895 INSERT INTO `marc_subfield_structure` VALUES ('799', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2896 INSERT INTO `marc_subfield_structure` VALUES ('799', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2897 INSERT INTO `marc_subfield_structure` VALUES ('799', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2898 INSERT INTO `marc_subfield_structure` VALUES ('799', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2899 INSERT INTO `marc_subfield_structure` VALUES ('799', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2900 INSERT INTO `marc_subfield_structure` VALUES ('799', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2901 INSERT INTO `marc_subfield_structure` VALUES ('799', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2902 INSERT INTO `marc_subfield_structure` VALUES ('799', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2903 INSERT INTO `marc_subfield_structure` VALUES ('799', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2904 INSERT INTO `marc_subfield_structure` VALUES ('799', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2905 INSERT INTO `marc_subfield_structure` VALUES ('800', '4', 'Relator code', 'Relator code', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2906 INSERT INTO `marc_subfield_structure` VALUES ('800', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2907 INSERT INTO `marc_subfield_structure` VALUES ('800', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2908 INSERT INTO `marc_subfield_structure` VALUES ('800', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, '', '', '');
2909 INSERT INTO `marc_subfield_structure` VALUES ('800', 'a', 'Personal name', 'Personal name', 0, 0, '', 8, '', '', '', NULL, -1, '', '', '');
2910 INSERT INTO `marc_subfield_structure` VALUES ('800', 'b', 'Numeration', 'Numeration', 0, 0, '', 8, '', '', '', NULL, -1, '', '', '');
2911 INSERT INTO `marc_subfield_structure` VALUES ('800', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 8, '', '', '', NULL, -1, '', '', '');
2912 INSERT INTO `marc_subfield_structure` VALUES ('800', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 8, '', '', '', NULL, -1, '', '', '');
2913 INSERT INTO `marc_subfield_structure` VALUES ('800', 'e', 'Relator term', 'Relator term', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2914 INSERT INTO `marc_subfield_structure` VALUES ('800', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2915 INSERT INTO `marc_subfield_structure` VALUES ('800', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2916 INSERT INTO `marc_subfield_structure` VALUES ('800', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2917 INSERT INTO `marc_subfield_structure` VALUES ('800', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2918 INSERT INTO `marc_subfield_structure` VALUES ('800', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2919 INSERT INTO `marc_subfield_structure` VALUES ('800', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2920 INSERT INTO `marc_subfield_structure` VALUES ('800', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2921 INSERT INTO `marc_subfield_structure` VALUES ('800', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2922 INSERT INTO `marc_subfield_structure` VALUES ('800', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2923 INSERT INTO `marc_subfield_structure` VALUES ('800', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2924 INSERT INTO `marc_subfield_structure` VALUES ('800', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 8, '', '', '', NULL, -1, '', '', '');
2925 INSERT INTO `marc_subfield_structure` VALUES ('800', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2926 INSERT INTO `marc_subfield_structure` VALUES ('800', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2927 INSERT INTO `marc_subfield_structure` VALUES ('800', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2928 INSERT INTO `marc_subfield_structure` VALUES ('800', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2929 INSERT INTO `marc_subfield_structure` VALUES ('800', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2930 INSERT INTO `marc_subfield_structure` VALUES ('810', '4', 'Relator code', 'Relator code', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2931 INSERT INTO `marc_subfield_structure` VALUES ('810', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2932 INSERT INTO `marc_subfield_structure` VALUES ('810', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2933 INSERT INTO `marc_subfield_structure` VALUES ('810', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, '', '', '');
2934 INSERT INTO `marc_subfield_structure` VALUES ('810', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 8, '', '', '', NULL, -1, '', '', '');
2935 INSERT INTO `marc_subfield_structure` VALUES ('810', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 8, '', '', '', NULL, -1, '', '', '');
2936 INSERT INTO `marc_subfield_structure` VALUES ('810', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 8, '', '', '', NULL, -1, '', '', '');
2937 INSERT INTO `marc_subfield_structure` VALUES ('810', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 8, '', '', '', NULL, -1, '', '', '');
2938 INSERT INTO `marc_subfield_structure` VALUES ('810', 'e', 'Relator term', 'Relator term', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2939 INSERT INTO `marc_subfield_structure` VALUES ('810', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2940 INSERT INTO `marc_subfield_structure` VALUES ('810', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2941 INSERT INTO `marc_subfield_structure` VALUES ('810', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2942 INSERT INTO `marc_subfield_structure` VALUES ('810', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2943 INSERT INTO `marc_subfield_structure` VALUES ('810', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2944 INSERT INTO `marc_subfield_structure` VALUES ('810', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2945 INSERT INTO `marc_subfield_structure` VALUES ('810', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2946 INSERT INTO `marc_subfield_structure` VALUES ('810', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2947 INSERT INTO `marc_subfield_structure` VALUES ('810', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2948 INSERT INTO `marc_subfield_structure` VALUES ('810', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2949 INSERT INTO `marc_subfield_structure` VALUES ('810', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2950 INSERT INTO `marc_subfield_structure` VALUES ('810', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2951 INSERT INTO `marc_subfield_structure` VALUES ('810', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2952 INSERT INTO `marc_subfield_structure` VALUES ('810', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2953 INSERT INTO `marc_subfield_structure` VALUES ('811', '4', 'Relator code', 'Relator code', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
2954 INSERT INTO `marc_subfield_structure` VALUES ('811', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
2955 INSERT INTO `marc_subfield_structure` VALUES ('811', '8', 'Field link and sequence number ', 'Field link and sequence number ', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
2956 INSERT INTO `marc_subfield_structure` VALUES ('811', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, '', '', '');
2957 INSERT INTO `marc_subfield_structure` VALUES ('811', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -1, '', '', '');
2958 INSERT INTO `marc_subfield_structure` VALUES ('811', 'b', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
2959 INSERT INTO `marc_subfield_structure` VALUES ('811', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -1, '', '', '');
2960 INSERT INTO `marc_subfield_structure` VALUES ('811', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -1, '', '', '');
2961 INSERT INTO `marc_subfield_structure` VALUES ('811', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 8, NULL, NULL, '', NULL, -1, '', '', '');
2962 INSERT INTO `marc_subfield_structure` VALUES ('811', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
2963 INSERT INTO `marc_subfield_structure` VALUES ('811', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
2964 INSERT INTO `marc_subfield_structure` VALUES ('811', 'h', 'Medium', 'Medium', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
2965 INSERT INTO `marc_subfield_structure` VALUES ('811', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
2966 INSERT INTO `marc_subfield_structure` VALUES ('811', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
2967 INSERT INTO `marc_subfield_structure` VALUES ('811', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
2968 INSERT INTO `marc_subfield_structure` VALUES ('811', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
2969 INSERT INTO `marc_subfield_structure` VALUES ('811', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
2970 INSERT INTO `marc_subfield_structure` VALUES ('811', 's', 'Version', 'Version', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
2971 INSERT INTO `marc_subfield_structure` VALUES ('811', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
2972 INSERT INTO `marc_subfield_structure` VALUES ('811', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
2973 INSERT INTO `marc_subfield_structure` VALUES ('811', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
2974 INSERT INTO `marc_subfield_structure` VALUES ('830', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2975 INSERT INTO `marc_subfield_structure` VALUES ('830', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2976 INSERT INTO `marc_subfield_structure` VALUES ('830', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, '', '', '');
2977 INSERT INTO `marc_subfield_structure` VALUES ('830', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 8, '', '', '', NULL, -1, '', '', '');
2978 INSERT INTO `marc_subfield_structure` VALUES ('830', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2979 INSERT INTO `marc_subfield_structure` VALUES ('830', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2980 INSERT INTO `marc_subfield_structure` VALUES ('830', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2981 INSERT INTO `marc_subfield_structure` VALUES ('830', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2982 INSERT INTO `marc_subfield_structure` VALUES ('830', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2983 INSERT INTO `marc_subfield_structure` VALUES ('830', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -1, '', '', '');
2984 INSERT INTO `marc_subfield_structure` VALUES ('830', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2985 INSERT INTO `marc_subfield_structure` VALUES ('830', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2986 INSERT INTO `marc_subfield_structure` VALUES ('830', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2987 INSERT INTO `marc_subfield_structure` VALUES ('830', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2988 INSERT INTO `marc_subfield_structure` VALUES ('830', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2989 INSERT INTO `marc_subfield_structure` VALUES ('830', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2990 INSERT INTO `marc_subfield_structure` VALUES ('830', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2991 INSERT INTO `marc_subfield_structure` VALUES ('830', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2992 INSERT INTO `marc_subfield_structure` VALUES ('840', 'a', 'Title', 'Title', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2993 INSERT INTO `marc_subfield_structure` VALUES ('840', 'h', 'Medium', 'Medium', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2994 INSERT INTO `marc_subfield_structure` VALUES ('840', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2995 INSERT INTO `marc_subfield_structure` VALUES ('841', 'a', 'Type of record', 'Type of record', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, '', '', '');
2996 INSERT INTO `marc_subfield_structure` VALUES ('841', 'b', 'Fixed-length data elements', 'Fixed-length data elements', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, '', '', '');
2997 INSERT INTO `marc_subfield_structure` VALUES ('841', 'e', 'Encoding level', 'Encoding level', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, '', '', '');
2998 INSERT INTO `marc_subfield_structure` VALUES ('842', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
2999 INSERT INTO `marc_subfield_structure` VALUES ('842', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3000 INSERT INTO `marc_subfield_structure` VALUES ('842', 'a', 'Textual physical form designator', 'Textual physical form designator', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3001 INSERT INTO `marc_subfield_structure` VALUES ('843', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, '', '', '');
3002 INSERT INTO `marc_subfield_structure` VALUES ('843', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, '', '', '');
3003 INSERT INTO `marc_subfield_structure` VALUES ('843', '7', 'Fixed-length data elements of reproduction', 'Fixed-length data elements of reproduction', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, '', '', '');
3004 INSERT INTO `marc_subfield_structure` VALUES ('843', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, '', '', '');
3005 INSERT INTO `marc_subfield_structure` VALUES ('843', 'a', 'Type of reproduction', 'Type of reproduction', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, '', '', '');
3006 INSERT INTO `marc_subfield_structure` VALUES ('843', 'b', 'Place of reproduction', 'Place of reproduction', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, '', '', '');
3007 INSERT INTO `marc_subfield_structure` VALUES ('843', 'c', 'Agency responsible for reproduction', 'Agency responsible for reproduction', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, '', '', '');
3008 INSERT INTO `marc_subfield_structure` VALUES ('843', 'd', 'Date of reproduction', 'Date of reproduction', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, '', '', '');
3009 INSERT INTO `marc_subfield_structure` VALUES ('843', 'e', 'Physical description of reproduction', 'Physical description of reproduction', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, '', '', '');
3010 INSERT INTO `marc_subfield_structure` VALUES ('843', 'f', 'Series statement of reproduction', 'Series statement of reproduction', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, '', '', '');
3011 INSERT INTO `marc_subfield_structure` VALUES ('843', 'm', 'Dates of publication and/or sequential designation of issues reproduced', 'Dates of publication and/or sequential designation of issues reproduced', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, '', '', '');
3012 INSERT INTO `marc_subfield_structure` VALUES ('843', 'n', 'Note about reproduction', 'Note about reproduction', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, '', '', '');
3013 INSERT INTO `marc_subfield_structure` VALUES ('844', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3014 INSERT INTO `marc_subfield_structure` VALUES ('844', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3015 INSERT INTO `marc_subfield_structure` VALUES ('844', 'a', 'Name of unit', 'Name of unit', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3016 INSERT INTO `marc_subfield_structure` VALUES ('845', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, '', '', '');
3017 INSERT INTO `marc_subfield_structure` VALUES ('845', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, '', '', '');
3018 INSERT INTO `marc_subfield_structure` VALUES ('845', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, '', '', '');
3019 INSERT INTO `marc_subfield_structure` VALUES ('845', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, '', '', '');
3020 INSERT INTO `marc_subfield_structure` VALUES ('845', 'a', 'Terms governing use and reproduction', 'Terms governing use and reproduction', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, '', '', '');
3021 INSERT INTO `marc_subfield_structure` VALUES ('845', 'b', 'Jurisdiction', 'Jurisdiction', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, '', '', '');
3022 INSERT INTO `marc_subfield_structure` VALUES ('845', 'c', 'Authorization', 'Authorization', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, '', '', '');
3023 INSERT INTO `marc_subfield_structure` VALUES ('845', 'd', 'Authorized users', 'Authorized users', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, '', '', '');
3024 INSERT INTO `marc_subfield_structure` VALUES ('850', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, '', '', '');
3025 INSERT INTO `marc_subfield_structure` VALUES ('850', 'a', 'Holding institution', 'Holding institution', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, '', '', '');
3026 INSERT INTO `marc_subfield_structure` VALUES ('850', 'b', 'Holdings (NR) (MU VM SE) [OBSOLETE]', 'Holdings (NR) (MU VM SE) [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, '', '', '');
3027 INSERT INTO `marc_subfield_structure` VALUES ('850', 'd', 'Inclusive dates (NR) (MU VM SE) [OBSOLETE]', 'Inclusive dates (NR) (MU VM SE) [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, '', '', '');
3028 INSERT INTO `marc_subfield_structure` VALUES ('850', 'e', 'Retention statement (NR) (CF MU VM SE) [OBSOLETE]', 'Retention statement (NR) (CF MU VM SE) [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, '', '', '');
3029 INSERT INTO `marc_subfield_structure` VALUES ('851', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, '', '', '');
3030 INSERT INTO `marc_subfield_structure` VALUES ('851', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, '', '', '');
3031 INSERT INTO `marc_subfield_structure` VALUES ('851', 'a', 'Name (custodian or owner)', 'Name (custodian or owner)', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, '', '', '');
3032 INSERT INTO `marc_subfield_structure` VALUES ('851', 'b', 'Institutional division', 'Institutional division', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, '', '', '');
3033 INSERT INTO `marc_subfield_structure` VALUES ('851', 'c', 'Street address', 'Street address', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, '', '', '');
3034 INSERT INTO `marc_subfield_structure` VALUES ('851', 'd', 'Country', 'Country', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, '', '', '');
3035 INSERT INTO `marc_subfield_structure` VALUES ('851', 'e', 'Location of units', 'Location of units', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, '', '', '');
3036 INSERT INTO `marc_subfield_structure` VALUES ('851', 'f', 'Item number', 'Item number', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, '', '', '');
3037 INSERT INTO `marc_subfield_structure` VALUES ('851', 'g', 'Repository location code', 'Repository location code', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, '', '', '');
3038 INSERT INTO `marc_subfield_structure` VALUES ('852', '2', 'Source of classification or shelving scheme', 'Source of classification or shelving scheme', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3039 INSERT INTO `marc_subfield_structure` VALUES ('852', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3040 INSERT INTO `marc_subfield_structure` VALUES ('852', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3041 INSERT INTO `marc_subfield_structure` VALUES ('852', '8', 'Sequence number', 'Sequence number', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3042 INSERT INTO `marc_subfield_structure` VALUES ('852', 'a', 'Location', 'Location', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3043 INSERT INTO `marc_subfield_structure` VALUES ('852', 'b', 'Sublocation or collection', 'Sublocation or collection', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3044 INSERT INTO `marc_subfield_structure` VALUES ('852', 'c', 'Shelving location', 'Shelving location', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3045 INSERT INTO `marc_subfield_structure` VALUES ('852', 'e', 'Address', 'Address', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3046 INSERT INTO `marc_subfield_structure` VALUES ('852', 'f', 'Coded location qualifier', 'Coded location qualifier', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3047 INSERT INTO `marc_subfield_structure` VALUES ('852', 'g', 'Non-coded location qualifier', 'Non-coded location qualifier', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3048 INSERT INTO `marc_subfield_structure` VALUES ('852', 'h', 'Classification part', 'Classification part', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3049 INSERT INTO `marc_subfield_structure` VALUES ('852', 'i', 'Item part', 'Item part', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3050 INSERT INTO `marc_subfield_structure` VALUES ('852', 'j', 'Shelving control number', 'Shelving control number', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3051 INSERT INTO `marc_subfield_structure` VALUES ('852', 'k', 'Call number prefix', 'Call number prefix', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3052 INSERT INTO `marc_subfield_structure` VALUES ('852', 'l', 'Shelving form of title', 'Shelving form of title', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3053 INSERT INTO `marc_subfield_structure` VALUES ('852', 'm', 'Call number suffix', 'Call number suffix', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3054 INSERT INTO `marc_subfield_structure` VALUES ('852', 'n', 'Country code', 'Country code', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3055 INSERT INTO `marc_subfield_structure` VALUES ('852', 'p', 'Piece designation', 'Piece designation', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3056 INSERT INTO `marc_subfield_structure` VALUES ('852', 'q', 'Piece physical condition', 'Piece physical condition', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3057 INSERT INTO `marc_subfield_structure` VALUES ('852', 's', 'Copyright article-fee code', 'Copyright article-fee code', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3058 INSERT INTO `marc_subfield_structure` VALUES ('852', 't', 'Copy number', 'Copy number', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3059 INSERT INTO `marc_subfield_structure` VALUES ('852', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3060 INSERT INTO `marc_subfield_structure` VALUES ('852', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3061 INSERT INTO `marc_subfield_structure` VALUES ('853', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3062 INSERT INTO `marc_subfield_structure` VALUES ('853', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3063 INSERT INTO `marc_subfield_structure` VALUES ('853', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3064 INSERT INTO `marc_subfield_structure` VALUES ('853', 'a', 'First level of enumeration', 'First level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3065 INSERT INTO `marc_subfield_structure` VALUES ('853', 'b', 'Second level of enumeration', 'Second level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3066 INSERT INTO `marc_subfield_structure` VALUES ('853', 'c', 'Third level of enumeration', 'Third level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3067 INSERT INTO `marc_subfield_structure` VALUES ('853', 'd', 'Fourth level of enumeration', 'Fourth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3068 INSERT INTO `marc_subfield_structure` VALUES ('853', 'e', 'Fifth level of enumeration', 'Fifth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3069 INSERT INTO `marc_subfield_structure` VALUES ('853', 'f', 'Sixth level of enumeration', 'Sixth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3070 INSERT INTO `marc_subfield_structure` VALUES ('853', 'g', 'Alternative numbering scheme, first level of enumeration', 'Alternative numbering scheme, first level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3071 INSERT INTO `marc_subfield_structure` VALUES ('853', 'h', 'Alternative numbering scheme, second level of enumeration', 'Alternative numbering scheme, second level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3072 INSERT INTO `marc_subfield_structure` VALUES ('853', 'i', 'First level of chronology', 'First level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3073 INSERT INTO `marc_subfield_structure` VALUES ('853', 'j', 'Second level of chronology', 'Second level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3074 INSERT INTO `marc_subfield_structure` VALUES ('853', 'k', 'Third level of chronology', 'Third level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3075 INSERT INTO `marc_subfield_structure` VALUES ('853', 'l', 'Fourth level of chronology', 'Fourth level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3076 INSERT INTO `marc_subfield_structure` VALUES ('853', 'm', 'Alternative numbering scheme, chronology', 'Alternative numbering scheme, chronology', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3077 INSERT INTO `marc_subfield_structure` VALUES ('853', 'n', 'Pattern note', 'Pattern note', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3078 INSERT INTO `marc_subfield_structure` VALUES ('853', 'p', 'Number of pieces per issuance', 'Number of pieces per issuance', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3079 INSERT INTO `marc_subfield_structure` VALUES ('853', 't', 'Copy', 'Copy', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3080 INSERT INTO `marc_subfield_structure` VALUES ('853', 'u', 'Bibliographic units per next higher level', 'Bibliographic units per next higher level', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3081 INSERT INTO `marc_subfield_structure` VALUES ('853', 'v', 'Numbering continuity', 'Numbering continuity', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3082 INSERT INTO `marc_subfield_structure` VALUES ('853', 'w', 'Frequency', 'Frequency', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3083 INSERT INTO `marc_subfield_structure` VALUES ('853', 'x', 'Calendar change', 'Calendar change', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3084 INSERT INTO `marc_subfield_structure` VALUES ('853', 'y', 'Regularity pattern', 'Regularity pattern', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3085 INSERT INTO `marc_subfield_structure` VALUES ('853', 'z', 'Numbering scheme', 'Numbering scheme', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3086 INSERT INTO `marc_subfield_structure` VALUES ('854', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3087 INSERT INTO `marc_subfield_structure` VALUES ('854', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3088 INSERT INTO `marc_subfield_structure` VALUES ('854', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3089 INSERT INTO `marc_subfield_structure` VALUES ('854', 'a', 'First level of enumeration', 'First level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3090 INSERT INTO `marc_subfield_structure` VALUES ('854', 'b', 'Second level of enumeration', 'Second level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3091 INSERT INTO `marc_subfield_structure` VALUES ('854', 'c', 'Third level of enumeration', 'Third level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3092 INSERT INTO `marc_subfield_structure` VALUES ('854', 'd', 'Fourth level of enumeration', 'Fourth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3093 INSERT INTO `marc_subfield_structure` VALUES ('854', 'e', 'Fifth level of enumeration', 'Fifth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3094 INSERT INTO `marc_subfield_structure` VALUES ('854', 'f', 'Sixth level of enumeration', 'Sixth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3095 INSERT INTO `marc_subfield_structure` VALUES ('854', 'g', 'Alternative numbering scheme, first level of enumeration', 'Alternative numbering scheme, first level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3096 INSERT INTO `marc_subfield_structure` VALUES ('854', 'h', 'Alternative numbering scheme, second level of enumeration', 'Alternative numbering scheme, second level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3097 INSERT INTO `marc_subfield_structure` VALUES ('854', 'i', 'First level of chronology', 'First level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3098 INSERT INTO `marc_subfield_structure` VALUES ('854', 'j', 'Second level of chronology', 'Second level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3099 INSERT INTO `marc_subfield_structure` VALUES ('854', 'k', 'Third level of chronology', 'Third level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3100 INSERT INTO `marc_subfield_structure` VALUES ('854', 'l', 'Fourth level of chronology', 'Fourth level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3101 INSERT INTO `marc_subfield_structure` VALUES ('854', 'm', 'Alternative numbering scheme, chronology', 'Alternative numbering scheme, chronology', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3102 INSERT INTO `marc_subfield_structure` VALUES ('854', 'n', 'Pattern note', 'Pattern note', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3103 INSERT INTO `marc_subfield_structure` VALUES ('854', 'p', 'Number of pieces per issuance', 'Number of pieces per issuance', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3104 INSERT INTO `marc_subfield_structure` VALUES ('854', 't', 'Copy', 'Copy', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3105 INSERT INTO `marc_subfield_structure` VALUES ('854', 'u', 'Bibliographic units per next higher level', 'Bibliographic units per next higher level', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3106 INSERT INTO `marc_subfield_structure` VALUES ('854', 'v', 'Numbering continuity', 'Numbering continuity', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3107 INSERT INTO `marc_subfield_structure` VALUES ('854', 'w', 'Frequency', 'Frequency', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3108 INSERT INTO `marc_subfield_structure` VALUES ('854', 'x', 'Calendar change', 'Calendar change', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3109 INSERT INTO `marc_subfield_structure` VALUES ('854', 'y', 'Regularity pattern', 'Regularity pattern', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3110 INSERT INTO `marc_subfield_structure` VALUES ('854', 'z', 'Numbering scheme', 'Numbering scheme', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3111 INSERT INTO `marc_subfield_structure` VALUES ('855', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3112 INSERT INTO `marc_subfield_structure` VALUES ('855', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3113 INSERT INTO `marc_subfield_structure` VALUES ('855', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3114 INSERT INTO `marc_subfield_structure` VALUES ('855', 'a', 'First level of enumeration', 'First level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3115 INSERT INTO `marc_subfield_structure` VALUES ('855', 'b', 'Second level of enumeration', 'Second level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3116 INSERT INTO `marc_subfield_structure` VALUES ('855', 'c', 'Third level of enumeration', 'Third level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3117 INSERT INTO `marc_subfield_structure` VALUES ('855', 'd', 'Fourth level of enumeration', 'Fourth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3118 INSERT INTO `marc_subfield_structure` VALUES ('855', 'e', 'Fifth level of enumeration', 'Fifth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3119 INSERT INTO `marc_subfield_structure` VALUES ('855', 'f', 'Sixth level of enumeration', 'Sixth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3120 INSERT INTO `marc_subfield_structure` VALUES ('855', 'g', 'Alternative numbering scheme, first level of enumeration', 'Alternative numbering scheme, first level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3121 INSERT INTO `marc_subfield_structure` VALUES ('855', 'h', 'Alternative numbering scheme, second level of enumeration', 'Alternative numbering scheme, second level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3122 INSERT INTO `marc_subfield_structure` VALUES ('855', 'i', 'First level of chronology', 'First level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3123 INSERT INTO `marc_subfield_structure` VALUES ('855', 'j', 'Second level of chronology', 'Second level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3124 INSERT INTO `marc_subfield_structure` VALUES ('855', 'k', 'Third level of chronology', 'Third level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3125 INSERT INTO `marc_subfield_structure` VALUES ('855', 'l', 'Fourth level of chronology', 'Fourth level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3126 INSERT INTO `marc_subfield_structure` VALUES ('855', 'm', 'Alternative numbering scheme, chronology', 'Alternative numbering scheme, chronology', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3127 INSERT INTO `marc_subfield_structure` VALUES ('855', 'n', 'Pattern note', 'Pattern note', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3128 INSERT INTO `marc_subfield_structure` VALUES ('855', 'p', 'Number of pieces per issuance', 'Number of pieces per issuance', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3129 INSERT INTO `marc_subfield_structure` VALUES ('855', 't', 'Copy', 'Copy', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3130 INSERT INTO `marc_subfield_structure` VALUES ('855', 'u', 'Bibliographic units per next higher level', 'Bibliographic units per next higher level', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3131 INSERT INTO `marc_subfield_structure` VALUES ('855', 'v', 'Numbering continuity', 'Numbering continuity', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3132 INSERT INTO `marc_subfield_structure` VALUES ('855', 'w', 'Frequency', 'Frequency', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3133 INSERT INTO `marc_subfield_structure` VALUES ('855', 'x', 'Calendar change', 'Calendar change', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3134 INSERT INTO `marc_subfield_structure` VALUES ('855', 'y', 'Regularity pattern', 'Regularity pattern', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3135 INSERT INTO `marc_subfield_structure` VALUES ('855', 'z', 'Numbering scheme', 'Numbering scheme', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3136 INSERT INTO `marc_subfield_structure` VALUES ('856', '2', 'Access method', 'Access method', 0, 0, '', 8, '', '', '', 0, -6, '', '', '');
3137 INSERT INTO `marc_subfield_structure` VALUES ('856', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', 0, -6, '', '', '');
3138 INSERT INTO `marc_subfield_structure` VALUES ('856', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', 0, -6, '', '', '');
3139 INSERT INTO `marc_subfield_structure` VALUES ('856', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', 0, -6, '', '', '');
3140 INSERT INTO `marc_subfield_structure` VALUES ('856', 'a', 'Host name', 'Host name', 1, 0, '', 8, '', '', '', 0, 0, '', '', '');
3141 INSERT INTO `marc_subfield_structure` VALUES ('856', 'b', 'Access number', 'Access number', 1, 0, '', 8, '', '', '', 0, 0, '', '', '');
3142 INSERT INTO `marc_subfield_structure` VALUES ('856', 'c', 'Compression information', 'Compression information', 1, 0, '', 8, '', '', '', 0, 0, '', '', '');
3143 INSERT INTO `marc_subfield_structure` VALUES ('856', 'd', 'Path', 'Path', 1, 0, '', 8, '', '', '', 0, 0, '', '', '');
3144 INSERT INTO `marc_subfield_structure` VALUES ('856', 'f', 'Electronic name', 'Electronic name', 1, 0, '', 8, '', '', '', 0, 0, '', '', '');
3145 INSERT INTO `marc_subfield_structure` VALUES ('856', 'h', 'Processor of request', 'Processor of request', 0, 0, '', 8, '', '', '', 0, 0, '', '', '');
3146 INSERT INTO `marc_subfield_structure` VALUES ('856', 'i', 'Instruction', 'Instruction', 1, 0, '', 8, '', '', '', 0, 0, '', '', '');
3147 INSERT INTO `marc_subfield_structure` VALUES ('856', 'j', 'Bits per second', 'Bits per second', 0, 0, '', 8, '', '', '', 0, 0, '', '', '');
3148 INSERT INTO `marc_subfield_structure` VALUES ('856', 'k', 'Password', 'Password', 0, 0, '', 8, '', '', '', 0, 0, '', '', '');
3149 INSERT INTO `marc_subfield_structure` VALUES ('856', 'l', 'Logon', 'Logon', 0, 0, '', 8, '', '', '', 0, 0, '', '', '');
3150 INSERT INTO `marc_subfield_structure` VALUES ('856', 'm', 'Contact for access assistance', 'Contact for access assistance', 1, 0, '', 8, '', '', '', 0, 0, '', '', '');
3151 INSERT INTO `marc_subfield_structure` VALUES ('856', 'n', 'Name of location of host in subfield', 'Name of location of host in subfield', 0, 0, '', 8, '', '', '', 0, 0, '', '', '');
3152 INSERT INTO `marc_subfield_structure` VALUES ('856', 'o', 'Operating system', 'Operating system', 0, 0, '', 8, '', '', '', 0, 0, '', '', '');
3153 INSERT INTO `marc_subfield_structure` VALUES ('856', 'p', 'Port', 'Port', 0, 0, '', 8, '', '', '', 0, 0, '', '', '');
3154 INSERT INTO `marc_subfield_structure` VALUES ('856', 'q', 'Electronic format type', 'Electronic format type', 0, 0, '', 8, '', '', '', 0, 0, '', '', '');
3155 INSERT INTO `marc_subfield_structure` VALUES ('856', 'r', 'Settings', 'Settings', 0, 0, '', 8, '', '', '', 0, 0, '', '', '');
3156 INSERT INTO `marc_subfield_structure` VALUES ('856', 's', 'File size', 'File size', 1, 0, '', 8, '', '', '', 0, 0, '', '', '');
3157 INSERT INTO `marc_subfield_structure` VALUES ('856', 't', 'Terminal emulation', 'Terminal emulation', 1, 0, '', 8, '', '', '', 0, 0, '', '', '');
3158 INSERT INTO `marc_subfield_structure` VALUES ('856', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, 'biblioitems.url', 8, '', '', '', 1, 0, '', '', '');
3159 INSERT INTO `marc_subfield_structure` VALUES ('856', 'v', 'Hours access method available', 'Hours access method available', 1, 0, '', 8, '', '', '', 0, 0, '', '', '');
3160 INSERT INTO `marc_subfield_structure` VALUES ('856', 'w', 'Record control number', 'Record control number', 1, 0, '', 8, '', '', '', 0, 0, '', '', '');
3161 INSERT INTO `marc_subfield_structure` VALUES ('856', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', 0, 1, '', '', '');
3162 INSERT INTO `marc_subfield_structure` VALUES ('856', 'y', 'Link text', 'Link text', 1, 0, '', 8, '', '', '', 0, 0, '', '', '');
3163 INSERT INTO `marc_subfield_structure` VALUES ('856', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', 0, 0, '', '', '');
3164 INSERT INTO `marc_subfield_structure` VALUES ('859', 'b', 'Operator\'s initials, OID (RLIN)', 'Operator\'s initials, OID (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, '', '', '');
3165 INSERT INTO `marc_subfield_structure` VALUES ('859', 'c', 'Cataloger\'s initials, CIN (RLIN)', 'Cataloger\'s initials, CIN (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, '', '', '');
3166 INSERT INTO `marc_subfield_structure` VALUES ('859', 'd', 'TDC (RLIN)', 'TDC (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, '', '', '');
3167 INSERT INTO `marc_subfield_structure` VALUES ('859', 'l', 'LIB (RLIN)', 'LIB (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, '', '', '');
3168 INSERT INTO `marc_subfield_structure` VALUES ('859', 'p', 'PRI (RLIN)', 'PRI (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, '', '', '');
3169 INSERT INTO `marc_subfield_structure` VALUES ('859', 'r', 'REG (RLIN)', 'REG (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, '', '', '');
3170 INSERT INTO `marc_subfield_structure` VALUES ('859', 'v', 'VER (RLIN)', 'VER (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, '', '', '');
3171 INSERT INTO `marc_subfield_structure` VALUES ('859', 'x', 'LDEL (RLIN)', 'LDEL (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, '', '', '');
3172 INSERT INTO `marc_subfield_structure` VALUES ('866', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3173 INSERT INTO `marc_subfield_structure` VALUES ('866', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3174 INSERT INTO `marc_subfield_structure` VALUES ('866', 'a', 'Textual string', 'Textual string', 0, 0, '', 8, '', '', '', 0, 5, '', '', '');
3175 INSERT INTO `marc_subfield_structure` VALUES ('866', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', 0, 5, '', '', '');
3176 INSERT INTO `marc_subfield_structure` VALUES ('866', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', 0, 5, '', '', '');
3177 INSERT INTO `marc_subfield_structure` VALUES ('867', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3178 INSERT INTO `marc_subfield_structure` VALUES ('867', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3179 INSERT INTO `marc_subfield_structure` VALUES ('867', 'a', 'Textual string', 'Textual string', 0, 0, '', 8, '', '', '', 0, 5, '', '', '');
3180 INSERT INTO `marc_subfield_structure` VALUES ('867', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', 0, 5, '', '', '');
3181 INSERT INTO `marc_subfield_structure` VALUES ('867', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', 0, 5, '', '', '');
3182 INSERT INTO `marc_subfield_structure` VALUES ('868', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3183 INSERT INTO `marc_subfield_structure` VALUES ('868', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3184 INSERT INTO `marc_subfield_structure` VALUES ('868', 'a', 'Textual string', 'Textual string', 0, 0, '', 8, '', '', '', 0, 5, '', '', '');
3185 INSERT INTO `marc_subfield_structure` VALUES ('868', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', 0, 5, '', '', '');
3186 INSERT INTO `marc_subfield_structure` VALUES ('868', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', 0, 5, '', '', '');
3187 INSERT INTO `marc_subfield_structure` VALUES ('870', '4', 'Relator code', 'Relator code', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3188 INSERT INTO `marc_subfield_structure` VALUES ('870', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3189 INSERT INTO `marc_subfield_structure` VALUES ('870', 'a', 'Personal name', 'Personal name', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3190 INSERT INTO `marc_subfield_structure` VALUES ('870', 'b', 'Numeration', 'Numeration', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3191 INSERT INTO `marc_subfield_structure` VALUES ('870', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3192 INSERT INTO `marc_subfield_structure` VALUES ('870', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3193 INSERT INTO `marc_subfield_structure` VALUES ('870', 'e', 'Relator term', 'Relator term', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3194 INSERT INTO `marc_subfield_structure` VALUES ('870', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3195 INSERT INTO `marc_subfield_structure` VALUES ('870', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3196 INSERT INTO `marc_subfield_structure` VALUES ('870', 'j', 'Tag and sequence number', 'Tag and sequence number', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3197 INSERT INTO `marc_subfield_structure` VALUES ('870', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3198 INSERT INTO `marc_subfield_structure` VALUES ('870', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3199 INSERT INTO `marc_subfield_structure` VALUES ('870', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3200 INSERT INTO `marc_subfield_structure` VALUES ('870', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3201 INSERT INTO `marc_subfield_structure` VALUES ('870', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3202 INSERT INTO `marc_subfield_structure` VALUES ('870', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3203 INSERT INTO `marc_subfield_structure` VALUES ('870', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3204 INSERT INTO `marc_subfield_structure` VALUES ('871', '4', 'Relator code', 'Relator code', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3205 INSERT INTO `marc_subfield_structure` VALUES ('871', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3206 INSERT INTO `marc_subfield_structure` VALUES ('871', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3207 INSERT INTO `marc_subfield_structure` VALUES ('871', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3208 INSERT INTO `marc_subfield_structure` VALUES ('871', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3209 INSERT INTO `marc_subfield_structure` VALUES ('871', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3210 INSERT INTO `marc_subfield_structure` VALUES ('871', 'e', 'Relator term', 'Relator term', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3211 INSERT INTO `marc_subfield_structure` VALUES ('871', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3212 INSERT INTO `marc_subfield_structure` VALUES ('871', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3213 INSERT INTO `marc_subfield_structure` VALUES ('871', 'j', 'Tag and sequence number', 'Tag and sequence number', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3214 INSERT INTO `marc_subfield_structure` VALUES ('871', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3215 INSERT INTO `marc_subfield_structure` VALUES ('871', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3216 INSERT INTO `marc_subfield_structure` VALUES ('871', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3217 INSERT INTO `marc_subfield_structure` VALUES ('871', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3218 INSERT INTO `marc_subfield_structure` VALUES ('871', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3219 INSERT INTO `marc_subfield_structure` VALUES ('871', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3220 INSERT INTO `marc_subfield_structure` VALUES ('872', '4', 'Relator code', 'Relator code', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
3221 INSERT INTO `marc_subfield_structure` VALUES ('872', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
3222 INSERT INTO `marc_subfield_structure` VALUES ('872', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
3223 INSERT INTO `marc_subfield_structure` VALUES ('872', 'b', 'Number [OBSOLETE]', 'Number [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
3224 INSERT INTO `marc_subfield_structure` VALUES ('872', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
3225 INSERT INTO `marc_subfield_structure` VALUES ('872', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
3226 INSERT INTO `marc_subfield_structure` VALUES ('872', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
3227 INSERT INTO `marc_subfield_structure` VALUES ('872', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
3228 INSERT INTO `marc_subfield_structure` VALUES ('872', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
3229 INSERT INTO `marc_subfield_structure` VALUES ('872', 'j', 'Tag and sequence number', 'Tag and sequence number', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3230 INSERT INTO `marc_subfield_structure` VALUES ('872', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
3231 INSERT INTO `marc_subfield_structure` VALUES ('872', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
3232 INSERT INTO `marc_subfield_structure` VALUES ('872', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
3233 INSERT INTO `marc_subfield_structure` VALUES ('872', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
3234 INSERT INTO `marc_subfield_structure` VALUES ('872', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
3235 INSERT INTO `marc_subfield_structure` VALUES ('872', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
3236 INSERT INTO `marc_subfield_structure` VALUES ('872', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
3237 INSERT INTO `marc_subfield_structure` VALUES ('873', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3238 INSERT INTO `marc_subfield_structure` VALUES ('873', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3239 INSERT INTO `marc_subfield_structure` VALUES ('873', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3240 INSERT INTO `marc_subfield_structure` VALUES ('873', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3241 INSERT INTO `marc_subfield_structure` VALUES ('873', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3242 INSERT INTO `marc_subfield_structure` VALUES ('873', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3243 INSERT INTO `marc_subfield_structure` VALUES ('873', 'j', 'Tag and sequence number', 'Tag and sequence number', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3244 INSERT INTO `marc_subfield_structure` VALUES ('873', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3245 INSERT INTO `marc_subfield_structure` VALUES ('873', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3246 INSERT INTO `marc_subfield_structure` VALUES ('873', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3247 INSERT INTO `marc_subfield_structure` VALUES ('873', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3248 INSERT INTO `marc_subfield_structure` VALUES ('873', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3249 INSERT INTO `marc_subfield_structure` VALUES ('873', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3250 INSERT INTO `marc_subfield_structure` VALUES ('873', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3251 INSERT INTO `marc_subfield_structure` VALUES ('873', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3252 INSERT INTO `marc_subfield_structure` VALUES ('873', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3253 INSERT INTO `marc_subfield_structure` VALUES ('876', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3254 INSERT INTO `marc_subfield_structure` VALUES ('876', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3255 INSERT INTO `marc_subfield_structure` VALUES ('876', '8', 'Sequence number', 'Sequence number', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3256 INSERT INTO `marc_subfield_structure` VALUES ('876', 'a', 'Internal item number', 'Internal item number', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3257 INSERT INTO `marc_subfield_structure` VALUES ('876', 'b', 'Invalid or canceled internal item number', 'Invalid or canceled internal item number', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3258 INSERT INTO `marc_subfield_structure` VALUES ('876', 'c', 'Cost', 'Cost', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3259 INSERT INTO `marc_subfield_structure` VALUES ('876', 'd', 'Date acquired', 'Date acquired', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3260 INSERT INTO `marc_subfield_structure` VALUES ('876', 'e', 'Source of acquisition', 'Source of acquisition', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3261 INSERT INTO `marc_subfield_structure` VALUES ('876', 'h', 'Use restrictions', 'Use restrictions', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3262 INSERT INTO `marc_subfield_structure` VALUES ('876', 'j', 'Item status', 'Item status', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3263 INSERT INTO `marc_subfield_structure` VALUES ('876', 'l', 'Temporary location', 'Temporary location', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3264 INSERT INTO `marc_subfield_structure` VALUES ('876', 'p', 'Piece designation', 'Piece designation', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3265 INSERT INTO `marc_subfield_structure` VALUES ('876', 'r', 'Invalid or canceled piece designation', 'Invalid or canceled piece designation', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3266 INSERT INTO `marc_subfield_structure` VALUES ('876', 't', 'Copy number', 'Copy number', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3267 INSERT INTO `marc_subfield_structure` VALUES ('876', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3268 INSERT INTO `marc_subfield_structure` VALUES ('876', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3269 INSERT INTO `marc_subfield_structure` VALUES ('877', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3270 INSERT INTO `marc_subfield_structure` VALUES ('877', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3271 INSERT INTO `marc_subfield_structure` VALUES ('877', '8', 'Sequence number', 'Sequence number', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3272 INSERT INTO `marc_subfield_structure` VALUES ('877', 'a', 'Internal item number', 'Internal item number', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3273 INSERT INTO `marc_subfield_structure` VALUES ('877', 'b', 'Invalid or canceled internal item number', 'Invalid or canceled internal item number', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3274 INSERT INTO `marc_subfield_structure` VALUES ('877', 'c', 'Cost', 'Cost', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3275 INSERT INTO `marc_subfield_structure` VALUES ('877', 'd', 'Date acquired', 'Date acquired', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3276 INSERT INTO `marc_subfield_structure` VALUES ('877', 'e', 'Source of acquisition', 'Source of acquisition', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3277 INSERT INTO `marc_subfield_structure` VALUES ('877', 'h', 'Use restrictions', 'Use restrictions', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3278 INSERT INTO `marc_subfield_structure` VALUES ('877', 'j', 'Item status', 'Item status', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3279 INSERT INTO `marc_subfield_structure` VALUES ('877', 'l', 'Temporary location', 'Temporary location', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3280 INSERT INTO `marc_subfield_structure` VALUES ('877', 'p', 'Piece designation', 'Piece designation', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3281 INSERT INTO `marc_subfield_structure` VALUES ('877', 'r', 'Invalid or canceled piece designation', 'Invalid or canceled piece designation', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3282 INSERT INTO `marc_subfield_structure` VALUES ('877', 't', 'Copy number', 'Copy number', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3283 INSERT INTO `marc_subfield_structure` VALUES ('877', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3284 INSERT INTO `marc_subfield_structure` VALUES ('877', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3285 INSERT INTO `marc_subfield_structure` VALUES ('878', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3286 INSERT INTO `marc_subfield_structure` VALUES ('878', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3287 INSERT INTO `marc_subfield_structure` VALUES ('878', '8', 'Sequence number', 'Sequence number', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3288 INSERT INTO `marc_subfield_structure` VALUES ('878', 'a', 'Internal item number', 'Internal item number', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3289 INSERT INTO `marc_subfield_structure` VALUES ('878', 'b', 'Invalid or canceled internal item number', 'Invalid or canceled internal item number', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3290 INSERT INTO `marc_subfield_structure` VALUES ('878', 'c', 'Cost', 'Cost', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3291 INSERT INTO `marc_subfield_structure` VALUES ('878', 'd', 'Date acquired', 'Date acquired', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3292 INSERT INTO `marc_subfield_structure` VALUES ('878', 'e', 'Source of acquisition', 'Source of acquisition', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3293 INSERT INTO `marc_subfield_structure` VALUES ('878', 'h', 'Use restrictions', 'Use restrictions', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3294 INSERT INTO `marc_subfield_structure` VALUES ('878', 'j', 'Item status', 'Item status', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3295 INSERT INTO `marc_subfield_structure` VALUES ('878', 'l', 'Temporary location', 'Temporary location', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3296 INSERT INTO `marc_subfield_structure` VALUES ('878', 'p', 'Piece designation', 'Piece designation', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3297 INSERT INTO `marc_subfield_structure` VALUES ('878', 'r', 'Invalid or canceled piece designation', 'Invalid or canceled piece designation', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3298 INSERT INTO `marc_subfield_structure` VALUES ('878', 't', 'Copy number', 'Copy number', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3299 INSERT INTO `marc_subfield_structure` VALUES ('878', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3300 INSERT INTO `marc_subfield_structure` VALUES ('878', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3301 INSERT INTO `marc_subfield_structure` VALUES ('880', '2', '2', '2', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3302 INSERT INTO `marc_subfield_structure` VALUES ('880', '3', '3', '3', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3303 INSERT INTO `marc_subfield_structure` VALUES ('880', '4', '4', '4', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3304 INSERT INTO `marc_subfield_structure` VALUES ('880', '5', '5', '5', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3305 INSERT INTO `marc_subfield_structure` VALUES ('880', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3306 INSERT INTO `marc_subfield_structure` VALUES ('880', '7', '7', '7', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3307 INSERT INTO `marc_subfield_structure` VALUES ('880', '8', '8', '8', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3308 INSERT INTO `marc_subfield_structure` VALUES ('880', '9', '9', '9', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3309 INSERT INTO `marc_subfield_structure` VALUES ('880', 'a', 'a', 'a', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3310 INSERT INTO `marc_subfield_structure` VALUES ('880', 'b', 'b', 'b', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3311 INSERT INTO `marc_subfield_structure` VALUES ('880', 'c', 'c', 'c', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3312 INSERT INTO `marc_subfield_structure` VALUES ('880', 'd', 'd', 'd', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3313 INSERT INTO `marc_subfield_structure` VALUES ('880', 'e', 'e', 'e', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3314 INSERT INTO `marc_subfield_structure` VALUES ('880', 'f', 'f', 'f', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3315 INSERT INTO `marc_subfield_structure` VALUES ('880', 'g', 'g', 'g', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3316 INSERT INTO `marc_subfield_structure` VALUES ('880', 'h', 'h', 'h', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3317 INSERT INTO `marc_subfield_structure` VALUES ('880', 'i', 'i', 'i', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3318 INSERT INTO `marc_subfield_structure` VALUES ('880', 'j', 'j', 'j', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3319 INSERT INTO `marc_subfield_structure` VALUES ('880', 'k', 'k', 'k', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3320 INSERT INTO `marc_subfield_structure` VALUES ('880', 'l', 'l', 'l', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3321 INSERT INTO `marc_subfield_structure` VALUES ('880', 'm', 'm', 'm', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3322 INSERT INTO `marc_subfield_structure` VALUES ('880', 'n', 'n', 'n', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3323 INSERT INTO `marc_subfield_structure` VALUES ('880', 'o', 'o', 'o', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3324 INSERT INTO `marc_subfield_structure` VALUES ('880', 'p', 'p', 'p', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3325 INSERT INTO `marc_subfield_structure` VALUES ('880', 'q', 'q', 'q', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3326 INSERT INTO `marc_subfield_structure` VALUES ('880', 'r', 'r', 'r', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3327 INSERT INTO `marc_subfield_structure` VALUES ('880', 's', 's', 's', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3328 INSERT INTO `marc_subfield_structure` VALUES ('880', 't', 't', 't', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3329 INSERT INTO `marc_subfield_structure` VALUES ('880', 'u', 'u', 'u', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3330 INSERT INTO `marc_subfield_structure` VALUES ('880', 'v', 'v', 'v', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3331 INSERT INTO `marc_subfield_structure` VALUES ('880', 'w', 'w', 'w', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3332 INSERT INTO `marc_subfield_structure` VALUES ('880', 'x', 'x', 'x', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3333 INSERT INTO `marc_subfield_structure` VALUES ('880', 'y', 'y', 'y', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3334 INSERT INTO `marc_subfield_structure` VALUES ('880', 'z', 'z', 'z', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3335 INSERT INTO `marc_subfield_structure` VALUES ('886', '0', '0', '0', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3336 INSERT INTO `marc_subfield_structure` VALUES ('886', '1', '1', '1', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3337 INSERT INTO `marc_subfield_structure` VALUES ('886', '2', '2', '2', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3338 INSERT INTO `marc_subfield_structure` VALUES ('886', '3', '3', '3', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3339 INSERT INTO `marc_subfield_structure` VALUES ('886', '4', '4', '4', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3340 INSERT INTO `marc_subfield_structure` VALUES ('886', '5', '5', '5', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3341 INSERT INTO `marc_subfield_structure` VALUES ('886', '6', '6', '6', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3342 INSERT INTO `marc_subfield_structure` VALUES ('886', '7', '7', '7', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3343 INSERT INTO `marc_subfield_structure` VALUES ('886', '8', '8', '8', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3344 INSERT INTO `marc_subfield_structure` VALUES ('886', '9', '9', '9', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3345 INSERT INTO `marc_subfield_structure` VALUES ('886', 'a', 'a', 'a', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3346 INSERT INTO `marc_subfield_structure` VALUES ('886', 'b', 'b', 'b', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3347 INSERT INTO `marc_subfield_structure` VALUES ('886', 'c', 'c', 'c', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3348 INSERT INTO `marc_subfield_structure` VALUES ('886', 'd', 'd', 'd', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3349 INSERT INTO `marc_subfield_structure` VALUES ('886', 'e', 'e', 'e', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3350 INSERT INTO `marc_subfield_structure` VALUES ('886', 'f', 'f', 'f', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3351 INSERT INTO `marc_subfield_structure` VALUES ('886', 'g', 'g', 'g', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3352 INSERT INTO `marc_subfield_structure` VALUES ('886', 'h', 'h', 'h', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3353 INSERT INTO `marc_subfield_structure` VALUES ('886', 'i', 'i', 'i', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3354 INSERT INTO `marc_subfield_structure` VALUES ('886', 'j', 'j', 'j', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3355 INSERT INTO `marc_subfield_structure` VALUES ('886', 'k', 'k', 'k', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3356 INSERT INTO `marc_subfield_structure` VALUES ('886', 'l', 'l', 'l', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3357 INSERT INTO `marc_subfield_structure` VALUES ('886', 'm', 'm', 'm', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3358 INSERT INTO `marc_subfield_structure` VALUES ('886', 'n', 'n', 'n', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3359 INSERT INTO `marc_subfield_structure` VALUES ('886', 'o', 'o', 'o', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3360 INSERT INTO `marc_subfield_structure` VALUES ('886', 'p', 'p', 'p', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3361 INSERT INTO `marc_subfield_structure` VALUES ('886', 'q', 'q', 'q', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3362 INSERT INTO `marc_subfield_structure` VALUES ('886', 'r', 'r', 'r', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3363 INSERT INTO `marc_subfield_structure` VALUES ('886', 's', 's', 's', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3364 INSERT INTO `marc_subfield_structure` VALUES ('886', 't', 't', 't', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3365 INSERT INTO `marc_subfield_structure` VALUES ('886', 'u', 'u', 'u', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3366 INSERT INTO `marc_subfield_structure` VALUES ('886', 'v', 'v', 'v', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3367 INSERT INTO `marc_subfield_structure` VALUES ('886', 'w', 'w', 'w', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3368 INSERT INTO `marc_subfield_structure` VALUES ('886', 'x', 'x', 'x', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3369 INSERT INTO `marc_subfield_structure` VALUES ('886', 'y', 'y', 'y', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3370 INSERT INTO `marc_subfield_structure` VALUES ('886', 'z', 'z', 'z', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3371 INSERT INTO `marc_subfield_structure` VALUES ('887', '2', 'Source of data', 'Source of data', 0, 0, NULL, 8, NULL, NULL, '', NULL, 0, '', '', '');
3372 INSERT INTO `marc_subfield_structure` VALUES ('887', 'a', 'Content of non-MARC field', 'Content of non-MARC field', 0, 0, NULL, 8, NULL, NULL, '', NULL, 0, '', '', '');
3373 INSERT INTO `marc_subfield_structure` VALUES ('896', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 8, '', '', '', 0, -6, '', '', '');
3374 INSERT INTO `marc_subfield_structure` VALUES ('896', '4', 'Relator code', 'Relator code', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3375 INSERT INTO `marc_subfield_structure` VALUES ('896', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3376 INSERT INTO `marc_subfield_structure` VALUES ('896', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3377 INSERT INTO `marc_subfield_structure` VALUES ('896', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, '', '', '');
3378 INSERT INTO `marc_subfield_structure` VALUES ('896', 'a', 'Personal name', 'Personal name', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3379 INSERT INTO `marc_subfield_structure` VALUES ('896', 'b', 'Numeration', 'Numeration', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3380 INSERT INTO `marc_subfield_structure` VALUES ('896', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3381 INSERT INTO `marc_subfield_structure` VALUES ('896', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3382 INSERT INTO `marc_subfield_structure` VALUES ('896', 'e', 'Relator term', 'Relator term', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3383 INSERT INTO `marc_subfield_structure` VALUES ('896', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3384 INSERT INTO `marc_subfield_structure` VALUES ('896', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3385 INSERT INTO `marc_subfield_structure` VALUES ('896', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3386 INSERT INTO `marc_subfield_structure` VALUES ('896', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3387 INSERT INTO `marc_subfield_structure` VALUES ('896', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3388 INSERT INTO `marc_subfield_structure` VALUES ('896', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3389 INSERT INTO `marc_subfield_structure` VALUES ('896', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3390 INSERT INTO `marc_subfield_structure` VALUES ('896', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3391 INSERT INTO `marc_subfield_structure` VALUES ('896', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3392 INSERT INTO `marc_subfield_structure` VALUES ('896', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3393 INSERT INTO `marc_subfield_structure` VALUES ('896', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3394 INSERT INTO `marc_subfield_structure` VALUES ('896', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3395 INSERT INTO `marc_subfield_structure` VALUES ('896', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3396 INSERT INTO `marc_subfield_structure` VALUES ('896', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3397 INSERT INTO `marc_subfield_structure` VALUES ('896', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3398 INSERT INTO `marc_subfield_structure` VALUES ('896', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3399 INSERT INTO `marc_subfield_structure` VALUES ('897', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 8, '', '', '', 0, -6, '', '', '');
3400 INSERT INTO `marc_subfield_structure` VALUES ('897', '4', 'Relator code', 'Relator code', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3401 INSERT INTO `marc_subfield_structure` VALUES ('897', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3402 INSERT INTO `marc_subfield_structure` VALUES ('897', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3403 INSERT INTO `marc_subfield_structure` VALUES ('897', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, '', '', '');
3404 INSERT INTO `marc_subfield_structure` VALUES ('897', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3405 INSERT INTO `marc_subfield_structure` VALUES ('897', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3406 INSERT INTO `marc_subfield_structure` VALUES ('897', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3407 INSERT INTO `marc_subfield_structure` VALUES ('897', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3408 INSERT INTO `marc_subfield_structure` VALUES ('897', 'e', 'Relator term', 'Relator term', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3409 INSERT INTO `marc_subfield_structure` VALUES ('897', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3410 INSERT INTO `marc_subfield_structure` VALUES ('897', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3411 INSERT INTO `marc_subfield_structure` VALUES ('897', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3412 INSERT INTO `marc_subfield_structure` VALUES ('897', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3413 INSERT INTO `marc_subfield_structure` VALUES ('897', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3414 INSERT INTO `marc_subfield_structure` VALUES ('897', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3415 INSERT INTO `marc_subfield_structure` VALUES ('897', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3416 INSERT INTO `marc_subfield_structure` VALUES ('897', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3417 INSERT INTO `marc_subfield_structure` VALUES ('897', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3418 INSERT INTO `marc_subfield_structure` VALUES ('897', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3419 INSERT INTO `marc_subfield_structure` VALUES ('897', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3420 INSERT INTO `marc_subfield_structure` VALUES ('897', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3421 INSERT INTO `marc_subfield_structure` VALUES ('897', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3422 INSERT INTO `marc_subfield_structure` VALUES ('897', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3423 INSERT INTO `marc_subfield_structure` VALUES ('898', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 8, '', '', '', 0, -6, '', '', '');
3424 INSERT INTO `marc_subfield_structure` VALUES ('898', '4', 'Relator code', 'Relator code', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
3425 INSERT INTO `marc_subfield_structure` VALUES ('898', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
3426 INSERT INTO `marc_subfield_structure` VALUES ('898', '8', 'Field link and sequence number ', 'Field link and sequence number ', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
3427 INSERT INTO `marc_subfield_structure` VALUES ('898', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, '', '', '');
3428 INSERT INTO `marc_subfield_structure` VALUES ('898', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
3429 INSERT INTO `marc_subfield_structure` VALUES ('898', 'b', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
3430 INSERT INTO `marc_subfield_structure` VALUES ('898', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
3431 INSERT INTO `marc_subfield_structure` VALUES ('898', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
3432 INSERT INTO `marc_subfield_structure` VALUES ('898', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
3433 INSERT INTO `marc_subfield_structure` VALUES ('898', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
3434 INSERT INTO `marc_subfield_structure` VALUES ('898', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
3435 INSERT INTO `marc_subfield_structure` VALUES ('898', 'h', 'Medium', 'Medium', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
3436 INSERT INTO `marc_subfield_structure` VALUES ('898', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
3437 INSERT INTO `marc_subfield_structure` VALUES ('898', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
3438 INSERT INTO `marc_subfield_structure` VALUES ('898', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
3439 INSERT INTO `marc_subfield_structure` VALUES ('898', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
3440 INSERT INTO `marc_subfield_structure` VALUES ('898', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
3441 INSERT INTO `marc_subfield_structure` VALUES ('898', 's', 'Version', 'Version', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
3442 INSERT INTO `marc_subfield_structure` VALUES ('898', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
3443 INSERT INTO `marc_subfield_structure` VALUES ('898', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
3444 INSERT INTO `marc_subfield_structure` VALUES ('898', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
3445 INSERT INTO `marc_subfield_structure` VALUES ('899', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 8, '', '', '', 0, -6, '', '', '');
3446 INSERT INTO `marc_subfield_structure` VALUES ('899', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3447 INSERT INTO `marc_subfield_structure` VALUES ('899', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3448 INSERT INTO `marc_subfield_structure` VALUES ('899', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, '', '', '');
3449 INSERT INTO `marc_subfield_structure` VALUES ('899', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3450 INSERT INTO `marc_subfield_structure` VALUES ('899', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3451 INSERT INTO `marc_subfield_structure` VALUES ('899', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3452 INSERT INTO `marc_subfield_structure` VALUES ('899', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3453 INSERT INTO `marc_subfield_structure` VALUES ('899', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3454 INSERT INTO `marc_subfield_structure` VALUES ('899', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3455 INSERT INTO `marc_subfield_structure` VALUES ('899', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3456 INSERT INTO `marc_subfield_structure` VALUES ('899', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3457 INSERT INTO `marc_subfield_structure` VALUES ('899', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3458 INSERT INTO `marc_subfield_structure` VALUES ('899', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3459 INSERT INTO `marc_subfield_structure` VALUES ('899', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3460 INSERT INTO `marc_subfield_structure` VALUES ('899', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3461 INSERT INTO `marc_subfield_structure` VALUES ('899', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3462 INSERT INTO `marc_subfield_structure` VALUES ('899', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3463 INSERT INTO `marc_subfield_structure` VALUES ('899', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3464 INSERT INTO `marc_subfield_structure` VALUES ('89e', '0', '0', '0', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3465 INSERT INTO `marc_subfield_structure` VALUES ('89e', '1', '1', '1', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3466 INSERT INTO `marc_subfield_structure` VALUES ('89e', '2', '2', '2', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3467 INSERT INTO `marc_subfield_structure` VALUES ('89e', '3', '3', '3', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3468 INSERT INTO `marc_subfield_structure` VALUES ('89e', '4', '4', '4', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3469 INSERT INTO `marc_subfield_structure` VALUES ('89e', '5', '5', '5', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3470 INSERT INTO `marc_subfield_structure` VALUES ('89e', '6', '6', '6', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3471 INSERT INTO `marc_subfield_structure` VALUES ('89e', '7', '7', '7', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3472 INSERT INTO `marc_subfield_structure` VALUES ('89e', '8', '8', '8', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3473 INSERT INTO `marc_subfield_structure` VALUES ('89e', '9', '9', '9', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3474 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'a', 'a', 'a', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3475 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'b', 'b', 'b', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3476 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'c', 'c', 'c', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3477 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'd', 'd', 'd', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3478 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'e', 'e', 'e', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3479 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'f', 'f', 'f', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3480 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'g', 'g', 'g', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3481 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'h', 'h', 'h', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3482 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'i', 'i', 'i', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3483 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'j', 'j', 'j', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3484 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'k', 'k', 'k', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3485 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'l', 'l', 'l', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3486 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'm', 'm', 'm', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3487 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'n', 'n', 'n', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3488 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'o', 'o', 'o', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3489 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'p', 'p', 'p', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3490 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'q', 'q', 'q', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3491 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'r', 'r', 'r', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3492 INSERT INTO `marc_subfield_structure` VALUES ('89e', 's', 's', 's', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3493 INSERT INTO `marc_subfield_structure` VALUES ('89e', 't', 't', 't', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3494 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'u', 'u', 'u', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3495 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'v', 'v', 'v', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3496 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'w', 'w', 'w', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3497 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'x', 'x', 'x', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3498 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'y', 'y', 'y', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3499 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'z', 'z', 'z', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3500 INSERT INTO `marc_subfield_structure` VALUES ('900', '4', 'Relator code', 'Relator code', 1, 0, '', 9, '', '', '', 0, -6, '', '', '');
3501 INSERT INTO `marc_subfield_structure` VALUES ('900', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
3502 INSERT INTO `marc_subfield_structure` VALUES ('900', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', 0, -6, '', '', '');
3503 INSERT INTO `marc_subfield_structure` VALUES ('900', 'a', 'Personal name', 'Personal name', 0, 0, '', 9, '', '', '', 0, 5, '', '''110a'', ''700a'', ''710a''', '');
3504 INSERT INTO `marc_subfield_structure` VALUES ('900', 'b', 'Numeration', 'Numeration', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
3505 INSERT INTO `marc_subfield_structure` VALUES ('900', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 9, '', '', '', 0, -6, '', '', '');
3506 INSERT INTO `marc_subfield_structure` VALUES ('900', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
3507 INSERT INTO `marc_subfield_structure` VALUES ('900', 'e', 'Relator term', 'Relator term', 1, 0, '', 9, '', '', '', 0, -6, '', '', '');
3508 INSERT INTO `marc_subfield_structure` VALUES ('900', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
3509 INSERT INTO `marc_subfield_structure` VALUES ('900', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
3510 INSERT INTO `marc_subfield_structure` VALUES ('900', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 9, '', '', '', 0, -6, '', '', '');
3511 INSERT INTO `marc_subfield_structure` VALUES ('900', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', 0, -6, '', '', '');
3512 INSERT INTO `marc_subfield_structure` VALUES ('900', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
3513 INSERT INTO `marc_subfield_structure` VALUES ('900', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 9, '', '', '', 0, -6, '', '', '');
3514 INSERT INTO `marc_subfield_structure` VALUES ('900', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', 0, -6, '', '', '');
3515 INSERT INTO `marc_subfield_structure` VALUES ('900', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
3516 INSERT INTO `marc_subfield_structure` VALUES ('900', 't', 'Title of a work', 'Title of a work', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
3517 INSERT INTO `marc_subfield_structure` VALUES ('900', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
3518 INSERT INTO `marc_subfield_structure` VALUES ('901', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3519 INSERT INTO `marc_subfield_structure` VALUES ('901', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3520 INSERT INTO `marc_subfield_structure` VALUES ('901', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3521 INSERT INTO `marc_subfield_structure` VALUES ('901', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3522 INSERT INTO `marc_subfield_structure` VALUES ('901', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3523 INSERT INTO `marc_subfield_structure` VALUES ('901', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3524 INSERT INTO `marc_subfield_structure` VALUES ('901', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3525 INSERT INTO `marc_subfield_structure` VALUES ('901', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3526 INSERT INTO `marc_subfield_structure` VALUES ('901', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3527 INSERT INTO `marc_subfield_structure` VALUES ('901', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3528 INSERT INTO `marc_subfield_structure` VALUES ('901', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3529 INSERT INTO `marc_subfield_structure` VALUES ('901', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3530 INSERT INTO `marc_subfield_structure` VALUES ('901', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3531 INSERT INTO `marc_subfield_structure` VALUES ('901', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3532 INSERT INTO `marc_subfield_structure` VALUES ('901', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3533 INSERT INTO `marc_subfield_structure` VALUES ('901', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3534 INSERT INTO `marc_subfield_structure` VALUES ('901', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3535 INSERT INTO `marc_subfield_structure` VALUES ('901', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3536 INSERT INTO `marc_subfield_structure` VALUES ('901', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3537 INSERT INTO `marc_subfield_structure` VALUES ('901', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3538 INSERT INTO `marc_subfield_structure` VALUES ('901', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3539 INSERT INTO `marc_subfield_structure` VALUES ('901', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3540 INSERT INTO `marc_subfield_structure` VALUES ('901', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3541 INSERT INTO `marc_subfield_structure` VALUES ('901', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3542 INSERT INTO `marc_subfield_structure` VALUES ('901', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3543 INSERT INTO `marc_subfield_structure` VALUES ('901', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3544 INSERT INTO `marc_subfield_structure` VALUES ('901', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3545 INSERT INTO `marc_subfield_structure` VALUES ('901', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3546 INSERT INTO `marc_subfield_structure` VALUES ('901', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3547 INSERT INTO `marc_subfield_structure` VALUES ('901', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3548 INSERT INTO `marc_subfield_structure` VALUES ('901', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3549 INSERT INTO `marc_subfield_structure` VALUES ('901', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3550 INSERT INTO `marc_subfield_structure` VALUES ('901', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3551 INSERT INTO `marc_subfield_structure` VALUES ('901', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3552 INSERT INTO `marc_subfield_structure` VALUES ('901', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3553 INSERT INTO `marc_subfield_structure` VALUES ('901', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3554 INSERT INTO `marc_subfield_structure` VALUES ('902', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3555 INSERT INTO `marc_subfield_structure` VALUES ('902', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3556 INSERT INTO `marc_subfield_structure` VALUES ('902', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3557 INSERT INTO `marc_subfield_structure` VALUES ('902', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3558 INSERT INTO `marc_subfield_structure` VALUES ('902', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3559 INSERT INTO `marc_subfield_structure` VALUES ('902', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3560 INSERT INTO `marc_subfield_structure` VALUES ('902', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3561 INSERT INTO `marc_subfield_structure` VALUES ('902', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3562 INSERT INTO `marc_subfield_structure` VALUES ('902', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3563 INSERT INTO `marc_subfield_structure` VALUES ('902', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3564 INSERT INTO `marc_subfield_structure` VALUES ('902', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3565 INSERT INTO `marc_subfield_structure` VALUES ('902', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3566 INSERT INTO `marc_subfield_structure` VALUES ('902', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3567 INSERT INTO `marc_subfield_structure` VALUES ('902', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3568 INSERT INTO `marc_subfield_structure` VALUES ('902', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3569 INSERT INTO `marc_subfield_structure` VALUES ('902', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3570 INSERT INTO `marc_subfield_structure` VALUES ('902', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3571 INSERT INTO `marc_subfield_structure` VALUES ('902', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3572 INSERT INTO `marc_subfield_structure` VALUES ('902', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3573 INSERT INTO `marc_subfield_structure` VALUES ('902', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3574 INSERT INTO `marc_subfield_structure` VALUES ('902', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3575 INSERT INTO `marc_subfield_structure` VALUES ('902', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3576 INSERT INTO `marc_subfield_structure` VALUES ('902', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3577 INSERT INTO `marc_subfield_structure` VALUES ('902', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3578 INSERT INTO `marc_subfield_structure` VALUES ('902', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3579 INSERT INTO `marc_subfield_structure` VALUES ('902', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3580 INSERT INTO `marc_subfield_structure` VALUES ('902', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3581 INSERT INTO `marc_subfield_structure` VALUES ('902', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3582 INSERT INTO `marc_subfield_structure` VALUES ('902', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3583 INSERT INTO `marc_subfield_structure` VALUES ('902', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3584 INSERT INTO `marc_subfield_structure` VALUES ('902', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3585 INSERT INTO `marc_subfield_structure` VALUES ('902', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3586 INSERT INTO `marc_subfield_structure` VALUES ('902', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3587 INSERT INTO `marc_subfield_structure` VALUES ('902', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3588 INSERT INTO `marc_subfield_structure` VALUES ('902', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3589 INSERT INTO `marc_subfield_structure` VALUES ('902', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3590 INSERT INTO `marc_subfield_structure` VALUES ('903', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3591 INSERT INTO `marc_subfield_structure` VALUES ('903', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3592 INSERT INTO `marc_subfield_structure` VALUES ('903', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3593 INSERT INTO `marc_subfield_structure` VALUES ('903', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3594 INSERT INTO `marc_subfield_structure` VALUES ('903', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3595 INSERT INTO `marc_subfield_structure` VALUES ('903', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3596 INSERT INTO `marc_subfield_structure` VALUES ('903', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3597 INSERT INTO `marc_subfield_structure` VALUES ('903', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3598 INSERT INTO `marc_subfield_structure` VALUES ('903', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3599 INSERT INTO `marc_subfield_structure` VALUES ('903', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3600 INSERT INTO `marc_subfield_structure` VALUES ('903', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3601 INSERT INTO `marc_subfield_structure` VALUES ('903', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3602 INSERT INTO `marc_subfield_structure` VALUES ('903', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3603 INSERT INTO `marc_subfield_structure` VALUES ('903', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3604 INSERT INTO `marc_subfield_structure` VALUES ('903', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3605 INSERT INTO `marc_subfield_structure` VALUES ('903', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3606 INSERT INTO `marc_subfield_structure` VALUES ('903', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3607 INSERT INTO `marc_subfield_structure` VALUES ('903', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3608 INSERT INTO `marc_subfield_structure` VALUES ('903', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3609 INSERT INTO `marc_subfield_structure` VALUES ('903', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3610 INSERT INTO `marc_subfield_structure` VALUES ('903', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3611 INSERT INTO `marc_subfield_structure` VALUES ('903', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3612 INSERT INTO `marc_subfield_structure` VALUES ('903', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3613 INSERT INTO `marc_subfield_structure` VALUES ('903', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3614 INSERT INTO `marc_subfield_structure` VALUES ('903', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3615 INSERT INTO `marc_subfield_structure` VALUES ('903', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3616 INSERT INTO `marc_subfield_structure` VALUES ('903', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3617 INSERT INTO `marc_subfield_structure` VALUES ('903', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3618 INSERT INTO `marc_subfield_structure` VALUES ('903', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3619 INSERT INTO `marc_subfield_structure` VALUES ('903', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3620 INSERT INTO `marc_subfield_structure` VALUES ('903', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3621 INSERT INTO `marc_subfield_structure` VALUES ('903', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3622 INSERT INTO `marc_subfield_structure` VALUES ('903', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3623 INSERT INTO `marc_subfield_structure` VALUES ('903', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3624 INSERT INTO `marc_subfield_structure` VALUES ('903', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3625 INSERT INTO `marc_subfield_structure` VALUES ('903', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3626 INSERT INTO `marc_subfield_structure` VALUES ('904', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3627 INSERT INTO `marc_subfield_structure` VALUES ('904', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3628 INSERT INTO `marc_subfield_structure` VALUES ('904', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3629 INSERT INTO `marc_subfield_structure` VALUES ('904', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3630 INSERT INTO `marc_subfield_structure` VALUES ('904', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3631 INSERT INTO `marc_subfield_structure` VALUES ('904', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3632 INSERT INTO `marc_subfield_structure` VALUES ('904', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3633 INSERT INTO `marc_subfield_structure` VALUES ('904', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3634 INSERT INTO `marc_subfield_structure` VALUES ('904', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3635 INSERT INTO `marc_subfield_structure` VALUES ('904', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3636 INSERT INTO `marc_subfield_structure` VALUES ('904', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3637 INSERT INTO `marc_subfield_structure` VALUES ('904', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3638 INSERT INTO `marc_subfield_structure` VALUES ('904', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3639 INSERT INTO `marc_subfield_structure` VALUES ('904', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3640 INSERT INTO `marc_subfield_structure` VALUES ('904', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3641 INSERT INTO `marc_subfield_structure` VALUES ('904', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3642 INSERT INTO `marc_subfield_structure` VALUES ('904', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3643 INSERT INTO `marc_subfield_structure` VALUES ('904', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3644 INSERT INTO `marc_subfield_structure` VALUES ('904', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3645 INSERT INTO `marc_subfield_structure` VALUES ('904', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3646 INSERT INTO `marc_subfield_structure` VALUES ('904', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3647 INSERT INTO `marc_subfield_structure` VALUES ('904', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3648 INSERT INTO `marc_subfield_structure` VALUES ('904', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3649 INSERT INTO `marc_subfield_structure` VALUES ('904', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3650 INSERT INTO `marc_subfield_structure` VALUES ('904', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3651 INSERT INTO `marc_subfield_structure` VALUES ('904', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3652 INSERT INTO `marc_subfield_structure` VALUES ('904', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3653 INSERT INTO `marc_subfield_structure` VALUES ('904', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3654 INSERT INTO `marc_subfield_structure` VALUES ('904', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3655 INSERT INTO `marc_subfield_structure` VALUES ('904', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3656 INSERT INTO `marc_subfield_structure` VALUES ('904', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3657 INSERT INTO `marc_subfield_structure` VALUES ('904', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3658 INSERT INTO `marc_subfield_structure` VALUES ('904', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3659 INSERT INTO `marc_subfield_structure` VALUES ('904', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3660 INSERT INTO `marc_subfield_structure` VALUES ('904', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3661 INSERT INTO `marc_subfield_structure` VALUES ('904', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3662 INSERT INTO `marc_subfield_structure` VALUES ('905', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3663 INSERT INTO `marc_subfield_structure` VALUES ('905', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3664 INSERT INTO `marc_subfield_structure` VALUES ('905', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3665 INSERT INTO `marc_subfield_structure` VALUES ('905', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3666 INSERT INTO `marc_subfield_structure` VALUES ('905', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3667 INSERT INTO `marc_subfield_structure` VALUES ('905', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3668 INSERT INTO `marc_subfield_structure` VALUES ('905', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3669 INSERT INTO `marc_subfield_structure` VALUES ('905', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3670 INSERT INTO `marc_subfield_structure` VALUES ('905', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3671 INSERT INTO `marc_subfield_structure` VALUES ('905', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3672 INSERT INTO `marc_subfield_structure` VALUES ('905', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3673 INSERT INTO `marc_subfield_structure` VALUES ('905', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3674 INSERT INTO `marc_subfield_structure` VALUES ('905', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3675 INSERT INTO `marc_subfield_structure` VALUES ('905', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3676 INSERT INTO `marc_subfield_structure` VALUES ('905', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3677 INSERT INTO `marc_subfield_structure` VALUES ('905', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3678 INSERT INTO `marc_subfield_structure` VALUES ('905', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3679 INSERT INTO `marc_subfield_structure` VALUES ('905', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3680 INSERT INTO `marc_subfield_structure` VALUES ('905', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3681 INSERT INTO `marc_subfield_structure` VALUES ('905', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3682 INSERT INTO `marc_subfield_structure` VALUES ('905', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3683 INSERT INTO `marc_subfield_structure` VALUES ('905', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3684 INSERT INTO `marc_subfield_structure` VALUES ('905', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3685 INSERT INTO `marc_subfield_structure` VALUES ('905', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3686 INSERT INTO `marc_subfield_structure` VALUES ('905', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3687 INSERT INTO `marc_subfield_structure` VALUES ('905', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3688 INSERT INTO `marc_subfield_structure` VALUES ('905', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3689 INSERT INTO `marc_subfield_structure` VALUES ('905', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3690 INSERT INTO `marc_subfield_structure` VALUES ('905', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3691 INSERT INTO `marc_subfield_structure` VALUES ('905', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3692 INSERT INTO `marc_subfield_structure` VALUES ('905', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3693 INSERT INTO `marc_subfield_structure` VALUES ('905', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3694 INSERT INTO `marc_subfield_structure` VALUES ('905', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3695 INSERT INTO `marc_subfield_structure` VALUES ('905', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3696 INSERT INTO `marc_subfield_structure` VALUES ('905', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3697 INSERT INTO `marc_subfield_structure` VALUES ('905', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3698 INSERT INTO `marc_subfield_structure` VALUES ('906', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3699 INSERT INTO `marc_subfield_structure` VALUES ('906', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3700 INSERT INTO `marc_subfield_structure` VALUES ('906', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3701 INSERT INTO `marc_subfield_structure` VALUES ('906', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3702 INSERT INTO `marc_subfield_structure` VALUES ('906', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3703 INSERT INTO `marc_subfield_structure` VALUES ('906', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3704 INSERT INTO `marc_subfield_structure` VALUES ('906', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3705 INSERT INTO `marc_subfield_structure` VALUES ('906', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3706 INSERT INTO `marc_subfield_structure` VALUES ('906', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3707 INSERT INTO `marc_subfield_structure` VALUES ('906', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3708 INSERT INTO `marc_subfield_structure` VALUES ('906', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3709 INSERT INTO `marc_subfield_structure` VALUES ('906', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3710 INSERT INTO `marc_subfield_structure` VALUES ('906', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3711 INSERT INTO `marc_subfield_structure` VALUES ('906', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3712 INSERT INTO `marc_subfield_structure` VALUES ('906', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3713 INSERT INTO `marc_subfield_structure` VALUES ('906', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3714 INSERT INTO `marc_subfield_structure` VALUES ('906', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3715 INSERT INTO `marc_subfield_structure` VALUES ('906', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3716 INSERT INTO `marc_subfield_structure` VALUES ('906', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3717 INSERT INTO `marc_subfield_structure` VALUES ('906', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3718 INSERT INTO `marc_subfield_structure` VALUES ('906', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3719 INSERT INTO `marc_subfield_structure` VALUES ('906', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3720 INSERT INTO `marc_subfield_structure` VALUES ('906', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3721 INSERT INTO `marc_subfield_structure` VALUES ('906', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3722 INSERT INTO `marc_subfield_structure` VALUES ('906', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3723 INSERT INTO `marc_subfield_structure` VALUES ('906', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3724 INSERT INTO `marc_subfield_structure` VALUES ('906', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3725 INSERT INTO `marc_subfield_structure` VALUES ('906', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3726 INSERT INTO `marc_subfield_structure` VALUES ('906', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3727 INSERT INTO `marc_subfield_structure` VALUES ('906', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3728 INSERT INTO `marc_subfield_structure` VALUES ('906', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3729 INSERT INTO `marc_subfield_structure` VALUES ('906', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3730 INSERT INTO `marc_subfield_structure` VALUES ('906', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3731 INSERT INTO `marc_subfield_structure` VALUES ('906', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3732 INSERT INTO `marc_subfield_structure` VALUES ('906', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3733 INSERT INTO `marc_subfield_structure` VALUES ('906', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3734 INSERT INTO `marc_subfield_structure` VALUES ('907', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3735 INSERT INTO `marc_subfield_structure` VALUES ('907', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3736 INSERT INTO `marc_subfield_structure` VALUES ('907', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3737 INSERT INTO `marc_subfield_structure` VALUES ('907', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3738 INSERT INTO `marc_subfield_structure` VALUES ('907', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3739 INSERT INTO `marc_subfield_structure` VALUES ('907', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3740 INSERT INTO `marc_subfield_structure` VALUES ('907', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3741 INSERT INTO `marc_subfield_structure` VALUES ('907', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3742 INSERT INTO `marc_subfield_structure` VALUES ('907', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3743 INSERT INTO `marc_subfield_structure` VALUES ('907', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3744 INSERT INTO `marc_subfield_structure` VALUES ('907', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3745 INSERT INTO `marc_subfield_structure` VALUES ('907', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3746 INSERT INTO `marc_subfield_structure` VALUES ('907', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3747 INSERT INTO `marc_subfield_structure` VALUES ('907', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3748 INSERT INTO `marc_subfield_structure` VALUES ('907', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3749 INSERT INTO `marc_subfield_structure` VALUES ('907', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3750 INSERT INTO `marc_subfield_structure` VALUES ('907', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3751 INSERT INTO `marc_subfield_structure` VALUES ('907', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3752 INSERT INTO `marc_subfield_structure` VALUES ('907', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3753 INSERT INTO `marc_subfield_structure` VALUES ('907', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3754 INSERT INTO `marc_subfield_structure` VALUES ('907', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3755 INSERT INTO `marc_subfield_structure` VALUES ('907', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3756 INSERT INTO `marc_subfield_structure` VALUES ('907', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3757 INSERT INTO `marc_subfield_structure` VALUES ('907', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3758 INSERT INTO `marc_subfield_structure` VALUES ('907', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3759 INSERT INTO `marc_subfield_structure` VALUES ('907', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3760 INSERT INTO `marc_subfield_structure` VALUES ('907', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3761 INSERT INTO `marc_subfield_structure` VALUES ('907', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3762 INSERT INTO `marc_subfield_structure` VALUES ('907', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3763 INSERT INTO `marc_subfield_structure` VALUES ('907', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3764 INSERT INTO `marc_subfield_structure` VALUES ('907', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3765 INSERT INTO `marc_subfield_structure` VALUES ('907', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3766 INSERT INTO `marc_subfield_structure` VALUES ('907', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3767 INSERT INTO `marc_subfield_structure` VALUES ('907', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3768 INSERT INTO `marc_subfield_structure` VALUES ('907', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3769 INSERT INTO `marc_subfield_structure` VALUES ('907', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3770 INSERT INTO `marc_subfield_structure` VALUES ('908', 'a', 'Put command parameter', 'Put command parameter', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
3771 INSERT INTO `marc_subfield_structure` VALUES ('910', '4', 'Relator code', 'Relator code', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3772 INSERT INTO `marc_subfield_structure` VALUES ('910', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3773 INSERT INTO `marc_subfield_structure` VALUES ('910', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3774 INSERT INTO `marc_subfield_structure` VALUES ('910', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3775 INSERT INTO `marc_subfield_structure` VALUES ('910', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3776 INSERT INTO `marc_subfield_structure` VALUES ('910', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3777 INSERT INTO `marc_subfield_structure` VALUES ('910', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3778 INSERT INTO `marc_subfield_structure` VALUES ('910', 'e', 'Relator term', 'Relator term', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3779 INSERT INTO `marc_subfield_structure` VALUES ('910', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3780 INSERT INTO `marc_subfield_structure` VALUES ('910', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3781 INSERT INTO `marc_subfield_structure` VALUES ('910', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3782 INSERT INTO `marc_subfield_structure` VALUES ('910', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3783 INSERT INTO `marc_subfield_structure` VALUES ('910', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3784 INSERT INTO `marc_subfield_structure` VALUES ('910', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3785 INSERT INTO `marc_subfield_structure` VALUES ('910', 't', 'Title of a work', 'Title of a work', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3786 INSERT INTO `marc_subfield_structure` VALUES ('910', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3787 INSERT INTO `marc_subfield_structure` VALUES ('91o', 'a', 'User-option data', 'User-option data', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3788 INSERT INTO `marc_subfield_structure` VALUES ('91r', 'a', 'RLG standards note', 'RLG standards note', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
3789 INSERT INTO `marc_subfield_structure` VALUES ('911', '4', 'Relator code', 'Relator code', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, '', '', '');
3790 INSERT INTO `marc_subfield_structure` VALUES ('911', '6', 'Linkage', 'Linkage', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, '', '', '');
3791 INSERT INTO `marc_subfield_structure` VALUES ('911', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, '', '', '');
3792 INSERT INTO `marc_subfield_structure` VALUES ('911', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, '', '', '');
3793 INSERT INTO `marc_subfield_structure` VALUES ('911', 'b', 'Number [OBSOLETE]', 'Number [OBSOLETE]', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, '', '', '');
3794 INSERT INTO `marc_subfield_structure` VALUES ('911', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, '', '', '');
3795 INSERT INTO `marc_subfield_structure` VALUES ('911', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, '', '', '');
3796 INSERT INTO `marc_subfield_structure` VALUES ('911', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, '', '', '');
3797 INSERT INTO `marc_subfield_structure` VALUES ('911', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, '', '', '');
3798 INSERT INTO `marc_subfield_structure` VALUES ('911', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, '', '', '');
3799 INSERT INTO `marc_subfield_structure` VALUES ('911', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, '', '', '');
3800 INSERT INTO `marc_subfield_structure` VALUES ('911', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, '', '', '');
3801 INSERT INTO `marc_subfield_structure` VALUES ('911', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, '', '', '');
3802 INSERT INTO `marc_subfield_structure` VALUES ('911', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, '', '', '');
3803 INSERT INTO `marc_subfield_structure` VALUES ('911', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, '', '', '');
3804 INSERT INTO `marc_subfield_structure` VALUES ('911', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, '', '', '');
3805 INSERT INTO `marc_subfield_structure` VALUES ('911', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, '', '', '');
3806 INSERT INTO `marc_subfield_structure` VALUES ('930', '6', 'Linkage', 'Linkage', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, '', '', '');
3807 INSERT INTO `marc_subfield_structure` VALUES ('930', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, '', '', '');
3808 INSERT INTO `marc_subfield_structure` VALUES ('930', 'a', 'Uniform title', 'Uniform title', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, '', '', '');
3809 INSERT INTO `marc_subfield_structure` VALUES ('930', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, '', '', '');
3810 INSERT INTO `marc_subfield_structure` VALUES ('930', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, '', '', '');
3811 INSERT INTO `marc_subfield_structure` VALUES ('930', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, '', '', '');
3812 INSERT INTO `marc_subfield_structure` VALUES ('930', 'h', 'Medium', 'Medium', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, '', '', '');
3813 INSERT INTO `marc_subfield_structure` VALUES ('930', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, '', '', '');
3814 INSERT INTO `marc_subfield_structure` VALUES ('930', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, '', '', '');
3815 INSERT INTO `marc_subfield_structure` VALUES ('930', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, '', '', '');
3816 INSERT INTO `marc_subfield_structure` VALUES ('930', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, '', '', '');
3817 INSERT INTO `marc_subfield_structure` VALUES ('930', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, '', '', '');
3818 INSERT INTO `marc_subfield_structure` VALUES ('930', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, '', '', '');
3819 INSERT INTO `marc_subfield_structure` VALUES ('930', 'r', 'Key for music', 'Key for music', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, '', '', '');
3820 INSERT INTO `marc_subfield_structure` VALUES ('930', 's', 'Version', 'Version', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, '', '', '');
3821 INSERT INTO `marc_subfield_structure` VALUES ('930', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, '', '', '');
3822 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'a', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, '', '', '');
3823 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'b', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, '', '', '');
3824 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'c', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, '', '', '');
3825 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'd', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, '', '', '');
3826 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'e', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, '', '', '');
3827 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'f', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, '', '', '');
3828 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'g', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, '', '', '');
3829 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'h', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, '', '', '');
3830 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'i', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, '', '', '');
3831 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'k', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, '', '', '');
3832 INSERT INTO `marc_subfield_structure` VALUES ('936', 'a', 'OCLC control number(s) of parallel record(s) (OCLC); Piece used for cataloging, PUC (RLIN)', 'OCLC control number(s) of parallel record(s) (OCLC); Piece used for cataloging, PUC (RLIN)', 1, 0, '', 9, '', '', '', 0, -6, '', '', '');
3833 INSERT INTO `marc_subfield_structure` VALUES ('940', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
3834 INSERT INTO `marc_subfield_structure` VALUES ('940', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', 0, -6, '', '', '');
3835 INSERT INTO `marc_subfield_structure` VALUES ('940', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 9, '', '', '', 1, -6, '', '', '');
3836 INSERT INTO `marc_subfield_structure` VALUES ('940', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 9, '', '', '', 0, -6, '', '', '');
3837 INSERT INTO `marc_subfield_structure` VALUES ('940', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
3838 INSERT INTO `marc_subfield_structure` VALUES ('940', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
3839 INSERT INTO `marc_subfield_structure` VALUES ('940', 'h', 'Medium', 'Medium', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
3840 INSERT INTO `marc_subfield_structure` VALUES ('940', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', 0, -6, '', '', '');
3841 INSERT INTO `marc_subfield_structure` VALUES ('940', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
3842 INSERT INTO `marc_subfield_structure` VALUES ('940', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 9, '', '', '', 0, -6, '', '', '');
3843 INSERT INTO `marc_subfield_structure` VALUES ('940', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 9, '', '', '', 0, -6, '', '', '');
3844 INSERT INTO `marc_subfield_structure` VALUES ('940', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
3845 INSERT INTO `marc_subfield_structure` VALUES ('940', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', 0, -6, '', '', '');
3846 INSERT INTO `marc_subfield_structure` VALUES ('940', 'r', 'Key for music', 'Key for music', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
3847 INSERT INTO `marc_subfield_structure` VALUES ('940', 's', 'Version', 'Version', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
3848 INSERT INTO `marc_subfield_structure` VALUES ('941', 'a', 'Romanized title', 'Romanized title', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, '', '', '');
3849 INSERT INTO `marc_subfield_structure` VALUES ('941', 'h', 'Medium', 'Medium', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, '', '', '');
3850 INSERT INTO `marc_subfield_structure` VALUES ('943', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
3851 INSERT INTO `marc_subfield_structure` VALUES ('943', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', 0, -6, '', '', '');
3852 INSERT INTO `marc_subfield_structure` VALUES ('943', 'a', 'Uniform title', 'Unifor title', 0, 0, '', 9, '', '', '', 1, 5, '', '', '130');
3853 INSERT INTO `marc_subfield_structure` VALUES ('943', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 9, '', '', '', 0, -6, '', '', '');
3854 INSERT INTO `marc_subfield_structure` VALUES ('943', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
3855 INSERT INTO `marc_subfield_structure` VALUES ('943', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
3856 INSERT INTO `marc_subfield_structure` VALUES ('943', 'h', 'Medium', 'Medium', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
3857 INSERT INTO `marc_subfield_structure` VALUES ('943', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', 0, -6, '', '', '');
3858 INSERT INTO `marc_subfield_structure` VALUES ('943', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
3859 INSERT INTO `marc_subfield_structure` VALUES ('943', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 9, '', '', '', 0, -6, '', '', '');
3860 INSERT INTO `marc_subfield_structure` VALUES ('943', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 9, '', '', '', 0, -6, '', '', '');
3861 INSERT INTO `marc_subfield_structure` VALUES ('943', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
3862 INSERT INTO `marc_subfield_structure` VALUES ('943', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', 0, -6, '', '', '');
3863 INSERT INTO `marc_subfield_structure` VALUES ('943', 'r', 'Key for music', 'Key for music', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
3864 INSERT INTO `marc_subfield_structure` VALUES ('943', 's', 'Version', 'Version', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
3865 INSERT INTO `marc_subfield_structure` VALUES ('945', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3866 INSERT INTO `marc_subfield_structure` VALUES ('945', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3867 INSERT INTO `marc_subfield_structure` VALUES ('945', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3868 INSERT INTO `marc_subfield_structure` VALUES ('945', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3869 INSERT INTO `marc_subfield_structure` VALUES ('945', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3870 INSERT INTO `marc_subfield_structure` VALUES ('945', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3871 INSERT INTO `marc_subfield_structure` VALUES ('945', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3872 INSERT INTO `marc_subfield_structure` VALUES ('945', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3873 INSERT INTO `marc_subfield_structure` VALUES ('945', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3874 INSERT INTO `marc_subfield_structure` VALUES ('945', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3875 INSERT INTO `marc_subfield_structure` VALUES ('945', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3876 INSERT INTO `marc_subfield_structure` VALUES ('945', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3877 INSERT INTO `marc_subfield_structure` VALUES ('945', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3878 INSERT INTO `marc_subfield_structure` VALUES ('945', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3879 INSERT INTO `marc_subfield_structure` VALUES ('945', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3880 INSERT INTO `marc_subfield_structure` VALUES ('945', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3881 INSERT INTO `marc_subfield_structure` VALUES ('945', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3882 INSERT INTO `marc_subfield_structure` VALUES ('945', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3883 INSERT INTO `marc_subfield_structure` VALUES ('945', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3884 INSERT INTO `marc_subfield_structure` VALUES ('945', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3885 INSERT INTO `marc_subfield_structure` VALUES ('945', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3886 INSERT INTO `marc_subfield_structure` VALUES ('945', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3887 INSERT INTO `marc_subfield_structure` VALUES ('945', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3888 INSERT INTO `marc_subfield_structure` VALUES ('945', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3889 INSERT INTO `marc_subfield_structure` VALUES ('945', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3890 INSERT INTO `marc_subfield_structure` VALUES ('945', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3891 INSERT INTO `marc_subfield_structure` VALUES ('945', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3892 INSERT INTO `marc_subfield_structure` VALUES ('945', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3893 INSERT INTO `marc_subfield_structure` VALUES ('945', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3894 INSERT INTO `marc_subfield_structure` VALUES ('945', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3895 INSERT INTO `marc_subfield_structure` VALUES ('945', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3896 INSERT INTO `marc_subfield_structure` VALUES ('945', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3897 INSERT INTO `marc_subfield_structure` VALUES ('945', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3898 INSERT INTO `marc_subfield_structure` VALUES ('945', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3899 INSERT INTO `marc_subfield_structure` VALUES ('945', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3900 INSERT INTO `marc_subfield_structure` VALUES ('945', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3901 INSERT INTO `marc_subfield_structure` VALUES ('94c', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3902 INSERT INTO `marc_subfield_structure` VALUES ('94c', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3903 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'a', 'Title', 'Title', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3904 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'b', 'Remainder of title', 'Remainder of title', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3905 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'c', 'Statement of responsibility, etc', 'Statement of responsibility, etc', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3906 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'd', 'Designation of section/part/series (SE) [OBSOLETE]', 'Designation of section section/part/series (SE) [OBSOLETE]', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3907 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'e', 'Name of part/section/series (SE) [OBSOLETE]', 'Name of part/section/series (SE) [OBSOLETE]', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3908 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'f', 'Inclusive dates', 'Inclusive dates', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3909 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'g', 'Bulk dates', 'Bulk dates', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3910 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'h', 'Medium', 'Medium', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3911 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'k', 'Form', 'Form', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3912 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3913 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3914 INSERT INTO `marc_subfield_structure` VALUES ('94c', 's', 'Version', 'Version', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3915 INSERT INTO `marc_subfield_structure` VALUES ('946', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3916 INSERT INTO `marc_subfield_structure` VALUES ('946', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3917 INSERT INTO `marc_subfield_structure` VALUES ('946', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3918 INSERT INTO `marc_subfield_structure` VALUES ('946', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3919 INSERT INTO `marc_subfield_structure` VALUES ('946', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3920 INSERT INTO `marc_subfield_structure` VALUES ('946', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3921 INSERT INTO `marc_subfield_structure` VALUES ('946', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3922 INSERT INTO `marc_subfield_structure` VALUES ('946', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3923 INSERT INTO `marc_subfield_structure` VALUES ('946', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3924 INSERT INTO `marc_subfield_structure` VALUES ('946', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3925 INSERT INTO `marc_subfield_structure` VALUES ('946', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3926 INSERT INTO `marc_subfield_structure` VALUES ('946', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3927 INSERT INTO `marc_subfield_structure` VALUES ('946', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3928 INSERT INTO `marc_subfield_structure` VALUES ('946', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3929 INSERT INTO `marc_subfield_structure` VALUES ('946', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3930 INSERT INTO `marc_subfield_structure` VALUES ('946', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3931 INSERT INTO `marc_subfield_structure` VALUES ('946', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3932 INSERT INTO `marc_subfield_structure` VALUES ('946', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3933 INSERT INTO `marc_subfield_structure` VALUES ('946', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3934 INSERT INTO `marc_subfield_structure` VALUES ('946', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3935 INSERT INTO `marc_subfield_structure` VALUES ('946', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3936 INSERT INTO `marc_subfield_structure` VALUES ('946', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3937 INSERT INTO `marc_subfield_structure` VALUES ('946', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3938 INSERT INTO `marc_subfield_structure` VALUES ('946', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3939 INSERT INTO `marc_subfield_structure` VALUES ('946', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3940 INSERT INTO `marc_subfield_structure` VALUES ('946', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3941 INSERT INTO `marc_subfield_structure` VALUES ('946', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3942 INSERT INTO `marc_subfield_structure` VALUES ('946', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3943 INSERT INTO `marc_subfield_structure` VALUES ('946', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3944 INSERT INTO `marc_subfield_structure` VALUES ('946', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3945 INSERT INTO `marc_subfield_structure` VALUES ('946', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3946 INSERT INTO `marc_subfield_structure` VALUES ('946', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3947 INSERT INTO `marc_subfield_structure` VALUES ('946', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3948 INSERT INTO `marc_subfield_structure` VALUES ('946', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3949 INSERT INTO `marc_subfield_structure` VALUES ('946', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3950 INSERT INTO `marc_subfield_structure` VALUES ('946', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3951 INSERT INTO `marc_subfield_structure` VALUES ('947', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3952 INSERT INTO `marc_subfield_structure` VALUES ('947', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3953 INSERT INTO `marc_subfield_structure` VALUES ('947', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3954 INSERT INTO `marc_subfield_structure` VALUES ('947', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3955 INSERT INTO `marc_subfield_structure` VALUES ('947', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3956 INSERT INTO `marc_subfield_structure` VALUES ('947', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3957 INSERT INTO `marc_subfield_structure` VALUES ('947', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3958 INSERT INTO `marc_subfield_structure` VALUES ('947', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3959 INSERT INTO `marc_subfield_structure` VALUES ('947', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3960 INSERT INTO `marc_subfield_structure` VALUES ('947', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3961 INSERT INTO `marc_subfield_structure` VALUES ('947', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3962 INSERT INTO `marc_subfield_structure` VALUES ('947', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3963 INSERT INTO `marc_subfield_structure` VALUES ('947', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3964 INSERT INTO `marc_subfield_structure` VALUES ('947', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3965 INSERT INTO `marc_subfield_structure` VALUES ('947', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3966 INSERT INTO `marc_subfield_structure` VALUES ('947', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3967 INSERT INTO `marc_subfield_structure` VALUES ('947', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3968 INSERT INTO `marc_subfield_structure` VALUES ('947', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3969 INSERT INTO `marc_subfield_structure` VALUES ('947', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3970 INSERT INTO `marc_subfield_structure` VALUES ('947', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3971 INSERT INTO `marc_subfield_structure` VALUES ('947', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3972 INSERT INTO `marc_subfield_structure` VALUES ('947', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3973 INSERT INTO `marc_subfield_structure` VALUES ('947', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3974 INSERT INTO `marc_subfield_structure` VALUES ('947', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3975 INSERT INTO `marc_subfield_structure` VALUES ('947', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3976 INSERT INTO `marc_subfield_structure` VALUES ('947', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3977 INSERT INTO `marc_subfield_structure` VALUES ('947', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3978 INSERT INTO `marc_subfield_structure` VALUES ('947', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3979 INSERT INTO `marc_subfield_structure` VALUES ('947', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3980 INSERT INTO `marc_subfield_structure` VALUES ('947', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3981 INSERT INTO `marc_subfield_structure` VALUES ('947', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3982 INSERT INTO `marc_subfield_structure` VALUES ('947', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3983 INSERT INTO `marc_subfield_structure` VALUES ('947', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3984 INSERT INTO `marc_subfield_structure` VALUES ('947', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3985 INSERT INTO `marc_subfield_structure` VALUES ('947', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3986 INSERT INTO `marc_subfield_structure` VALUES ('947', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3987 INSERT INTO `marc_subfield_structure` VALUES ('948', '0', '0 (OCLC)', '0 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3988 INSERT INTO `marc_subfield_structure` VALUES ('948', '1', '1 (OCLC)', '1 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3989 INSERT INTO `marc_subfield_structure` VALUES ('948', '2', '2 (OCLC)', '2 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3990 INSERT INTO `marc_subfield_structure` VALUES ('948', '3', '3 (OCLC)', '3 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3991 INSERT INTO `marc_subfield_structure` VALUES ('948', '4', '4 (OCLC)', '4 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3992 INSERT INTO `marc_subfield_structure` VALUES ('948', '5', '5 (OCLC)', '5 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3993 INSERT INTO `marc_subfield_structure` VALUES ('948', '6', '6 (OCLC)', '6 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3994 INSERT INTO `marc_subfield_structure` VALUES ('948', '7', '7 (OCLC)', '7 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3995 INSERT INTO `marc_subfield_structure` VALUES ('948', '8', '8 (OCLC)', '8 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3996 INSERT INTO `marc_subfield_structure` VALUES ('948', '9', '9 (OCLC)', '9 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3997 INSERT INTO `marc_subfield_structure` VALUES ('948', 'a', 'Series part designator, SPT (RLIN)', 'Series part designator, SPT (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
3998 INSERT INTO `marc_subfield_structure` VALUES ('948', 'b', 'b (OCLC)', 'b (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3999 INSERT INTO `marc_subfield_structure` VALUES ('948', 'c', 'c (OCLC)', 'c (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4000 INSERT INTO `marc_subfield_structure` VALUES ('948', 'd', 'd (OCLC)', 'd (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4001 INSERT INTO `marc_subfield_structure` VALUES ('948', 'e', 'e (OCLC)', 'e (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4002 INSERT INTO `marc_subfield_structure` VALUES ('948', 'f', 'f (OCLC)', 'f (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4003 INSERT INTO `marc_subfield_structure` VALUES ('948', 'g', 'g (OCLC)', 'g (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4004 INSERT INTO `marc_subfield_structure` VALUES ('948', 'h', 'h (OCLC)', 'h (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4005 INSERT INTO `marc_subfield_structure` VALUES ('948', 'i', 'i (OCLC)', 'i (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4006 INSERT INTO `marc_subfield_structure` VALUES ('948', 'j', 'j (OCLC)', 'j (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4007 INSERT INTO `marc_subfield_structure` VALUES ('948', 'k', 'k (OCLC)', 'k (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4008 INSERT INTO `marc_subfield_structure` VALUES ('948', 'l', 'l (OCLC)', 'l (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4009 INSERT INTO `marc_subfield_structure` VALUES ('948', 'm', 'm (OCLC)', 'm (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4010 INSERT INTO `marc_subfield_structure` VALUES ('948', 'n', 'n (OCLC)', 'n (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4011 INSERT INTO `marc_subfield_structure` VALUES ('948', 'o', 'o (OCLC)', 'o (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4012 INSERT INTO `marc_subfield_structure` VALUES ('948', 'p', 'p (OCLC)', 'p (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4013 INSERT INTO `marc_subfield_structure` VALUES ('948', 'q', 'q (OCLC)', 'q (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4014 INSERT INTO `marc_subfield_structure` VALUES ('948', 'r', 'r (OCLC)', 'r (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4015 INSERT INTO `marc_subfield_structure` VALUES ('948', 's', 's (OCLC)', 's (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4016 INSERT INTO `marc_subfield_structure` VALUES ('948', 't', 't (OCLC)', 't (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4017 INSERT INTO `marc_subfield_structure` VALUES ('948', 'u', 'u (OCLC)', 'u (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4018 INSERT INTO `marc_subfield_structure` VALUES ('948', 'v', 'v (OCLC)', 'v (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4019 INSERT INTO `marc_subfield_structure` VALUES ('948', 'w', 'w (OCLC)', 'w (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4020 INSERT INTO `marc_subfield_structure` VALUES ('948', 'x', 'x (OCLC)', 'x (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4021 INSERT INTO `marc_subfield_structure` VALUES ('948', 'y', 'y (OCLC)', 'y (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4022 INSERT INTO `marc_subfield_structure` VALUES ('948', 'z', 'z (OCLC)', 'z (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4023 INSERT INTO `marc_subfield_structure` VALUES ('949', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4024 INSERT INTO `marc_subfield_structure` VALUES ('949', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4025 INSERT INTO `marc_subfield_structure` VALUES ('949', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4026 INSERT INTO `marc_subfield_structure` VALUES ('949', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4027 INSERT INTO `marc_subfield_structure` VALUES ('949', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4028 INSERT INTO `marc_subfield_structure` VALUES ('949', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4029 INSERT INTO `marc_subfield_structure` VALUES ('949', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4030 INSERT INTO `marc_subfield_structure` VALUES ('949', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4031 INSERT INTO `marc_subfield_structure` VALUES ('949', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4032 INSERT INTO `marc_subfield_structure` VALUES ('949', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4033 INSERT INTO `marc_subfield_structure` VALUES ('949', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4034 INSERT INTO `marc_subfield_structure` VALUES ('949', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4035 INSERT INTO `marc_subfield_structure` VALUES ('949', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4036 INSERT INTO `marc_subfield_structure` VALUES ('949', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4037 INSERT INTO `marc_subfield_structure` VALUES ('949', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4038 INSERT INTO `marc_subfield_structure` VALUES ('949', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4039 INSERT INTO `marc_subfield_structure` VALUES ('949', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4040 INSERT INTO `marc_subfield_structure` VALUES ('949', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4041 INSERT INTO `marc_subfield_structure` VALUES ('949', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4042 INSERT INTO `marc_subfield_structure` VALUES ('949', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4043 INSERT INTO `marc_subfield_structure` VALUES ('949', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4044 INSERT INTO `marc_subfield_structure` VALUES ('949', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4045 INSERT INTO `marc_subfield_structure` VALUES ('949', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4046 INSERT INTO `marc_subfield_structure` VALUES ('949', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4047 INSERT INTO `marc_subfield_structure` VALUES ('949', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4048 INSERT INTO `marc_subfield_structure` VALUES ('949', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4049 INSERT INTO `marc_subfield_structure` VALUES ('949', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4050 INSERT INTO `marc_subfield_structure` VALUES ('949', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4051 INSERT INTO `marc_subfield_structure` VALUES ('949', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4052 INSERT INTO `marc_subfield_structure` VALUES ('949', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4053 INSERT INTO `marc_subfield_structure` VALUES ('949', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4054 INSERT INTO `marc_subfield_structure` VALUES ('949', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4055 INSERT INTO `marc_subfield_structure` VALUES ('949', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4056 INSERT INTO `marc_subfield_structure` VALUES ('949', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4057 INSERT INTO `marc_subfield_structure` VALUES ('949', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4058 INSERT INTO `marc_subfield_structure` VALUES ('949', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4059 INSERT INTO `marc_subfield_structure` VALUES ('94a', 'a', 'ATN', 'ATN', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
4060 INSERT INTO `marc_subfield_structure` VALUES ('94a', 'b', 'ATN', 'ATN', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
4061 INSERT INTO `marc_subfield_structure` VALUES ('94a', 'c', 'ATN', 'ATN', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
4062 INSERT INTO `marc_subfield_structure` VALUES ('94a', 'd', 'ATN', 'ATN', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
4063 INSERT INTO `marc_subfield_structure` VALUES ('94a', 'e', 'ATN', 'ATN', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
4064 INSERT INTO `marc_subfield_structure` VALUES ('94b', 'a', 'ATC', 'ATC', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
4065 INSERT INTO `marc_subfield_structure` VALUES ('94b', 'b', 'SNR', 'SNR', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
4066 INSERT INTO `marc_subfield_structure` VALUES ('950', 'a', 'Classification number, LCAL (RLIN)', 'Classification number, LCAL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4067 INSERT INTO `marc_subfield_structure` VALUES ('950', 'b', 'Book number/undivided call number, LCAL (RLIN)', 'Book number/undivided call number, LCAL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4068 INSERT INTO `marc_subfield_structure` VALUES ('950', 'd', 'Additional free-text stamp above the call number, LCAL (RLIN)', 'Additional free-text stamp above the call number, LCAL (RLIN)', 1, 0, '', 9, '', '', '', 0, 5, '', '', '');
4069 INSERT INTO `marc_subfield_structure` VALUES ('950', 'e', 'Additional free-text or profiled stamp below the call number, LCAL (RLIN)', 'Additional free-text or profiled stamp below the call number, LCAL (RLIN)', 1, 0, '', 9, '', '', '', 0, 5, '', '', '');
4070 INSERT INTO `marc_subfield_structure` VALUES ('950', 'f', 'Location-level footnote, LFNT (RLIN)', 'Location-level footnote, LFNT (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4071 INSERT INTO `marc_subfield_structure` VALUES ('950', 'h', 'Location-level output transaction history, LHST (RLIN)', 'Location-level output transaction history, LHST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4072 INSERT INTO `marc_subfield_structure` VALUES ('950', 'i', 'Location-level extra card request, LEXT (RLIN)', 'Location-level extra card request, LEXT (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4073 INSERT INTO `marc_subfield_structure` VALUES ('950', 'l', 'Permanent shelving location, LOC (RLIN)', 'Permanent shelving location, LOC (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4074 INSERT INTO `marc_subfield_structure` VALUES ('950', 'n', 'Location-level additional note, LANT (RLIN)', 'Location-level additional note, LANT (RLIN)', 1, 0, '', 9, '', '', '', 0, 5, '', '', '');
4075 INSERT INTO `marc_subfield_structure` VALUES ('950', 'p', 'Location-level pathfinder, LPTH (RLIN)', 'Location-level pathfinder, LPTH (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4076 INSERT INTO `marc_subfield_structure` VALUES ('950', 't', 'Location-level field suppression, LFSP (RLIN)', 'Location-level field suppression, LFSP (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4077 INSERT INTO `marc_subfield_structure` VALUES ('950', 'u', 'Non-printing notes, LANT (RLIN)', 'Non-printing notes, LANT (RLIN)', 1, 0, '', 9, '', '', '', 0, 5, '', '', '');
4078 INSERT INTO `marc_subfield_structure` VALUES ('950', 'v', 'Volumes, LVOL (RLIN)', 'Volumes, LVOL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4079 INSERT INTO `marc_subfield_structure` VALUES ('950', 'w', 'Subscription status code, LANT (RLIN)', 'Subscription status code, LANT (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4080 INSERT INTO `marc_subfield_structure` VALUES ('950', 'y', 'Date, LVOL (RLIN)', 'Date, LVOL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4081 INSERT INTO `marc_subfield_structure` VALUES ('950', 'z', 'Retention, LVOL (RLIN)', 'Retention, LVOL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4082 INSERT INTO `marc_subfield_structure` VALUES ('951', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
4083 INSERT INTO `marc_subfield_structure` VALUES ('951', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
4084 INSERT INTO `marc_subfield_structure` VALUES ('951', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
4085 INSERT INTO `marc_subfield_structure` VALUES ('951', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
4086 INSERT INTO `marc_subfield_structure` VALUES ('951', 'a', 'Geographic name', 'Geographic name', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
4087 INSERT INTO `marc_subfield_structure` VALUES ('951', 'b', 'Geographic name following place entry element [OBSOLETE]', 'Geographic name following place entry element [OBSOLETE]', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
4088 INSERT INTO `marc_subfield_structure` VALUES ('951', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
4089 INSERT INTO `marc_subfield_structure` VALUES ('951', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
4090 INSERT INTO `marc_subfield_structure` VALUES ('951', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
4091 INSERT INTO `marc_subfield_structure` VALUES ('951', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
4092 INSERT INTO `marc_subfield_structure` VALUES ('95c', 'a', 'Record ID (RLIN)', 'Record ID (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4093 INSERT INTO `marc_subfield_structure` VALUES ('95c', 'b', 'Institution name (RLIN)', 'Institution name (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4094 INSERT INTO `marc_subfield_structure` VALUES ('95r', '6', 'Linkage', 'Linkage', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, '', '', '');
4095 INSERT INTO `marc_subfield_structure` VALUES ('95r', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 9, NULL, NULL, '', NULL, 5, '', '', '');
4096 INSERT INTO `marc_subfield_structure` VALUES ('95r', 'a', 'Country', 'Country', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, '', '', '');
4097 INSERT INTO `marc_subfield_structure` VALUES ('95r', 'b', 'State, province, territory', 'State, province, territory', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, '', '', '');
4098 INSERT INTO `marc_subfield_structure` VALUES ('95r', 'c', 'County, region, islands area', 'County, region, islands area', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, '', '', '');
4099 INSERT INTO `marc_subfield_structure` VALUES ('95r', 'd', 'City', 'City', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, '', '', '');
4100 INSERT INTO `marc_subfield_structure` VALUES ('955', 'a', 'Classification number, CCAL (RLIN)', 'Classification number, CCAL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4101 INSERT INTO `marc_subfield_structure` VALUES ('955', 'b', 'Book number/undivided call number, CCAL (RLIN)', 'Book number/undivided call number, CCAL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4102 INSERT INTO `marc_subfield_structure` VALUES ('955', 'c', 'Copy information and material description, CCAL + MDES (RLIN)', 'Copy information and material description, CCAL + MDES (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4103 INSERT INTO `marc_subfield_structure` VALUES ('955', 'h', 'Copy status--for earlier dates, CST (RLIN)', 'Copy status--for earlier dates, CST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4104 INSERT INTO `marc_subfield_structure` VALUES ('955', 'i', 'Copy status, CST (RLIN)', 'Copy status, CST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4105 INSERT INTO `marc_subfield_structure` VALUES ('955', 'l', 'Permanent shelving location, LOC (RLIN)', 'Permanent shelving location, LOC (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4106 INSERT INTO `marc_subfield_structure` VALUES ('955', 'q', 'Aquisitions control number, HNT (RLIN)', 'Aquisitions control number, HNT (RLIN)', 1, 0, '', 9, '', '', '', 0, 5, '', '', '');
4107 INSERT INTO `marc_subfield_structure` VALUES ('955', 'r', 'Circulation control number, HNT (RLIN)', 'Circulation control number, HNT (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4108 INSERT INTO `marc_subfield_structure` VALUES ('955', 's', 'Shelflist note, HNT (RLIN)', 'Shelflist note, HNT (RLIN)', 1, 0, '', 9, '', '', '', 1, 5, '', '', '');
4109 INSERT INTO `marc_subfield_structure` VALUES ('955', 'u', 'Non-printing notes, HNT (RLIN)', 'Non-printing notes, HNT (RLIN)', 1, 0, '', 9, '', '', '', 0, 5, '', '', '');
4110 INSERT INTO `marc_subfield_structure` VALUES ('956', '2', 'Access method', 'Access method', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
4111 INSERT INTO `marc_subfield_structure` VALUES ('956', '3', 'Materials specified', 'Materials specified', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
4112 INSERT INTO `marc_subfield_structure` VALUES ('956', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
4113 INSERT INTO `marc_subfield_structure` VALUES ('956', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', 0, -6, '', '', '');
4114 INSERT INTO `marc_subfield_structure` VALUES ('956', 'a', 'Host name', 'Host name', 1, 0, '', 9, '', '', '', 0, -6, '', '', '');
4115 INSERT INTO `marc_subfield_structure` VALUES ('956', 'b', 'Access number', 'Access number', 1, 0, '', 9, '', '', '', 0, -6, '', '', '');
4116 INSERT INTO `marc_subfield_structure` VALUES ('956', 'c', 'Compression information', 'Compression information', 1, 0, '', 9, '', '', '', 0, -6, '', '', '');
4117 INSERT INTO `marc_subfield_structure` VALUES ('956', 'd', 'Path', 'Path', 1, 0, '', 9, '', '', '', 0, -6, '', '', '');
4118 INSERT INTO `marc_subfield_structure` VALUES ('956', 'f', 'Electronic name', 'Electronic name', 1, 0, '', 9, '', '', '', 0, -6, '', '', '');
4119 INSERT INTO `marc_subfield_structure` VALUES ('956', 'h', 'Processor of request', 'Processor of request', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
4120 INSERT INTO `marc_subfield_structure` VALUES ('956', 'i', 'Instruction', 'Instruction', 1, 0, '', 9, '', '', '', 0, -6, '', '', '');
4121 INSERT INTO `marc_subfield_structure` VALUES ('956', 'j', 'Bits per second', 'Bits per second', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
4122 INSERT INTO `marc_subfield_structure` VALUES ('956', 'k', 'Password', 'Password', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
4123 INSERT INTO `marc_subfield_structure` VALUES ('956', 'l', 'Logon', 'Logon', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
4124 INSERT INTO `marc_subfield_structure` VALUES ('956', 'm', 'Contact for access assistance', 'Contact for access assistance', 1, 0, '', 9, '', '', '', 0, -6, '', '', '');
4125 INSERT INTO `marc_subfield_structure` VALUES ('956', 'n', 'Name of location of host in subfield', 'Name of location of host in subfield', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
4126 INSERT INTO `marc_subfield_structure` VALUES ('956', 'o', 'Operating system', 'Operating system', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
4127 INSERT INTO `marc_subfield_structure` VALUES ('956', 'p', 'Port', 'Port', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
4128 INSERT INTO `marc_subfield_structure` VALUES ('956', 'q', 'Electronic format type', 'Electronic format type', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
4129 INSERT INTO `marc_subfield_structure` VALUES ('956', 'r', 'Settings', 'Settings', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
4130 INSERT INTO `marc_subfield_structure` VALUES ('956', 's', 'File size', 'File size', 1, 0, '', 9, '', '', '', 0, -6, '', '', '');
4131 INSERT INTO `marc_subfield_structure` VALUES ('956', 't', 'Terminal emulation', 'Terminal emulation', 1, 0, '', 9, '', '', '', 0, -6, '', '', '');
4132 INSERT INTO `marc_subfield_structure` VALUES ('956', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 9, '', '', '', 1, -6, '', '', '');
4133 INSERT INTO `marc_subfield_structure` VALUES ('956', 'v', 'Hours access method available', 'Hours access method available', 1, 0, '', 9, '', '', '', 0, -6, '', '', '');
4134 INSERT INTO `marc_subfield_structure` VALUES ('956', 'w', 'Record control number', 'Record control number', 1, 0, '', 9, '', '', '', 0, -6, '', '', '');
4135 INSERT INTO `marc_subfield_structure` VALUES ('956', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 9, '', '', '', 0, 6, '', '', '');
4136 INSERT INTO `marc_subfield_structure` VALUES ('956', 'y', 'Link text', 'Link text', 1, 0, '', 9, '', '', '', 0, -6, '', '', '');
4137 INSERT INTO `marc_subfield_structure` VALUES ('956', 'z', 'Public note', 'Public note', 1, 0, '', 9, '', '', '', 0, -6, '', '', '');
4138 INSERT INTO `marc_subfield_structure` VALUES ('960', '3', 'Materials specified, MATL', 'Materials specified, MATL', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4139 INSERT INTO `marc_subfield_structure` VALUES ('960', 'a', 'Physical location, PLOC (RLIN)', 'Physical location, PLOC (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
4140 INSERT INTO `marc_subfield_structure` VALUES ('967', 'a', 'GNR (RLIN)', 'GNR (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
4141 INSERT INTO `marc_subfield_structure` VALUES ('967', 'c', 'PSI (RLIN)', 'PSI (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
4142 INSERT INTO `marc_subfield_structure` VALUES ('980', '4', 'Relator code', 'Relator code', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4143 INSERT INTO `marc_subfield_structure` VALUES ('980', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4144 INSERT INTO `marc_subfield_structure` VALUES ('980', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4145 INSERT INTO `marc_subfield_structure` VALUES ('980', 'a', 'Personal name', 'Personal name', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4146 INSERT INTO `marc_subfield_structure` VALUES ('980', 'b', 'Numeration', 'Numeration', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4147 INSERT INTO `marc_subfield_structure` VALUES ('980', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4148 INSERT INTO `marc_subfield_structure` VALUES ('980', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4149 INSERT INTO `marc_subfield_structure` VALUES ('980', 'e', 'Relator term', 'Relator term', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4150 INSERT INTO `marc_subfield_structure` VALUES ('980', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4151 INSERT INTO `marc_subfield_structure` VALUES ('980', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4152 INSERT INTO `marc_subfield_structure` VALUES ('980', 'h', 'Medium', 'Medium', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4153 INSERT INTO `marc_subfield_structure` VALUES ('980', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4154 INSERT INTO `marc_subfield_structure` VALUES ('980', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4155 INSERT INTO `marc_subfield_structure` VALUES ('980', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4156 INSERT INTO `marc_subfield_structure` VALUES ('980', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4157 INSERT INTO `marc_subfield_structure` VALUES ('980', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4158 INSERT INTO `marc_subfield_structure` VALUES ('980', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4159 INSERT INTO `marc_subfield_structure` VALUES ('980', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4160 INSERT INTO `marc_subfield_structure` VALUES ('980', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4161 INSERT INTO `marc_subfield_structure` VALUES ('980', 'r', 'Key for music', 'Key for music', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4162 INSERT INTO `marc_subfield_structure` VALUES ('980', 's', 'Version', 'Version', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4163 INSERT INTO `marc_subfield_structure` VALUES ('980', 't', 'Title of a work', 'Title of a work', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4164 INSERT INTO `marc_subfield_structure` VALUES ('980', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4165 INSERT INTO `marc_subfield_structure` VALUES ('980', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4166 INSERT INTO `marc_subfield_structure` VALUES ('981', '4', 'Relator code', 'Relator code', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4167 INSERT INTO `marc_subfield_structure` VALUES ('981', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4168 INSERT INTO `marc_subfield_structure` VALUES ('981', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4169 INSERT INTO `marc_subfield_structure` VALUES ('981', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4170 INSERT INTO `marc_subfield_structure` VALUES ('981', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4171 INSERT INTO `marc_subfield_structure` VALUES ('981', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4172 INSERT INTO `marc_subfield_structure` VALUES ('981', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4173 INSERT INTO `marc_subfield_structure` VALUES ('981', 'e', 'Relator term', 'Relator term', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4174 INSERT INTO `marc_subfield_structure` VALUES ('981', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4175 INSERT INTO `marc_subfield_structure` VALUES ('981', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4176 INSERT INTO `marc_subfield_structure` VALUES ('981', 'h', 'Medium', 'Medium', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4177 INSERT INTO `marc_subfield_structure` VALUES ('981', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4178 INSERT INTO `marc_subfield_structure` VALUES ('981', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4179 INSERT INTO `marc_subfield_structure` VALUES ('981', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4180 INSERT INTO `marc_subfield_structure` VALUES ('981', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4181 INSERT INTO `marc_subfield_structure` VALUES ('981', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4182 INSERT INTO `marc_subfield_structure` VALUES ('981', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4183 INSERT INTO `marc_subfield_structure` VALUES ('981', 'r', 'Key for music', 'Key for music', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4184 INSERT INTO `marc_subfield_structure` VALUES ('981', 's', 'Version', 'Version', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4185 INSERT INTO `marc_subfield_structure` VALUES ('981', 't', 'Title of a work', 'Title of a work', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4186 INSERT INTO `marc_subfield_structure` VALUES ('981', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4187 INSERT INTO `marc_subfield_structure` VALUES ('981', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4188 INSERT INTO `marc_subfield_structure` VALUES ('982', '4', 'Relator code', 'Relator code', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
4189 INSERT INTO `marc_subfield_structure` VALUES ('982', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
4190 INSERT INTO `marc_subfield_structure` VALUES ('982', '8', 'Field link and sequence number ', 'Field link and sequence number ', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
4191 INSERT INTO `marc_subfield_structure` VALUES ('982', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
4192 INSERT INTO `marc_subfield_structure` VALUES ('982', 'b', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
4193 INSERT INTO `marc_subfield_structure` VALUES ('982', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
4194 INSERT INTO `marc_subfield_structure` VALUES ('982', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
4195 INSERT INTO `marc_subfield_structure` VALUES ('982', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
4196 INSERT INTO `marc_subfield_structure` VALUES ('982', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
4197 INSERT INTO `marc_subfield_structure` VALUES ('982', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
4198 INSERT INTO `marc_subfield_structure` VALUES ('982', 'h', 'Medium', 'Medium', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
4199 INSERT INTO `marc_subfield_structure` VALUES ('982', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
4200 INSERT INTO `marc_subfield_structure` VALUES ('982', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
4201 INSERT INTO `marc_subfield_structure` VALUES ('982', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
4202 INSERT INTO `marc_subfield_structure` VALUES ('982', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
4203 INSERT INTO `marc_subfield_structure` VALUES ('982', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
4204 INSERT INTO `marc_subfield_structure` VALUES ('982', 's', 'Version', 'Version', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
4205 INSERT INTO `marc_subfield_structure` VALUES ('982', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
4206 INSERT INTO `marc_subfield_structure` VALUES ('982', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
4207 INSERT INTO `marc_subfield_structure` VALUES ('982', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
4208 INSERT INTO `marc_subfield_structure` VALUES ('983', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4209 INSERT INTO `marc_subfield_structure` VALUES ('983', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4210 INSERT INTO `marc_subfield_structure` VALUES ('983', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4211 INSERT INTO `marc_subfield_structure` VALUES ('983', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4212 INSERT INTO `marc_subfield_structure` VALUES ('983', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4213 INSERT INTO `marc_subfield_structure` VALUES ('983', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4214 INSERT INTO `marc_subfield_structure` VALUES ('983', 'h', 'Medium', 'Medium', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4215 INSERT INTO `marc_subfield_structure` VALUES ('983', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4216 INSERT INTO `marc_subfield_structure` VALUES ('983', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4217 INSERT INTO `marc_subfield_structure` VALUES ('983', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4218 INSERT INTO `marc_subfield_structure` VALUES ('983', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4219 INSERT INTO `marc_subfield_structure` VALUES ('983', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4220 INSERT INTO `marc_subfield_structure` VALUES ('983', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4221 INSERT INTO `marc_subfield_structure` VALUES ('983', 'r', 'Key for music', 'Key for music', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4222 INSERT INTO `marc_subfield_structure` VALUES ('983', 's', 'Version', 'Version', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4223 INSERT INTO `marc_subfield_structure` VALUES ('983', 't', 'Title of a work', 'Title of a work', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4224 INSERT INTO `marc_subfield_structure` VALUES ('983', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4225 INSERT INTO `marc_subfield_structure` VALUES ('984', 'a', 'Holding library identification number', 'Holding library identification number', 0, 0, '', 9, '', '', '', NULL, 5, '', '', '');
4226 INSERT INTO `marc_subfield_structure` VALUES ('984', 'b', 'Physical description codes', 'Physical description codes', 1, 0, '', 9, '', '', '', 0, 5, '', '', '');
4227 INSERT INTO `marc_subfield_structure` VALUES ('984', 'c', 'Call number', 'Call number', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4228 INSERT INTO `marc_subfield_structure` VALUES ('984', 'd', 'Volume or other numbering', 'Volume or other numbering', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4229 INSERT INTO `marc_subfield_structure` VALUES ('984', 'e', 'Dates', 'Dates', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4230 INSERT INTO `marc_subfield_structure` VALUES ('984', 'f', 'Completeness note', 'Completeness note', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4231 INSERT INTO `marc_subfield_structure` VALUES ('984', 'g', 'Referral note', 'Referral note', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4232 INSERT INTO `marc_subfield_structure` VALUES ('984', 'h', 'Retention note', 'Retention note', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4233 INSERT INTO `marc_subfield_structure` VALUES ('987', 'a', 'Romanization/conversion identifier', 'Romanization/conversion identifier', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4234 INSERT INTO `marc_subfield_structure` VALUES ('987', 'b', 'Agency that converted, created or reviewed', 'Agency that converted, created or reviewed', 1, 0, '', 9, '', '', '', 0, -6, '', '', '');
4235 INSERT INTO `marc_subfield_structure` VALUES ('987', 'c', 'Date of conversion or review', 'Date of conversion or review', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
4236 INSERT INTO `marc_subfield_structure` VALUES ('987', 'd', 'Status code', 'Status code ', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
4237 INSERT INTO `marc_subfield_structure` VALUES ('987', 'e', 'Version of conversion program used', 'Version of conversion program used', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
4238 INSERT INTO `marc_subfield_structure` VALUES ('987', 'f', 'Note', 'Note', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
4239 INSERT INTO `marc_subfield_structure` VALUES ('990', 'a', 'Link information for 9XX fields', 'Link information for 9XX fields', 1, 0, '', 9, '', '', '', 0, -6, '', '', '');
4240 INSERT INTO `marc_subfield_structure` VALUES ('990', 'b', 'Link information for field corresponding to 9XX field', 'Link information for field corresponding to 9XX field', 1, 0, '', 9, '', '', '', 0, -6, '', '', '');
4241 INSERT INTO `marc_subfield_structure` VALUES ('995', 'a', 'Origine du document, texte libre', 'Origine du document, texte libre', 0, 0, '', 9, '', '', '', NULL, 5, '', '', '');
4242 INSERT INTO `marc_subfield_structure` VALUES ('995', 'b', 'Origine du document, donn&eacute;e cod&eacute;e', '', 0, 0, '', 9, '', '', '', NULL, 5, '', '', '');
4243 INSERT INTO `marc_subfield_structure` VALUES ('995', 'c', '&Eacute;tablissement pr&ecirc;teur ou d&eacute;posant, texte libre', '&Eacute;tablissement pr&ecirc;teur ou d&eacute;posant, texte libre', 0, 0, '', 9, '', '', '', NULL, 5, '', '', '');
4244 INSERT INTO `marc_subfield_structure` VALUES ('995', 'd', '&Eacute;tablissement pr&ecirc;teur ou d&eacute;posant, donn&eacute;e cod&eacute;e', '&Eacute;tablissement pr&ecirc;teur ou d&eacute;posant, donn&eacute;e cod&eacute;e', 0, 0, '', 9, '', '', '', NULL, 5, '', '', '');
4245 INSERT INTO `marc_subfield_structure` VALUES ('995', 'e', 'Genre d&eacute;taill&eacute;', 'Genre d&eacute;taill&eacute;', 0, 0, '', 9, '', '', '', NULL, 5, '', '', '');
4246 INSERT INTO `marc_subfield_structure` VALUES ('995', 'f', 'Code &agrave; barres, suite alphanum&eacute;rique int&eacute;grale', 'Code &agrave; barres, suite alphanum&eacute;rique int&eacute;grale', 0, 0, '', 9, '', '', '', NULL, 5, '', '', '');
4247 INSERT INTO `marc_subfield_structure` VALUES ('995', 'g', 'Code &agrave; barres, pr&eacute;fixe', 'Code &agrave; barres, pr&eacute;fixe', 0, 0, '', 9, '', '', '', NULL, 5, '', '', '');
4248 INSERT INTO `marc_subfield_structure` VALUES ('995', 'h', 'Code &agrave; barres, incr&eacute;mentation', 'Code &agrave; barres, incr&eacute;mentation', 0, 0, '', 9, '', '', '', NULL, 5, '', '', '');
4249 INSERT INTO `marc_subfield_structure` VALUES ('995', 'i', 'Code &agrave; barres, suffixe', 'Code &agrave; barres, suffixe', 0, 0, '', 9, '', '', '', NULL, 5, '', '', '');
4250 INSERT INTO `marc_subfield_structure` VALUES ('995', 'j', '&Eacute;tablissement pr&ecirc;teur ou d&eacute;posant, donn&eacute;e cod&eacute;e', '&Eacute;tablissement pr&ecirc;teur ou d&eacute;posant, donn&eacute;e cod&eacute;e', 0, 0, '', 9, '', '', '', NULL, 5, '', '', '');
4251 INSERT INTO `marc_subfield_structure` VALUES ('995', 'k', 'Cote', 'Cote', 0, 0, '', 9, '', '', '', NULL, 5, '', '', '');
4252 INSERT INTO `marc_subfield_structure` VALUES ('995', 'l', 'Volumaison', 'Volumaison', 0, 0, '', 9, '', '', '', NULL, 5, '', '', '');
4253 INSERT INTO `marc_subfield_structure` VALUES ('995', 'm', 'Date de pr&ecirc;t ou de d&eacute;p&ocirc;t', 'Date de pr&ecirc;t ou de d&eacute;p&ocirc;t', 0, 0, '', 9, '', '', '', NULL, 5, '', '', '');
4254 INSERT INTO `marc_subfield_structure` VALUES ('995', 'n', 'Date de restitution pr&eacute;vue', 'Date de restitution pr&eacute;vue', 0, 0, '', 9, '', '', '', NULL, 5, '', '', '');
4255 INSERT INTO `marc_subfield_structure` VALUES ('995', 'o', 'Cat&eacute;gorie de circulation', 'Cat&eacute;gorie de circulation', 0, 0, '', 9, '', '', '', NULL, 5, '', '', '');
4256 INSERT INTO `marc_subfield_structure` VALUES ('995', 'p', 'P&eacute;riodique', 'P&eacute;riodique', 0, 0, '', 9, '', '', '', NULL, 5, '', '', '');
4257 INSERT INTO `marc_subfield_structure` VALUES ('995', 'q', 'Public vis&eacute; (selon l\'&acirc;ge)', 'Public vis&eacute; (selon l\'&acirc;ge)', 0, 0, '', 9, '', '', '', NULL, 5, '', '', '');
4258 INSERT INTO `marc_subfield_structure` VALUES ('995', 'r', 'Type de document et support mat&eacute;riel', 'Type de document et support mat&eacute;riel', 0, 0, '', 9, '', '', '', NULL, 5, '', '', '');
4259 INSERT INTO `marc_subfield_structure` VALUES ('995', 's', '�&eacute;ment de tri', '�&eacute;ment de tri', 0, 0, '', 9, '', '', '', NULL, 5, '', '', '');
4260 INSERT INTO `marc_subfield_structure` VALUES ('995', 't', 'Genre', 'Genre', 0, 0, '', 9, '', '', '', NULL, 5, '', '', '');
4261 INSERT INTO `marc_subfield_structure` VALUES ('995', 'u', 'Note sur l\'exemplaire', 'Note sur l\'exemplaire', 0, 0, '', 9, '', '', '', NULL, 5, '', '', '');
4262 INSERT INTO `marc_subfield_structure` VALUES ('995', 'v', 'Note sur le num&eacute;ro de p&eacute;riodique', 'Note sur le num&eacute;ro de p&eacute;riodique', 0, 0, '', 9, '', '', '', NULL, 5, '', '', '');
4263 INSERT INTO `marc_subfield_structure` VALUES ('995', 'w', '�ablissement cible du document, texte libre', '�ablissement cible du document, texte libre', 0, 0, '', 9, '', '', '', NULL, 5, '', '', '');
4264 INSERT INTO `marc_subfield_structure` VALUES ('995', 'x', '&Eacute;tablissement cible du document, donn&eacute;e cod&eacute;e', '&Eacute;tablissement cible du document, donn&eacute;e cod&eacute;e', 0, 0, '', 9, '', '', '', NULL, 5, '', '', '');
4265 INSERT INTO `marc_subfield_structure` VALUES ('995', 'y', 'Ensemble cible du document , texte libre', 'Ensemble cible du document, texte libre', 0, 0, '', 9, '', '', '', NULL, 5, '', '', '');
4266 INSERT INTO `marc_subfield_structure` VALUES ('995', 'z', 'Ensemble cible du document, donn&eacute;e cod&eacute;e', 'Ensemble cible du document, donn&eacute;e cod&eacute;e', 0, 0, '', 9, '', '', '', NULL, 5, '', '', '');
4267 INSERT INTO `marc_subfield_structure` VALUES ('998', 'b', 'Operator\'s initials, OID (RLIN)', 'Operator\'s initials, OID (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
4268 INSERT INTO `marc_subfield_structure` VALUES ('998', 'c', 'Cataloger\'s initials, CIN (RLIN)', 'Cataloger\'s initials, CIN (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
4269 INSERT INTO `marc_subfield_structure` VALUES ('998', 'd', 'First date, FD (RLIN)', 'First Date, FD (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
4270 INSERT INTO `marc_subfield_structure` VALUES ('998', 'i', 'RINS (RLIN)', 'RINS (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4271 INSERT INTO `marc_subfield_structure` VALUES ('998', 'l', 'LI (RLIN)', 'LI (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4272 INSERT INTO `marc_subfield_structure` VALUES ('998', 'n', 'NUC (RLIN)', 'NUC (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4273 INSERT INTO `marc_subfield_structure` VALUES ('998', 'p', 'PROC (RLIN)', 'PROC (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4274 INSERT INTO `marc_subfield_structure` VALUES ('998', 's', 'CC (RLIN)', 'CC (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4275 INSERT INTO `marc_subfield_structure` VALUES ('998', 't', 'RTYP (RLIN)', 'RTYP (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4276 INSERT INTO `marc_subfield_structure` VALUES ('998', 'w', 'PLINK (RLIN)', 'PLINK (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4277 INSERT INTO `marc_subfield_structure` VALUES ('999', 'a', 'Classification number (OCLC) (R) ; Classification number, CALL (RLIN) (NR)', 'Classification number (OCLC) (R) ; Classification number, CALL (RLIN) (NR)', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
4278 INSERT INTO `marc_subfield_structure` VALUES ('999', 'b', 'Local cutter number (OCLC) ; Book number/undivided call number, CALL (RLIN)', 'Local cutter number (OCLC) ; Book number/undivided call number, CALL (RLIN)', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
4279 INSERT INTO `marc_subfield_structure` VALUES ('999', 'e', 'Feature heading (OCLC)', 'Feature heading (OCLC)', 0, 0, '', 0, '', '', '', 0, 5, '', '', '');
4280 INSERT INTO `marc_subfield_structure` VALUES ('999', 'f', 'Filing suffix (OCLC); Footnote, FNT (RLIN)', 'Filing suffix (OCLC); Footnote, FNT (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, '', '', '');
4281 INSERT INTO `marc_subfield_structure` VALUES ('999', 'h', 'Output transaction history, HST (RLIN)', 'Output transaction history, HST (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, '', '', '');
4282 INSERT INTO `marc_subfield_structure` VALUES ('999', 'i', 'Output transaction instruction, INS (RLIN)', 'Output transaction instruction, INS (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, '', '', '');
4283 INSERT INTO `marc_subfield_structure` VALUES ('999', 'l', 'Extra card control statement, EXT (RLIN)', 'Extra card control statement, EXT (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, '', '', '');
4284 INSERT INTO `marc_subfield_structure` VALUES ('999', 'n', 'Additional local notes, ANT (RLIN)', 'Additional local notes, ANT (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, '', '', '');
4285 INSERT INTO `marc_subfield_structure` VALUES ('999', 'p', 'Pathfinder code, PTH (RLIN)', 'Pathfinder code, PTH (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, '', '', '');
4286 INSERT INTO `marc_subfield_structure` VALUES ('999', 't', 'Field suppresion, FSP (RLIN)', 'Field suppresion, FSP (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, '', '', '');
4287 INSERT INTO `marc_subfield_structure` VALUES ('999', 'v', 'Volumes, VOL (RLIN)', 'Volumes, VOL (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, '', '', '');
4288 INSERT INTO `marc_subfield_structure` VALUES ('999', 'y', 'Date, VOL (RLIN)', 'Date, VOL (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, '', '', '');
4289 INSERT INTO `marc_subfield_structure` VALUES ('999', 'z', 'Retention, VOL (RLIN)', 'Retention, VOL (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, '', '', '');
4290 INSERT INTO `marc_subfield_structure` VALUES ('u01', 'a', 'Operator\'s initials, OID (RLIN)', 'Operator\'s initials, OID (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4291 INSERT INTO `marc_subfield_structure` VALUES ('u01', 'd', 'UAD (RLIN)', 'UAD (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4292 INSERT INTO `marc_subfield_structure` VALUES ('u01', 'f', 'FPST (RLIN)', 'FPST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4293 INSERT INTO `marc_subfield_structure` VALUES ('u01', 'h', 'CPST (RLIN)', 'FPST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4294 INSERT INTO `marc_subfield_structure` VALUES ('u01', 'i', 'CPST (RLIN)', 'FPST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4295 INSERT INTO `marc_subfield_structure` VALUES ('u01', 's', 'UST (RLIN)', 'UST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4296 INSERT INTO `marc_subfield_structure` VALUES ('u01', 't', 'UTYP (RLIN)', 'UTYP (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4297 INSERT INTO `marc_subfield_structure` VALUES ('u02', '2', 'Source of number or code', 'Source of number or code', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4298 INSERT INTO `marc_subfield_structure` VALUES ('u02', 'a', 'Standard number or code', 'Standard number or code', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4299 INSERT INTO `marc_subfield_structure` VALUES ('u02', 'b', 'Additional codes following the standard number', 'Additional codes following the standard number', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4300 INSERT INTO `marc_subfield_structure` VALUES ('u02', 'c', 'Terms of availability', 'Terms of availability', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4301 INSERT INTO `marc_subfield_structure` VALUES ('u02', 'z', 'Canceled/invalid standard number or code', 'Canceled/invalid standard number or code', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4302 INSERT INTO `marc_subfield_structure` VALUES ('u08', 'n', 'LSI', 'LSI', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4303 INSERT INTO `marc_subfield_structure` VALUES ('u08', 'o', 'SID', 'SID', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4304 INSERT INTO `marc_subfield_structure` VALUES ('u08', 'p', 'DP', 'DP', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4305 INSERT INTO `marc_subfield_structure` VALUES ('u08', 'r', 'RUSH', 'RUSH', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4306 INSERT INTO `marc_subfield_structure` VALUES ('u10', 'a', 'REQ', 'REQ', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4307 INSERT INTO `marc_subfield_structure` VALUES ('u10', 'b', 'SID', 'REQ', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4308 INSERT INTO `marc_subfield_structure` VALUES ('u10', 'c', 'REQ', 'REQ', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4309 INSERT INTO `marc_subfield_structure` VALUES ('u10', 'd', 'REQ', 'REQ', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4310 INSERT INTO `marc_subfield_structure` VALUES ('u10', 'e', 'REQ', 'REQ', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4311 INSERT INTO `marc_subfield_structure` VALUES ('u10', 's', 'REQ', 'REQ', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4312 INSERT INTO `marc_subfield_structure` VALUES ('u11', 'a', 'Department report request, DRR (DRRH for earlier occurrences)', 'DRR (DRRH for earlier occurrences)', 1, 0, '', 9, '', '', '', 0, 5, '', '', '');
4313 INSERT INTO `marc_subfield_structure` VALUES ('u20', 'a', 'SUPN', 'SUPN', 1, 0, '', 9, '', '', '', 0, 5, '', '', '');
4314 INSERT INTO `marc_subfield_structure` VALUES ('u20', 'b', 'SUPN', 'SUPN', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4315 INSERT INTO `marc_subfield_structure` VALUES ('u20', 'c', 'SUPN', 'SUPN', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4316 INSERT INTO `marc_subfield_structure` VALUES ('u20', 'd', 'SUPN', 'SUPN', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4317 INSERT INTO `marc_subfield_structure` VALUES ('u20', 'e', 'SUPN', 'SUPN', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4318 INSERT INTO `marc_subfield_structure` VALUES ('u20', 'x', 'SUPN', 'SUPN', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4319 INSERT INTO `marc_subfield_structure` VALUES ('u21', 'a', 'SHIP', 'SHIP', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4320 INSERT INTO `marc_subfield_structure` VALUES ('u21', 'b', 'BILL', 'BILL', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4321 INSERT INTO `marc_subfield_structure` VALUES ('u21', 'c', 'DAC', 'DAC', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4322 INSERT INTO `marc_subfield_structure` VALUES ('u21', 'n', 'LSAC', 'LSAC', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4323 INSERT INTO `marc_subfield_structure` VALUES ('u22', 'a', 'SICO', 'SICO', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4324 INSERT INTO `marc_subfield_structure` VALUES ('u22', 'b', 'SICO', 'SICO', 1, 0, '', 9, '', '', '', 0, 5, '', '', '');
4325 INSERT INTO `marc_subfield_structure` VALUES ('u22', 'c', 'SCAT', 'SCAT', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4326 INSERT INTO `marc_subfield_structure` VALUES ('u25', 'a', 'Supplier report(s), SRPT', 'Supplier report(s), SRPT', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4327 INSERT INTO `marc_subfield_structure` VALUES ('u30', 'a', 'NCC [OBSOLETE]', 'NCC [OBSOLETE]', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4328 INSERT INTO `marc_subfield_structure` VALUES ('u30', 'i', 'ICI', 'ICI', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4329 INSERT INTO `marc_subfield_structure` VALUES ('u30', 'm', 'MCI', 'MCI', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4330 INSERT INTO `marc_subfield_structure` VALUES ('u31', 'a', 'NCC', 'NCC', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4331 INSERT INTO `marc_subfield_structure` VALUES ('u31', 'b', 'NCS', 'NCS', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4332 INSERT INTO `marc_subfield_structure` VALUES ('u33', 'a', 'ICL', 'ICL', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4333 INSERT INTO `marc_subfield_structure` VALUES ('u33', 'd', 'ICAD', 'ICAD', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4334 INSERT INTO `marc_subfield_structure` VALUES ('u34', 'a', 'EPCL', 'EPCL', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4335 INSERT INTO `marc_subfield_structure` VALUES ('u34', 'r', 'ERI', 'ERI', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4336 INSERT INTO `marc_subfield_structure` VALUES ('u40', 'd', 'EPDT [OBSOLETE]', 'EPDT [OBSOLETE]', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4337 INSERT INTO `marc_subfield_structure` VALUES ('u40', 'f', 'EFRQ', 'EFRQ', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4338 INSERT INTO `marc_subfield_structure` VALUES ('u40', 's', 'EPST', 'EPST', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4339 INSERT INTO `marc_subfield_structure` VALUES ('u40', 't', 'ETYP', 'ETYP', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4340 INSERT INTO `marc_subfield_structure` VALUES ('u50', 'a', 'Acquisitions notes, AQNT', 'Acquisitions notes, AQNT', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4341 INSERT INTO `marc_subfield_structure` VALUES ('u51', 'a', 'Selection notes, SLNT', 'Selection notes, SLNT', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4342 INSERT INTO `marc_subfield_structure` VALUES ('u52', 'a', 'INT', 'INT', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4343 INSERT INTO `marc_subfield_structure` VALUES ('u52', 'b', 'INT', 'NT', 1, 0, '', 9, '', '', '', 0, 5, '', '', '');
4344 INSERT INTO `marc_subfield_structure` VALUES ('u53', 'a', 'CLNT', 'CLNT', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4345 INSERT INTO `marc_subfield_structure` VALUES ('u53', 'b', 'CLNT', 'CLNT', 1, 0, '', 9, '', '', '', 0, 5, '', '', '');
4346 INSERT INTO `marc_subfield_structure` VALUES ('u54', 'a', 'Notes to serials department, SRNT', 'Notes to serials department, SRNT', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4347 INSERT INTO `marc_subfield_structure` VALUES ('u55', 'a', 'Cataloging notes, CTNT', 'Cataloging notes, CTNT', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4348 INSERT INTO `marc_subfield_structure` VALUES ('u5f', 'a', 'Accounting notes, ACNT', 'Accounting notes, ACNT', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4349 INSERT INTO `marc_subfield_structure` VALUES ('u70', 'a', 'QTY', 'QTY', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4350 INSERT INTO `marc_subfield_structure` VALUES ('u70', 'b', 'MAT', 'MAT', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4351 INSERT INTO `marc_subfield_structure` VALUES ('u70', 'l', 'MLOC', 'MLOC', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4352 INSERT INTO `marc_subfield_structure` VALUES ('u71', 'a', 'Fund account, FUND', 'Fund account, FUND', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4353 INSERT INTO `marc_subfield_structure` VALUES ('u75', 'a', 'ITEM', 'ITEM', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4354 INSERT INTO `marc_subfield_structure` VALUES ('u75', 'c', 'CIRC', 'CIRC', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4355 INSERT INTO `marc_subfield_structure` VALUES ('u75', 'h', 'IPST', 'IPST', 1, 0, '', 9, '', '', '', 0, 5, '', '', '');
4356 INSERT INTO `marc_subfield_structure` VALUES ('u75', 'i', 'ITEM', 'ITEM', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4357 INSERT INTO `marc_subfield_structure` VALUES ('u75', 'l', 'SLOC', 'SLOC', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4358 INSERT INTO `marc_subfield_structure` VALUES ('u7f', 'a', 'LPRI', 'LPRI', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4359 INSERT INTO `marc_subfield_structure` VALUES ('u7f', 'b', 'CURR', 'CURR', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4360 INSERT INTO `marc_subfield_structure` VALUES ('u7f', 'k', 'CVRT [OBSOLETE]', 'CVRT [OBSOLETE]', 1, 0, '', 9, '', '', '', 0, 5, '', '', '');
4361 INSERT INTO `marc_subfield_structure` VALUES ('u7f', 'p', 'LPD', 'LPD', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4362 INSERT INTO `marc_subfield_structure` VALUES ('u7f', 'r', 'EDRT', 'EDRT', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4363 INSERT INTO `marc_subfield_structure` VALUES ('u90', 'h', 'TAPE', 'TAPE', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4364 INSERT INTO `marc_subfield_structure` VALUES ('u90', 'i', 'TAPE', 'TAPE', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4365 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'a', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4366 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'b', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4367 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'c', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4368 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'd', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4369 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'e', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4370 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'f', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4371 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'g', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4372 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'h', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4373 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'n', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4374
4375
4376 -- ******************************************************
4377
4378
4379
4380 -- *****************************************************************
4381 -- ASMP BOOKS KOHA RECORD AND HOLDINGS MANAGEMENT FIELDS/SUBFIELDS. 
4382 -- *****************************************************************
4383
4384 -- These ought to be adjusted for different less conflicting and more 
4385 -- rationally chosen fields and subfields but I had left that for last. 
4386
4387 -- ADJUST ME
4388 -- Use values from your dump of marc_tag_structure and marc_subfield_structure 
4389 -- to provide support for your Koha database.
4390
4391
4392 -- ******************************************************
4393
4394
4395 -- Current Record ID Field/Subfields 
4396
4397
4398 INSERT INTO `marc_tag_structure` VALUES ('090', 'SYSTEM CONTROL NUMBERS (KOHA)', 'SYSTEM CONTROL NUMBERS (KOHA)', 1, 0, '', 'ASMP_BOOKS');
4399
4400 INSERT INTO `marc_subfield_structure` VALUES ('090', 'a', 'Item type [OBSOLETE]', 'Item type [OBSOLETE]', 0, 0, NULL, -1, NULL, NULL, '', NULL, -5, 'ASMP_BOOKS', '', '');
4401 INSERT INTO `marc_subfield_structure` VALUES ('090', 'b', 'Koha Dewey Subclass [OBSOLETE]', 'Koha Dewey Subclass [OBSOLETE]', 0, 0, NULL, 0, NULL, NULL, '', NULL, -5, 'ASMP_BOOKS', '', '');
4402 INSERT INTO `marc_subfield_structure` VALUES ('090', 'c', 'Koha biblionumber', 'Koha biblionumber', 0, 0, 'biblio.biblionumber', -1, NULL, NULL, '', NULL, -5, 'ASMP_BOOKS', '', '');
4403 INSERT INTO `marc_subfield_structure` VALUES ('090', 'd', 'Koha biblioitemnumber', 'Koha biblioitemnumber', 0, 0, 'biblioitems.biblioitemnumber', -1, NULL, NULL, '', NULL, -5, 'ASMP_BOOKS', '', '');
4404
4405
4406 -- ******************************************************
4407
4408
4409 -- Current primary biblioitems Field/Subfields 
4410
4411
4412 INSERT INTO `marc_tag_structure` VALUES ('942', 'ADDED ENTRY ELEMENTS (KOHA)', 'ADDED ENTRY ELEMENTS (KOHA)', 0, 0, '', 'ASMP_BOOKS');
4413
4414 INSERT INTO `marc_subfield_structure` VALUES ('942', 'a', 'Institution code [OBSOLETE]', 'Institution code [OBSOLETE]', 0, 0, '', 9, '', '', '', NULL, -5, 'ASMP_BOOKS', '', '');
4415 INSERT INTO `marc_subfield_structure` VALUES ('942', 'c', 'Item type', 'Item type', 0, 1, 'biblioitems.itemtype', 9, 'itemtypes', '', '', NULL, 0, 'ASMP_BOOKS', '', '');
4416 INSERT INTO `marc_subfield_structure` VALUES ('942', 'j', 'Location (call number prefix code)', 'Location (call number prefix code)', 0, 0, 'biblioitems.classification', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
4417 INSERT INTO `marc_subfield_structure` VALUES ('942', 'k', 'Classification base (DDC to decimal or LCC letter class padded after single letter classes with trailing 0', 'Classification base', 0, 0, 'biblioitems.dewey', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
4418 INSERT INTO `marc_subfield_structure` VALUES ('942', 'l', 'Classification subclass (DDC after decimal or LCC number after letters', 'Classification subclass', 0, 0, 'biblioitems.subclass', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
4419
4420
4421 -- ******************************************************
4422
4423
4424 -- Recommended items Field/Subfields 
4425
4426
4427 -- INSERT INTO `marc_tag_structure` VALUES ('95k', 'LOCATION AND ITEM INFORMATION (KOHA)', 'LOCATION AND ITEM INFORMATION (KOHA)', 1, 0, '', '');
4428
4429 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '0', 'Item status (withdrawn) (similar to 876-8 $j)', 'Item status (withdrawn)', 0, 0, 'items.withdrawn', 10, '', '', '', 0, 0, 'ASMP_BOOKS', '', '');
4430 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '1', 'Item status (lost) (similar to 876-8 $j)', 'Item status (lost)', 0, 0, 'items.itemlost', 10, '', '', '', 0, 0, 'ASMP_BOOKS', '', '');
4431 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '2', 'Source of classification or shelving scheme (similar to 852 $2)', 'Source of classification or shelving scheme', 0, 0, '', 10, '', '', '', NULL, 0, 'ASMP_BOOKS', '', '');
4432 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '3', 'Materials specified (similar to 852, 876-8 $3)', 'Materials specified', 0, 0, '', 10, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
4433 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '4', 'Use restrictions (similar to 506 $a, 876-8 $h)', 'Use restrictions', 0, 0, 'items.restricted', 10, '', '', '', 0, 0, 'ASMP_BOOKS', '', '');
4434 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '6', 'Linkage (similar to 852, 876-8 $6)', 'Linkage', 0, 0, '', 10, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
4435 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '8', 'Sequence number (similar to 852, 876-8 $8)', 'Sequence number', 1, 0, '', 10, '', '', '', NULL, 0, 'ASMP_BOOKS', '', '');
4436 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '9', 'Koha itemnumber (autogenerated similar to 852, 876-8 $3 $8 $t combined)', 'Koha itemnumber', 0, 0, 'items.itemnumber', -1, '', '', '', 0, 0, 'ASMP_BOOKS', '', '');
4437 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'a', 'Location (homebranch) (similar to 852 $a)', 'Location (homebranch)', 0, 0, 'items.homebranch', 10, 'branches', '', '', 0, 0, '', '', '');
4438 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'b', 'Sublocation or collection (holdingbranch) (similar to 852 $b)', 'Sublocation or collection (holdingbranch)', 1, 0, 'items.holdingbranch', 10, 'branches', '', '', 0, 0, 'ASMP_BOOKS', '', '');
4439 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'c', 'Shelving location (similar to 852 $c, 876-8 $l)', 'Shelving location', 1, 0, 'items.location', 10, '', '', '', 0, 0, 'ASMP_BOOKS', '', '');
4440 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'd', 'Date acquired (similar to 541, 876-8 $d)', 'Date acquired', 0, 0, 'items.dateaccessioned', 10, '', '', '', 0, 0, 'ASMP_BOOKS', '', '');
4441 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'e', 'Source of acquisition (similar to 541 $a, 876-8 $e)', 'Source of acquisition', 1, 0, 'items.booksellerid', 10, '', '', '', 0, 0, 'ASMP_BOOKS', '', '');
4442 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'f', 'Coded location qualifier (similar to 852 $f)', 'Coded location qualifier', 1, 0, '', 10, '', '', '', NULL, 0, 'ASMP_BOOKS', '', '');
4443 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'g', 'Non-coded location qualifier (similar to 852 $g)', 'Non-coded location qualifier', 1, 0, '', 10, '', '', '', NULL, 0, 'ASMP_BOOKS', '', '');
4444 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'h', 'Classification part (similar to 852 $h)', 'Classification part', 0, 0, '', 10, '', '', '', NULL, 0, 'ASMP_BOOKS', '', '');
4445 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'i', 'Item part (similar to 852 $i)', 'Item part', 1, 0, '', 10, '', '', '', NULL, 0, 'ASMP_BOOKS', '', '');
4446 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'j', 'Shelving control number (similar to 852 $j)', 'Shelving control number', 0, 0, '', 10, '', '', '', NULL, 0, 'ASMP_BOOKS', '', '');
4447 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'k', 'Call number prefix (similar to 852 $k)', 'Call number prefix', 0, 0, '', 10, '', '', '', NULL, 0, 'ASMP_BOOKS', '', '');
4448 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'l', 'Shelving form of title (similar to 852 $l)', 'Shelving form of title', 0, 0, '', 10, '', '', '', NULL, 0, 'ASMP_BOOKS', '', '');
4449 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'm', 'Call number suffix (similar to 852 $m)', 'Call number suffix', 0, 0, '', 10, '', '', '', NULL, 0, 'ASMP_BOOKS', '', '');
4450 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'n', 'Country code (similar to 852 $n)', 'Country code', 0, 0, '', 10, '', '', '', NULL, 0, 'ASMP_BOOKS', '', '');
4451 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'o', 'Call number (similar to 852 $k $h $i $m combined)', 'Call number', 0, 0, 'items.itemcallnumber', 10, '', '', NULL, 0, 0, 'ASMP_BOOKS', '', '');
4452 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'p', 'Piece designation (barcode) (similar to 852, 876-8 $p)', 'Piece designation (barcode)', 0, 1, 'items.barcode', 10, '', '', '', 0, 0, 'ASMP_BOOKS', '', '');
4453 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'q', 'Piece physical condition (similar to 562 $a, 852 $q)', 'Piece physical condition', 0, 0, '', 10, '', '', '', NULL, 0, 'ASMP_BOOKS', '', '');
4454 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'r', 'Invalid or canceled piece designation (canceled barcode) (similar to 876-8 $r)', 'Invalid or canceled piece designation (canceled barcode)', 1, 0, '', 10, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
4455 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 's', 'Copyright article-fee code (similar to 018 $a, 852 $s)', 'Copyright article-fee code', 1, 0, '', 10, '', '', '', NULL, 0, 'ASMP_BOOKS', '', '');
4456 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 't', 'Copy number (similar to 852, 876-8 $t)', 'Copy number', 0, 0, '', 10, '', '', '', NULL, 0, 'ASMP_BOOKS', '', '');
4457 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'u', 'Cost, normal purchase price (similar to 541 $h, 876-8 $c)', 'Cost, normal purchase price', 0, 0, 'items.price', 10, '', '', '', 0, 0, 'ASMP_BOOKS', '', '');
4458 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'v', 'Cost, replacement price (similar to 365 $b, 876-8 $c)', 'Cost, replacement price', 0, 0, 'items.replacementprice', 10, '', '', '', 0, 0, 'ASMP_BOOKS', '', '');
4459 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'w', 'Price effective from (similar to 365 $f)', 'Price effective from', 0, 0, 'items.replacementpricedate', 10, '', '', '', 0, 0, 'ASMP_BOOKS', '', '');
4460 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'x', 'Nonpublic note (similar to 852, 876-8 $x)', 'Nonpublic note', 1, 0, '', 10, '', '', '', NULL, 6, 'ASMP_BOOKS', '', '');
4461 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'y', 'Use restrictions (not for loan) (similar to 506 $a, 876-8 $h)', 'Use restrictions (not for loan)', 0, 0, 'items.notforloan', 10, '', '', '', 0, 0, 'ASMP_BOOKS', '', '');
4462 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'z', 'Public note (similar to 852, 876-8 $z)', 'Public note', 0, 0, 'items.itemnotes', 10, '', '', '', 1, 0, 'ASMP_BOOKS', '', '');
4463
4464
4465
4466 -- Current items Field/Subfields 
4467
4468
4469 INSERT INTO `marc_tag_structure` VALUES ('952', 'LOCATION AND ITEM INFORMATION (KOHA)', 'LOCATION AND ITEM INFORMATION (KOHA)', 1, 0, '', 'ASMP_BOOKS');
4470
4471 INSERT INTO `marc_subfield_structure` VALUES ('952', '0', 'Item status (withdrawn)', 'Item status (withdrawn)', 0, 0, 'items.withdrawn', 10, '', '', '', 0, 0, 'ASMP_BOOKS', '', '');
4472 INSERT INTO `marc_subfield_structure` VALUES ('952', '1', 'Item status (lost)', 'Item status (lost)', 0, 0, 'items.itemlost', 10, '', '', '', 0, 0, 'ASMP_BOOKS', '', '');
4473 INSERT INTO `marc_subfield_structure` VALUES ('952', '2', 'Source of classification or shelving scheme', 'Source of classification or shelving scheme', 0, 0, '', 10, '', '', '', NULL, 0, 'ASMP_BOOKS', '', '');
4474 INSERT INTO `marc_subfield_structure` VALUES ('952', '3', 'Materials specified', 'Materials specified', 0, 0, '', 10, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
4475 INSERT INTO `marc_subfield_structure` VALUES ('952', '4', 'Use restrictions', 'Use restrictions', 0, 0, 'items.restricted', 10, '', '', '', 0, 0, 'ASMP_BOOKS', '', '');
4476 INSERT INTO `marc_subfield_structure` VALUES ('952', '6', 'Linkage', 'Linkage', 0, 0, '', 10, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
4477 INSERT INTO `marc_subfield_structure` VALUES ('952', '8', 'Sequence number', 'Sequence number', 1, 0, '', 10, '', '', '', NULL, 0, 'ASMP_BOOKS', '', '');
4478 INSERT INTO `marc_subfield_structure` VALUES ('952', '9', 'Cost, normal purchase price', 'Cost, normal purchase price', 0, 0, 'items.price', 10, '', '', '', 0, 0, 'ASMP_BOOKS', '', '');
4479 INSERT INTO `marc_subfield_structure` VALUES ('952', 'a', 'Invalid or canceled piece designation (canceled barcode)', 'Invalid or canceled piece designation (canceled barcode)', 1, 0, '', 10, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
4480 INSERT INTO `marc_subfield_structure` VALUES ('952', 'b', 'Location (homebranch) (similar to 852 $a)', 'Location (homebranch)', 0, 0, 'items.homebranch', 10, 'branches', '', '', 0, 0, 'ASMP_BOOKS', '', '');
4481 INSERT INTO `marc_subfield_structure` VALUES ('952', 'c', 'Shelving location (similar to 852 $c, 876-8 $l)', 'Shelving location', 1, 0, 'items.location', 10, '', '', '', 0, 0, 'ASMP_BOOKS', '', '');
4482 INSERT INTO `marc_subfield_structure` VALUES ('952', 'd', 'Sublocation or collection (holdingbranch)', 'Sublocation or collection (holdingbranch)', 0, 0, 'items.holdingbranch', 10, 'branches', '', '', 0, 0, 'ASMP_BOOKS', '''952b''', '');
4483 INSERT INTO `marc_subfield_structure` VALUES ('952', 'e', 'Source of acquisition', 'Source of acquisition', 1, 0, 'items.booksellerid', 10, '', '', '', 0, 0, 'ASMP_BOOKS', '', '');
4484 INSERT INTO `marc_subfield_structure` VALUES ('952', 'f', 'Coded location qualifier', 'Coded location qualifier', 1, 0, '', 10, '', '', '', NULL, 0, 'ASMP_BOOKS', '', '');
4485 INSERT INTO `marc_subfield_structure` VALUES ('952', 'g', 'Non-coded location qualifier', 'Non-coded location qualifier', 1, 0, '', 10, '', '', '', NULL, 0, 'ASMP_BOOKS', '', '');
4486 INSERT INTO `marc_subfield_structure` VALUES ('952', 'h', 'Classification part', 'Classification part', 0, 0, '', 10, '', '', '', NULL, 0, 'ASMP_BOOKS', '', '');
4487 INSERT INTO `marc_subfield_structure` VALUES ('952', 'i', 'Item part', 'Item part', 1, 0, '', 10, '', '', '', NULL, 0, 'ASMP_BOOKS', '', '');
4488 INSERT INTO `marc_subfield_structure` VALUES ('952', 'j', 'Shelving control number', 'Shelving control number', 0, 0, '', 10, '', '', '', NULL, 0, 'ASMP_BOOKS', '', '');
4489 INSERT INTO `marc_subfield_structure` VALUES ('952', 'k', 'Call number (combined)', 'Call number', 0, 0, 'items.itemcallnumber', 10, '', '', NULL, 0, 0, 'ASMP_BOOKS', '', '');
4490 INSERT INTO `marc_subfield_structure` VALUES ('952', 'l', 'Shelving form of title', 'Shelving form of title', 0, 0, '', 10, '', '', '', NULL, 0, 'ASMP_BOOKS', '', '');
4491 INSERT INTO `marc_subfield_structure` VALUES ('952', 'm', 'Call number suffix', 'Call number suffix', 0, 0, '', 10, '', '', '', NULL, 0, 'ASMP_BOOKS', '', '');
4492 INSERT INTO `marc_subfield_structure` VALUES ('952', 'n', 'Country code', 'Country code', 0, 0, '', 10, '', '', '', NULL, 0, 'ASMP_BOOKS', '', '');
4493 INSERT INTO `marc_subfield_structure` VALUES ('952', 'o', 'Call number prefix', 'Call number prefix', 0, 0, '', 10, '', '', '', NULL, 0, 'ASMP_BOOKS', '', '');
4494 INSERT INTO `marc_subfield_structure` VALUES ('952', 'p', 'Piece designation (barcode)', 'Piece designation (barcode)', 0, 1, 'items.barcode', 10, '', '', '', 0, 0, 'ASMP_BOOKS', '', '');
4495 INSERT INTO `marc_subfield_structure` VALUES ('952', 'q', 'Piece physical condition', 'Piece physical condition', 0, 0, '', 10, '', '', '', NULL, 0, 'ASMP_BOOKS', '', '');
4496 INSERT INTO `marc_subfield_structure` VALUES ('952', 'r', 'Cost, replacement price', 'Cost, replacement price', 0, 0, 'items.replacementprice', 10, '', '', '', 0, 0, 'ASMP_BOOKS', '', '');
4497 INSERT INTO `marc_subfield_structure` VALUES ('952', 's', 'Copyright article-fee code', 'Copyright article-fee code', 1, 0, '', 10, '', '', '', NULL, 0, 'ASMP_BOOKS', '', '');
4498 INSERT INTO `marc_subfield_structure` VALUES ('952', 't', 'Copy number', 'Copy number', 0, 0, '', 10, '', '', '', NULL, 0, 'ASMP_BOOKS', '', '');
4499 INSERT INTO `marc_subfield_structure` VALUES ('952', 'u', 'Koha itemnumber (autogenerated)', 'Koha itemnumber', 0, 0, 'items.itemnumber', -1, '', '', '', 0, 0, 'ASMP_BOOKS', '', '');
4500 INSERT INTO `marc_subfield_structure` VALUES ('952', 'v', 'Date acquired', 'Date acquired', 0, 0, 'items.dateaccessioned', 10, '', '', '', 0, 0, 'ASMP_BOOKS', '', '');
4501 INSERT INTO `marc_subfield_structure` VALUES ('952', 'w', 'Price effective from', 'Price effective from', 0, 0, 'items.replacementpricedate', 10, '', '', '', 0, 0, 'ASMP_BOOKS', '', '');
4502 INSERT INTO `marc_subfield_structure` VALUES ('952', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 10, '', '', '', NULL, 6, 'ASMP_BOOKS', '', '');
4503 INSERT INTO `marc_subfield_structure` VALUES ('952', 'y', 'Use restrictions (not for loan)', 'Use restrictions (not for loan)', 0, 0, 'items.notforloan', 10, '', '', '', 0, 0, 'ASMP_BOOKS', '', '');
4504 INSERT INTO `marc_subfield_structure` VALUES ('952', 'z', 'Public note', 'Public note', 0, 0, 'items.itemnotes', 10, '', '', '', 1, 0, 'ASMP_BOOKS', '', '');
4505
4506
4507 -- *******************************************************
4508
4509
4510
4511 -- ******************************************************************
4512 -- ASMP BOOKS MARC 21 FIELDS/SUBFIELDS AND COMMMONLY USED EXTENSIONS 
4513 -- ******************************************************************
4514
4515
4516 -- A Few local use codes need specifying.  Several seealso, plugin, and 
4517 -- authority framework columns need improving.  $9 for authority record linking 
4518 -- needs to be added where not already provided by RLIN specifications. 
4519 -- Needs checking for errors but probably tolerable for use on a production. 
4520 -- A server can be upgraded easily from later versions of this file.
4521 --                                                                          
4522 -- In the absense of more column support for qualifying the relative 
4523 -- importance of subfields to the record editor, some modest modification of 
4524 -- the default framework is needed setting the not-useful non-Koha holdings 
4525 -- subfields to not managed in Koha.
4526
4527 -- MARC fields including letters as part of the field identifier are from RLIN
4528 -- and should be expected to remain along with RLIN $% subfields.  RLIN has 
4529 -- been using letters in fields because there are not enough local use number 
4530 -- fields which have not already been specified for very large union catalogue 
4531 -- networks such as RLIN itself.
4532
4533
4534 -- Fields ending in c, o, or r are temporary placeholders for information from
4535 -- a numeric value until a non-conflicting way to treat the content under the
4536 -- proper original numeric field is adopted.  090 for LC call numbers is much 
4537 -- too common and important so 999 is also provided as a temporary place 
4538 -- holder until all Koha code for finding control fields has been changed from 
4539 -- a numeric test of < 10 to a regular expression match of m/^00/ to prevent 
4540 -- mistaken matching of fields with letters such as 09o if they were control 
4541 -- fields.
4542
4543 INSERT INTO `marc_tag_structure` VALUES ('000', 'LEADER', 'LEADER', 0, 1, '', 'ASMP_BOOKS');
4544 INSERT INTO `marc_tag_structure` VALUES ('001', 'CONTROL NUMBER', 'CONTROL NUMBER', 0, 0, '', 'ASMP_BOOKS');
4545 INSERT INTO `marc_tag_structure` VALUES ('003', 'CONTROL NUMBER IDENTIFIER', 'CONTROL NUMBER IDENTIFIER', 0, 0, '', 'ASMP_BOOKS');
4546 INSERT INTO `marc_tag_structure` VALUES ('005', 'DATE AND TIME OF LATEST TRANSACTION', 'DATE AND TIME OF LATEST TRANSACTION', 0, 0, '', 'ASMP_BOOKS');
4547 INSERT INTO `marc_tag_structure` VALUES ('006', 'FIXED-LENGTH DATA ELEMENTS--ADDITIONAL MATERIAL CHARACTERISTICS--GENERAL INFORMATION', 'FIXED-LENGTH DATA ELEMENTS--ADDITIONAL MATERIAL CHARACTERISTICS--GENERAL INFORMATION', 1, 0, '', 'ASMP_BOOKS');
4548 INSERT INTO `marc_tag_structure` VALUES ('007', 'PHYSICAL DESCRIPTION FIXED FIELD--GENERAL INFORMATION', 'PHYSICAL DESCRIPTION FIXED FIELD--GENERAL INFORMATION', 1, 0, '', 'ASMP_BOOKS');
4549 INSERT INTO `marc_tag_structure` VALUES ('008', 'FIXED-LENGTH DATA ELEMENTS--GENERAL INFORMATION', 'FIXED-LENGTH DATA ELEMENTS--GENERAL INFORMATION', 0, 1, '', 'ASMP_BOOKS');
4550 INSERT INTO `marc_tag_structure` VALUES ('009', 'PHYSICAL DESCRIPTION FIXED-FIELD FOR ARCHIVAL COLLECTION (VM) [OBSOLETE]', 'PHYSICAL DESCRIPTION FIXED-FIELD FOR ARCHIVAL COLLECTION (VM) [OBSOLETE]', 1, 0, '', 'ASMP_BOOKS');
4551 INSERT INTO `marc_tag_structure` VALUES ('010', 'LIBRARY OF CONGRESS CONTROL NUMBER', 'LIBRARY OF CONGRESS CONTROL NUMBER', 0, 0, '', 'ASMP_BOOKS');
4552 INSERT INTO `marc_tag_structure` VALUES ('011', 'LINKING LIBRARY OF CONGRESS CONTROL NUMBER [OBSOLETE]', 'LINKING LIBRARY OF CONGRESS CONTROL NUMBER [OBSOLETE]', 0, 0, '', 'ASMP_BOOKS');
4553 INSERT INTO `marc_tag_structure` VALUES ('013', 'PATENT CONTROL INFORMATION', 'PATENT CONTROL INFORMATION', 1, 0, '', 'ASMP_BOOKS');
4554 INSERT INTO `marc_tag_structure` VALUES ('015', 'NATIONAL BIBLIOGRAPHY NUMBER', 'NATIONAL BIBLIOGRAPHY NUMBER', 1, 0, '', 'ASMP_BOOKS');
4555 INSERT INTO `marc_tag_structure` VALUES ('016', 'NATIONAL BIBLIOGRAPHIC AGENCY CONTROL NUMBER', 'NATIONAL BIBLIOGRAPHIC AGENCY CONTROL NUMBER', 1, 0, '', 'ASMP_BOOKS');
4556 INSERT INTO `marc_tag_structure` VALUES ('017', 'COPYRIGHT OR LEGAL DEPOSIT NUMBER', 'COPYRIGHT OR LEGAL DEPOSIT NUMBER', 1, 0, '', 'ASMP_BOOKS');
4557 INSERT INTO `marc_tag_structure` VALUES ('018', 'COPYRIGHT ARTICLE-FEE CODE', 'COPYRIGHT ARTICLE-FEE CODE', 0, 0, '', 'ASMP_BOOKS');
4558 INSERT INTO `marc_tag_structure` VALUES ('01e', 'CODED FIELD ERROR (RLIN)', 'CODED FIELD ERROR (RLIN)', 1, 0, '', 'ASMP_BOOKS');
4559 INSERT INTO `marc_tag_structure` VALUES ('020', 'ISBN', 'INTERNATIONAL STANDARD BOOK NUMBER', 1, 0, NULL, 'ASMP_BOOKS');
4560 INSERT INTO `marc_tag_structure` VALUES ('022', 'INTERNATIONAL STANDARD SERIAL NUMBER', 'INTERNATIONAL STANDARD SERIAL NUMBER', 1, 0, NULL, 'ASMP_BOOKS');
4561 INSERT INTO `marc_tag_structure` VALUES ('023', 'STANDARD FILM NUMBER (VM) [DELETED]', 'STANDARD FILM NUMBER (VM) [DELETED]', 1, 0, NULL, 'ASMP_BOOKS');
4562 INSERT INTO `marc_tag_structure` VALUES ('024', 'OTHER STANDARD IDENTIFIER', 'OTHER STANDARD IDENTIFIER', 1, 0, NULL, 'ASMP_BOOKS');
4563 INSERT INTO `marc_tag_structure` VALUES ('025', 'OVERSEAS ACQUISITION NUMBER', 'OVERSEAS ACQUISITION NUMBER', 1, 0, '', 'ASMP_BOOKS');
4564 INSERT INTO `marc_tag_structure` VALUES ('026', 'FINGERPRINT IDENTIFIER', 'FINGERPRINT IDENTIFIER', 1, 0, '', 'ASMP_BOOKS');
4565 INSERT INTO `marc_tag_structure` VALUES ('027', 'STANDARD TECHNICAL REPORT NUMBER', 'STANDARD TECHNICAL REPORT NUMBER', 1, 0, '', 'ASMP_BOOKS');
4566 INSERT INTO `marc_tag_structure` VALUES ('028', 'PUBLISHER NUMBER', 'PUBLISHER NUMBER', 1, 0, NULL, 'ASMP_BOOKS');
4567 INSERT INTO `marc_tag_structure` VALUES ('029', 'OTHER SYSTEM CONTROL NUMBER (OCLC)', ' (OCLC)', 1, 0, '', 'ASMP_BOOKS');
4568 INSERT INTO `marc_tag_structure` VALUES ('030', 'CODEN DESIGNATION', 'CODEN DESIGNATION', 1, 0, '', 'ASMP_BOOKS');
4569 INSERT INTO `marc_tag_structure` VALUES ('031', 'MUSICAL INCIPITS INFORMATION', 'MUSICAL INCIPITS INFORMATION', 1, 0, '', 'ASMP_BOOKS');
4570 INSERT INTO `marc_tag_structure` VALUES ('032', 'POSTAL REGISTRATION NUMBER', 'POSTAL REGISTRATION NUMBER', 1, 0, '', 'ASMP_BOOKS');
4571 INSERT INTO `marc_tag_structure` VALUES ('033', 'DATE/TIME AND PLACE OF AN EVENT', 'DATE/TIME AND PLACE OF AN EVENT', 1, 0, '', 'ASMP_BOOKS');
4572 INSERT INTO `marc_tag_structure` VALUES ('034', 'CODED CARTOGRAPHIC MATHEMATICAL DATA', 'CODED CARTOGRAPHIC MATHEMATICAL DATA', 1, 0, '', 'ASMP_BOOKS');
4573 INSERT INTO `marc_tag_structure` VALUES ('035', 'SYSTEM CONTROL NUMBER', 'SYSTEM CONTROL NUMBER', 1, 0, NULL, 'ASMP_BOOKS');
4574 INSERT INTO `marc_tag_structure` VALUES ('036', 'ORIGINAL STUDY NUMBER FOR COMPUTER DATA FILES', 'ORIGINAL STUDY NUMBER FOR COMPUTER DATA FILES', 0, 0, '', 'ASMP_BOOKS');
4575 INSERT INTO `marc_tag_structure` VALUES ('037', 'PUBLICATION, DISTRIBUTION DETAILS--SOURCE OF ACQUISITION', 'SOURCE OF ACQUISITION', 1, 0, NULL, 'ASMP_BOOKS');
4576 INSERT INTO `marc_tag_structure` VALUES ('038', 'RECORD CONTENT LICENSOR', 'RECORD CONTENT LICENSOR', 0, 0, '', 'ASMP_BOOKS');
4577 INSERT INTO `marc_tag_structure` VALUES ('039', 'LEVEL OF BIBLIOGRAPHIC CONTROL AND CODING DETAIL [OBSOLETE]', 'LEVEL OF BIBLIOGRAPHIC CONTROL AND CODING DETAIL [OBSOLETE]', 0, 0, '', 'ASMP_BOOKS');
4578 INSERT INTO `marc_tag_structure` VALUES ('040', 'CATALOGING SOURCE', 'CATALOGING SOURCE', 0, 0, NULL, 'ASMP_BOOKS');
4579 INSERT INTO `marc_tag_structure` VALUES ('041', 'LANGUAGE CODE', 'LANGUAGE CODE', 1, 0, '', 'ASMP_BOOKS');
4580 INSERT INTO `marc_tag_structure` VALUES ('042', 'AUTHENTICATION CODE', 'AUTHENTICATION CODE', 0, 0, '', 'ASMP_BOOKS');
4581 INSERT INTO `marc_tag_structure` VALUES ('043', 'GEOGRAPHIC AREA CODE', 'GEOGRAPHIC AREA CODE', 0, 0, NULL, 'ASMP_BOOKS');
4582 INSERT INTO `marc_tag_structure` VALUES ('044', 'COUNTRY OF PUBLISHING/PRODUCING ENTITY CODE', 'COUNTRY OF PUBLISHING/PRODUCING ENTITY CODE', 0, 0, '', 'ASMP_BOOKS');
4583 INSERT INTO `marc_tag_structure` VALUES ('045', 'TIME PERIOD OF CONTENT', 'TIME PERIOD OF CONTENT', 0, 0, '', 'ASMP_BOOKS');
4584 INSERT INTO `marc_tag_structure` VALUES ('046', 'SPECIAL CODED DATES', 'SPECIAL CODED DATES', 1, 0, '', 'ASMP_BOOKS');
4585 INSERT INTO `marc_tag_structure` VALUES ('047', 'FORM OF MUSICAL COMPOSITION CODE', 'FORM OF MUSICAL COMPOSITION CODE', 0, 0, '', 'ASMP_BOOKS');
4586 INSERT INTO `marc_tag_structure` VALUES ('048', 'NUMBER OF MUSICAL INSTRUMENTS OR VOICES CODE', 'NUMBER OF MUSICAL INSTRUMENTS OR VOICES CODE', 1, 0, '', 'ASMP_BOOKS');
4587 INSERT INTO `marc_tag_structure` VALUES ('049', 'LOCAL HOLDINGS (OCLC)', 'LOCAL HOLDINGS (OCLC)', 0, 0, '', 'ASMP_BOOKS');
4588 INSERT INTO `marc_tag_structure` VALUES ('050', 'LIBRARY OF CONGRESS CALL NUMBER', 'LIBRARY OF CONGRESS CALL NUMBER', 1, 0, NULL, 'ASMP_BOOKS');
4589 INSERT INTO `marc_tag_structure` VALUES ('051', 'LIBRARY OF CONGRESS COPY, ISSUE, OFFPRINT STATEMENT', 'LIBRARY OF CONGRESS COPY, ISSUE, OFFPRINT STATEMENT', 1, 0, NULL, 'ASMP_BOOKS');
4590 INSERT INTO `marc_tag_structure` VALUES ('052', 'GEOGRAPHIC CLASSIFICATION', 'GEOGRAPHIC CLASSIFICATION', 1, 0, NULL, 'ASMP_BOOKS');
4591 INSERT INTO `marc_tag_structure` VALUES ('055', 'CLASSIFICATION NUMBERS ASSIGNED IN CANADA', 'CLASSIFICATION NUMBERS ASSIGNED IN CANADA', 1, 0, NULL, 'ASMP_BOOKS');
4592 INSERT INTO `marc_tag_structure` VALUES ('060', 'NATIONAL LIBRARY OF MEDICINE CALL NUMBER', 'NATIONAL LIBRARY OF MEDICINE CALL NUMBER', 1, 0, NULL, 'ASMP_BOOKS');
4593 INSERT INTO `marc_tag_structure` VALUES ('061', 'NATIONAL LIBRARY OF MEDICINE COPY STATEMENT', 'NATIONAL LIBRARY OF MEDICINE COPY STATEMENT', 1, 0, NULL, 'ASMP_BOOKS');
4594 INSERT INTO `marc_tag_structure` VALUES ('066', 'CHARACTER SETS PRESENT', 'CHARACTER SETS PRESENT', 0, 0, NULL, 'ASMP_BOOKS');
4595 INSERT INTO `marc_tag_structure` VALUES ('070', 'NATIONAL AGRICULTURAL LIBRARY CALL NUMBER', 'NATIONAL AGRICULTURAL LIBRARY CALL NUMBER', 1, 0, NULL, 'ASMP_BOOKS');
4596 INSERT INTO `marc_tag_structure` VALUES ('071', 'NATIONAL AGRICULTURAL LIBRARY COPY STATEMENT', 'NATIONAL AGRICULTURAL LIBRARY COPY STATEMENT', 1, 0, NULL, 'ASMP_BOOKS');
4597 INSERT INTO `marc_tag_structure` VALUES ('072', 'SUBJECT CATEGORY CODE', 'SUBJECT CATEGORY CODE', 1, 0, NULL, 'ASMP_BOOKS');
4598 INSERT INTO `marc_tag_structure` VALUES ('074', 'GPO ITEM NUMBER', 'GPO ITEM NUMBER', 1, 0, NULL, 'ASMP_BOOKS');
4599 INSERT INTO `marc_tag_structure` VALUES ('080', 'UNIVERSAL DECIMAL CLASSIFICATION NUMBER', 'UNIVERSAL DECIMAL CLASSIFICATION NUMBER', 1, 0, NULL, 'ASMP_BOOKS');
4600 INSERT INTO `marc_tag_structure` VALUES ('082', 'DEWEY DECIMAL CLASSIFICATION NUMBER', 'DEWEY DECIMAL CLASSIFICATION NUMBER', 1, 0, NULL, 'ASMP_BOOKS');
4601 INSERT INTO `marc_tag_structure` VALUES ('084', 'OTHER CLASSIFICATION NUMBER', 'OTHER CLASSIFICATION NUMBER', 1, 0, NULL, 'ASMP_BOOKS');
4602 INSERT INTO `marc_tag_structure` VALUES ('086', 'GOVERNMENT DOCUMENT CLASSIFICATION NUMBER', 'GOVERNMENT DOCUMENT CLASSIFICATION NUMBER', 1, 0, NULL, 'ASMP_BOOKS');
4603 INSERT INTO `marc_tag_structure` VALUES ('087', 'REPORT NUMBER [OBSOLETE, CAN/MARC]', 'REPORT NUMBER [OBSOLETE, CAN/MARC]', 1, 0, NULL, 'ASMP_BOOKS');
4604 INSERT INTO `marc_tag_structure` VALUES ('088', 'REPORT NUMBER', 'REPORT NUMBER', 1, 0, NULL, 'ASMP_BOOKS');
4605 INSERT INTO `marc_tag_structure` VALUES ('09o', 'LOCALLY ASSIGNED LC-TYPE CALL NUMBER (OCLC); LOCAL CALL NUMBER (RLIN)', 'LOCALLY ASSIGNED LC-TYPE CALL NUMBER (OCLC); LOCAL CALL NUMBER (OCLC)', 1, 0, '', 'ASMP_BOOKS');
4606 INSERT INTO `marc_tag_structure` VALUES ('091', 'MICROFILM SHELF LOCATION (AM) [OBSOLETE]', 'MICROFILM SHELF LOCATION (AM) [OBSOLETE]', 0, 0, '', 'ASMP_BOOKS');
4607 INSERT INTO `marc_tag_structure` VALUES ('092', 'LOCALLY ASSIGNED DEWEY CALL NUMBER (OCLC)', 'LOCALLY ASSIGNED DEWEY CALL NUMBER (OCLC)', 1, 0, '', 'ASMP_BOOKS');
4608 INSERT INTO `marc_tag_structure` VALUES ('096', 'LOCALLY ASSIGNED NLM-TYPE CALL NUMBER (OCLC)', 'LOCALLY ASSIGNED NLM-TYPE CALL NUMBER (OCLC)', 1, 0, '', 'ASMP_BOOKS');
4609 INSERT INTO `marc_tag_structure` VALUES ('098', 'OTHER CLASSIFICATION SCHEMES (OCLC)', 'OTHER CLASSIFICATION SCHEMES (OCLC)', 1, 0, '', 'ASMP_BOOKS');
4610 INSERT INTO `marc_tag_structure` VALUES ('099', 'LOCAL FREE-TEXT CALL NUMBER (OCLC)', 'LOCAL FREE-TEXT CALL NUMBER (OCLC)', 1, 0, '', 'ASMP_BOOKS');
4611 INSERT INTO `marc_tag_structure` VALUES ('100', 'MAIN ENTRY--PERSONAL AUTHOR', 'MAIN ENTRY--PERSONAL NAME', 0, 0, NULL, 'ASMP_BOOKS');
4612 INSERT INTO `marc_tag_structure` VALUES ('110', 'MAIN ENTRY--CORPORATE AUTHOR', 'MAIN ENTRY--CORPORATE NAME', 0, 0, NULL, 'ASMP_BOOKS');
4613 INSERT INTO `marc_tag_structure` VALUES ('111', 'MAIN ENTRY--MEETING NAME', 'MAIN ENTRY--MEETING NAME', 0, 0, NULL, 'ASMP_BOOKS');
4614 INSERT INTO `marc_tag_structure` VALUES ('130', 'MAIN ENTRY--UNIFORM TITLE', 'MAIN ENTRY--UNIFORM TITLE', 0, 0, NULL, 'ASMP_BOOKS');
4615 INSERT INTO `marc_tag_structure` VALUES ('210', 'ABBREVIATED TITLE', 'ABBREVIATED TITLE', 1, 0, NULL, 'ASMP_BOOKS');
4616 INSERT INTO `marc_tag_structure` VALUES ('211', 'ACRONYM OR SHORTENED TITLE [OBSOLETE]', 'ACRONYM OR SHORTENED TITLE [OBSOLETE]', 1, 0, NULL, 'ASMP_BOOKS');
4617 INSERT INTO `marc_tag_structure` VALUES ('212', 'VARIANT ACCESS TITLE [OBSOLETE]', 'VARIANT ACCESS TITLE [OBSOLETE]', 1, 0, NULL, 'ASMP_BOOKS');
4618 INSERT INTO `marc_tag_structure` VALUES ('214', 'AUGMENTED TITLE [OBSOLETE]', 'AUGMENTED TITLE [OBSOLETE]', 1, 0, NULL, 'ASMP_BOOKS');
4619 INSERT INTO `marc_tag_structure` VALUES ('222', 'KEY TITLE', 'KEY TITLE', 1, 0, NULL, 'ASMP_BOOKS');
4620 INSERT INTO `marc_tag_structure` VALUES ('240', 'UNIFORM TITLE', 'UNIFORM TITLE', 0, 0, 'Unititle', 'ASMP_BOOKS');
4621 INSERT INTO `marc_tag_structure` VALUES ('241', 'ROMANIZED TITLE (BK AM CF MP MU VM) [OBSOLETE]', 'ROMANIZED TITLE (BK AM CF MP MU VM) [OBSOLETE]', 0, 0, '', 'ASMP_BOOKS');
4622 INSERT INTO `marc_tag_structure` VALUES ('242', 'TRANSLATION OF TITLE BY CATALOGING AGENCY', 'TRANSLATION OF TITLE BY CATALOGING AGENCY', 1, 0, NULL, 'ASMP_BOOKS');
4623 INSERT INTO `marc_tag_structure` VALUES ('243', 'COLLECTIVE UNIFORM TITLE', 'COLLECTIVE UNIFORM TITLE', 0, 0, '', 'ASMP_BOOKS');
4624 INSERT INTO `marc_tag_structure` VALUES ('245', 'TITLE', 'TITLE STATEMENT', 0, 1, '', 'ASMP_BOOKS');
4625 INSERT INTO `marc_tag_structure` VALUES ('246', 'VARYING FORM OF TITLE', 'VARYING FORM OF TITLE', 1, 0, NULL, 'ASMP_BOOKS');
4626 INSERT INTO `marc_tag_structure` VALUES ('247', 'FORMER TITLE', 'FORMER TITLE', 1, 0, NULL, 'ASMP_BOOKS');
4627 INSERT INTO `marc_tag_structure` VALUES ('250', 'EDITION STATEMENT', 'EDITION STATEMENT', 0, 0, NULL, 'ASMP_BOOKS');
4628 INSERT INTO `marc_tag_structure` VALUES ('254', 'MUSICAL PRESENTATION STATEMENT', 'MUSICAL PRESENTATION STATEMENT', 0, 0, NULL, 'ASMP_BOOKS');
4629 INSERT INTO `marc_tag_structure` VALUES ('255', 'CARTOGRAPHIC MATHEMATICAL DATA', 'CARTOGRAPHIC MATHEMATICAL DATA', 1, 0, NULL, 'ASMP_BOOKS');
4630 INSERT INTO `marc_tag_structure` VALUES ('256', 'COMPUTER FILE CHARACTERISTICS', 'COMPUTER FILE CHARACTERISTICS', 0, 0, NULL, 'ASMP_BOOKS');
4631 INSERT INTO `marc_tag_structure` VALUES ('257', 'COUNTRY OF PRODUCING ENTITY FOR ARCHIVAL FILMS', 'COUNTRY OF PRODUCING ENTITY FOR ARCHIVAL FILMS', 0, 0, NULL, 'ASMP_BOOKS');
4632 INSERT INTO `marc_tag_structure` VALUES ('258', 'PHILATELIC ISSUE DATE', 'PHILATELIC ISSUE DATE', 1, 0, NULL, 'ASMP_BOOKS');
4633 INSERT INTO `marc_tag_structure` VALUES ('260', 'PUBLISHER--PUBLICATION, DISTRIBUTION, ETC. (IMPRINT)', 'PUBLICATION, DISTRIBUTION, ETC. (IMPRINT)', 1, 0, NULL, 'ASMP_BOOKS');
4634 INSERT INTO `marc_tag_structure` VALUES ('261', 'IMPRINT STATEMENT FOR FILMS (Pre-AACR 1 Revised) [OBSOLETE, CAN/MARC], [LOCAL, USA]', 'IMPRINT STATEMENT FOR FILMS (Pre-AACR 1 Revised) [OBSOLETE, CAN/MARC], [LOCAL, USA]', 0, 0, NULL, 'ASMP_BOOKS');
4635 INSERT INTO `marc_tag_structure` VALUES ('262', 'IMPRINT STATEMENT FOR SOUND RECORDINGS (Pre-AACR 2) [LOCAL, USA]', 'IMPRINT STATEMENT FOR SOUND RECORDINGS (Pre-AACR 2) [LOCAL, USA]', 0, 0, NULL, 'ASMP_BOOKS');
4636 INSERT INTO `marc_tag_structure` VALUES ('263', 'PROJECTED PUBLICATION DATE', 'PROJECTED PUBLICATION DATE', 0, 0, NULL, 'ASMP_BOOKS');
4637 INSERT INTO `marc_tag_structure` VALUES ('265', 'SOURCE FOR ACQUISITION/SUBSCRIPTION ADDRESS [OBSOLETE]', 'SOURCE FOR ACQUISITION/SUBSCRIPTION ADDRESS [OBSOLETE]', 0, 0, NULL, 'ASMP_BOOKS');
4638 INSERT INTO `marc_tag_structure` VALUES ('270', 'PUBLICATION, DISTRIBUTION DETAILS--ADDRESS', 'ADDRESS', 1, 0, NULL, 'ASMP_BOOKS');
4639 INSERT INTO `marc_tag_structure` VALUES ('300', 'PHYSICAL DESCRIPTION', 'PHYSICAL DESCRIPTION', 1, 1, NULL, 'ASMP_BOOKS');
4640 INSERT INTO `marc_tag_structure` VALUES ('301', 'PHYSICAL DESCRIPTION FOR FILMS (PRE-AACR 2) (VM) [OBSOLETE, USMARC]', 'PHYSICAL DESCRIPTION FOR FILMS (PRE-AACR 2) (VM) [OBSOLETE, USMARC]', 0, 0, NULL, 'ASMP_BOOKS');
4641 INSERT INTO `marc_tag_structure` VALUES ('302', 'PAGE OR ITEM COUNT (BK AM) [OBSOLETE]', 'PAGE OR ITEM COUNT (BK AM) [OBSOLETE]', 0, 0, NULL, 'ASMP_BOOKS');
4642 INSERT INTO `marc_tag_structure` VALUES ('303', 'UNIT COUNT (AM) [OBSOLETE, USMARC]', 'UNIT COUNT (AM) [OBSOLETE, USMARC]', 0, 0, NULL, 'ASMP_BOOKS');
4643 INSERT INTO `marc_tag_structure` VALUES ('304', 'LINEAR FOOTAGE (AM) [OBSOLETE, USMARC]', 'LINEAR FOOTAGE (AM) [OBSOLETE, USMARC]', 0, 0, NULL, 'ASMP_BOOKS');
4644 INSERT INTO `marc_tag_structure` VALUES ('305', 'PHYSICAL DESCRIPTION FOR SOUND RECORDINGS (Pre-AACR 2) (MU) [OBSOLETE]', 'PHYSICAL DESCRIPTION FOR SOUND RECORDINGS (Pre-AACR 2) (MU) [OBSOLETE]', 0, 0, NULL, 'ASMP_BOOKS');
4645 INSERT INTO `marc_tag_structure` VALUES ('306', 'PLAYING TIME', 'PLAYING TIME', 0, 0, NULL, 'ASMP_BOOKS');
4646 INSERT INTO `marc_tag_structure` VALUES ('307', 'HOURS, ETC.', 'HOURS, ETC.', 1, 0, NULL, 'ASMP_BOOKS');
4647 INSERT INTO `marc_tag_structure` VALUES ('308', 'PHYSICAL DESCRIPTION FOR FILMS (ARCHIVAL) (VM) [OBSOLETE]', 'PHYSICAL DESCRIPTION FOR FILMS (ARCHIVAL) (VM) [OBSOLETE]', 1, 0, NULL, 'ASMP_BOOKS');
4648 INSERT INTO `marc_tag_structure` VALUES ('310', 'CURRENT PUBLICATION FREQUENCY', 'CURRENT PUBLICATION FREQUENCY', 0, 0, NULL, 'ASMP_BOOKS');
4649 INSERT INTO `marc_tag_structure` VALUES ('315', 'FREQUENCY (CF MP) [OBSOLETE]', 'FREQUENCY (CF MP) [OBSOLETE]', 0, 0, NULL, 'ASMP_BOOKS');
4650 INSERT INTO `marc_tag_structure` VALUES ('321', 'FORMER PUBLICATION FREQUENCY', 'FORMER PUBLICATION FREQUENCY', 1, 0, NULL, 'ASMP_BOOKS');
4651 INSERT INTO `marc_tag_structure` VALUES ('340', 'PHYSICAL MEDIUM', 'PHYSICAL MEDIUM', 1, 0, NULL, 'ASMP_BOOKS');
4652 INSERT INTO `marc_tag_structure` VALUES ('342', 'GEOSPATIAL REFERENCE DATA', 'GEOSPATIAL REFERENCE DATA', 1, 0, NULL, 'ASMP_BOOKS');
4653 INSERT INTO `marc_tag_structure` VALUES ('343', 'PLANAR COORDINATE DATA', 'PLANAR COORDINATE DATA', 1, 0, NULL, 'ASMP_BOOKS');
4654 INSERT INTO `marc_tag_structure` VALUES ('350', 'PRICE (NR) (BK AM CF MU VM SE) [OBSOLETE]', 'PRICE (NR) (BK AM CF MU VM SE) [OBSOLETE]', 1, 0, NULL, 'ASMP_BOOKS');
4655 INSERT INTO `marc_tag_structure` VALUES ('351', 'ORGANIZATION AND ARRANGEMENT OF MATERIALS', 'ORGANIZATION AND ARRANGEMENT OF MATERIALS', 1, 0, NULL, 'ASMP_BOOKS');
4656 INSERT INTO `marc_tag_structure` VALUES ('352', 'DIGITAL GRAPHIC REPRESENTATION', 'DIGITAL GRAPHIC REPRESENTATION', 1, 0, NULL, 'ASMP_BOOKS');
4657 INSERT INTO `marc_tag_structure` VALUES ('355', 'SECURITY CLASSIFICATION CONTROL', 'SECURITY CLASSIFICATION CONTROL', 1, 0, NULL, 'ASMP_BOOKS');
4658 INSERT INTO `marc_tag_structure` VALUES ('357', 'ORIGINATOR DISSEMINATION CONTROL', 'ORIGINATOR DISSEMINATION CONTROL', 0, 0, NULL, 'ASMP_BOOKS');
4659 INSERT INTO `marc_tag_structure` VALUES ('359', 'RENTAL PRICE (VM) [OBSOLETE]', 'RENTAL PRICE (VM) [OBSOLETE]', 0, 0, NULL, 'ASMP_BOOKS');
4660 INSERT INTO `marc_tag_structure` VALUES ('362', 'DATES OF PUBLICATION AND/OR SEQUENTIAL DESIGNATION', 'DATES OF PUBLICATION AND/OR SEQUENTIAL DESIGNATION', 1, 0, NULL, 'ASMP_BOOKS');
4661 INSERT INTO `marc_tag_structure` VALUES ('365', 'PUBLICATION, DISTRIBUTION DETAILS--TRADE PRICE', 'TRADE PRICE', 1, 0, NULL, 'ASMP_BOOKS');
4662 INSERT INTO `marc_tag_structure` VALUES ('366', 'PUBLICATION, DISTRIBUTION DETAILS--TRADE AVAILABILITY INFORMATION', 'TRADE AVAILABILITY INFORMATION', 1, 0, NULL, 'ASMP_BOOKS');
4663 INSERT INTO `marc_tag_structure` VALUES ('400', 'SERIES STATEMENT/ADDED ENTRY--PERSONAL NAME [OBSOLETE, CAN/MARC], [LOCAL, USA]', 'SERIES STATEMENT/ADDED ENTRY--PERSONAL NAME [OBSOLETE, CAN/MARC], [LOCAL, USA]', 1, 0, NULL, 'ASMP_BOOKS');
4664 INSERT INTO `marc_tag_structure` VALUES ('410', 'SERIES STATEMENT/ADDED ENTRY--CORPORATE NAME [OBSOLETE, CAN/MARC], [LOCAL, USA]', 'SERIES STATEMENT/ADDED ENTRY--CORPORATE NAME [OBSOLETE, CAN/MARC], [LOCAL, USA]', 1, 0, NULL, 'ASMP_BOOKS');
4665 INSERT INTO `marc_tag_structure` VALUES ('411', 'SERIES STATEMENT/ADDED ENTRY--MEETING NAME [OBSOLETE, CAN/MARC], [LOCAL, USA]', 'SERIES STATEMENT/ADDED ENTRY--MEETING NAME [OBSOLETE, CAN/MARC], [LOCAL, USA]', 1, 0, NULL, 'ASMP_BOOKS');
4666 INSERT INTO `marc_tag_structure` VALUES ('440', 'SERIES--TITLE', 'SERIES STATEMENT/ADDED ENTRY--TITLE', 1, 0, NULL, 'ASMP_BOOKS');
4667 INSERT INTO `marc_tag_structure` VALUES ('490', 'SERIES STATEMENT', 'SERIES STATEMENT', 1, 0, '', 'ASMP_BOOKS');
4668 INSERT INTO `marc_tag_structure` VALUES ('500', 'GENERAL NOTE', 'GENERAL NOTE', 1, 0, NULL, 'ASMP_BOOKS');
4669 INSERT INTO `marc_tag_structure` VALUES ('501', 'WITH NOTE', 'WITH NOTE', 1, 0, NULL, 'ASMP_BOOKS');
4670 INSERT INTO `marc_tag_structure` VALUES ('502', 'DISSERTATION NOTE', 'DISSERTATION NOTE', 1, 0, NULL, 'ASMP_BOOKS');
4671 INSERT INTO `marc_tag_structure` VALUES ('503', 'BIBLIOGRAPHIC HISTORY NOTE (BK CF MU) [OBSOLETE]', 'BIBLIOGRAPHIC HISTORY NOTE (BK CF MU) [OBSOLETE]', 1, 0, NULL, 'ASMP_BOOKS');
4672 INSERT INTO `marc_tag_structure` VALUES ('504', 'BIBLIOGRAPHY, ETC. NOTE', 'BIBLIOGRAPHY, ETC. NOTE', 1, 0, NULL, 'ASMP_BOOKS');
4673 INSERT INTO `marc_tag_structure` VALUES ('505', 'FORMATTED CONTENTS NOTE', 'FORMATTED CONTENTS NOTE', 1, 0, NULL, 'ASMP_BOOKS');
4674 INSERT INTO `marc_tag_structure` VALUES ('506', 'RESTRICTIONS ON ACCESS NOTE', 'RESTRICTIONS ON ACCESS NOTE', 1, 0, NULL, 'ASMP_BOOKS');
4675 INSERT INTO `marc_tag_structure` VALUES ('507', 'SCALE NOTE FOR GRAPHIC MATERIAL', 'SCALE NOTE FOR GRAPHIC MATERIAL', 0, 0, NULL, 'ASMP_BOOKS');
4676 INSERT INTO `marc_tag_structure` VALUES ('508', 'CREATION/PRODUCTION CREDITS NOTE', 'CREATION/PRODUCTION CREDITS NOTE', 1, 0, NULL, 'ASMP_BOOKS');
4677 INSERT INTO `marc_tag_structure` VALUES ('509', 'INFORMAL NOTES (RLIN)', 'INFORMAL NOTES (RLIN)', 0, 0, NULL, 'ASMP_BOOKS');
4678 INSERT INTO `marc_tag_structure` VALUES ('510', 'CITATION/REFERENCES NOTE', 'CITATION/REFERENCES NOTE', 1, 0, NULL, 'ASMP_BOOKS');
4679 INSERT INTO `marc_tag_structure` VALUES ('511', 'PARTICIPANT OR PERFORMER NOTE', 'PARTICIPANT OR PERFORMER NOTE', 1, 0, NULL, 'ASMP_BOOKS');
4680 INSERT INTO `marc_tag_structure` VALUES ('512', 'EARLIER OR LATER VOLUMES SEPARATELY CATALOGED NOTE (SE) [OBSOLETE]', 'EARLIER OR LATER VOLUMES SEPARATELY CATALOGED NOTE (SE) [OBSOLETE]', 1, 0, NULL, 'ASMP_BOOKS');
4681 INSERT INTO `marc_tag_structure` VALUES ('513', 'TYPE OF REPORT AND PERIOD COVERED NOTE', 'TYPE OF REPORT AND PERIOD COVERED NOTE', 1, 0, NULL, 'ASMP_BOOKS');
4682 INSERT INTO `marc_tag_structure` VALUES ('514', 'DATA QUALITY NOTE', 'DATA QUALITY NOTE', 0, 0, NULL, 'ASMP_BOOKS');
4683 INSERT INTO `marc_tag_structure` VALUES ('515', 'NUMBERING PECULIARITIES NOTE', 'NUMBERING PECULIARITIES NOTE', 1, 0, NULL, 'ASMP_BOOKS');
4684 INSERT INTO `marc_tag_structure` VALUES ('516', 'TYPE OF COMPUTER FILE OR DATA NOTE', 'TYPE OF COMPUTER FILE OR DATA NOTE', 1, 0, NULL, 'ASMP_BOOKS');
4685 INSERT INTO `marc_tag_structure` VALUES ('517', 'CATEGORIES OF FILMS NOTE (ARCHIVAL) (VM) [OBSOLETE]', 'CATEGORIES OF FILMS NOTE (ARCHIVAL) (VM) [OBSOLETE]', 0, 0, NULL, 'ASMP_BOOKS');
4686 INSERT INTO `marc_tag_structure` VALUES ('518', 'DATE/TIME AND PLACE OF AN EVENT NOTE', 'DATE/TIME AND PLACE OF AN EVENT NOTE', 1, 0, NULL, 'ASMP_BOOKS');
4687 INSERT INTO `marc_tag_structure` VALUES ('520', 'SUMMARY, ETC.', 'SUMMARY, ETC.', 1, 0, NULL, 'ASMP_BOOKS');
4688 INSERT INTO `marc_tag_structure` VALUES ('521', 'GRADE LEVEL/TARGET AUDIENCE NOTE', 'TARGET AUDIENCE NOTE', 1, 0, NULL, 'ASMP_BOOKS');
4689 INSERT INTO `marc_tag_structure` VALUES ('522', 'GEOGRAPHIC DETAILS/GEOGRAPHIC COVERAGE NOTE', 'GEOGRAPHIC COVERAGE NOTE', 1, 0, NULL, 'ASMP_BOOKS');
4690 INSERT INTO `marc_tag_structure` VALUES ('523', 'TIME PERIOD OF CONTENT NOTE (CF) [OBSOLETE]', 'TIME PERIOD OF CONTENT NOTE (CF) [OBSOLETE]', 0, 0, NULL, 'ASMP_BOOKS');
4691 INSERT INTO `marc_tag_structure` VALUES ('524', 'PREFERRED CITATION OF DESCRIBED MATERIALS NOTE', 'PREFERRED CITATION OF DESCRIBED MATERIALS NOTE', 1, 0, NULL, 'ASMP_BOOKS');
4692 INSERT INTO `marc_tag_structure` VALUES ('525', 'SUPPLEMENT NOTE', 'SUPPLEMENT NOTE', 0, 0, NULL, 'ASMP_BOOKS');
4693 INSERT INTO `marc_tag_structure` VALUES ('526', 'STUDY PROGRAM INFORMATION NOTE', 'STUDY PROGRAM INFORMATION NOTE', 0, 0, NULL, 'ASMP_BOOKS');
4694 INSERT INTO `marc_tag_structure` VALUES ('527', 'CENSORSHIP NOTE (VM) [OBSOLETE]', 'CENSORSHIP NOTE (VM) [OBSOLETE]', 1, 0, NULL, 'ASMP_BOOKS');
4695 INSERT INTO `marc_tag_structure` VALUES ('530', 'ADDITIONAL PHYSICAL FORM AVAILABLE NOTE', 'ADDITIONAL PHYSICAL FORM AVAILABLE NOTE', 1, 0, NULL, 'ASMP_BOOKS');
4696 INSERT INTO `marc_tag_structure` VALUES ('533', 'REPRODUCTION NOTE', 'REPRODUCTION NOTE', 1, 0, NULL, 'ASMP_BOOKS');
4697 INSERT INTO `marc_tag_structure` VALUES ('534', 'ORIGINAL VERSION NOTE', 'ORIGINAL VERSION NOTE', 1, 0, NULL, 'ASMP_BOOKS');
4698 INSERT INTO `marc_tag_structure` VALUES ('535', 'LOCATION OF ORIGINALS/DUPLICATES NOTE', 'LOCATION OF ORIGINALS/DUPLICATES NOTE', 1, 0, NULL, 'ASMP_BOOKS');
4699 INSERT INTO `marc_tag_structure` VALUES ('536', 'FUNDING INFORMATION NOTE', 'FUNDING INFORMATION NOTE', 1, 0, NULL, 'ASMP_BOOKS');
4700 INSERT INTO `marc_tag_structure` VALUES ('537', 'SOURCE OF DATA NOTE (CF) [OBSOLETE]', 'SOURCE OF DATA NOTE (CF) [OBSOLETE]', 0, 0, NULL, 'ASMP_BOOKS');
4701 INSERT INTO `marc_tag_structure` VALUES ('538', 'SYSTEM DETAILS NOTE', 'SYSTEM DETAILS NOTE', 1, 0, NULL, 'ASMP_BOOKS');
4702 INSERT INTO `marc_tag_structure` VALUES ('540', 'TERMS GOVERNING USE AND REPRODUCTION NOTE', 'TERMS GOVERNING USE AND REPRODUCTION NOTE', 1, 0, NULL, 'ASMP_BOOKS');
4703 INSERT INTO `marc_tag_structure` VALUES ('541', 'ACQUISITION INFO--IMMEDIATE SOURCE OF ACQUISITION NOTE', 'IMMEDIATE SOURCE OF ACQUISITION NOTE', 1, 0, NULL, 'ASMP_BOOKS');
4704 INSERT INTO `marc_tag_structure` VALUES ('543', 'SOLICITATION INFORMATION NOTE (AM) [OBSOLETE]', 'SOLICITATION INFORMATION NOTE (AM) [OBSOLETE]', 1, 0, NULL, 'ASMP_BOOKS');
4705 INSERT INTO `marc_tag_structure` VALUES ('544', 'LOCATION OF OTHER ARCHIVAL MATERIALS NOTE', 'LOCATION OF OTHER ARCHIVAL MATERIALS NOTE', 1, 0, NULL, 'ASMP_BOOKS');
4706 INSERT INTO `marc_tag_structure` VALUES ('546', 'LANGUAGE/TRANSLATION INFO', 'LANGUAGE NOTE', 1, 0, NULL, 'ASMP_BOOKS');
4707 INSERT INTO `marc_tag_structure` VALUES ('547', 'FORMER TITLE COMPLEXITY NOTE', 'FORMER TITLE COMPLEXITY NOTE', 1, 0, NULL, 'ASMP_BOOKS');
4708 INSERT INTO `marc_tag_structure` VALUES ('550', 'ISSUING BODY NOTE', 'ISSUING BODY NOTE', 1, 0, NULL, 'ASMP_BOOKS');
4709 INSERT INTO `marc_tag_structure` VALUES ('552', 'ENTITY AND ATTRIBUTE INFORMATION NOTE', 'ENTITY AND ATTRIBUTE INFORMATION NOTE', 1, 0, NULL, 'ASMP_BOOKS');
4710 INSERT INTO `marc_tag_structure` VALUES ('555', 'CUMULATIVE INDEX/FINDING AIDS NOTE', 'CUMULATIVE INDEX/FINDING AIDS NOTE', 1, 0, NULL, 'ASMP_BOOKS');
4711 INSERT INTO `marc_tag_structure` VALUES ('556', 'INFORMATION ABOUT DOCUMENTATION NOTE', 'INFORMATION ABOUT DOCUMENTATION NOTE', 1, 0, NULL, 'ASMP_BOOKS');
4712 INSERT INTO `marc_tag_structure` VALUES ('561', 'OWNERSHIP AND CUSTODIAL HISTORY', 'OWNERSHIP AND CUSTODIAL HISTORY', 1, 0, NULL, 'ASMP_BOOKS');
4713 INSERT INTO `marc_tag_structure` VALUES ('562', 'COPY AND VERSION IDENTIFICATION NOTE', 'COPY AND VERSION IDENTIFICATION NOTE', 1, 0, NULL, 'ASMP_BOOKS');
4714 INSERT INTO `marc_tag_structure` VALUES ('563', 'BINDING INFORMATION', 'BINDING INFORMATION', 1, 0, NULL, 'ASMP_BOOKS');
4715 INSERT INTO `marc_tag_structure` VALUES ('565', 'CASE FILE CHARACTERISTICS NOTE', 'CASE FILE CHARACTERISTICS NOTE', 1, 0, NULL, 'ASMP_BOOKS');
4716 INSERT INTO `marc_tag_structure` VALUES ('567', 'METHODOLOGY NOTE', 'METHODOLOGY NOTE', 1, 0, NULL, 'ASMP_BOOKS');
4717 INSERT INTO `marc_tag_structure` VALUES ('570', 'EDITOR NOTE (SE) [OBSOLETE]', 'EDITOR NOTE (SE) [OBSOLETE]', 1, 0, NULL, 'ASMP_BOOKS');
4718 INSERT INTO `marc_tag_structure` VALUES ('580', 'LINKING ENTRY COMPLEXITY NOTE', 'LINKING ENTRY COMPLEXITY NOTE', 1, 0, NULL, 'ASMP_BOOKS');
4719 INSERT INTO `marc_tag_structure` VALUES ('581', 'PUBLICATIONS ABOUT DESCRIBED MATERIALS NOTE', 'PUBLICATIONS ABOUT DESCRIBED MATERIALS NOTE', 1, 0, NULL, 'ASMP_BOOKS');
4720 INSERT INTO `marc_tag_structure` VALUES ('582', 'RELATED COMPUTER FILES NOTE (CF) [OBSOLETE]', 'RELATED COMPUTER FILES NOTE (CF) [OBSOLETE]', 1, 0, NULL, 'ASMP_BOOKS');
4721 INSERT INTO `marc_tag_structure` VALUES ('583', 'ACQUISITION INFO--ACTION NOTE', 'ACTION NOTE', 1, 0, NULL, 'ASMP_BOOKS');
4722 INSERT INTO `marc_tag_structure` VALUES ('584', 'ACCUMULATION AND FREQUENCY OF USE NOTE', 'ACCUMULATION AND FREQUENCY OF USE NOTE', 1, 0, NULL, 'ASMP_BOOKS');
4723 INSERT INTO `marc_tag_structure` VALUES ('585', 'EXHIBITIONS NOTE', 'EXHIBITIONS NOTE', 1, 0, NULL, 'ASMP_BOOKS');
4724 INSERT INTO `marc_tag_structure` VALUES ('586', 'AWARDS', 'AWARDS NOTE', 1, 0, NULL, 'ASMP_BOOKS');
4725 INSERT INTO `marc_tag_structure` VALUES ('590', 'LOCAL NOTE (RLIN)', 'LOCAL NOTE (RLIN)', 1, 0, NULL, 'ASMP_BOOKS');
4726 INSERT INTO `marc_tag_structure` VALUES ('600', 'SUBJECT--PERSONAL NAME', 'SUBJECT ADDED ENTRY--PERSONAL NAME', 1, 0, NULL, 'ASMP_BOOKS');
4727 INSERT INTO `marc_tag_structure` VALUES ('610', 'SUBJECT--CORPORATE NAME', 'SUBJECT ADDED ENTRY--CORPORATE NAME', 1, 0, NULL, 'ASMP_BOOKS');
4728 INSERT INTO `marc_tag_structure` VALUES ('611', 'SUBJECT--MEETING NAME', 'SUBJECT ADDED ENTRY--MEETING NAME', 1, 0, NULL, 'ASMP_BOOKS');
4729 INSERT INTO `marc_tag_structure` VALUES ('630', 'SUBJECT--UNIFORM TITLE', 'SUBJECT ADDED ENTRY--UNIFORM TITLE', 1, 0, NULL, 'ASMP_BOOKS');
4730 INSERT INTO `marc_tag_structure` VALUES ('648', 'SUBJECT--CHRONOLOGICAL TERM', 'SUBJECT ADDED ENTRY--CHRONOLOGICAL TERM', 1, 0, NULL, 'ASMP_BOOKS');
4731 INSERT INTO `marc_tag_structure` VALUES ('650', 'SUBJECT--TOPIC', 'SUBJECT ADDED ENTRY--TOPICAL TERM', 1, 0, NULL, 'ASMP_BOOKS');
4732 INSERT INTO `marc_tag_structure` VALUES ('651', 'SUBJECT--GEOGRAPHIC NAME', 'SUBJECT ADDED ENTRY--GEOGRAPHIC NAME', 1, 0, NULL, 'ASMP_BOOKS');
4733 INSERT INTO `marc_tag_structure` VALUES ('652', 'SUBJECT ADDED ENTRY--REVERSE GEOGRAPHIC (BK MP SE) [OBSOLETE]', 'SUBJECT ADDED ENTRY--REVERSE GEOGRAPHIC (BK MP SE) [OBSOLETE]', 1, 0, NULL, 'ASMP_BOOKS');
4734 INSERT INTO `marc_tag_structure` VALUES ('653', 'SUBJECT--UNCONTROLLED', 'INDEX TERM--UNCONTROLLED', 1, 0, NULL, 'ASMP_BOOKS');
4735 INSERT INTO `marc_tag_structure` VALUES ('654', 'SUBJECT ADDED ENTRY--FACETED TOPICAL TERM', 'SUBJECT ADDED ENTRY--FACETED TOPICAL TERM', 1, 0, NULL, 'ASMP_BOOKS');
4736 INSERT INTO `marc_tag_structure` VALUES ('655', 'SUBJECT--GENRE/FORM', 'INDEX TERM--GENRE/FORM', 1, 0, NULL, 'ASMP_BOOKS');
4737 INSERT INTO `marc_tag_structure` VALUES ('656', 'SUBJECT--OCCUPATION', 'INDEX TERM--OCCUPATION', 1, 0, NULL, 'ASMP_BOOKS');
4738 INSERT INTO `marc_tag_structure` VALUES ('657', 'SUBJECT--FUNCTION', 'INDEX TERM--FUNCTION', 1, 0, NULL, 'ASMP_BOOKS');
4739 INSERT INTO `marc_tag_structure` VALUES ('658', 'SUBJECT--CURRICULUM OBJECTIVE', 'INDEX TERM--CURRICULUM OBJECTIVE', 1, 0, NULL, 'ASMP_BOOKS');
4740 INSERT INTO `marc_tag_structure` VALUES ('662', 'SUBJECT ADDED ENTRY--HIERARCHICAL PLACE NAME', 'SUBJECT ADDED ENTRY--HIERARCHICAL PLACE NAME', 1, 0, NULL, 'ASMP_BOOKS');
4741 INSERT INTO `marc_tag_structure` VALUES ('690', 'LOCAL SUBJECT--TOPICAL TERM (OCLC, RLIN)', 'LOCAL SUBJECT ADDED ENTRY--TOPICAL TERM (OCLC, RLIN)', 1, 0, '', 'ASMP_BOOKS');
4742 INSERT INTO `marc_tag_structure` VALUES ('691', 'LOCAL SUBJECT ADDED ENTRY--GEOGRAPHIC NAME (RLIN)', 'LOCAL SUBJECT ADDED ENTRY--GEOGRAPHIC NAME (RLIN)', 1, 0, '', 'ASMP_BOOKS');
4743 INSERT INTO `marc_tag_structure` VALUES ('696', 'LOCAL SUBJECT ADDED ENTRY--PERSONAL NAME (RLIN)', 'LOCAL SUBJECT ADDED ENTRY--PERSONAL NAME (RLIN)', 1, 0, '', 'ASMP_BOOKS');
4744 INSERT INTO `marc_tag_structure` VALUES ('697', 'LOCAL SUBJECT ADDED ENTRY--CORPORATE NAME (RLIN)', 'LOCAL SUBJECT ADDED ENTRY--CORPORATE NAME (RLIN)', 1, 0, '', 'ASMP_BOOKS');
4745 INSERT INTO `marc_tag_structure` VALUES ('698', 'LOCAL SUBJECT ADDED ENTRY--MEETING NAME (RLIN)', 'LOCAL SUBJECT ADDED ENTRY--MEETING NAME (RLIN)', 1, 0, '', 'ASMP_BOOKS');
4746 INSERT INTO `marc_tag_structure` VALUES ('699', 'LOCAL SUBJECT ADDED ENTRY--UNIFORM TITLE (RLIN)', 'LOCAL SUBJECT ADDED ENTRY--UNIFORM TITLE (RLIN)', 1, 0, '', 'ASMP_BOOKS');
4747 INSERT INTO `marc_tag_structure` VALUES ('700', 'ADDED ENTRY--PERSONAL AUTHOR', 'ADDED ENTRY--PERSONAL NAME', 1, 0, NULL, 'ASMP_BOOKS');
4748 INSERT INTO `marc_tag_structure` VALUES ('705', 'ADDED ENTRY--PERSONAL NAME (PERFORMER) (MU) [OBSOLETE]', 'ADDED ENTRY--PERSONAL NAME (PERFORMER) (MU) [OBSOLETE]', 1, 0, NULL, 'ASMP_BOOKS');
4749 INSERT INTO `marc_tag_structure` VALUES ('710', 'ADDED ENTRY--CORPORATE AUTHOR', 'ADDED ENTRY--CORPORATE NAME', 1, 0, NULL, 'ASMP_BOOKS');
4750 INSERT INTO `marc_tag_structure` VALUES ('711', 'ADDED ENTRY--MEETING NAME', 'ADDED ENTRY--MEETING NAME', 1, 0, NULL, 'ASMP_BOOKS');
4751 INSERT INTO `marc_tag_structure` VALUES ('715', 'ADDED ENTRY--CORPORATE NAME (PERFORMER) (MU) [OBSOLETE]', 'ADDED ENTRY--CORPORATE NAME (PERFORMER) (MU) [OBSOLETE]', 1, 0, NULL, 'ASMP_BOOKS');
4752 INSERT INTO `marc_tag_structure` VALUES ('720', 'ADDED ENTRY--UNCONTROLLED AUTHOR', 'ADDED ENTRY--UNCONTROLLED NAME', 1, 0, NULL, 'ASMP_BOOKS');
4753 INSERT INTO `marc_tag_structure` VALUES ('730', 'ADDED ENTRY--UNIFORM TITLE', 'ADDED ENTRY--UNIFORM TITLE', 1, 0, NULL, 'ASMP_BOOKS');
4754 INSERT INTO `marc_tag_structure` VALUES ('740', 'ADDED ENTRY--UNCONTROLLED RELATED/ANALYTICAL TITLE', 'ADDED ENTRY--UNCONTROLLED RELATED/ANALYTICAL TITLE', 1, 0, NULL, 'ASMP_BOOKS');
4755 INSERT INTO `marc_tag_structure` VALUES ('752', 'ADDED ENTRY--HIERARCHICAL PLACE NAME', 'ADDED ENTRY--HIERARCHICAL PLACE NAME', 1, 0, NULL, 'ASMP_BOOKS');
4756 INSERT INTO `marc_tag_structure` VALUES ('753', 'SYSTEM DETAILS ACCESS TO COMPUTER FILES', 'SYSTEM DETAILS ACCESS TO COMPUTER FILES', 1, 0, NULL, 'ASMP_BOOKS');
4757 INSERT INTO `marc_tag_structure` VALUES ('754', 'ADDED ENTRY--TAXONOMIC IDENTIFICATION', 'ADDED ENTRY--TAXONOMIC IDENTIFICATION', 1, 0, NULL, 'ASMP_BOOKS');
4758 INSERT INTO `marc_tag_structure` VALUES ('755', 'ADDED ENTRY--PHYSICAL CHARACTERISTICS [OBSOLETE]', 'ADDED ENTRY--PHYSICAL CHARACTERISTICS [OBSOLETE]', 1, 0, NULL, 'ASMP_BOOKS');
4759 INSERT INTO `marc_tag_structure` VALUES ('760', 'MAIN SERIES ENTRY', 'MAIN SERIES ENTRY', 1, 0, NULL, 'ASMP_BOOKS');
4760 INSERT INTO `marc_tag_structure` VALUES ('762', 'SUBSERIES ENTRY', 'SUBSERIES ENTRY', 1, 0, NULL, 'ASMP_BOOKS');
4761 INSERT INTO `marc_tag_structure` VALUES ('765', 'ORIGINAL LANGUAGE ENTRY', 'ORIGINAL LANGUAGE ENTRY', 1, 0, NULL, 'ASMP_BOOKS');
4762 INSERT INTO `marc_tag_structure` VALUES ('767', 'TRANSLATION ENTRY', 'TRANSLATION ENTRY', 1, 0, NULL, 'ASMP_BOOKS');
4763 INSERT INTO `marc_tag_structure` VALUES ('770', 'SUPPLEMENT/SPECIAL ISSUE ENTRY', 'SUPPLEMENT/SPECIAL ISSUE ENTRY', 1, 0, NULL, 'ASMP_BOOKS');
4764 INSERT INTO `marc_tag_structure` VALUES ('772', 'SUPPLEMENT PARENT ENTRY', 'SUPPLEMENT PARENT ENTRY', 1, 0, NULL, 'ASMP_BOOKS');
4765 INSERT INTO `marc_tag_structure` VALUES ('773', 'HOST ITEM ENTRY', 'HOST ITEM ENTRY', 1, 0, NULL, 'ASMP_BOOKS');
4766 INSERT INTO `marc_tag_structure` VALUES ('774', 'CONSTITUENT UNIT ENTRY', 'CONSTITUENT UNIT ENTRY', 1, 0, NULL, 'ASMP_BOOKS');
4767 INSERT INTO `marc_tag_structure` VALUES ('775', 'OTHER EDITION ENTRY', 'OTHER EDITION ENTRY', 1, 0, NULL, 'ASMP_BOOKS');
4768 INSERT INTO `marc_tag_structure` VALUES ('776', 'ADDITIONAL PHYSICAL FORM ENTRY', 'ADDITIONAL PHYSICAL FORM ENTRY', 1, 0, NULL, 'ASMP_BOOKS');
4769 INSERT INTO `marc_tag_structure` VALUES ('777', 'ISSUED WITH ENTRY', 'ISSUED WITH ENTRY', 1, 0, NULL, 'ASMP_BOOKS');
4770 INSERT INTO `marc_tag_structure` VALUES ('780', 'PRECEDING ENTRY', 'PRECEDING ENTRY', 1, 0, NULL, 'ASMP_BOOKS');
4771 INSERT INTO `marc_tag_structure` VALUES ('785', 'SUCCEEDING ENTRY', 'SUCCEEDING ENTRY', 1, 0, NULL, 'ASMP_BOOKS');
4772 INSERT INTO `marc_tag_structure` VALUES ('786', 'DATA SOURCE ENTRY', 'DATA SOURCE ENTRY', 1, 0, NULL, 'ASMP_BOOKS');
4773 INSERT INTO `marc_tag_structure` VALUES ('787', 'NONSPECIFIC RELATIONSHIP ENTRY', 'NONSPECIFIC RELATIONSHIP ENTRY', 1, 0, NULL, 'ASMP_BOOKS');
4774 INSERT INTO `marc_tag_structure` VALUES ('789', 'COMPONENT ITEM ENTRY (RLIN)', 'COMPONENT ITEM ENTRY (RLIN)', 1, 0, '', 'ASMP_BOOKS');
4775 INSERT INTO `marc_tag_structure` VALUES ('796', 'LOCAL ADDED ENTRY--PERSONAL NAME (RLIN)', 'LOCAL ADDED ENTRY--PERSONAL NAME (RLIN)', 1, 0, '', 'ASMP_BOOKS');
4776 INSERT INTO `marc_tag_structure` VALUES ('797', 'LOCAL ADDED ENTRY--CORPORATE NAME (RLIN)', 'LOCAL ADDED ENTRY--CORPORATE NAME (RLIN)', 1, 0, '', 'ASMP_BOOKS');
4777 INSERT INTO `marc_tag_structure` VALUES ('798', 'LOCAL ADDED ENTRY--MEETING NAME (RLIN)', 'LOCAL ADDED ENTRY--MEETING NAME (RLIN)', 1, 0, '', 'ASMP_BOOKS');
4778 INSERT INTO `marc_tag_structure` VALUES ('799', 'LOCAL ADDED ENTRY--UNIFORM TITLE (RLIN)', 'LOCAL ADDED ENTRY--UNIFORM TITLE (RLIN)', 1, 0, '', 'ASMP_BOOKS');
4779 INSERT INTO `marc_tag_structure` VALUES ('800', 'SERIES ADDED ENTRY--PERSONAL NAME', 'SERIES ADDED ENTRY--PERSONAL NAME', 1, 0, NULL, 'ASMP_BOOKS');
4780 INSERT INTO `marc_tag_structure` VALUES ('810', 'SERIES ADDED ENTRY--CORPORATE NAME', 'SERIES ADDED ENTRY--CORPORATE NAME', 1, 0, NULL, 'ASMP_BOOKS');
4781 INSERT INTO `marc_tag_structure` VALUES ('811', 'SERIES ADDED ENTRY--MEETING NAME', 'SERIES ADDED ENTRY--MEETING NAME', 1, 0, NULL, 'ASMP_BOOKS');
4782 INSERT INTO `marc_tag_structure` VALUES ('830', 'SERIES ADDED ENTRY--UNIFORM TITLE', 'SERIES ADDED ENTRY--UNIFORM TITLE', 1, 0, NULL, 'ASMP_BOOKS');
4783 INSERT INTO `marc_tag_structure` VALUES ('840', 'SERIES ADDED ENTRY--TITLE [OBSOLETE]', 'SERIES ADDED ENTRY--TITLE [OBSOLETE]', 1, 0, NULL, 'ASMP_BOOKS');
4784 INSERT INTO `marc_tag_structure` VALUES ('841', 'HOLDINGS CODED DATA VALUES', 'HOLDINGS CODED DATA VALUES', 0, 0, NULL, 'ASMP_BOOKS');
4785 INSERT INTO `marc_tag_structure` VALUES ('842', 'TEXTUAL PHYSICAL FORM DESIGNATOR', 'TEXTUAL PHYSICAL FORM DESIGNATOR', 0, 0, NULL, 'ASMP_BOOKS');
4786 INSERT INTO `marc_tag_structure` VALUES ('843', 'REPRODUCTION NOTE', 'REPRODUCTION NOTE', 1, 0, NULL, 'ASMP_BOOKS');
4787 INSERT INTO `marc_tag_structure` VALUES ('844', 'NAME OF UNIT', 'NAME OF UNIT', 0, 0, NULL, 'ASMP_BOOKS');
4788 INSERT INTO `marc_tag_structure` VALUES ('845', 'TERMS GOVERNING USE AND REPRODUCTION NOTE', 'TERMS GOVERNING USE AND REPRODUCTION NOTE', 1, 0, NULL, 'ASMP_BOOKS');
4789 INSERT INTO `marc_tag_structure` VALUES ('850', 'HOLDING INSTITUTION', 'HOLDING INSTITUTION', 1, 0, NULL, 'ASMP_BOOKS');
4790 INSERT INTO `marc_tag_structure` VALUES ('851', 'LOCATION [OBSOLETE]', 'LOCATION [OBSOLETE]', 1, 0, NULL, 'ASMP_BOOKS');
4791 INSERT INTO `marc_tag_structure` VALUES ('852', 'LOCATION/CALL NUMBER', 'LOCATION/CALL NUMBER', 1, 0, NULL, 'ASMP_BOOKS');
4792 INSERT INTO `marc_tag_structure` VALUES ('853', 'CAPTIONS AND PATTERN--BASIC BIBLIOGRAPHIC UNIT', 'CAPTIONS AND PATTERN--BASIC BIBLIOGRAPHIC UNIT', 1, 0, NULL, 'ASMP_BOOKS');
4793 INSERT INTO `marc_tag_structure` VALUES ('854', 'CAPTIONS AND PATTERN--SUPPLEMENTARY MATERIAL', 'CAPTIONS AND PATTERN--SUPPLEMENTARY MATERIAL', 1, 0, NULL, 'ASMP_BOOKS');
4794 INSERT INTO `marc_tag_structure` VALUES ('855', 'CAPTIONS AND PATTERN--INDEXES', 'CAPTIONS AND PATTERN--INDEXES', 1, 0, NULL, 'ASMP_BOOKS');
4795 INSERT INTO `marc_tag_structure` VALUES ('856', 'ELECTRONIC LOCATION AND ACCESS', 'ELECTRONIC LOCATION AND ACCESS', 1, 0, NULL, 'ASMP_BOOKS');
4796 INSERT INTO `marc_tag_structure` VALUES ('859', 'LOCAL CONTROL INFORMATION (RLIN)', 'LOCAL CONTROL INFORMATION (RLIN)', 1, 0, '', 'ASMP_BOOKS');
4797 INSERT INTO `marc_tag_structure` VALUES ('863', 'ENUMERATION AND CHRONOLOGY--BASIC BIBLIOGRAPHIC UNIT', 'ENUMERATION AND CHRONOLOGY--BASIC BIBLIOGRAPHIC UNIT', 1, 0, NULL, 'ASMP_BOOKS');
4798 INSERT INTO `marc_tag_structure` VALUES ('864', 'ENUMERATION AND CHRONOLOGY--SUPPLEMENTARY MATERIAL', 'ENUMERATION AND CHRONOLOGY--SUPPLEMENTARY MATERIAL', 1, 0, NULL, 'ASMP_BOOKS');
4799 INSERT INTO `marc_tag_structure` VALUES ('865', 'ENUMERATION AND CHRONOLOGY--INDEXES', 'ENUMERATION AND CHRONOLOGY--INDEXES', 1, 0, NULL, 'ASMP_BOOKS');
4800 INSERT INTO `marc_tag_structure` VALUES ('866', 'TEXTUAL HOLDINGS--BASIC BIBLIOGRAPHIC UNIT', 'TEXTUAL HOLDINGS--BASIC BIBLIOGRAPHIC UNIT', 1, 0, NULL, 'ASMP_BOOKS');
4801 INSERT INTO `marc_tag_structure` VALUES ('867', 'TEXTUAL HOLDINGS--SUPPLEMENTARY MATERIAL', 'TEXTUAL HOLDINGS--SUPPLEMENTARY MATERIAL', 1, 0, NULL, 'ASMP_BOOKS');
4802 INSERT INTO `marc_tag_structure` VALUES ('868', 'TEXTUAL HOLDINGS--INDEXES', 'TEXTUAL HOLDINGS--INDEXES', 1, 0, NULL, 'ASMP_BOOKS');
4803 INSERT INTO `marc_tag_structure` VALUES ('870', 'VARIANT PERSONAL NAME (SE) [OBSOLETE]', 'VARIANT PERSONAL NAME (SE) [OBSOLETE]', 1, 0, NULL, 'ASMP_BOOKS');
4804 INSERT INTO `marc_tag_structure` VALUES ('871', 'VARIANT CORPORATE NAME (SE)[OBSOLETE]', 'VARIANT CORPORATE NAME (SE)[OBSOLETE]', 1, 0, NULL, 'ASMP_BOOKS');
4805 INSERT INTO `marc_tag_structure` VALUES ('872', 'VARIANT CONFERENCE OR MEETING NAME (SE) [OBSOLETE]', 'VARIANT CONFERENCE OR MEETING NAME (SE) [OBSOLETE]', 1, 0, NULL, 'ASMP_BOOKS');
4806 INSERT INTO `marc_tag_structure` VALUES ('873', 'VARIANT UNIFORM TITLE HEADING (SE) [OBSOLETE]', 'VARIANT UNIFORM TITLE HEADING (SE) [OBSOLETE]', 1, 0, NULL, 'ASMP_BOOKS');
4807 INSERT INTO `marc_tag_structure` VALUES ('876', 'ITEM INFORMATION--BASIC BIBLIOGRAPHIC UNIT', 'ITEM INFORMATION--BASIC BIBLIOGRAPHIC UNIT', 1, 0, NULL, 'ASMP_BOOKS');
4808 INSERT INTO `marc_tag_structure` VALUES ('877', 'ITEM INFORMATION--SUPPLEMENTARY MATERIAL', 'ITEM INFORMATION--SUPPLEMENTARY MATERIAL', 1, 0, NULL, 'ASMP_BOOKS');
4809 INSERT INTO `marc_tag_structure` VALUES ('878', 'ITEM INFORMATION--INDEXES', 'ITEM INFORMATION--INDEXES', 1, 0, NULL, 'ASMP_BOOKS');
4810 INSERT INTO `marc_tag_structure` VALUES ('880', 'ALTERNATE GRAPHIC REPRESENTATION', 'ALTERNATE GRAPHIC REPRESENTATION', 1, 0, NULL, 'ASMP_BOOKS');
4811 INSERT INTO `marc_tag_structure` VALUES ('886', 'FOREIGN MARC INFORMATION FIELD', 'FOREIGN MARC INFORMATION FIELD', 1, 0, NULL, 'ASMP_BOOKS');
4812 INSERT INTO `marc_tag_structure` VALUES ('887', 'NON-MARC INFORMATION FIELD', 'NON-MARC INFORMATION FIELD', 1, 0, NULL, 'ASMP_BOOKS');
4813 INSERT INTO `marc_tag_structure` VALUES ('896', 'LOCAL SERIES ADDED ENTRY--PERSONAL NAME (RLIN)', 'LOCAL SERIES ADDED ENTRY--PERSONAL NAME (RLIN)', 1, 0, '', 'ASMP_BOOKS');
4814 INSERT INTO `marc_tag_structure` VALUES ('897', 'LOCAL SERIES ADDED ENTRY--CORPORATE NAME (RLIN)', 'LOCAL SERIES ADDED ENTRY--CORPORATE NAME (RLIN)', 1, 0, '', 'ASMP_BOOKS');
4815 INSERT INTO `marc_tag_structure` VALUES ('898', 'LOCAL SERIES ADDED ENTRY--MEETING NAME (RLIN)', 'LOCAL SERIES ADDED ENTRY--MEETING NAME (RLIN)', 1, 0, '', 'ASMP_BOOKS');
4816 INSERT INTO `marc_tag_structure` VALUES ('899', 'LOCAL SERIES ADDED ENTRY--UNIFORM TITLE (RLIN)', 'LOCAL SERIES ADDED ENTRY--UNIFORM TITLE (RLIN)', 1, 0, '', 'ASMP_BOOKS');
4817 INSERT INTO `marc_tag_structure` VALUES ('89e', 'ERRONEOUS FIELD, ERR (RLIN)', 'ERRONEOUS FIELD, ERR (RLIN)', 1, 0, '', 'ASMP_BOOKS');
4818 INSERT INTO `marc_tag_structure` VALUES ('900', 'EQUIVALENCE OR CROSS-REFERENCE-PERSONAL NAME [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-PERSONAL NAME [LOCAL, CANADA]', 1, 0, '', 'ASMP_BOOKS');
4819 INSERT INTO `marc_tag_structure` VALUES ('901', 'LOCAL DATA ELEMENT A, LDA (RLIN)', 'LOCAL DATA ELEMENT A, LDA (RLIN)', 1, 0, '', 'ASMP_BOOKS');
4820 INSERT INTO `marc_tag_structure` VALUES ('902', 'LOCAL DATA ELEMENT B, LDB (RLIN)', 'LOCAL DATA ELEMENT B, LDB (RLIN)', 1, 0, '', 'ASMP_BOOKS');
4821 INSERT INTO `marc_tag_structure` VALUES ('903', 'LOCAL DATA ELEMENT C, LDC (RLIN)', 'LOCAL DATA ELEMENT C, LDC (RLIN)', 1, 0, '', 'ASMP_BOOKS');
4822 INSERT INTO `marc_tag_structure` VALUES ('904', 'LOCAL DATA ELEMENT D, LDD (RLIN)', 'LOCAL DATA ELEMENT D, LDD (RLIN)', 1, 0, '', 'ASMP_BOOKS');
4823 INSERT INTO `marc_tag_structure` VALUES ('905', 'LOCAL DATA ELEMENT E, LDE (RLIN)', 'LOCAL DATA ELEMENT E, LDE (RLIN)', 1, 0, '', 'ASMP_BOOKS');
4824 INSERT INTO `marc_tag_structure` VALUES ('906', 'LOCAL DATA ELEMENT F, LDF (RLIN)', 'LOCAL DATA ELEMENT F, LDF (RLIN)', 1, 0, '', 'ASMP_BOOKS');
4825 INSERT INTO `marc_tag_structure` VALUES ('907', 'LOCAL DATA ELEMENT G, LDG (RLIN)', 'LOCAL DATA ELEMENT G, LDG (RLIN)', 1, 0, '', 'ASMP_BOOKS');
4826 INSERT INTO `marc_tag_structure` VALUES ('908', 'PUT COMMAND PARAMETER (RLIN)', 'PUT COMMAND PARAMETER (RLIN)', 0, 0, '', 'ASMP_BOOKS');
4827 INSERT INTO `marc_tag_structure` VALUES ('910', 'EQUIVALENCE OR CROSS-REFERENCE-CORPORATE NAME [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-CORPORATE NAME [LOCAL, CANADA]', 1, 0, '', 'ASMP_BOOKS');
4828 INSERT INTO `marc_tag_structure` VALUES ('91o', 'USER-OPTION DATA (COLC)', 'USER-OPTION DATA (OCLC)', 0, 0, '', 'ASMP_BOOKS');
4829 INSERT INTO `marc_tag_structure` VALUES ('91r', 'RLG STANDARDS NOTE (RLIN)', 'RLG STANDARDS NOTE (RLIN)', 1, 0, '', 'ASMP_BOOKS');
4830 INSERT INTO `marc_tag_structure` VALUES ('911', 'EQUIVALENCE OR CROSS-REFERENCE-CONFERENCE OR MEETING NAME [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-CONFERENCE OR MEETING NAME [LOCAL, CANADA]', 1, 0, '', 'ASMP_BOOKS');
4831 INSERT INTO `marc_tag_structure` VALUES ('930', 'EQUIVALENCE OR CROSS-REFERENCE-UNIFORM TITLE HEADING [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-UNIFORM TITLE HEADING [LOCAL, CANADA]', 1, 0, '', 'ASMP_BOOKS');
4832 INSERT INTO `marc_tag_structure` VALUES ('93r', 'SUMMARY HOLDINGS STATEMENT (RLIN)', 'SUMMARY HOLDINGS STATEMENT (RLIN)', 1, 0, '', 'ASMP_BOOKS');
4833 INSERT INTO `marc_tag_structure` VALUES ('936', 'OCLC/CONSER MISCELLANEOUS DATA (OCLC); PIECE USED FOR CATALOGING (pre-AACR2) (RLIN)', 'OCLC/CONSER MISCELLANEOUS DATA (OCLC); PIECE USED FOR CATALOGING (pre-AACR2) (RLIN)', 0, 0, '', 'ASMP_BOOKS');
4834 INSERT INTO `marc_tag_structure` VALUES ('940', 'EQUIVALENCE OR CROSS-REFERENCE--UNIFORM TITLE [OBSOLETE] [CAN/MARC only]', 'EQUIVALENCE OR CROSS-REFERENCE--UNIFORM TITLE [OBSOLETE] [CAN/MARC only]', 1, 0, '', 'ASMP_BOOKS');
4835 INSERT INTO `marc_tag_structure` VALUES ('941', 'EQUIVALENCE OR CROSS-REFERENCE--ROMANIZED TITLE [OBSOLETE] [CAN/MARC only]', 'EQUIVALENCE OR CROSS-REFERENCE--ROMANIZED TITLE [OBSOLETE] [CAN/MARC only]', 1, 0, '', 'ASMP_BOOKS');
4836 INSERT INTO `marc_tag_structure` VALUES ('943', 'EQUIVALENCE OR CROSS-REFERENCE--COLLECTIVE TITLE [OBSOLETE] [CAN/MARC only]', 'EQUIVALENCE OR CROSS-REFERENCE--COLLECTIVE TITLE [OBSOLETE] [CAN/MARC only]', 1, 0, '', 'ASMP_BOOKS');
4837 INSERT INTO `marc_tag_structure` VALUES ('945', 'LOCAL PROCESSING INFORMATION (OCLC)', 'LOCAL PROCESSING INFORMATION (OCLC)', 1, 0, '', 'ASMP_BOOKS');
4838 INSERT INTO `marc_tag_structure` VALUES ('94c', 'EQUIVALENCE OR CROSS-REFERENCE--TITLE [OBSOLETE] [CAN/MARC only]', 'EQUIVALENCE OR CROSS-REFERENCE--TITLE [OBSOLETE] [CAN/MARC only]', 1, 0, '', 'ASMP_BOOKS');
4839 INSERT INTO `marc_tag_structure` VALUES ('946', 'LOCAL PROCESSING INFORMATION (OCLC)', 'LOCAL PROCESSING INFORMATION (OCLC)', 1, 0, '', 'ASMP_BOOKS');
4840 INSERT INTO `marc_tag_structure` VALUES ('947', 'LOCAL PROCESSING INFORMATION (OCLC)', 'LOCAL PROCESSING INFORMATION (OCLC)', 1, 0, '', 'ASMP_BOOKS');
4841 INSERT INTO `marc_tag_structure` VALUES ('948', 'LOCAL PROCESSING INFORMATION (OCLC); SERIES PART DESIGNATOR (RLIN)', 'LOCAL PROCESSING INFORMATION (OCLC); SERIES PART DESIGNATOR (RLIN)', 1, 0, '', 'ASMP_BOOKS');
4842 INSERT INTO `marc_tag_structure` VALUES ('949', 'LOCAL PROCESSING INFORMATION (OCLC)', 'LOCAL PROCESSING INFORMATION (OCLC)', 1, 0, '', 'ASMP_BOOKS');
4843 INSERT INTO `marc_tag_structure` VALUES ('94a', 'ANALYSIS TREATMENT NOTE (RLIN)', 'ANALYSIS TREATMENT NOTE (RLIN)', 1, 0, '', 'ASMP_BOOKS');
4844 INSERT INTO `marc_tag_structure` VALUES ('94b', 'TREATMENT CODES (RLIN)', 'TREATMENT CODES (RLIN)', 1, 0, '', 'ASMP_BOOKS');
4845 INSERT INTO `marc_tag_structure` VALUES ('950', 'LOCAL HOLDINGS (RLIN)', 'LOCAL HOLDINGS (RLIN)', 1, 0, '', 'ASMP_BOOKS');
4846 INSERT INTO `marc_tag_structure` VALUES ('951', 'EQUIVALENCE OR CROSS-REFERENCE--GEOGRAPHIC NAME/AREA NAME [OBSOLETE] [CAN/MARC only]', 'EQUIVALENCE OR CROSS-REFERENCE-GEOGRAPHIC NAME/AREA NAME [OBSOLETE] [CAN/MARC only]', 1, 0, '', 'ASMP_BOOKS');
4847 INSERT INTO `marc_tag_structure` VALUES ('95c', 'EQUIVALENCE OR CROSS-REFERENCE--HIERARCHICAL PLACE NAME [OBSOLETE] [CAN/MARC only]', 'EQUIVALENCE OR CROSS-REFERENCE-HIERARCHICAL PLACE NAME [OBSOLETE] [CAN/MARC only]', 1, 0, '', 'ASMP_BOOKS');
4848 INSERT INTO `marc_tag_structure` VALUES ('95r', 'CLUSTER MEMBER (RLIN)', 'CLUSTER MEMBER (RLIN)', 1, 0, '', 'ASMP_BOOKS');
4849 INSERT INTO `marc_tag_structure` VALUES ('955', 'COPY-LEVEL INFORMATION (RLIN)', 'COPY-LEVEL INFORMATION (RLIN)', 1, 0, '', 'ASMP_BOOKS');
4850 INSERT INTO `marc_tag_structure` VALUES ('956', 'LOCAL ELECTRONIC LOCATION AND ACCESS (OCLC)', 'LOCAL ELECTRONIC LOCATION AND ACCESS (OCLC)', 1, 0, '', 'ASMP_BOOKS');
4851 INSERT INTO `marc_tag_structure` VALUES ('960', 'PHYSICAL LOCATION (RLIN)', 'PHYSICAL LOCATION (RLIN)', 1, 0, '', 'ASMP_BOOKS');
4852 INSERT INTO `marc_tag_structure` VALUES ('967', 'ADDITIONAL ESTC CODES (RLIN)', 'ADDITIONAL ESTC CODES (RLIN)', 1, 0, '', 'ASMP_BOOKS');
4853 INSERT INTO `marc_tag_structure` VALUES ('980', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--PERSONAL NAME/TITLE [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--PERSONAL NAME/TITLE [LOCAL, CANADA]', 1, 0, '', 'ASMP_BOOKS');
4854 INSERT INTO `marc_tag_structure` VALUES ('981', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--CORPORATE NAME/TITLE [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--CORPORATE NAME/TITLE [LOCAL, CANADA]', 1, 0, '', 'ASMP_BOOKS');
4855 INSERT INTO `marc_tag_structure` VALUES ('982', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--CONFERENCE OR MEETING NAME/TITLE [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--CONFERENCE OR MEETING NAME/TITLE [LOCAL, CANADA]', 1, 0, '', 'ASMP_BOOKS');
4856 INSERT INTO `marc_tag_structure` VALUES ('983', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--TITLE/UNIFORM TITLE [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE--SERIES STATEMENT-TITLE/UNIFORM TITLE [LOCAL, CANADA]', 1, 0, '', 'ASMP_BOOKS');
4857 INSERT INTO `marc_tag_structure` VALUES ('984', 'WLN AUTOMATIC HOLDINGS STATEMENT (OCLC)', 'WLN AUTOMATIC HOLDINGS STATEMENT (OCLC)', 1, 0, '', 'ASMP_BOOKS');
4858 INSERT INTO `marc_tag_structure` VALUES ('987', 'LOCAL ROMANIZATION/CONVERSION HISTORY (OCLC)', 'LOCAL ROMANIZATION/CONVERSION HISTORY (OCLC)', 1, 0, '', 'ASMP_BOOKS');
4859 INSERT INTO `marc_tag_structure` VALUES ('990', 'EQUIVALENCES OR CROSS-REFERENCES [LOCAL, CANADA]', 'EQUIVALENCES OR CROSS-REFERENCES [LOCAL, CANADA]', 1, 0, '', 'ASMP_BOOKS');
4860 INSERT INTO `marc_tag_structure` VALUES ('995', 'RECOMMANDATION 995 [LOCAL, UNIMARC FRANCE]', 'RECOMMANDATION 995 [LOCAL, UNIMARC FRANCE]', 1, 0, '', 'ASMP_BOOKS');
4861 INSERT INTO `marc_tag_structure` VALUES ('998', 'LOCAL CONTROL INFORMATION (RLIN)', 'LOCAL CONTROL INFORMATION (RLIN)', 1, 0, '', 'ASMP_BOOKS');
4862 INSERT INTO `marc_tag_structure` VALUES ('999', '090: LOCALLY ASSIGNED LC-TYPE CALL NUMBER (OCLC); LOCAL CALL NUMBER (RLIN)', '090: LOCALLY ASSIGNED LC-TYPE CALL NUMBER (OCLC); LOCAL CALL NUMBER (OCLC)', 1, 0, '', 'ASMP_BOOKS');
4863 INSERT INTO `marc_tag_structure` VALUES ('b99', 'PRIVATE LOCAL INFORMATION (RLIN)', 'PRIVATE LOCAL INFORMATION (RLIN)', 1, 0, '', 'ASMP_BOOKS');
4864 INSERT INTO `marc_tag_structure` VALUES ('u01', 'UNIT IDENTIFICATION, STATUS, AND TYPE (RLIN)', 'UNIT IDENTIFICATION, STATUS, AND TYPE (RLIN)', 0, 0, '', 'ASMP_BOOKS');
4865 INSERT INTO `marc_tag_structure` VALUES ('u02', 'STANDARD NUMBER (RLIN)', 'STANDARD NUMBER (RLIN)', 0, 0, '', 'ASMP_BOOKS');
4866 INSERT INTO `marc_tag_structure` VALUES ('u08', 'CODED INFORMATION (RLIN)', 'CODED INFORMATION (RLIN)', 0, 0, '', 'ASMP_BOOKS');
4867 INSERT INTO `marc_tag_structure` VALUES ('u10', 'REQUESTER IDENTIFICATION (RLIN)', 'REQUESTER IDENTIFICATION (RLIN)', 1, 0, '', 'ASMP_BOOKS');
4868 INSERT INTO `marc_tag_structure` VALUES ('u11', 'DEPARTMENT REPORT REQUEST (RLIN)', 'DEPARTMENT REPORT REQUEST (RLIN)', 1, 0, '', 'ASMP_BOOKS');
4869 INSERT INTO `marc_tag_structure` VALUES ('u20', 'SUPPLIER IDENTIFICATION, SUPN (RLIN)', 'SUPPLIER IDENTIFICATION, SUPN (RLIN)', 0, 0, '', 'ASMP_BOOKS');
4870 INSERT INTO `marc_tag_structure` VALUES ('u21', 'LIBRARY CODES FOR VENDOR AND ORDER (RLIN)', 'LIBRARY CODES FOR VENDOR AND ORDER (RLIN)', 0, 0, '', 'ASMP_BOOKS');
4871 INSERT INTO `marc_tag_structure` VALUES ('u22', 'SUPPLIER CODES AND CATALOG INFORMATION (RLIN)', 'SUPPLIER CODES AND CATALOG INFORMATION (RLIN)', 0, 0, '', 'ASMP_BOOKS');
4872 INSERT INTO `marc_tag_structure` VALUES ('u25', 'SUPPLIER REPORT(S) (RLIN)', 'SUPPLIER REPORT(S) (RLIN)', 0, 0, '', 'ASMP_BOOKS');
4873 INSERT INTO `marc_tag_structure` VALUES ('u30', 'INTERVALS (RLIN)', 'INTERVALS (RLIN)', 0, 0, '', 'ASMP_BOOKS');
4874 INSERT INTO `marc_tag_structure` VALUES ('u31', 'CLAIM COUNTS (RLIN)', 'CLAIM COUNTS (RLIN)', 0, 0, '', 'ASMP_BOOKS');
4875 INSERT INTO `marc_tag_structure` VALUES ('u33', 'INVOICE CLAIM (RLIN)', 'INVOICE CLAIM (RLIN)', 0, 0, '', 'ASMP_BOOKS');
4876 INSERT INTO `marc_tag_structure` VALUES ('u34', 'EXTENDED PROCUREMENT CLAIM AND REVIEW (RLIN)', 'EXTENDED PROCUREMENT CLAIM AND REVIEW (RLIN)', 0, 0, '', 'ASMP_BOOKS');
4877 INSERT INTO `marc_tag_structure` VALUES ('u40', 'EXTENDED PROCUREMENT CODES (RLIN)', 'EXTENDED PROCUREMENT CODES (RLIN)', 0, 0, '', 'ASMP_BOOKS');
4878 INSERT INTO `marc_tag_structure` VALUES ('u50', 'ACQUISITIONS NOTES (RLIN)', 'ACQUISITIONS NOTES (RLIN)', 0, 0, '', 'ASMP_BOOKS');
4879 INSERT INTO `marc_tag_structure` VALUES ('u51', 'SELECTION NOTES (RLIN)', 'SELECTION NOTES (RLIN)', 0, 0, '', 'ASMP_BOOKS');
4880 INSERT INTO `marc_tag_structure` VALUES ('u52', 'SUPPLIER INSTRUCTIONS AND NOTES, SINT (RLIN)', 'SUPPLIER INSTRUCTIONS AND NOTES, SINT (RLIN)', 0, 0, '', 'ASMP_BOOKS');
4881 INSERT INTO `marc_tag_structure` VALUES ('u53', 'CLAIM INSTRUCTIONS AND NOTES, CLNT (RLIN)', 'CLAIM INSTRUCTIONS AND NOTES, CLNT (RLIN)', 0, 0, '', 'ASMP_BOOKS');
4882 INSERT INTO `marc_tag_structure` VALUES ('u54', 'NOTES TO SERIALS DEPARTMENT (RLIN)', 'NOTES TO SERIALS DEPARTMENT (RLIN)', 0, 0, '', 'ASMP_BOOKS');
4883 INSERT INTO `marc_tag_structure` VALUES ('u55', 'CATALOGING NOTES (RLIN)', 'CATALOGING NOTES (RLIN)', 0, 0, '', 'ASMP_BOOKS');
4884 INSERT INTO `marc_tag_structure` VALUES ('u5f', 'ACCOUNTING NOTES (RLIN)', 'ACCOUNTING NOTES (RLIN)', 0, 0, '', 'ASMP_BOOKS');
4885 INSERT INTO `marc_tag_structure` VALUES ('u70', 'MATERIAL AND LOCATION INFORMATION (RLIN)', 'MATERIAL AND LOCATION INFORMATION (RLIN)', 0, 0, '', 'ASMP_BOOKS');
4886 INSERT INTO `marc_tag_structure` VALUES ('u71', 'FUND ACCOUNT (RLIN)', 'FUND ACCOUNT (RLIN)', 0, 0, '', 'ASMP_BOOKS');
4887 INSERT INTO `marc_tag_structure` VALUES ('u75', 'ITEM DETAILS (RLIN)', 'ITEM DETAILS (RLIN)', 1, 0, '', 'ASMP_BOOKS');
4888 INSERT INTO `marc_tag_structure` VALUES ('u7f', 'PRICE INFORMATION (RLIN)', 'PRICE INFORMATION (RLIN)', 1, 0, '', 'ASMP_BOOKS');
4889 INSERT INTO `marc_tag_structure` VALUES ('u90', 'TAPE OUTPUT, TAPE (RLIN)', 'TAPE OUTPUT, TAPE (RLIN)', 0, 0, '', 'ASMP_BOOKS');
4890 INSERT INTO `marc_tag_structure` VALUES ('ufi', 'FISCAL INFORMATION, FI (RLIN)', 'FISCAL INFORMATION, FI (RLIN)', 1, 0, '', 'ASMP_BOOKS');
4891
4892
4893
4894 INSERT INTO `marc_subfield_structure` VALUES ('000', '@', 'fixed length control field', 'fixed length control field', 0, 1, '', 0, '', '', 'marc21_leader.pl', 0, 0, 'ASMP_BOOKS', '', '');
4895 INSERT INTO `marc_subfield_structure` VALUES ('001', '@', 'control field', 'control field', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
4896 INSERT INTO `marc_subfield_structure` VALUES ('003', '@', 'control field', 'control field', 0, 0, '', 0, '', '', 'marc21_field_003.pl', 0, -6, 'ASMP_BOOKS', '', '');
4897 INSERT INTO `marc_subfield_structure` VALUES ('005', '@', 'control field', 'control field', 0, 0, '', 0, '', '', 'marc21_field_005.pl', 0, -1, 'ASMP_BOOKS', '', '');
4898 INSERT INTO `marc_subfield_structure` VALUES ('006', '@', 'fixed length control field', 'fixed length control field', 0, 0, '', 0, '', '', 'marc21_field_006.pl', 0, -1, 'ASMP_BOOKS', '', '');
4899 INSERT INTO `marc_subfield_structure` VALUES ('007', '@', 'fixed length control field', 'fixed length control field', 0, 0, '', 0, '', '', 'marc21_field_007.pl', 0, 0, 'ASMP_BOOKS', '', '');
4900 INSERT INTO `marc_subfield_structure` VALUES ('008', '@', 'fixed length control field', 'fixed length control field', 0, 1, '', 0, '', '', 'marc21_field_008.pl', 0, 0, 'ASMP_BOOKS', '', '');
4901 INSERT INTO `marc_subfield_structure` VALUES ('009', '@', 'fixed length control field', 'fixed length control field', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
4902 INSERT INTO `marc_subfield_structure` VALUES ('010', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', NULL, 0, -6, 'ASMP_BOOKS', '', '');
4903 INSERT INTO `marc_subfield_structure` VALUES ('010', 'a', 'LC control number', 'LC control number', 0, 0, 'biblioitems.lccn', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
4904 INSERT INTO `marc_subfield_structure` VALUES ('010', 'b', 'NUCMC control number', 'NUCMC control number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
4905 INSERT INTO `marc_subfield_structure` VALUES ('010', 'z', 'Canceled/invalid LC control number', 'Canceled/invalid LC control number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
4906 INSERT INTO `marc_subfield_structure` VALUES ('011', 'a', 'LC control number', 'LC control number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
4907 INSERT INTO `marc_subfield_structure` VALUES ('013', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', NULL, 0, -6, 'ASMP_BOOKS', '', '');
4908 INSERT INTO `marc_subfield_structure` VALUES ('013', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
4909 INSERT INTO `marc_subfield_structure` VALUES ('013', 'a', 'Number', 'Number', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
4910 INSERT INTO `marc_subfield_structure` VALUES ('013', 'b', 'Country', 'Country', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
4911 INSERT INTO `marc_subfield_structure` VALUES ('013', 'c', 'Type of number', 'Type of number', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
4912 INSERT INTO `marc_subfield_structure` VALUES ('013', 'd', 'Date', 'Date', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
4913 INSERT INTO `marc_subfield_structure` VALUES ('013', 'e', 'Status', 'Status', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
4914 INSERT INTO `marc_subfield_structure` VALUES ('013', 'f', 'Party to document', 'Party to document', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
4915 INSERT INTO `marc_subfield_structure` VALUES ('015', '2', 'Source', 'Source', 0, 0, '', 0, '', '', NULL, 0, -6, 'ASMP_BOOKS', '', '');
4916 INSERT INTO `marc_subfield_structure` VALUES ('015', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
4917 INSERT INTO `marc_subfield_structure` VALUES ('015', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
4918 INSERT INTO `marc_subfield_structure` VALUES ('015', 'a', 'National bibliography number', 'National bibliography number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
4919 INSERT INTO `marc_subfield_structure` VALUES ('016', '2', 'Source', 'Source', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
4920 INSERT INTO `marc_subfield_structure` VALUES ('016', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
4921 INSERT INTO `marc_subfield_structure` VALUES ('016', 'a', 'Record control number', 'Record control number', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
4922 INSERT INTO `marc_subfield_structure` VALUES ('016', 'z', 'Canceled or invalid record control number', 'Canceled or invalid record control number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
4923 INSERT INTO `marc_subfield_structure` VALUES ('017', '2', 'Source', 'Source', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
4924 INSERT INTO `marc_subfield_structure` VALUES ('017', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
4925 INSERT INTO `marc_subfield_structure` VALUES ('017', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
4926 INSERT INTO `marc_subfield_structure` VALUES ('017', 'a', 'Copyright or legal deposit number', 'Copyright or legal deposit number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
4927 INSERT INTO `marc_subfield_structure` VALUES ('017', 'b', 'Assigning agency', 'Assigning agency', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
4928 INSERT INTO `marc_subfield_structure` VALUES ('017', 'd', 'Date', 'Date', 0, 0, '', 0, '', '', NULL, 0, -6, 'ASMP_BOOKS', '', '');
4929 INSERT INTO `marc_subfield_structure` VALUES ('017', 'i', 'Display text', 'Display text', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
4930 INSERT INTO `marc_subfield_structure` VALUES ('018', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
4931 INSERT INTO `marc_subfield_structure` VALUES ('018', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
4932 INSERT INTO `marc_subfield_structure` VALUES ('018', 'a', 'Copyright article-fee code', 'Copyright article-fee code', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
4933 INSERT INTO `marc_subfield_structure` VALUES ('01e', 'a', 'Coded field error', 'Coded field error', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
4934 INSERT INTO `marc_subfield_structure` VALUES ('020', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
4935 INSERT INTO `marc_subfield_structure` VALUES ('020', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
4936 INSERT INTO `marc_subfield_structure` VALUES ('020', 'a', 'International Standard Book Number', 'International Standard Book Number', 0, 0, 'biblioitems.isbn', 0, '', '', '', 0, 0, 'ASMP_BOOKS', '', '');
4937 INSERT INTO `marc_subfield_structure` VALUES ('020', 'c', 'Terms of availability', 'Terms of availability', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
4938 INSERT INTO `marc_subfield_structure` VALUES ('020', 'z', 'Cancelled/invalid ISBN', 'Cancelled/invalid ISBN', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
4939 INSERT INTO `marc_subfield_structure` VALUES ('022', '2', 'Source', 'Source', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
4940 INSERT INTO `marc_subfield_structure` VALUES ('022', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
4941 INSERT INTO `marc_subfield_structure` VALUES ('022', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
4942 INSERT INTO `marc_subfield_structure` VALUES ('022', 'a', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, 'biblioitems.issn', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
4943 INSERT INTO `marc_subfield_structure` VALUES ('022', 'y', 'Incorrect ISSN', 'Incorrect ISSN', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
4944 INSERT INTO `marc_subfield_structure` VALUES ('022', 'z', 'Canceled ISSN', 'Canceled ISSN', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
4945 INSERT INTO `marc_subfield_structure` VALUES ('023', 'a', 'Standard film number', 'Standard film number', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
4946 INSERT INTO `marc_subfield_structure` VALUES ('024', '2', 'Source of number or code', 'Source of number or code', 0, 0, '', 0, '', '', '', 0, -1, 'ASMP_BOOKS', '', '');
4947 INSERT INTO `marc_subfield_structure` VALUES ('024', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
4948 INSERT INTO `marc_subfield_structure` VALUES ('024', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
4949 INSERT INTO `marc_subfield_structure` VALUES ('024', 'a', 'Standard number or code', 'Standard number or code', 0, 0, '', 0, '', '', '', 0, -1, 'ASMP_BOOKS', '', '');
4950 INSERT INTO `marc_subfield_structure` VALUES ('024', 'b', 'Additional codes following the standard number [OBSOLETE]', 'Additional codes following the standard number [OBSOLETE]', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
4951 INSERT INTO `marc_subfield_structure` VALUES ('024', 'c', 'Terms of availability', 'Terms of availability', 0, 0, '', 0, '', '', '', 0, -1, 'ASMP_BOOKS', '', '');
4952 INSERT INTO `marc_subfield_structure` VALUES ('024', 'd', 'Additional codes following the standard number or code', 'Additional codes following the standard number or code', 0, 0, '', 0, '', '', '', 0, -1, 'ASMP_BOOKS', '', '');
4953 INSERT INTO `marc_subfield_structure` VALUES ('024', 'z', 'Canceled/invalid standard number or code', 'Canceled/invalid standard number or code', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
4954 INSERT INTO `marc_subfield_structure` VALUES ('025', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
4955 INSERT INTO `marc_subfield_structure` VALUES ('025', 'a', 'Overseas acquisition number', 'Overseas acquisition number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
4956 INSERT INTO `marc_subfield_structure` VALUES ('026', '2', 'Source', 'Source', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
4957 INSERT INTO `marc_subfield_structure` VALUES ('026', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
4958 INSERT INTO `marc_subfield_structure` VALUES ('026', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
4959 INSERT INTO `marc_subfield_structure` VALUES ('026', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
4960 INSERT INTO `marc_subfield_structure` VALUES ('026', 'a', 'First and second groups of characters', 'First and second groups of characters', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
4961 INSERT INTO `marc_subfield_structure` VALUES ('026', 'b', 'Third and fourth groups of characters', 'Third and fourth groups of characters', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
4962 INSERT INTO `marc_subfield_structure` VALUES ('026', 'c', 'Date', 'Date', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
4963 INSERT INTO `marc_subfield_structure` VALUES ('026', 'd', 'Number of volume or part', 'Number of volume or part', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
4964 INSERT INTO `marc_subfield_structure` VALUES ('026', 'e', 'unparsed fingerprint', 'unparsed fingerprint', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
4965 INSERT INTO `marc_subfield_structure` VALUES ('027', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
4966 INSERT INTO `marc_subfield_structure` VALUES ('027', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
4967 INSERT INTO `marc_subfield_structure` VALUES ('027', 'a', 'Standard technical report number', 'Standard technical report number', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
4968 INSERT INTO `marc_subfield_structure` VALUES ('027', 'z', 'Canceled/invalid number', 'Canceled/invalid number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
4969 INSERT INTO `marc_subfield_structure` VALUES ('028', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
4970 INSERT INTO `marc_subfield_structure` VALUES ('028', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
4971 INSERT INTO `marc_subfield_structure` VALUES ('028', 'a', 'Publisher number', 'Publisher number', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
4972 INSERT INTO `marc_subfield_structure` VALUES ('028', 'b', 'Source', 'Source', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
4973 INSERT INTO `marc_subfield_structure` VALUES ('030', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
4974 INSERT INTO `marc_subfield_structure` VALUES ('030', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
4975 INSERT INTO `marc_subfield_structure` VALUES ('030', 'a', 'CODEN', 'CODEN', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
4976 INSERT INTO `marc_subfield_structure` VALUES ('030', 'z', 'Canceled/invalid CODEN', 'Canceled/invalid CODEN', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
4977 INSERT INTO `marc_subfield_structure` VALUES ('031', '2', 'System code', 'System code', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
4978 INSERT INTO `marc_subfield_structure` VALUES ('031', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
4979 INSERT INTO `marc_subfield_structure` VALUES ('031', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
4980 INSERT INTO `marc_subfield_structure` VALUES ('031', 'a', 'Number of work', 'Number of work', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
4981 INSERT INTO `marc_subfield_structure` VALUES ('031', 'b', 'Number of movement', 'Number of movement', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
4982 INSERT INTO `marc_subfield_structure` VALUES ('031', 'c', 'Number of excerpt', 'Number of excerpt', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
4983 INSERT INTO `marc_subfield_structure` VALUES ('031', 'd', 'Caption or heading', 'Caption or heading', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
4984 INSERT INTO `marc_subfield_structure` VALUES ('031', 'e', 'Role', 'Role', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
4985 INSERT INTO `marc_subfield_structure` VALUES ('031', 'g', 'Clef', 'Clef', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
4986 INSERT INTO `marc_subfield_structure` VALUES ('031', 'm', 'Voice/instrument', 'Voice/instrument', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
4987 INSERT INTO `marc_subfield_structure` VALUES ('031', 'n', 'Key signature', 'Key signature', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
4988 INSERT INTO `marc_subfield_structure` VALUES ('031', 'o', 'Time signature', 'Time signature', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
4989 INSERT INTO `marc_subfield_structure` VALUES ('031', 'p', 'Musical notation', 'Musical notation', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
4990 INSERT INTO `marc_subfield_structure` VALUES ('031', 'q', 'General note', 'General note', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
4991 INSERT INTO `marc_subfield_structure` VALUES ('031', 'r', 'Key or mode', 'Key or mode', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
4992 INSERT INTO `marc_subfield_structure` VALUES ('031', 's', 'Coded validity note', 'Coded validity note', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
4993 INSERT INTO `marc_subfield_structure` VALUES ('031', 't', 'Text incipit', 'Text incipit', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
4994 INSERT INTO `marc_subfield_structure` VALUES ('031', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 0, '', '', '', 1, -6, 'ASMP_BOOKS', '', '');
4995 INSERT INTO `marc_subfield_structure` VALUES ('031', 'y', 'Link text', 'Link text', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
4996 INSERT INTO `marc_subfield_structure` VALUES ('031', 'z', 'Public note', 'Public note', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
4997 INSERT INTO `marc_subfield_structure` VALUES ('032', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', NULL, 0, -6, 'ASMP_BOOKS', '', '');
4998 INSERT INTO `marc_subfield_structure` VALUES ('032', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
4999 INSERT INTO `marc_subfield_structure` VALUES ('032', 'a', 'Postal registration number', 'Postal registration number', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5000 INSERT INTO `marc_subfield_structure` VALUES ('032', 'b', 'Source (agency assigning number)', 'Source (agency assigning number)', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5001 INSERT INTO `marc_subfield_structure` VALUES ('033', '3', 'Materials specified', 'Materials specified', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5002 INSERT INTO `marc_subfield_structure` VALUES ('033', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5003 INSERT INTO `marc_subfield_structure` VALUES ('033', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5004 INSERT INTO `marc_subfield_structure` VALUES ('033', 'a', 'Formatted date/time', 'Formatted date/time', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5005 INSERT INTO `marc_subfield_structure` VALUES ('033', 'b', 'Geographic classification area code', 'Geographic classification area code', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5006 INSERT INTO `marc_subfield_structure` VALUES ('033', 'c', 'Geographic classification subarea code', 'Geographic classification subarea code', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5007 INSERT INTO `marc_subfield_structure` VALUES ('034', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5008 INSERT INTO `marc_subfield_structure` VALUES ('034', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5009 INSERT INTO `marc_subfield_structure` VALUES ('034', 'a', 'Category of scale', 'Category of scale', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5010 INSERT INTO `marc_subfield_structure` VALUES ('034', 'b', 'Constant ratio linear horizontal scale', 'Constant ratio linear horizontal scale', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5011 INSERT INTO `marc_subfield_structure` VALUES ('034', 'c', 'Constant ratio linear vertical scale', 'Constant ratio linear vertical scale', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5012 INSERT INTO `marc_subfield_structure` VALUES ('034', 'd', 'Coordinates--westernmost longitude', 'Coordinates--westernmost longitude', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5013 INSERT INTO `marc_subfield_structure` VALUES ('034', 'e', 'Coordinates--easternmost longitude', 'Coordinates--easternmost longitude', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5014 INSERT INTO `marc_subfield_structure` VALUES ('034', 'f', 'Coordinates--northernmost latitude', 'Coordinates--northernmost latitude', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5015 INSERT INTO `marc_subfield_structure` VALUES ('034', 'g', 'Coordinates--southernmost latitude', 'Coordinates--southernmost latitude', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5016 INSERT INTO `marc_subfield_structure` VALUES ('034', 'h', 'Angular scale', 'Angular scale', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5017 INSERT INTO `marc_subfield_structure` VALUES ('034', 'j', 'Declination--northern limit', 'Declination--northern limit', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5018 INSERT INTO `marc_subfield_structure` VALUES ('034', 'k', 'Declination--southern limit', 'Declination--southern limit', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5019 INSERT INTO `marc_subfield_structure` VALUES ('034', 'm', 'Right ascension--eastern limit', 'Right ascension--eastern limit', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5020 INSERT INTO `marc_subfield_structure` VALUES ('034', 'n', 'Right ascension--western limit', 'Right ascension--western limit', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5021 INSERT INTO `marc_subfield_structure` VALUES ('034', 'p', 'Equinox', 'Equinox', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5022 INSERT INTO `marc_subfield_structure` VALUES ('034', 's', 'G-ring latitude', 'G-ring latitude', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5023 INSERT INTO `marc_subfield_structure` VALUES ('034', 't', 'G-ring longitude', 'G-ring longitude', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5024 INSERT INTO `marc_subfield_structure` VALUES ('035', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5025 INSERT INTO `marc_subfield_structure` VALUES ('035', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5026 INSERT INTO `marc_subfield_structure` VALUES ('035', 'a', 'System control number', 'System control number', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5027 INSERT INTO `marc_subfield_structure` VALUES ('035', 'z', 'Canceled/invalid control number', 'Canceled/invalid control number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5028 INSERT INTO `marc_subfield_structure` VALUES ('036', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5029 INSERT INTO `marc_subfield_structure` VALUES ('036', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5030 INSERT INTO `marc_subfield_structure` VALUES ('036', 'a', 'Original study number', 'Original study number', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5031 INSERT INTO `marc_subfield_structure` VALUES ('036', 'b', 'Source (agency assigning number)', 'Source (agency assigning number)', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5032 INSERT INTO `marc_subfield_structure` VALUES ('037', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5033 INSERT INTO `marc_subfield_structure` VALUES ('037', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5034 INSERT INTO `marc_subfield_structure` VALUES ('037', 'a', 'Stock number', 'Stock number', 0, 0, '', 9, '', '', '', 0, -1, 'ASMP_BOOKS', '', '');
5035 INSERT INTO `marc_subfield_structure` VALUES ('037', 'b', 'Source of stock number/acquisition', 'Source of stock number/acquisition', 0, 0, '', 9, '', '', '', 0, -1, 'ASMP_BOOKS', '', '');
5036 INSERT INTO `marc_subfield_structure` VALUES ('037', 'c', 'Terms of availability', 'Terms of availability', 1, 0, '', 9, '', '', '', 0, -1, 'ASMP_BOOKS', '', '');
5037 INSERT INTO `marc_subfield_structure` VALUES ('037', 'f', 'Form of issue', 'Form of issue', 1, 0, '', 9, '', '', '', 0, -1, 'ASMP_BOOKS', '', '');
5038 INSERT INTO `marc_subfield_structure` VALUES ('037', 'g', 'Additional format characteristics', 'Additional format characteristics', 1, 0, '', 9, '', '', '', 0, -1, 'ASMP_BOOKS', '', '');
5039 INSERT INTO `marc_subfield_structure` VALUES ('037', 'n', 'Note', 'Note', 1, 0, '', 9, '', '', '', 0, -1, 'ASMP_BOOKS', '', '');
5040 INSERT INTO `marc_subfield_structure` VALUES ('038', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5041 INSERT INTO `marc_subfield_structure` VALUES ('038', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5042 INSERT INTO `marc_subfield_structure` VALUES ('038', 'a', 'Record content licensor', 'Record content licensor', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5043 INSERT INTO `marc_subfield_structure` VALUES ('039', 'a', 'Level of rules in bibliographic description', 'Level of rules in bibliographic description', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5044 INSERT INTO `marc_subfield_structure` VALUES ('039', 'b', 'Level of effort used to assign nonsubject heading access points', 'Level of effort used to assign nonsubject heading access points', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5045 INSERT INTO `marc_subfield_structure` VALUES ('039', 'c', 'Level of effort used to assign subject headings', 'Level of effort used to assign subject headings', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5046 INSERT INTO `marc_subfield_structure` VALUES ('039', 'd', 'Level of effort used to assign classification', 'Level of effort used to assign classification', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5047 INSERT INTO `marc_subfield_structure` VALUES ('039', 'e', 'Number of fixed field character positions coded', 'Number of fixed field character positions coded', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5048 INSERT INTO `marc_subfield_structure` VALUES ('040', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5049 INSERT INTO `marc_subfield_structure` VALUES ('040', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5050 INSERT INTO `marc_subfield_structure` VALUES ('040', 'a', 'Original cataloging agency', 'Original cataloging agency', 0, 0, '', 0, '', '', '', 0, -1, 'ASMP_BOOKS', '', '');
5051 INSERT INTO `marc_subfield_structure` VALUES ('040', 'b', 'Language of cataloging', 'Language of cataloging', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5052 INSERT INTO `marc_subfield_structure` VALUES ('040', 'c', 'Transcribing agency', 'Transcribing agency', 0, 0, '', 0, '', '', '', 0, -1, 'ASMP_BOOKS', '', '');
5053 INSERT INTO `marc_subfield_structure` VALUES ('040', 'd', 'Modifying agency', 'Modifying agency', 1, 0, '', 0, '', '', '', 0, -1, 'ASMP_BOOKS', '', '');
5054 INSERT INTO `marc_subfield_structure` VALUES ('040', 'e', 'Description conventions', 'Description conventions', 0, 0, '', 0, '', '', '', 0, -1, 'ASMP_BOOKS', '', '');
5055 INSERT INTO `marc_subfield_structure` VALUES ('041', '2', 'Source of code', 'Source of code', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5056 INSERT INTO `marc_subfield_structure` VALUES ('041', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5057 INSERT INTO `marc_subfield_structure` VALUES ('041', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5058 INSERT INTO `marc_subfield_structure` VALUES ('041', 'a', 'Language code of text/sound track or separate title', 'Language code of text/sound track or separate title', 1, 0, '', 0, '', '', '', 0, -1, 'ASMP_BOOKS', '', '');
5059 INSERT INTO `marc_subfield_structure` VALUES ('041', 'b', 'Language code of summary or abstract/overprinted title or subtitle', 'Language code of summary or abstract/overprinted title or subtitle', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5060 INSERT INTO `marc_subfield_structure` VALUES ('041', 'c', 'Languages of separate titles (VM) [OBSOLETE] ; Languages of available translation  (SE) [OBSOLETE]', 'Languages of separate titles (VM) [OBSOLETE] ; Languages of available translation  (SE) [OBSOLETE]', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5061 INSERT INTO `marc_subfield_structure` VALUES ('041', 'd', 'Language code of sung or spoken text', 'Language code of sung or spoken text', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5062 INSERT INTO `marc_subfield_structure` VALUES ('041', 'e', 'Language code of librettos', 'Language code of librettos', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5063 INSERT INTO `marc_subfield_structure` VALUES ('041', 'f', 'Language code of table of contents', 'Language code of table of contents', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5064 INSERT INTO `marc_subfield_structure` VALUES ('041', 'g', 'Language code of accompanying material other than librettos', 'Language code of accompanying material other than librettos', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5065 INSERT INTO `marc_subfield_structure` VALUES ('041', 'h', 'Language code of original and/or intermediate translations of text', 'Language code of original and/or intermediate translations of text', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5066 INSERT INTO `marc_subfield_structure` VALUES ('042', 'a', 'Authentication code', 'Authentication code', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5067 INSERT INTO `marc_subfield_structure` VALUES ('043', '2', 'Source of local code', 'Source of local code', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5068 INSERT INTO `marc_subfield_structure` VALUES ('043', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5069 INSERT INTO `marc_subfield_structure` VALUES ('043', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5070 INSERT INTO `marc_subfield_structure` VALUES ('043', 'a', 'Geographic area code', 'Geographic area code', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5071 INSERT INTO `marc_subfield_structure` VALUES ('043', 'b', 'Local GAC code', 'Local GAC code', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5072 INSERT INTO `marc_subfield_structure` VALUES ('043', 'c', 'ISO code', 'ISO code', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5073 INSERT INTO `marc_subfield_structure` VALUES ('044', '2', 'Source of local subentity code', 'Source of local subentity code', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5074 INSERT INTO `marc_subfield_structure` VALUES ('044', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5075 INSERT INTO `marc_subfield_structure` VALUES ('044', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5076 INSERT INTO `marc_subfield_structure` VALUES ('044', 'a', 'MARC country code', 'MARC country code', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5077 INSERT INTO `marc_subfield_structure` VALUES ('044', 'b', 'Local subentity code', 'Local subentity code', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5078 INSERT INTO `marc_subfield_structure` VALUES ('044', 'c', 'ISO country code', 'ISO country code', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5079 INSERT INTO `marc_subfield_structure` VALUES ('045', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5080 INSERT INTO `marc_subfield_structure` VALUES ('045', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5081 INSERT INTO `marc_subfield_structure` VALUES ('045', 'a', 'Time period code', 'Time period code', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5082 INSERT INTO `marc_subfield_structure` VALUES ('045', 'b', 'Formatted 9999 B.C. through C.E. time period', 'Formatted 9999 B.C. through C.E. time period', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5083 INSERT INTO `marc_subfield_structure` VALUES ('045', 'c', 'Formatted pre-9999 B.C. time period', 'Formatted pre-9999 B.C. time period', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5084 INSERT INTO `marc_subfield_structure` VALUES ('046', '2', 'Source of date', 'Source of date', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5085 INSERT INTO `marc_subfield_structure` VALUES ('046', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5086 INSERT INTO `marc_subfield_structure` VALUES ('046', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5087 INSERT INTO `marc_subfield_structure` VALUES ('046', 'a', 'Type of date code', 'Type of date code', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5088 INSERT INTO `marc_subfield_structure` VALUES ('046', 'b', 'Date 1 (B.C. date)', 'Date 1 (B.C. date)', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5089 INSERT INTO `marc_subfield_structure` VALUES ('046', 'c', 'Date 1 (C.E. date)', 'Date 1 (C.E. date)', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5090 INSERT INTO `marc_subfield_structure` VALUES ('046', 'd', 'Date 2 (B.C. date)', 'Date 2 (B.C. date)', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5091 INSERT INTO `marc_subfield_structure` VALUES ('046', 'e', 'Date 2 (C.E. date)', 'Date 2 (C.E. date)', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5092 INSERT INTO `marc_subfield_structure` VALUES ('046', 'j', 'Date resource modified', 'Date resource modified', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5093 INSERT INTO `marc_subfield_structure` VALUES ('046', 'k', 'Beginning or single date created', 'Beginning or single date created', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5094 INSERT INTO `marc_subfield_structure` VALUES ('046', 'l', 'Ending date created', 'Ending date created', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5095 INSERT INTO `marc_subfield_structure` VALUES ('046', 'm', 'Beginning of date valid', 'Beginning of date valid', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5096 INSERT INTO `marc_subfield_structure` VALUES ('046', 'n', 'End of date valid', 'End of date valid', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5097 INSERT INTO `marc_subfield_structure` VALUES ('047', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5098 INSERT INTO `marc_subfield_structure` VALUES ('047', 'a', 'Form of musical composition code', 'Form of musical composition code', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5099 INSERT INTO `marc_subfield_structure` VALUES ('048', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5100 INSERT INTO `marc_subfield_structure` VALUES ('048', 'a', 'Performer or ensemble', 'Performer or ensemble', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5101 INSERT INTO `marc_subfield_structure` VALUES ('048', 'b', 'Soloist', 'Soloist', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5102 INSERT INTO `marc_subfield_structure` VALUES ('049', 'a', 'Holding library', 'Holding library', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5103 INSERT INTO `marc_subfield_structure` VALUES ('049', 'c', 'Copy statement', 'Copy statement', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5104 INSERT INTO `marc_subfield_structure` VALUES ('049', 'd', 'Definition of bibliographic subdivisions', 'Definition of bibliographic subdivisions', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5105 INSERT INTO `marc_subfield_structure` VALUES ('049', 'l', 'Local processing data', 'Local processing data', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5106 INSERT INTO `marc_subfield_structure` VALUES ('049', 'm', 'Missing elements', 'Missing elements', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5107 INSERT INTO `marc_subfield_structure` VALUES ('049', 'n', 'Notes about holdings', 'Notes about holdings', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5108 INSERT INTO `marc_subfield_structure` VALUES ('049', 'o', 'Local processing data', 'Local processing data', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5109 INSERT INTO `marc_subfield_structure` VALUES ('049', 'p', 'Secondary bibliographic subdivision', 'Secondary bibliographic subdivision', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5110 INSERT INTO `marc_subfield_structure` VALUES ('049', 'q', 'Third bibliographic subdivision', 'Third bibliographic subdivision', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5111 INSERT INTO `marc_subfield_structure` VALUES ('049', 'r', 'Fourth bibliographic subdivision', 'Fourth bibliographic subdivision', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5112 INSERT INTO `marc_subfield_structure` VALUES ('049', 's', 'Fifth bibliographic subdivision', 'Fifth bibliographic subdivision', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5113 INSERT INTO `marc_subfield_structure` VALUES ('049', 't', 'Sixth bibliographic subdivision', 'Sixth bibliographic subdivision', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5114 INSERT INTO `marc_subfield_structure` VALUES ('049', 'u', 'Seventh bibliographic subdivision', 'Seventh bibliographic subdivision', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5115 INSERT INTO `marc_subfield_structure` VALUES ('049', 'v', 'Primary bibliographic subdivision', 'Primary bibliographic subdivision', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5116 INSERT INTO `marc_subfield_structure` VALUES ('049', 'y', 'Inclusive dates of publication or coverage', 'Inclusive dates of publication or coverage', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5117 INSERT INTO `marc_subfield_structure` VALUES ('050', '3', 'Materials specified', 'Materials specified', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5118 INSERT INTO `marc_subfield_structure` VALUES ('050', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5119 INSERT INTO `marc_subfield_structure` VALUES ('050', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5120 INSERT INTO `marc_subfield_structure` VALUES ('050', 'a', 'Classification number', 'Classification number', 1, 0, '', 0, '', '', '', 0, 0, 'ASMP_BOOKS', '', '');
5121 INSERT INTO `marc_subfield_structure` VALUES ('050', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', 0, 0, 'ASMP_BOOKS', '', '');
5122 INSERT INTO `marc_subfield_structure` VALUES ('050', 'd', 'Supplementary class number (MU) [OBSOLETE]', 'Supplementary class number (MU) [OBSOLETE]', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5123 INSERT INTO `marc_subfield_structure` VALUES ('051', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5124 INSERT INTO `marc_subfield_structure` VALUES ('051', 'a', 'Classification number', 'Classification number', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5125 INSERT INTO `marc_subfield_structure` VALUES ('051', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5126 INSERT INTO `marc_subfield_structure` VALUES ('051', 'c', 'Copy information', 'Copy information', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5127 INSERT INTO `marc_subfield_structure` VALUES ('052', '2', 'Code Source', 'Code Source', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5128 INSERT INTO `marc_subfield_structure` VALUES ('052', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5129 INSERT INTO `marc_subfield_structure` VALUES ('052', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5130 INSERT INTO `marc_subfield_structure` VALUES ('052', 'a', 'Geographic classification area code', 'Geographic classification area code', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5131 INSERT INTO `marc_subfield_structure` VALUES ('052', 'b', 'Geographic classification subarea code', 'Geographic classification subarea code', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5132 INSERT INTO `marc_subfield_structure` VALUES ('052', 'c', 'Subject (MP) [OBSOLETE]', 'Subject (MP) [OBSOLETE]', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5133 INSERT INTO `marc_subfield_structure` VALUES ('052', 'd', 'Populated place name', 'Populated place name', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5134 INSERT INTO `marc_subfield_structure` VALUES ('055', '2', 'Source of call/class number', 'Source of call/class number', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5135 INSERT INTO `marc_subfield_structure` VALUES ('055', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5136 INSERT INTO `marc_subfield_structure` VALUES ('055', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5137 INSERT INTO `marc_subfield_structure` VALUES ('055', 'a', 'Classification number', 'Classification number', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5138 INSERT INTO `marc_subfield_structure` VALUES ('055', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5139 INSERT INTO `marc_subfield_structure` VALUES ('060', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5140 INSERT INTO `marc_subfield_structure` VALUES ('060', 'a', 'Classification number', 'Classification number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5141 INSERT INTO `marc_subfield_structure` VALUES ('060', 'b', 'Item number', 'Item number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5142 INSERT INTO `marc_subfield_structure` VALUES ('061', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5143 INSERT INTO `marc_subfield_structure` VALUES ('061', 'a', 'Classification number', 'Classification number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5144 INSERT INTO `marc_subfield_structure` VALUES ('061', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5145 INSERT INTO `marc_subfield_structure` VALUES ('061', 'c', 'Copy information', 'Copy information', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5146 INSERT INTO `marc_subfield_structure` VALUES ('066', 'a', 'Primary G0 character set', 'Primary G0 character set', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5147 INSERT INTO `marc_subfield_structure` VALUES ('066', 'b', 'Primary G1 character set', 'Primary G1 character set', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5148 INSERT INTO `marc_subfield_structure` VALUES ('066', 'c', 'Alternate G0 or G1 character set', 'Alternate G0 or G1 character set', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5149 INSERT INTO `marc_subfield_structure` VALUES ('070', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5150 INSERT INTO `marc_subfield_structure` VALUES ('070', 'a', 'Classification number', 'Classification number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5151 INSERT INTO `marc_subfield_structure` VALUES ('070', 'b', 'Item number', 'Item number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5152 INSERT INTO `marc_subfield_structure` VALUES ('071', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5153 INSERT INTO `marc_subfield_structure` VALUES ('071', 'a', 'Classification number', 'Classification number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5154 INSERT INTO `marc_subfield_structure` VALUES ('071', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5155 INSERT INTO `marc_subfield_structure` VALUES ('071', 'c', 'Copy information', 'Copy information', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5156 INSERT INTO `marc_subfield_structure` VALUES ('072', '2', 'Source', 'Source', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5157 INSERT INTO `marc_subfield_structure` VALUES ('072', '6', 'Linkage', 'Linkage', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5158 INSERT INTO `marc_subfield_structure` VALUES ('072', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5159 INSERT INTO `marc_subfield_structure` VALUES ('072', 'a', 'Subject category code', 'Subject category code', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5160 INSERT INTO `marc_subfield_structure` VALUES ('072', 'x', 'Subject category code subdivision', 'Subject category code subdivision', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5161 INSERT INTO `marc_subfield_structure` VALUES ('074', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5162 INSERT INTO `marc_subfield_structure` VALUES ('074', 'a', 'GPO item number', 'GPO item number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -1, 'ASMP_BOOKS', '', '');
5163 INSERT INTO `marc_subfield_structure` VALUES ('074', 'z', 'Canceled/invalid GPO item number', 'Canceled/invalid GPO item number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5164 INSERT INTO `marc_subfield_structure` VALUES ('080', '2', 'Edition identifier', 'Edition identifier', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5165 INSERT INTO `marc_subfield_structure` VALUES ('080', '6', 'Linkage', 'Linkage', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5166 INSERT INTO `marc_subfield_structure` VALUES ('080', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5167 INSERT INTO `marc_subfield_structure` VALUES ('080', 'a', 'Universal Decimal Classification number', 'Universal Decimal Classification number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5168 INSERT INTO `marc_subfield_structure` VALUES ('080', 'b', 'Item number', 'Item number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5169 INSERT INTO `marc_subfield_structure` VALUES ('080', 'x', 'Common auxiliary subdivision', 'Common auxiliary subdivision', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5170 INSERT INTO `marc_subfield_structure` VALUES ('082', '2', 'Edition number', 'Edition number', 0, 0, '', 0, '', '', '', NULL, 0, 'ASMP_BOOKS', '', '');
5171 INSERT INTO `marc_subfield_structure` VALUES ('082', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5172 INSERT INTO `marc_subfield_structure` VALUES ('082', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5173 INSERT INTO `marc_subfield_structure` VALUES ('082', 'a', 'Classification number', 'Classification number', 1, 0, '', 0, '', '', '', NULL, 0, 'ASMP_BOOKS', '', '');
5174 INSERT INTO `marc_subfield_structure` VALUES ('082', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', NULL, 0, 'ASMP_BOOKS', '', '');
5175 INSERT INTO `marc_subfield_structure` VALUES ('084', '2', 'Source of number', 'Source of number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5176 INSERT INTO `marc_subfield_structure` VALUES ('084', '6', 'Linkage', 'Linkage', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5177 INSERT INTO `marc_subfield_structure` VALUES ('084', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5178 INSERT INTO `marc_subfield_structure` VALUES ('084', 'a', 'Classification number', 'Classification number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5179 INSERT INTO `marc_subfield_structure` VALUES ('084', 'b', 'Item number', 'Item number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5180 INSERT INTO `marc_subfield_structure` VALUES ('086', '2', 'Number source', 'Number source', 0, 0, NULL, 0, NULL, NULL, '', NULL, -1, 'ASMP_BOOKS', '', '');
5181 INSERT INTO `marc_subfield_structure` VALUES ('086', '6', 'Linkage', 'Linkage', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5182 INSERT INTO `marc_subfield_structure` VALUES ('086', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5183 INSERT INTO `marc_subfield_structure` VALUES ('086', 'a', 'Classification number', 'Classification number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -1, 'ASMP_BOOKS', '', '');
5184 INSERT INTO `marc_subfield_structure` VALUES ('086', 'z', 'Canceled/invalid classification number', 'Canceled/invalid classification number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5185 INSERT INTO `marc_subfield_structure` VALUES ('087', 'a', 'Report number [OBSOLETE, CAN/MARC]', 'Report number [OBSOLETE, CAN/MARC]', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5186 INSERT INTO `marc_subfield_structure` VALUES ('087', 'z', 'Canceled/invalid report number [OBSOLETE, CAN/MARC]', 'Canceled/invalid report number [OBSOLETE, CAN/MARC]', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5187 INSERT INTO `marc_subfield_structure` VALUES ('088', '6', 'Linkage', 'Linkage', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5188 INSERT INTO `marc_subfield_structure` VALUES ('088', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5189 INSERT INTO `marc_subfield_structure` VALUES ('088', 'a', 'Report number', 'Report number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5190 INSERT INTO `marc_subfield_structure` VALUES ('088', 'z', 'Canceled/invalid report number', 'Canceled/invalid report number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5191 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'a', 'Classification number (OCLC) (R) ; Classification number, CALL (RLIN) (NR)', 'Classification number (OCLC) (R) ; Classification number, CALL (RLIN) (NR)', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5192 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'b', 'Local cutter number (OCLC) ; Book number/undivided call number, CALL (RLIN)', 'Local cutter number (OCLC) ; Book number/undivided call number, CALL (RLIN)', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5193 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'e', 'Feature heading (OCLC)', 'Feature heading (OCLC)', 0, 0, '', 0, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
5194 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'f', 'Filing suffix (OCLC); Footnote, FNT (RLIN)', 'Filing suffix (OCLC); Footnote, FNT (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
5195 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'h', 'Output transaction history, HST (RLIN)', 'Output transaction history, HST (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
5196 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'i', 'Output transaction instruction, INS (RLIN)', 'Output transaction instruction, INS (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
5197 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'l', 'Extra card control statement, EXT (RLIN)', 'Extra card control statement, EXT (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
5198 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'n', 'Additional local notes, ANT (RLIN)', 'Additional local notes, ANT (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
5199 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'p', 'Pathfinder code, PTH (RLIN)', 'Pathfinder code, PTH (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
5200 INSERT INTO `marc_subfield_structure` VALUES ('09o', 't', 'Field suppresion, FSP (RLIN)', 'Field suppresion, FSP (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
5201 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'v', 'Volumes, VOL (RLIN)', 'Volumes, VOL (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
5202 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'y', 'Date, VOL (RLIN)', 'Date, VOL (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
5203 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'z', 'Retention, VOL (RLIN)', 'Retention, VOL (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
5204 INSERT INTO `marc_subfield_structure` VALUES ('091', 'a', 'Microfilm shelf location', 'Microfilm shelf location', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5205 INSERT INTO `marc_subfield_structure` VALUES ('092', '2', 'Edition number', 'Edition number', 0, 0, '', 0, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5206 INSERT INTO `marc_subfield_structure` VALUES ('092', 'a', 'Classification number', 'Classification number', 0, 0, '', 0, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5207 INSERT INTO `marc_subfield_structure` VALUES ('092', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5208 INSERT INTO `marc_subfield_structure` VALUES ('092', 'e', 'Feature heading', 'Feature heading', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5209 INSERT INTO `marc_subfield_structure` VALUES ('092', 'f', 'Filing suffix', 'Filing suffix', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5210 INSERT INTO `marc_subfield_structure` VALUES ('096', 'a', 'Classification number', 'Classification number', 0, 0, '', 0, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5211 INSERT INTO `marc_subfield_structure` VALUES ('096', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5212 INSERT INTO `marc_subfield_structure` VALUES ('096', 'e', 'Feature heading', 'Feature heading', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5213 INSERT INTO `marc_subfield_structure` VALUES ('096', 'f', 'Filing suffix', 'Filing suffix', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5214 INSERT INTO `marc_subfield_structure` VALUES ('098', 'a', 'Call number based on other classification scheme', 'Call number based on other classification scheme', 0, 0, '', 0, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5215 INSERT INTO `marc_subfield_structure` VALUES ('098', 'e', 'Feature heading', 'Feature heading', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5216 INSERT INTO `marc_subfield_structure` VALUES ('098', 'f', 'Filing suffix', 'Filing suffix', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5217 INSERT INTO `marc_subfield_structure` VALUES ('099', 'a', 'Classification number', 'Classification number', 1, 0, '', 0, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5218 INSERT INTO `marc_subfield_structure` VALUES ('099', 'e', 'Feature heading', 'Feature heading', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5219 INSERT INTO `marc_subfield_structure` VALUES ('099', 'f', 'Filing suffix', 'Filing suffix', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5220 INSERT INTO `marc_subfield_structure` VALUES ('100', '4', 'Relator code', 'Relator code', 1, 0, '', 1, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5221 INSERT INTO `marc_subfield_structure` VALUES ('100', '6', 'Linkage', 'Linkage', 0, 0, '', 1, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5222 INSERT INTO `marc_subfield_structure` VALUES ('100', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 1, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5223 INSERT INTO `marc_subfield_structure` VALUES ('100', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'ASMP_BOOKS', '', '');
5224 INSERT INTO `marc_subfield_structure` VALUES ('100', 'a', 'Personal name', 'Personal name', 0, 0, 'biblio.author', 1, '', '', '', 0, 0, 'ASMP_BOOKS', '''100b'',''100c'',''100q'',''100d'',''100e'',''110a'',''110b'',''110c'',''110d'',''110e'',''700a'',''700b'',''700c'',''700q'',''700d'',''700e'',''710a'',''710b'',''710c'',''710d'',''710e'',''720a'',''720e'',''900a''', '');
5225 INSERT INTO `marc_subfield_structure` VALUES ('100', 'b', 'Numeration', 'Numeration', 0, 0, '', 1, '', '', '', 0, -1, 'ASMP_BOOKS', '', '');
5226 INSERT INTO `marc_subfield_structure` VALUES ('100', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 1, '', '', '', 0, -1, 'ASMP_BOOKS', '', '');
5227 INSERT INTO `marc_subfield_structure` VALUES ('100', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 1, '', '', '', 0, 0, 'ASMP_BOOKS', '', '');
5228 INSERT INTO `marc_subfield_structure` VALUES ('100', 'e', 'Relator term', 'Relator term', 1, 0, '', 1, '', '', '', 0, -1, 'ASMP_BOOKS', '', '');
5229 INSERT INTO `marc_subfield_structure` VALUES ('100', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 1, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5230 INSERT INTO `marc_subfield_structure` VALUES ('100', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 1, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5231 INSERT INTO `marc_subfield_structure` VALUES ('100', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 1, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5232 INSERT INTO `marc_subfield_structure` VALUES ('100', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 1, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5233 INSERT INTO `marc_subfield_structure` VALUES ('100', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 1, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5234 INSERT INTO `marc_subfield_structure` VALUES ('100', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 1, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5235 INSERT INTO `marc_subfield_structure` VALUES ('100', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 1, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5236 INSERT INTO `marc_subfield_structure` VALUES ('100', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 1, '', '', '', 0, -1, 'ASMP_BOOKS', '', '');
5237 INSERT INTO `marc_subfield_structure` VALUES ('100', 't', 'Title of a work', 'Title of a work', 0, 0, '', 1, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5238 INSERT INTO `marc_subfield_structure` VALUES ('100', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 1, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5239 INSERT INTO `marc_subfield_structure` VALUES ('110', '4', 'Relator code', 'Relator code', 1, 0, '', 1, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5240 INSERT INTO `marc_subfield_structure` VALUES ('110', '6', 'Linkage', 'Linkage', 0, 0, '', 1, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5241 INSERT INTO `marc_subfield_structure` VALUES ('110', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 1, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5242 INSERT INTO `marc_subfield_structure` VALUES ('110', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'ASMP_BOOKS', '', '');
5243 INSERT INTO `marc_subfield_structure` VALUES ('110', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 1, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
5244 INSERT INTO `marc_subfield_structure` VALUES ('110', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 1, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
5245 INSERT INTO `marc_subfield_structure` VALUES ('110', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 1, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
5246 INSERT INTO `marc_subfield_structure` VALUES ('110', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 1, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
5247 INSERT INTO `marc_subfield_structure` VALUES ('110', 'e', 'Relator term', 'Relator term', 1, 0, '', 1, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
5248 INSERT INTO `marc_subfield_structure` VALUES ('110', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 1, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5249 INSERT INTO `marc_subfield_structure` VALUES ('110', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 1, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5250 INSERT INTO `marc_subfield_structure` VALUES ('110', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 1, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5251 INSERT INTO `marc_subfield_structure` VALUES ('110', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 1, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5252 INSERT INTO `marc_subfield_structure` VALUES ('110', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 1, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5253 INSERT INTO `marc_subfield_structure` VALUES ('110', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 1, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5254 INSERT INTO `marc_subfield_structure` VALUES ('110', 't', 'Title of a work', 'Title of a work', 0, 0, '', 1, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5255 INSERT INTO `marc_subfield_structure` VALUES ('110', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 1, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5256 INSERT INTO `marc_subfield_structure` VALUES ('111', '4', 'Relator code', 'Relator code', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5257 INSERT INTO `marc_subfield_structure` VALUES ('111', '6', 'Linkage', 'Linkage', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5258 INSERT INTO `marc_subfield_structure` VALUES ('111', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5259 INSERT INTO `marc_subfield_structure` VALUES ('111', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'ASMP_BOOKS', '', '');
5260 INSERT INTO `marc_subfield_structure` VALUES ('111', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 1, NULL, NULL, '', NULL, -1, 'ASMP_BOOKS', '', '');
5261 INSERT INTO `marc_subfield_structure` VALUES ('111', 'b', 'Number [OBSOLETE]', 'Number [OBSOLETE]', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5262 INSERT INTO `marc_subfield_structure` VALUES ('111', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 1, NULL, NULL, '', NULL, -1, 'ASMP_BOOKS', '', '');
5263 INSERT INTO `marc_subfield_structure` VALUES ('111', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 1, NULL, NULL, '', NULL, -1, 'ASMP_BOOKS', '', '');
5264 INSERT INTO `marc_subfield_structure` VALUES ('111', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 1, NULL, NULL, '', NULL, -1, 'ASMP_BOOKS', '', '');
5265 INSERT INTO `marc_subfield_structure` VALUES ('111', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5266 INSERT INTO `marc_subfield_structure` VALUES ('111', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5267 INSERT INTO `marc_subfield_structure` VALUES ('111', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5268 INSERT INTO `marc_subfield_structure` VALUES ('111', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5269 INSERT INTO `marc_subfield_structure` VALUES ('111', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5270 INSERT INTO `marc_subfield_structure` VALUES ('111', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5271 INSERT INTO `marc_subfield_structure` VALUES ('111', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5272 INSERT INTO `marc_subfield_structure` VALUES ('111', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5273 INSERT INTO `marc_subfield_structure` VALUES ('111', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5274 INSERT INTO `marc_subfield_structure` VALUES ('130', '6', 'Linkage', 'Linkage', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5275 INSERT INTO `marc_subfield_structure` VALUES ('130', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5276 INSERT INTO `marc_subfield_structure` VALUES ('130', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'ASMP_BOOKS', '', '');
5277 INSERT INTO `marc_subfield_structure` VALUES ('130', 'a', 'Uniform title', 'Uniform title', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5278 INSERT INTO `marc_subfield_structure` VALUES ('130', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5279 INSERT INTO `marc_subfield_structure` VALUES ('130', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5280 INSERT INTO `marc_subfield_structure` VALUES ('130', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5281 INSERT INTO `marc_subfield_structure` VALUES ('130', 'h', 'Medium', 'Medium', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5282 INSERT INTO `marc_subfield_structure` VALUES ('130', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5283 INSERT INTO `marc_subfield_structure` VALUES ('130', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5284 INSERT INTO `marc_subfield_structure` VALUES ('130', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5285 INSERT INTO `marc_subfield_structure` VALUES ('130', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5286 INSERT INTO `marc_subfield_structure` VALUES ('130', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5287 INSERT INTO `marc_subfield_structure` VALUES ('130', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5288 INSERT INTO `marc_subfield_structure` VALUES ('130', 'r', 'Key for music', 'Key for music', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5289 INSERT INTO `marc_subfield_structure` VALUES ('130', 's', 'Version', 'Version', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5290 INSERT INTO `marc_subfield_structure` VALUES ('130', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5291 INSERT INTO `marc_subfield_structure` VALUES ('210', '2', 'Source', 'Source', 1, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5292 INSERT INTO `marc_subfield_structure` VALUES ('210', '6', 'Linkage', 'Linkage', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5293 INSERT INTO `marc_subfield_structure` VALUES ('210', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5294 INSERT INTO `marc_subfield_structure` VALUES ('210', 'a', 'Abbreviated title', 'Abbreviated title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5295 INSERT INTO `marc_subfield_structure` VALUES ('210', 'b', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5296 INSERT INTO `marc_subfield_structure` VALUES ('211', '6', 'Linkage', 'Linkage', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5297 INSERT INTO `marc_subfield_structure` VALUES ('211', 'a', 'Acronym or shortened title', 'Acronym or shortened title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5298 INSERT INTO `marc_subfield_structure` VALUES ('212', '6', 'Linkage', 'Linkage', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5299 INSERT INTO `marc_subfield_structure` VALUES ('212', 'a', 'Variant access title', 'Variant access title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5300 INSERT INTO `marc_subfield_structure` VALUES ('214', '6', 'Linkage', 'Linkage', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5301 INSERT INTO `marc_subfield_structure` VALUES ('214', 'a', 'Augmented title', 'Augmented title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5302 INSERT INTO `marc_subfield_structure` VALUES ('222', '6', 'Linkage', 'Linkage', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5303 INSERT INTO `marc_subfield_structure` VALUES ('222', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5304 INSERT INTO `marc_subfield_structure` VALUES ('222', 'a', 'Key title', 'Key title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5305 INSERT INTO `marc_subfield_structure` VALUES ('222', 'b', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5306 INSERT INTO `marc_subfield_structure` VALUES ('240', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5307 INSERT INTO `marc_subfield_structure` VALUES ('240', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5308 INSERT INTO `marc_subfield_structure` VALUES ('240', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'ASMP_BOOKS', '', '');
5309 INSERT INTO `marc_subfield_structure` VALUES ('240', 'a', 'Uniform title', 'Uniform title', 0, 0, 'biblio.unititle', 2, '', '', '', 1, -1, 'ASMP_BOOKS', '', '');
5310 INSERT INTO `marc_subfield_structure` VALUES ('240', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 2, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5311 INSERT INTO `marc_subfield_structure` VALUES ('240', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 2, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5312 INSERT INTO `marc_subfield_structure` VALUES ('240', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 2, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5313 INSERT INTO `marc_subfield_structure` VALUES ('240', 'h', 'Medium', 'Medium', 0, 0, '', 2, '', '', '', 0, -1, 'ASMP_BOOKS', '', '');
5314 INSERT INTO `marc_subfield_structure` VALUES ('240', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 2, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5315 INSERT INTO `marc_subfield_structure` VALUES ('240', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 2, '', '', '', 0, -1, 'ASMP_BOOKS', '', '');
5316 INSERT INTO `marc_subfield_structure` VALUES ('240', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 2, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5317 INSERT INTO `marc_subfield_structure` VALUES ('240', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 2, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5318 INSERT INTO `marc_subfield_structure` VALUES ('240', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 2, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5319 INSERT INTO `marc_subfield_structure` VALUES ('240', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 2, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5320 INSERT INTO `marc_subfield_structure` VALUES ('240', 'r', 'Key for music', 'Key for music', 0, 0, '', 2, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5321 INSERT INTO `marc_subfield_structure` VALUES ('240', 's', 'Version', 'Version', 0, 0, '', 2, '', '', '', 0, -1, 'ASMP_BOOKS', '', '');
5322 INSERT INTO `marc_subfield_structure` VALUES ('241', 'a', 'Romanized title', 'Romanized title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5323 INSERT INTO `marc_subfield_structure` VALUES ('241', 'h', 'Medium', 'Medium', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5324 INSERT INTO `marc_subfield_structure` VALUES ('242', '6', 'Linkage', 'Linkage', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5325 INSERT INTO `marc_subfield_structure` VALUES ('242', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5326 INSERT INTO `marc_subfield_structure` VALUES ('242', 'a', 'Title', 'Title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5327 INSERT INTO `marc_subfield_structure` VALUES ('242', 'b', 'Remainder of title', 'Remainder of title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5328 INSERT INTO `marc_subfield_structure` VALUES ('242', 'c', 'Statement of responsibility, etc', 'Statement of responsibility, etc', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5329 INSERT INTO `marc_subfield_structure` VALUES ('242', 'd', 'Designation of section (BK AM MP MU VM SE) [OBSOLETE]', 'Designation of section (BK AM MP MU VM SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5330 INSERT INTO `marc_subfield_structure` VALUES ('242', 'e', 'Name of part/section (BK AM MP MU VM SE) [OBSOLETE]', 'Name of part/section (BK AM MP MU VM SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5331 INSERT INTO `marc_subfield_structure` VALUES ('242', 'h', 'Medium', 'Medium', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5332 INSERT INTO `marc_subfield_structure` VALUES ('242', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5333 INSERT INTO `marc_subfield_structure` VALUES ('242', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5334 INSERT INTO `marc_subfield_structure` VALUES ('242', 'y', 'Language code of translated title', 'Language code of translated title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5335 INSERT INTO `marc_subfield_structure` VALUES ('243', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5336 INSERT INTO `marc_subfield_structure` VALUES ('243', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5337 INSERT INTO `marc_subfield_structure` VALUES ('243', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'ASMP_BOOKS', '', '');
5338 INSERT INTO `marc_subfield_structure` VALUES ('243', 'a', 'Uniform title', 'Unifor title', 0, 0, '', 2, '', '', '', 1, -1, 'ASMP_BOOKS', '', '');
5339 INSERT INTO `marc_subfield_structure` VALUES ('243', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 2, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5340 INSERT INTO `marc_subfield_structure` VALUES ('243', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 2, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5341 INSERT INTO `marc_subfield_structure` VALUES ('243', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 2, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5342 INSERT INTO `marc_subfield_structure` VALUES ('243', 'h', 'Medium', 'Medium', 0, 0, '', 2, '', '', '', 0, -1, 'ASMP_BOOKS', '', '');
5343 INSERT INTO `marc_subfield_structure` VALUES ('243', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 2, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5344 INSERT INTO `marc_subfield_structure` VALUES ('243', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 2, '', '', '', 0, -1, 'ASMP_BOOKS', '', '');
5345 INSERT INTO `marc_subfield_structure` VALUES ('243', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 2, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5346 INSERT INTO `marc_subfield_structure` VALUES ('243', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 2, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5347 INSERT INTO `marc_subfield_structure` VALUES ('243', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 2, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5348 INSERT INTO `marc_subfield_structure` VALUES ('243', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 2, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5349 INSERT INTO `marc_subfield_structure` VALUES ('243', 'r', 'Key for music', 'Key for music', 0, 0, '', 2, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5350 INSERT INTO `marc_subfield_structure` VALUES ('243', 's', 'Version', 'Version', 0, 0, '', 2, '', '', '', 0, -1, 'ASMP_BOOKS', '', '');
5351 INSERT INTO `marc_subfield_structure` VALUES ('245', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5352 INSERT INTO `marc_subfield_structure` VALUES ('245', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5353 INSERT INTO `marc_subfield_structure` VALUES ('245', 'a', 'Title', 'Title', 0, 1, 'biblio.title', 2, '', '', '', NULL, 0, 'ASMP_BOOKS', '''245b'',''245f'',''245g'',''245k'',''245n'',''245p'',''245s'',''245h'',''246i'',''246a'',''246b'',''246f'',''246g'',''246n'',''246p'',''246h'',''242a'',''242b'',''242n'',''242p'',''242h''', '');
5354 INSERT INTO `marc_subfield_structure` VALUES ('245', 'b', 'Remainder of title', 'Remainder of title', 0, 0, 'bibliosubtitle.subtitle', 2, '', '', '', NULL, 0, 'ASMP_BOOKS', '', '');
5355 INSERT INTO `marc_subfield_structure` VALUES ('245', 'c', 'Statement of responsibility, etc', 'Statement of responsibility, etc', 0, 0, '', 2, '', '', '', NULL, 0, 'ASMP_BOOKS', '', '');
5356 INSERT INTO `marc_subfield_structure` VALUES ('245', 'd', 'Designation of section/part/series (SE) [OBSOLETE]', 'Designation of section section/part/series: (SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5357 INSERT INTO `marc_subfield_structure` VALUES ('245', 'e', 'Name of part/section/series (SE) [OBSOLETE]', 'Name of part/section/series (SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5358 INSERT INTO `marc_subfield_structure` VALUES ('245', 'f', 'Inclusive dates', 'Inclusive dates', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5359 INSERT INTO `marc_subfield_structure` VALUES ('245', 'g', 'Bulk dates', 'Bulk dates', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5360 INSERT INTO `marc_subfield_structure` VALUES ('245', 'h', 'Medium', 'Medium', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5361 INSERT INTO `marc_subfield_structure` VALUES ('245', 'k', 'Form', 'Form', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5362 INSERT INTO `marc_subfield_structure` VALUES ('245', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5363 INSERT INTO `marc_subfield_structure` VALUES ('245', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5364 INSERT INTO `marc_subfield_structure` VALUES ('245', 's', 'Version', 'Version', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5365 INSERT INTO `marc_subfield_structure` VALUES ('246', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5366 INSERT INTO `marc_subfield_structure` VALUES ('246', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5367 INSERT INTO `marc_subfield_structure` VALUES ('246', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5368 INSERT INTO `marc_subfield_structure` VALUES ('246', 'a', 'Title proper/short title', 'Title proper/short title', 0, 0, '', 2, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
5369 INSERT INTO `marc_subfield_structure` VALUES ('246', 'b', 'Remainder of title', 'Remainder of title', 0, 0, '', 2, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
5370 INSERT INTO `marc_subfield_structure` VALUES ('246', 'd', 'Designation of section/part/series (SE) [OBSOLETE]', 'Designation of section section/part/series (SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5371 INSERT INTO `marc_subfield_structure` VALUES ('246', 'e', 'Name of part/section/series (SE) [OBSOLETE]', 'Name of part/section/series (SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5372 INSERT INTO `marc_subfield_structure` VALUES ('246', 'f', 'Date or sequential designation', 'Date or sequential designation', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5373 INSERT INTO `marc_subfield_structure` VALUES ('246', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5374 INSERT INTO `marc_subfield_structure` VALUES ('246', 'h', 'Medium', 'Medium', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5375 INSERT INTO `marc_subfield_structure` VALUES ('246', 'i', 'Display text', 'Display text', 0, 0, '', 2, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
5376 INSERT INTO `marc_subfield_structure` VALUES ('246', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5377 INSERT INTO `marc_subfield_structure` VALUES ('246', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5378 INSERT INTO `marc_subfield_structure` VALUES ('247', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5379 INSERT INTO `marc_subfield_structure` VALUES ('247', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5380 INSERT INTO `marc_subfield_structure` VALUES ('247', 'a', 'Title', 'Title', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5381 INSERT INTO `marc_subfield_structure` VALUES ('247', 'b', 'Remainder of title', 'Remainder of title', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5382 INSERT INTO `marc_subfield_structure` VALUES ('247', 'd', 'Designation of section (SE) [OBSOLETE]', 'Designation of section (SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5383 INSERT INTO `marc_subfield_structure` VALUES ('247', 'e', 'Name of part/section (SE) [OBSOLETE]', 'Name of part/section (SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5384 INSERT INTO `marc_subfield_structure` VALUES ('247', 'f', 'Date or sequential designation', 'Date or sequential designation', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5385 INSERT INTO `marc_subfield_structure` VALUES ('247', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5386 INSERT INTO `marc_subfield_structure` VALUES ('247', 'h', 'Medium', 'Medium', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5387 INSERT INTO `marc_subfield_structure` VALUES ('247', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5388 INSERT INTO `marc_subfield_structure` VALUES ('247', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5389 INSERT INTO `marc_subfield_structure` VALUES ('247', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5390 INSERT INTO `marc_subfield_structure` VALUES ('250', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5391 INSERT INTO `marc_subfield_structure` VALUES ('250', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5392 INSERT INTO `marc_subfield_structure` VALUES ('250', 'a', 'Edition statement', 'Edition statement', 0, 0, '', 2, '', '', '', NULL, 0, 'ASMP_BOOKS', '', '');
5393 INSERT INTO `marc_subfield_structure` VALUES ('250', 'b', 'Remainder of edition statement', 'Remainder of edition statement', 0, 0, '', 2, '', '', '', NULL, 0, 'ASMP_BOOKS', '', '');
5394 INSERT INTO `marc_subfield_structure` VALUES ('254', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5395 INSERT INTO `marc_subfield_structure` VALUES ('254', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5396 INSERT INTO `marc_subfield_structure` VALUES ('254', 'a', 'Musical presentation statement', 'Musical presentation statement', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5397 INSERT INTO `marc_subfield_structure` VALUES ('255', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5398 INSERT INTO `marc_subfield_structure` VALUES ('255', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5399 INSERT INTO `marc_subfield_structure` VALUES ('255', 'a', 'Statement of scale', 'Statement of scale', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5400 INSERT INTO `marc_subfield_structure` VALUES ('255', 'b', 'Statement of projection', 'Statement of projection', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5401 INSERT INTO `marc_subfield_structure` VALUES ('255', 'c', 'Statement of coordinates', 'Statement of coordinates', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5402 INSERT INTO `marc_subfield_structure` VALUES ('255', 'd', 'Statement of zone', 'Statement of zone', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5403 INSERT INTO `marc_subfield_structure` VALUES ('255', 'e', 'Statement of equinox', 'Statement of equinox', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5404 INSERT INTO `marc_subfield_structure` VALUES ('255', 'f', 'Outer G-ring coordinate pairs', 'Outer G-ring coordinate pairs', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5405 INSERT INTO `marc_subfield_structure` VALUES ('255', 'g', 'Exclusion G-ring coordinate pairs', 'Exclusion G-ring coordinate pairs', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5406 INSERT INTO `marc_subfield_structure` VALUES ('256', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5407 INSERT INTO `marc_subfield_structure` VALUES ('256', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5408 INSERT INTO `marc_subfield_structure` VALUES ('256', 'a', 'Computer file characteristics', 'Computer file characteristics', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5409 INSERT INTO `marc_subfield_structure` VALUES ('257', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5410 INSERT INTO `marc_subfield_structure` VALUES ('257', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5411 INSERT INTO `marc_subfield_structure` VALUES ('257', 'a', 'Country of producing entity', 'Country of producing entity', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5412 INSERT INTO `marc_subfield_structure` VALUES ('258', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5413 INSERT INTO `marc_subfield_structure` VALUES ('258', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5414 INSERT INTO `marc_subfield_structure` VALUES ('258', 'a', 'Issuing jurisdiction', 'Issuing jurisdiction', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5415 INSERT INTO `marc_subfield_structure` VALUES ('258', 'b', 'Denomination', 'Denomination', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5416 INSERT INTO `marc_subfield_structure` VALUES ('260', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5417 INSERT INTO `marc_subfield_structure` VALUES ('260', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5418 INSERT INTO `marc_subfield_structure` VALUES ('260', 'a', 'Place of publication, distribution, etc', 'Place of publication, distribution, etc', 1, 0, 'biblioitems.place', 2, '', '', '', NULL, 0, 'ASMP_BOOKS', '', '');
5419 INSERT INTO `marc_subfield_structure` VALUES ('260', 'b', 'Name of publisher, distributor, etc', 'Name of publisher, distributor, etc', 1, 0, 'biblioitems.publishercode', 2, '', '', '', NULL, 0, 'ASMP_BOOKS', '', '');
5420 INSERT INTO `marc_subfield_structure` VALUES ('260', 'c', 'Date of copyright, publication, distribution, etc', 'Date of publication, distribution, etc', 1, 0, 'biblio.copyrightdate', 2, '', '', '', NULL, 0, 'ASMP_BOOKS', '', '');
5421 INSERT INTO `marc_subfield_structure` VALUES ('260', 'd', 'Plate or publisher\'s number for music (Pre-AACR 2) [OBSOLETE, CAN/MARC], [LOCAL, USA]', 'Plate or publisher\'s number for music (Pre-AACR 2) [OBSOLETE, CAN/MARC], [LOCAL, USA]', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5422 INSERT INTO `marc_subfield_structure` VALUES ('260', 'e', 'Place of manufacture', 'Place of manufacture', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5423 INSERT INTO `marc_subfield_structure` VALUES ('260', 'f', 'Manufacturer', 'Manufacturer', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5424 INSERT INTO `marc_subfield_structure` VALUES ('260', 'g', 'Date of manufacture', 'Date of manufacture', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5425 INSERT INTO `marc_subfield_structure` VALUES ('260', 'k', 'Identification/manufacturer number [OBSOLETE, CAN/MARC]', 'Identification/manufacturer number [OBSOLETE, CAN/MARC]', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5426 INSERT INTO `marc_subfield_structure` VALUES ('260', 'l', 'Matrix and/or take number [OBSOLETE, CAN/MARC]', 'Matrix and/or take number [OBSOLETE, CAN/MARC]', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5427 INSERT INTO `marc_subfield_structure` VALUES ('261', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5428 INSERT INTO `marc_subfield_structure` VALUES ('261', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5429 INSERT INTO `marc_subfield_structure` VALUES ('261', 'a', 'Producing company', 'Producing company', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5430 INSERT INTO `marc_subfield_structure` VALUES ('261', 'b', 'Releasing company (primary distributor)', 'Releasing company (primary distributor)', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5431 INSERT INTO `marc_subfield_structure` VALUES ('261', 'c', 'Date of production, release, etc.', 'Date of production, release, etc.', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5432 INSERT INTO `marc_subfield_structure` VALUES ('261', 'd', 'Date of production, release, etc.', 'Date of production, release, etc.', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5433 INSERT INTO `marc_subfield_structure` VALUES ('261', 'e', 'Contractual producer', 'Contractual producer', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5434 INSERT INTO `marc_subfield_structure` VALUES ('261', 'f', 'Place of production, release, etc.', 'Place of production, release, etc.', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5435 INSERT INTO `marc_subfield_structure` VALUES ('262', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5436 INSERT INTO `marc_subfield_structure` VALUES ('262', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5437 INSERT INTO `marc_subfield_structure` VALUES ('262', 'a', 'Place of production, release, etc.', 'Place of production, release, etc.', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5438 INSERT INTO `marc_subfield_structure` VALUES ('262', 'b', 'Publisher or trade name', 'Publisher or trade name', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5439 INSERT INTO `marc_subfield_structure` VALUES ('262', 'c', 'Date of production, release, etc.', 'Date of production, release, etc.', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5440 INSERT INTO `marc_subfield_structure` VALUES ('262', 'k', 'Serial identification', 'Serial identification', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5441 INSERT INTO `marc_subfield_structure` VALUES ('262', 'l', 'Matrix and/or take number', 'Matrix and/or take number', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5442 INSERT INTO `marc_subfield_structure` VALUES ('263', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5443 INSERT INTO `marc_subfield_structure` VALUES ('263', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5444 INSERT INTO `marc_subfield_structure` VALUES ('263', 'a', 'Projected publication date', 'Projected publication date', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5445 INSERT INTO `marc_subfield_structure` VALUES ('265', '6', 'Linkage [OBSOLETE]', 'Linkage [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5446 INSERT INTO `marc_subfield_structure` VALUES ('265', 'a', 'Source for acquisition/subscription address [OBSOLETE]', 'Source for acquisition/subscription address [OBSOLETE]', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5447 INSERT INTO `marc_subfield_structure` VALUES ('270', '4', 'Relator code', 'Relator code', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5448 INSERT INTO `marc_subfield_structure` VALUES ('270', '6', 'Linkage', 'Linkage', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5449 INSERT INTO `marc_subfield_structure` VALUES ('270', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5450 INSERT INTO `marc_subfield_structure` VALUES ('270', 'a', 'Address', 'Address', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'ASMP_BOOKS', '', '');
5451 INSERT INTO `marc_subfield_structure` VALUES ('270', 'b', 'City', 'City', 0, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'ASMP_BOOKS', '', '');
5452 INSERT INTO `marc_subfield_structure` VALUES ('270', 'c', 'State or province', 'State or province', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5453 INSERT INTO `marc_subfield_structure` VALUES ('270', 'd', 'Country', 'Country', 0, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'ASMP_BOOKS', '', '');
5454 INSERT INTO `marc_subfield_structure` VALUES ('270', 'e', 'Postal code', 'Postal code', 0, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'ASMP_BOOKS', '', '');
5455 INSERT INTO `marc_subfield_structure` VALUES ('270', 'f', 'Terms preceding attention name', 'Terms preceding attention name', 0, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'ASMP_BOOKS', '', '');
5456 INSERT INTO `marc_subfield_structure` VALUES ('270', 'g', 'Attention name', 'Attention name', 0, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'ASMP_BOOKS', '', '');
5457 INSERT INTO `marc_subfield_structure` VALUES ('270', 'h', 'Attention position', 'Attention position', 0, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'ASMP_BOOKS', '', '');
5458 INSERT INTO `marc_subfield_structure` VALUES ('270', 'i', 'Type of address', 'Type of address', 0, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'ASMP_BOOKS', '', '');
5459 INSERT INTO `marc_subfield_structure` VALUES ('270', 'j', 'Specialized telephone number', 'Specialized telephone number', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'ASMP_BOOKS', '', '');
5460 INSERT INTO `marc_subfield_structure` VALUES ('270', 'k', 'Telephone number', 'Telephone number', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'ASMP_BOOKS', '', '');
5461 INSERT INTO `marc_subfield_structure` VALUES ('270', 'l', 'Fax number', 'Fax number', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'ASMP_BOOKS', '', '');
5462 INSERT INTO `marc_subfield_structure` VALUES ('270', 'm', 'Electronic mail address', 'Electronic mail address', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'ASMP_BOOKS', '', '');
5463 INSERT INTO `marc_subfield_structure` VALUES ('270', 'n', 'TDD or TTY number', 'TDD or TTY number', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'ASMP_BOOKS', '', '');
5464 INSERT INTO `marc_subfield_structure` VALUES ('270', 'p', 'Contact person', 'Contact person', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'ASMP_BOOKS', '', '');
5465 INSERT INTO `marc_subfield_structure` VALUES ('270', 'q', 'Title of contact person', 'Title of contact person', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'ASMP_BOOKS', '', '');
5466 INSERT INTO `marc_subfield_structure` VALUES ('270', 'r', 'Hours', 'Hours', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'ASMP_BOOKS', '', '');
5467 INSERT INTO `marc_subfield_structure` VALUES ('270', 'z', 'Public note', 'Public note', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'ASMP_BOOKS', '', '');
5468 INSERT INTO `marc_subfield_structure` VALUES ('300', '3', 'Materials specified', 'Materials specified', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5469 INSERT INTO `marc_subfield_structure` VALUES ('300', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5470 INSERT INTO `marc_subfield_structure` VALUES ('300', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5471 INSERT INTO `marc_subfield_structure` VALUES ('300', 'a', 'Extent', 'Extent', 1, 1, 'biblioitems.pages', 3, '', '', '', NULL, 0, 'ASMP_BOOKS', '', '');
5472 INSERT INTO `marc_subfield_structure` VALUES ('300', 'b', 'Other physical details', 'Other physical details', 0, 0, 'biblioitems.illus', 3, '', '', '', 0, 0, 'ASMP_BOOKS', '', '');
5473 INSERT INTO `marc_subfield_structure` VALUES ('300', 'c', 'Dimensions', 'Dimensions', 1, 0, 'biblioitems.size', 3, '', '', '', NULL, 0, 'ASMP_BOOKS', '', '');
5474 INSERT INTO `marc_subfield_structure` VALUES ('300', 'd', 'Accompanying material [OBSOLETE, CAN/MARC]', 'Accompanying material [OBSOLETE, CAN/MARC]', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5475 INSERT INTO `marc_subfield_structure` VALUES ('300', 'e', 'Accompanying material', 'Accompanying material', 0, 0, '', 3, '', '', '', NULL, 0, 'ASMP_BOOKS', '', '');
5476 INSERT INTO `marc_subfield_structure` VALUES ('300', 'f', 'Type of unit', 'Type of unit', 1, 0, '', 3, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
5477 INSERT INTO `marc_subfield_structure` VALUES ('300', 'g', 'Size of unit', 'Size of unit', 1, 0, '', 3, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
5478 INSERT INTO `marc_subfield_structure` VALUES ('300', 'k', 'Speed [Videodiscs, pre-AACR2 records only] [OBSOLETE, CAN/MARC]', 'Speed [Videodiscs, pre-AACR2 records only] [OBSOLETE, CAN/MARC]', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5479 INSERT INTO `marc_subfield_structure` VALUES ('300', 'm', 'Identification/manufacturer number [pre-AACR2 records only] [OBSOLETE, CAN/MARC]', 'Identification/manufacturer number [pre-AACR2 records only] [OBSOLETE, CAN/MARC]', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5480 INSERT INTO `marc_subfield_structure` VALUES ('300', 'n', 'Matrix and/or take number [Sound recordings, pre-AACR2 records only] [OBSOLETE, CAN/MARC]', 'Matrix and/or take number [Sound recordings, pre-AACR2 records only] [OBSOLETE, CAN/MARC]', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5481 INSERT INTO `marc_subfield_structure` VALUES ('301', 'a', 'Extent of item', 'Extent of item', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5482 INSERT INTO `marc_subfield_structure` VALUES ('301', 'b', 'Sound characteristics', 'Sound characteristics', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5483 INSERT INTO `marc_subfield_structure` VALUES ('301', 'c', 'Color characteristics', 'Color characteristics', 0, 0, '', 3, '', '', NULL, NULL, -6, 'ASMP_BOOKS', '', '');
5484 INSERT INTO `marc_subfield_structure` VALUES ('301', 'd', 'Dimensions', 'Dimensions', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5485 INSERT INTO `marc_subfield_structure` VALUES ('301', 'e', 'Sound characteristics', 'Sound characteristics', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5486 INSERT INTO `marc_subfield_structure` VALUES ('301', 'f', 'Speed', 'Speed', 0, 0, '', 3, '', '', NULL, NULL, -6, 'ASMP_BOOKS', '', '');
5487 INSERT INTO `marc_subfield_structure` VALUES ('302', 'a', 'Page count', 'Page count', 0, 0, '', 3, '', '', NULL, NULL, -6, 'ASMP_BOOKS', '', '');
5488 INSERT INTO `marc_subfield_structure` VALUES ('303', 'a', 'Unit count', 'Unit count', 0, 0, '', 3, '', '', NULL, NULL, -6, 'ASMP_BOOKS', '', '');
5489 INSERT INTO `marc_subfield_structure` VALUES ('304', 'a', 'Linear footage', 'Linear footage', 0, 0, '', 3, '', '', NULL, NULL, -6, 'ASMP_BOOKS', '', '');
5490 INSERT INTO `marc_subfield_structure` VALUES ('305', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5491 INSERT INTO `marc_subfield_structure` VALUES ('305', 'a', 'Extent', 'Extent', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5492 INSERT INTO `marc_subfield_structure` VALUES ('305', 'b', 'Other physical details', 'Other physical details', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5493 INSERT INTO `marc_subfield_structure` VALUES ('305', 'c', 'Dimensions', 'Dimensions', 0, 0, '', 3, '', '', NULL, NULL, -6, 'ASMP_BOOKS', '', '');
5494 INSERT INTO `marc_subfield_structure` VALUES ('305', 'd', 'Microgroove or standard', 'Microgroove or standard', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5495 INSERT INTO `marc_subfield_structure` VALUES ('305', 'e', 'Stereophonic, monaural', 'Stereophonic, monaural', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5496 INSERT INTO `marc_subfield_structure` VALUES ('305', 'f', 'Number of tracks', 'Number of tracks', 0, 0, '', 3, '', '', NULL, NULL, -6, 'ASMP_BOOKS', '', '');
5497 INSERT INTO `marc_subfield_structure` VALUES ('305', 'm', 'Serial identification', 'Serial identification', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5498 INSERT INTO `marc_subfield_structure` VALUES ('305', 'n', 'Matrix and/or take number', 'Matrix and/or take number', 0, 0, '', 3, '', '', NULL, NULL, -6, 'ASMP_BOOKS', '', '');
5499 INSERT INTO `marc_subfield_structure` VALUES ('306', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5500 INSERT INTO `marc_subfield_structure` VALUES ('306', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5501 INSERT INTO `marc_subfield_structure` VALUES ('306', 'a', 'Playing time', 'Playing time', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5502 INSERT INTO `marc_subfield_structure` VALUES ('307', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5503 INSERT INTO `marc_subfield_structure` VALUES ('307', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5504 INSERT INTO `marc_subfield_structure` VALUES ('307', 'a', 'Hours', 'Hours', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5505 INSERT INTO `marc_subfield_structure` VALUES ('307', 'b', 'Additional information', 'Additional information', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5506 INSERT INTO `marc_subfield_structure` VALUES ('308', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5507 INSERT INTO `marc_subfield_structure` VALUES ('308', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5508 INSERT INTO `marc_subfield_structure` VALUES ('308', 'a', 'Number of reels', 'Number of reels', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5509 INSERT INTO `marc_subfield_structure` VALUES ('308', 'b', 'Footage', 'Footage', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5510 INSERT INTO `marc_subfield_structure` VALUES ('308', 'c', 'Sound characteristics', 'Sound characteristics', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5511 INSERT INTO `marc_subfield_structure` VALUES ('308', 'd', 'Color characteristics', 'Color characteristics', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5512 INSERT INTO `marc_subfield_structure` VALUES ('308', 'e', 'Width', 'Width', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5513 INSERT INTO `marc_subfield_structure` VALUES ('308', 'f', 'Presentation format', 'Presentation format', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5514 INSERT INTO `marc_subfield_structure` VALUES ('310', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5515 INSERT INTO `marc_subfield_structure` VALUES ('310', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5516 INSERT INTO `marc_subfield_structure` VALUES ('310', 'a', 'Current publication frequency', 'Current publication frequency', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5517 INSERT INTO `marc_subfield_structure` VALUES ('310', 'b', 'Date of current publication frequency', 'Date of current publication frequency', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5518 INSERT INTO `marc_subfield_structure` VALUES ('315', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5519 INSERT INTO `marc_subfield_structure` VALUES ('315', 'a', 'Frequency', 'Frequency', 1, 0, '', 3, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5520 INSERT INTO `marc_subfield_structure` VALUES ('315', 'b', 'Dates of frequency', 'Dates of frequency', 1, 0, '', 3, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5521 INSERT INTO `marc_subfield_structure` VALUES ('321', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5522 INSERT INTO `marc_subfield_structure` VALUES ('321', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5523 INSERT INTO `marc_subfield_structure` VALUES ('321', 'a', 'Former publication frequency', 'Former publication frequency', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5524 INSERT INTO `marc_subfield_structure` VALUES ('321', 'b', 'Former publication frequency', 'Former publication frequency', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5525 INSERT INTO `marc_subfield_structure` VALUES ('340', '3', 'Materials specified', 'Materials specified', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5526 INSERT INTO `marc_subfield_structure` VALUES ('340', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5527 INSERT INTO `marc_subfield_structure` VALUES ('340', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5528 INSERT INTO `marc_subfield_structure` VALUES ('340', 'a', 'Material base and configuration', 'Material base and configuration', 1, 0, '', 3, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5529 INSERT INTO `marc_subfield_structure` VALUES ('340', 'b', 'Dimensions', 'Dimensions', 1, 0, '', 3, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5530 INSERT INTO `marc_subfield_structure` VALUES ('340', 'c', 'Materials applied to surface', 'Materials applied to surface', 1, 0, '', 3, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5531 INSERT INTO `marc_subfield_structure` VALUES ('340', 'd', 'Information recording technique', 'Information recording technique', 1, 0, '', 3, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5532 INSERT INTO `marc_subfield_structure` VALUES ('340', 'e', 'Support', 'Support', 1, 0, '', 3, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5533 INSERT INTO `marc_subfield_structure` VALUES ('340', 'f', 'Production rate/ratio', 'Production rate/ratio', 1, 0, '', 3, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5534 INSERT INTO `marc_subfield_structure` VALUES ('340', 'h', 'Location within medium', 'Location within medium', 1, 0, '', 3, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5535 INSERT INTO `marc_subfield_structure` VALUES ('340', 'i', 'Technical specifications of medium', 'Technical specifications of medium', 1, 0, '', 3, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5536 INSERT INTO `marc_subfield_structure` VALUES ('342', '2', 'Reference method used', 'Reference method used', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5537 INSERT INTO `marc_subfield_structure` VALUES ('342', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5538 INSERT INTO `marc_subfield_structure` VALUES ('342', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5539 INSERT INTO `marc_subfield_structure` VALUES ('342', 'a', 'Name', 'Name', 1, 0, '', 3, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5540 INSERT INTO `marc_subfield_structure` VALUES ('342', 'b', 'Coordinate or distance units', 'Coordinate or distance units', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5541 INSERT INTO `marc_subfield_structure` VALUES ('342', 'c', 'Latitude resolution', 'Latitude resolution', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5542 INSERT INTO `marc_subfield_structure` VALUES ('342', 'd', 'Longitude resolution', 'Longitude resolution', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5543 INSERT INTO `marc_subfield_structure` VALUES ('342', 'e', 'Standard parallel or oblique line latitude', 'Standard parallel or oblique line latitude', 1, 0, '', 3, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5544 INSERT INTO `marc_subfield_structure` VALUES ('342', 'f', 'Oblique line longitude', 'Oblique line longitude', 1, 0, '', 3, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5545 INSERT INTO `marc_subfield_structure` VALUES ('342', 'g', 'Longitude of central meridian or projection center', 'Longitude of central meridian or projection center', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5546 INSERT INTO `marc_subfield_structure` VALUES ('342', 'h', 'Latitude of projection origin or projection center', 'Latitude of projection origin or projection center', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5547 INSERT INTO `marc_subfield_structure` VALUES ('342', 'i', 'False easting', 'False easting', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5548 INSERT INTO `marc_subfield_structure` VALUES ('342', 'j', 'False northing', 'False northing', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5549 INSERT INTO `marc_subfield_structure` VALUES ('342', 'k', 'Scale factor', 'Scale factor', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5550 INSERT INTO `marc_subfield_structure` VALUES ('342', 'l', 'Height of perspective point above surface', 'Height of perspective point above surface', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5551 INSERT INTO `marc_subfield_structure` VALUES ('342', 'm', 'Azimuthal angle', 'Azimuthal angle', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5552 INSERT INTO `marc_subfield_structure` VALUES ('342', 'n', 'Azimuth measure point longitude or straight vertical longitude from pole', 'Azimuth measure point longitude or straight vertical longitude from pole', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5553 INSERT INTO `marc_subfield_structure` VALUES ('342', 'o', 'Landsat number and path number', 'Landsat number and path number', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5554 INSERT INTO `marc_subfield_structure` VALUES ('342', 'p', 'Zone identifier', 'Zone identifier', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5555 INSERT INTO `marc_subfield_structure` VALUES ('342', 'q', 'Ellipsoid name', 'Ellipsoid name', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5556 INSERT INTO `marc_subfield_structure` VALUES ('342', 'r', 'Semi-major axis', 'Semi-major axis', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5557 INSERT INTO `marc_subfield_structure` VALUES ('342', 's', 'Denominator of flattening ratio', 'Denominator of flattening ratio', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5558 INSERT INTO `marc_subfield_structure` VALUES ('342', 't', 'Vertical resolution', 'Vertical resolution', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5559 INSERT INTO `marc_subfield_structure` VALUES ('342', 'u', 'Vertical encoding method', 'Vertical encoding method', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5560 INSERT INTO `marc_subfield_structure` VALUES ('342', 'v', 'Local planar, local, or other projection or grid description', 'Local planar, local, or other projection or grid description', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5561 INSERT INTO `marc_subfield_structure` VALUES ('342', 'w', 'Local planar or local georeference information', 'Local planar or local georeference information', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5562 INSERT INTO `marc_subfield_structure` VALUES ('343', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5563 INSERT INTO `marc_subfield_structure` VALUES ('343', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5564 INSERT INTO `marc_subfield_structure` VALUES ('343', 'a', 'Planar coordinate encoding method', 'Planar coordinate encoding method', 1, 0, '', 3, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5565 INSERT INTO `marc_subfield_structure` VALUES ('343', 'b', 'Planar distance units', 'Planar distance units', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5566 INSERT INTO `marc_subfield_structure` VALUES ('343', 'c', 'Abscissa resolution', 'Abscissa resolution', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5567 INSERT INTO `marc_subfield_structure` VALUES ('343', 'd', 'Ordinate resolution', 'Ordinate resolution', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5568 INSERT INTO `marc_subfield_structure` VALUES ('343', 'e', 'Distance resolution', 'Distance resolution', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5569 INSERT INTO `marc_subfield_structure` VALUES ('343', 'f', 'Bearing resolution', 'Bearing resolution', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5570 INSERT INTO `marc_subfield_structure` VALUES ('343', 'g', 'Bearing unit', 'Bearing unit', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5571 INSERT INTO `marc_subfield_structure` VALUES ('343', 'h', 'Bearing reference direction', 'Bearing reference direction', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5572 INSERT INTO `marc_subfield_structure` VALUES ('343', 'i', 'Bearing reference meridian', 'Bearing reference meridian', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5573 INSERT INTO `marc_subfield_structure` VALUES ('350', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5574 INSERT INTO `marc_subfield_structure` VALUES ('350', 'a', 'Price', 'Price', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5575 INSERT INTO `marc_subfield_structure` VALUES ('350', 'b', 'Form of issue', 'Form of issue', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5576 INSERT INTO `marc_subfield_structure` VALUES ('351', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5577 INSERT INTO `marc_subfield_structure` VALUES ('351', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5578 INSERT INTO `marc_subfield_structure` VALUES ('351', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5579 INSERT INTO `marc_subfield_structure` VALUES ('351', 'a', 'Organization', 'Organization', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5580 INSERT INTO `marc_subfield_structure` VALUES ('351', 'b', 'Arrangement', 'Arrangement', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5581 INSERT INTO `marc_subfield_structure` VALUES ('351', 'c', 'Hierarchical level', 'Hierarchical level', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5582 INSERT INTO `marc_subfield_structure` VALUES ('352', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5583 INSERT INTO `marc_subfield_structure` VALUES ('352', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5584 INSERT INTO `marc_subfield_structure` VALUES ('352', 'a', 'Direct reference method', 'Direct reference method', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5585 INSERT INTO `marc_subfield_structure` VALUES ('352', 'b', 'Object type', 'Object type', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5586 INSERT INTO `marc_subfield_structure` VALUES ('352', 'c', 'Object count', 'Object count', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5587 INSERT INTO `marc_subfield_structure` VALUES ('352', 'd', 'Row count', 'Row count', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5588 INSERT INTO `marc_subfield_structure` VALUES ('352', 'e', 'Column count', 'Column count', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5589 INSERT INTO `marc_subfield_structure` VALUES ('352', 'f', 'Vertical count', 'Vertical count', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5590 INSERT INTO `marc_subfield_structure` VALUES ('352', 'g', 'VPF topology level', 'VPF topology level', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5591 INSERT INTO `marc_subfield_structure` VALUES ('352', 'i', 'Indirect reference description', 'Indirect reference description', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5592 INSERT INTO `marc_subfield_structure` VALUES ('355', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5593 INSERT INTO `marc_subfield_structure` VALUES ('355', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5594 INSERT INTO `marc_subfield_structure` VALUES ('355', 'a', 'Security classification', 'Security classification', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5595 INSERT INTO `marc_subfield_structure` VALUES ('355', 'b', 'Handling instructions', 'Handling instructions', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5596 INSERT INTO `marc_subfield_structure` VALUES ('355', 'c', 'External dissemination information', 'External dissemination information', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5597 INSERT INTO `marc_subfield_structure` VALUES ('355', 'd', 'Downgrading or declassification event', 'Downgrading or declassification event', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5598 INSERT INTO `marc_subfield_structure` VALUES ('355', 'e', 'Classification system', 'Classification system', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5599 INSERT INTO `marc_subfield_structure` VALUES ('355', 'f', 'Country of origin code', 'Country of origin code', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5600 INSERT INTO `marc_subfield_structure` VALUES ('355', 'g', 'Downgrading date', 'Downgrading date', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5601 INSERT INTO `marc_subfield_structure` VALUES ('355', 'h', 'Declassification date', 'Declassification date', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5602 INSERT INTO `marc_subfield_structure` VALUES ('355', 'j', 'Authorization', 'Authorization', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5603 INSERT INTO `marc_subfield_structure` VALUES ('357', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5604 INSERT INTO `marc_subfield_structure` VALUES ('357', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5605 INSERT INTO `marc_subfield_structure` VALUES ('357', 'a', 'Originator control term', 'Originator control term', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5606 INSERT INTO `marc_subfield_structure` VALUES ('357', 'b', 'Originating agency', 'Originating agency', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5607 INSERT INTO `marc_subfield_structure` VALUES ('357', 'c', 'Authorized recipients of material', 'Authorized recipients of material', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5608 INSERT INTO `marc_subfield_structure` VALUES ('357', 'g', 'Other restrictions', 'Other restrictions', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5609 INSERT INTO `marc_subfield_structure` VALUES ('359', 'a', 'Rental price', 'Rental price', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5610 INSERT INTO `marc_subfield_structure` VALUES ('362', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5611 INSERT INTO `marc_subfield_structure` VALUES ('362', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5612 INSERT INTO `marc_subfield_structure` VALUES ('362', 'a', 'Dates of publication and/or sequential designation', 'Dates of publication and/or sequential designation', 0, 0, 'biblioitems.volumedesc', 3, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5613 INSERT INTO `marc_subfield_structure` VALUES ('362', 'z', 'Source of information', 'Source of information', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5614 INSERT INTO `marc_subfield_structure` VALUES ('365', '2', 'Source of price type code', 'Source of price type code', 0, 0, '', 9, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
5615 INSERT INTO `marc_subfield_structure` VALUES ('365', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5616 INSERT INTO `marc_subfield_structure` VALUES ('365', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5617 INSERT INTO `marc_subfield_structure` VALUES ('365', 'a', 'Price type code', 'Price type code', 0, 0, '', 9, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
5618 INSERT INTO `marc_subfield_structure` VALUES ('365', 'b', 'Price amount', 'Price amount', 0, 0, '', 9, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
5619 INSERT INTO `marc_subfield_structure` VALUES ('365', 'c', 'Price type code', 'Price type code', 0, 0, '', 9, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
5620 INSERT INTO `marc_subfield_structure` VALUES ('365', 'd', 'Unit of pricing', 'Unit of pricing', 0, 0, '', 9, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
5621 INSERT INTO `marc_subfield_structure` VALUES ('365', 'e', 'Price note', 'Price note', 0, 0, '', 9, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
5622 INSERT INTO `marc_subfield_structure` VALUES ('365', 'f', 'Price effective from', 'Price effective from', 0, 0, '', 9, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
5623 INSERT INTO `marc_subfield_structure` VALUES ('365', 'g', 'Price effective until', 'Price effective until', 0, 0, '', 9, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
5624 INSERT INTO `marc_subfield_structure` VALUES ('365', 'h', 'Tax rate 1', 'Tax rate 1', 0, 0, '', 9, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
5625 INSERT INTO `marc_subfield_structure` VALUES ('365', 'i', 'Tax rate 2', 'Tax rate 2', 0, 0, '', 9, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
5626 INSERT INTO `marc_subfield_structure` VALUES ('365', 'j', 'ISO country code', 'ISO country code', 0, 0, '', 9, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
5627 INSERT INTO `marc_subfield_structure` VALUES ('365', 'k', 'MARC country code', 'MARC country code', 0, 0, '', 9, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
5628 INSERT INTO `marc_subfield_structure` VALUES ('365', 'm', 'Identification of pricing entity', 'Identification of pricing entity', 0, 0, '', 9, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
5629 INSERT INTO `marc_subfield_structure` VALUES ('366', '2', 'Source of availability status code', 'Source of availability status code', 0, 0, '', 9, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
5630 INSERT INTO `marc_subfield_structure` VALUES ('366', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5631 INSERT INTO `marc_subfield_structure` VALUES ('366', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5632 INSERT INTO `marc_subfield_structure` VALUES ('366', 'a', 'Publishers\' compressed title identification', 'Publishers\' compressed title identification', 0, 0, '', 9, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
5633 INSERT INTO `marc_subfield_structure` VALUES ('366', 'b', 'Detailed date of publication', 'Detailed date of publication', 0, 0, '', 9, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
5634 INSERT INTO `marc_subfield_structure` VALUES ('366', 'c', 'Availability status code', 'Availability status code', 0, 0, '', 9, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
5635 INSERT INTO `marc_subfield_structure` VALUES ('366', 'd', 'Expected next availability date', 'Expected next availability date', 0, 0, '', 9, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
5636 INSERT INTO `marc_subfield_structure` VALUES ('366', 'e', 'Note', 'Note', 0, 0, '', 9, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
5637 INSERT INTO `marc_subfield_structure` VALUES ('366', 'f', 'Publishers\' discount category', 'Publishers\' discount category', 0, 0, '', 9, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
5638 INSERT INTO `marc_subfield_structure` VALUES ('366', 'g', 'Date made out of print', 'Date made out of print', 0, 0, '', 9, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
5639 INSERT INTO `marc_subfield_structure` VALUES ('366', 'j', 'ISO country code', 'ISO country code', 0, 0, '', 9, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
5640 INSERT INTO `marc_subfield_structure` VALUES ('366', 'k', 'MARC country code', 'MARC country code', 0, 0, '', 9, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
5641 INSERT INTO `marc_subfield_structure` VALUES ('366', 'm', 'Identification of agency', 'Identification of agency', 0, 0, '', 9, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
5642 INSERT INTO `marc_subfield_structure` VALUES ('400', '4', 'Relator code', 'Relator code', 1, 0, '', 4, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5643 INSERT INTO `marc_subfield_structure` VALUES ('400', '6', 'Linkage', 'Linkage', 0, 0, '', 4, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5644 INSERT INTO `marc_subfield_structure` VALUES ('400', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 4, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5645 INSERT INTO `marc_subfield_structure` VALUES ('400', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'ASMP_BOOKS', '', '');
5646 INSERT INTO `marc_subfield_structure` VALUES ('400', 'a', 'Personal name', 'Personal name', 0, 0, '', 4, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5647 INSERT INTO `marc_subfield_structure` VALUES ('400', 'b', 'Numeration', 'Numeration', 0, 0, '', 4, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5648 INSERT INTO `marc_subfield_structure` VALUES ('400', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 4, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5649 INSERT INTO `marc_subfield_structure` VALUES ('400', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 4, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5650 INSERT INTO `marc_subfield_structure` VALUES ('400', 'e', 'Relator term', 'Relator term', 1, 0, '', 4, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5651 INSERT INTO `marc_subfield_structure` VALUES ('400', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 4, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5652 INSERT INTO `marc_subfield_structure` VALUES ('400', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 4, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5653 INSERT INTO `marc_subfield_structure` VALUES ('400', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 4, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5654 INSERT INTO `marc_subfield_structure` VALUES ('400', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 4, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5655 INSERT INTO `marc_subfield_structure` VALUES ('400', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 4, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5656 INSERT INTO `marc_subfield_structure` VALUES ('400', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 4, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5657 INSERT INTO `marc_subfield_structure` VALUES ('400', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 4, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5658 INSERT INTO `marc_subfield_structure` VALUES ('400', 't', 'Title of a work', 'Title of a work', 0, 0, '', 4, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5659 INSERT INTO `marc_subfield_structure` VALUES ('400', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 4, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5660 INSERT INTO `marc_subfield_structure` VALUES ('400', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 4, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5661 INSERT INTO `marc_subfield_structure` VALUES ('400', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 4, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5662 INSERT INTO `marc_subfield_structure` VALUES ('410', '4', 'Relator code', 'Relator code', 1, 0, '', 4, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5663 INSERT INTO `marc_subfield_structure` VALUES ('410', '6', 'Linkage', 'Linkage', 0, 0, '', 4, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5664 INSERT INTO `marc_subfield_structure` VALUES ('410', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 4, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5665 INSERT INTO `marc_subfield_structure` VALUES ('410', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
5666 INSERT INTO `marc_subfield_structure` VALUES ('410', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 4, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5667 INSERT INTO `marc_subfield_structure` VALUES ('410', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 4, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5668 INSERT INTO `marc_subfield_structure` VALUES ('410', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 4, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5669 INSERT INTO `marc_subfield_structure` VALUES ('410', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 4, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5670 INSERT INTO `marc_subfield_structure` VALUES ('410', 'e', 'Relator term', 'Relator term', 1, 0, '', 4, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5671 INSERT INTO `marc_subfield_structure` VALUES ('410', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 4, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5672 INSERT INTO `marc_subfield_structure` VALUES ('410', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 4, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5673 INSERT INTO `marc_subfield_structure` VALUES ('410', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 4, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5674 INSERT INTO `marc_subfield_structure` VALUES ('410', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 4, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5675 INSERT INTO `marc_subfield_structure` VALUES ('410', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 4, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5676 INSERT INTO `marc_subfield_structure` VALUES ('410', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 4, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5677 INSERT INTO `marc_subfield_structure` VALUES ('410', 't', 'Title of a work', 'Title of a work', 0, 0, '', 4, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5678 INSERT INTO `marc_subfield_structure` VALUES ('410', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 4, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5679 INSERT INTO `marc_subfield_structure` VALUES ('410', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 4, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5680 INSERT INTO `marc_subfield_structure` VALUES ('410', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 4, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5681 INSERT INTO `marc_subfield_structure` VALUES ('411', '4', 'Relator code', 'Relator code', 1, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5682 INSERT INTO `marc_subfield_structure` VALUES ('411', '6', 'Linkage', 'Linkage', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5683 INSERT INTO `marc_subfield_structure` VALUES ('411', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5684 INSERT INTO `marc_subfield_structure` VALUES ('411', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'ASMP_BOOKS', '', '');
5685 INSERT INTO `marc_subfield_structure` VALUES ('411', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5686 INSERT INTO `marc_subfield_structure` VALUES ('411', 'b', 'Number [OBSOLETE]', 'Number [OBSOLETE]', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5687 INSERT INTO `marc_subfield_structure` VALUES ('411', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5688 INSERT INTO `marc_subfield_structure` VALUES ('411', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5689 INSERT INTO `marc_subfield_structure` VALUES ('411', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5690 INSERT INTO `marc_subfield_structure` VALUES ('411', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5691 INSERT INTO `marc_subfield_structure` VALUES ('411', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5692 INSERT INTO `marc_subfield_structure` VALUES ('411', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5693 INSERT INTO `marc_subfield_structure` VALUES ('411', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5694 INSERT INTO `marc_subfield_structure` VALUES ('411', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5695 INSERT INTO `marc_subfield_structure` VALUES ('411', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5696 INSERT INTO `marc_subfield_structure` VALUES ('411', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5697 INSERT INTO `marc_subfield_structure` VALUES ('411', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5698 INSERT INTO `marc_subfield_structure` VALUES ('411', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5699 INSERT INTO `marc_subfield_structure` VALUES ('411', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 4, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5700 INSERT INTO `marc_subfield_structure` VALUES ('411', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 4, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5701 INSERT INTO `marc_subfield_structure` VALUES ('440', '6', 'Linkage', 'Linkage', 0, 0, '', 4, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5702 INSERT INTO `marc_subfield_structure` VALUES ('440', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 4, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5703 INSERT INTO `marc_subfield_structure` VALUES ('440', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'ASMP_BOOKS', '', '');
5704 INSERT INTO `marc_subfield_structure` VALUES ('440', 'a', 'Title', 'Title', 0, 0, 'biblio.seriestitle', 4, '', '', '', NULL, 0, 'ASMP_BOOKS', '', '');
5705 INSERT INTO `marc_subfield_structure` VALUES ('440', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, 'biblioitems.number', 4, '', '', '', NULL, 0, 'ASMP_BOOKS', '', '');
5706 INSERT INTO `marc_subfield_structure` VALUES ('440', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 4, '', '', '', NULL, 0, 'ASMP_BOOKS', '', '');
5707 INSERT INTO `marc_subfield_structure` VALUES ('440', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, 'biblioitems.volume', 4, '', '', '', NULL, 0, 'ASMP_BOOKS', '', '');
5708 INSERT INTO `marc_subfield_structure` VALUES ('440', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 4, '', '', '', NULL, 0, 'ASMP_BOOKS', '', '');
5709 INSERT INTO `marc_subfield_structure` VALUES ('490', '6', 'Linkage', 'Linkage', 0, 0, '', 4, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5710 INSERT INTO `marc_subfield_structure` VALUES ('490', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 4, '', '', NULL, NULL, -6, 'ASMP_BOOKS', '', '');
5711 INSERT INTO `marc_subfield_structure` VALUES ('490', 'a', 'Series statement', 'Series statement', 1, 0, '', 4, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5712 INSERT INTO `marc_subfield_structure` VALUES ('490', 'l', 'Library of Congress call number', 'Library of Congress call number', 0, 0, '', 4, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5713 INSERT INTO `marc_subfield_structure` VALUES ('490', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 1, 0, '', 4, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5714 INSERT INTO `marc_subfield_structure` VALUES ('490', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 4, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5715 INSERT INTO `marc_subfield_structure` VALUES ('500', '3', 'Materials specified', 'Materials specified', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5716 INSERT INTO `marc_subfield_structure` VALUES ('500', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5717 INSERT INTO `marc_subfield_structure` VALUES ('500', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5718 INSERT INTO `marc_subfield_structure` VALUES ('500', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5719 INSERT INTO `marc_subfield_structure` VALUES ('500', 'a', 'General note', 'General note', 0, 0, 'biblio.notes', 5, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
5720 INSERT INTO `marc_subfield_structure` VALUES ('500', 'l', 'Library of Congress call number (SE) [OBSOLETE]', 'Library of Congress call number (SE) [OBSOLETE]', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5721 INSERT INTO `marc_subfield_structure` VALUES ('500', 'n', 'n (RLIN) [OBSOLETE]', 'n (RLIN) [OBSOLETE]', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5722 INSERT INTO `marc_subfield_structure` VALUES ('500', 'x', 'International Standard Serial Number (SE) [OBSOLETE]', 'International Standard Serial Number (SE) [OBSOLETE]', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5723 INSERT INTO `marc_subfield_structure` VALUES ('500', 'z', 'Source of note information (AM SE) [OBSOLETE]', 'Source of note information (AM SE) [OBSOLETE]', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5724 INSERT INTO `marc_subfield_structure` VALUES ('501', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5725 INSERT INTO `marc_subfield_structure` VALUES ('501', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5726 INSERT INTO `marc_subfield_structure` VALUES ('501', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5727 INSERT INTO `marc_subfield_structure` VALUES ('501', 'a', 'With note', 'With note', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5728 INSERT INTO `marc_subfield_structure` VALUES ('502', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5729 INSERT INTO `marc_subfield_structure` VALUES ('502', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5730 INSERT INTO `marc_subfield_structure` VALUES ('502', 'a', 'Dissertation note', 'Dissertation note', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5731 INSERT INTO `marc_subfield_structure` VALUES ('503', '8', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5732 INSERT INTO `marc_subfield_structure` VALUES ('503', 'a', 'Bibliographic history note', 'Bibliographic history note', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5733 INSERT INTO `marc_subfield_structure` VALUES ('504', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5734 INSERT INTO `marc_subfield_structure` VALUES ('504', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5735 INSERT INTO `marc_subfield_structure` VALUES ('504', 'a', 'Bibliography, etc', 'Bibliography, etc', 0, 0, '', 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5736 INSERT INTO `marc_subfield_structure` VALUES ('504', 'b', 'Number of references', 'Number of references', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5737 INSERT INTO `marc_subfield_structure` VALUES ('505', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5738 INSERT INTO `marc_subfield_structure` VALUES ('505', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5739 INSERT INTO `marc_subfield_structure` VALUES ('505', 'a', 'Formatted contents note', 'Formatted contents note', 0, 0, '', 5, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
5740 INSERT INTO `marc_subfield_structure` VALUES ('505', 'g', 'Miscellaneous information', 'Miscellaneous information', 1, 0, '', 5, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
5741 INSERT INTO `marc_subfield_structure` VALUES ('505', 'r', 'Statement of responsibility', 'Statement of responsibility', 1, 0, '', 5, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
5742 INSERT INTO `marc_subfield_structure` VALUES ('505', 't', 'Title', 'Title', 1, 0, '', 5, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
5743 INSERT INTO `marc_subfield_structure` VALUES ('505', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -1, 'ASMP_BOOKS', '', '');
5744 INSERT INTO `marc_subfield_structure` VALUES ('506', '3', 'Materials specified', 'Materials specified', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5745 INSERT INTO `marc_subfield_structure` VALUES ('506', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5746 INSERT INTO `marc_subfield_structure` VALUES ('506', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5747 INSERT INTO `marc_subfield_structure` VALUES ('506', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5748 INSERT INTO `marc_subfield_structure` VALUES ('506', 'a', 'Terms governing access', 'Terms governing access', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5749 INSERT INTO `marc_subfield_structure` VALUES ('506', 'b', 'Jurisdiction', 'Jurisdiction', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5750 INSERT INTO `marc_subfield_structure` VALUES ('506', 'c', 'Physical access provisions', 'Physical access provisions', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5751 INSERT INTO `marc_subfield_structure` VALUES ('506', 'd', 'Authorized users', 'Authorized users', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5752 INSERT INTO `marc_subfield_structure` VALUES ('506', 'e', 'Authorization', 'Authorization', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5753 INSERT INTO `marc_subfield_structure` VALUES ('506', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -6, 'ASMP_BOOKS', '', '');
5754 INSERT INTO `marc_subfield_structure` VALUES ('507', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5755 INSERT INTO `marc_subfield_structure` VALUES ('507', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5756 INSERT INTO `marc_subfield_structure` VALUES ('507', 'a', 'Representative fraction of scale note', 'Representative fraction of scale note', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5757 INSERT INTO `marc_subfield_structure` VALUES ('507', 'b', 'Remainder of scale note', 'Remainder of scale note', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5758 INSERT INTO `marc_subfield_structure` VALUES ('508', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5759 INSERT INTO `marc_subfield_structure` VALUES ('508', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5760 INSERT INTO `marc_subfield_structure` VALUES ('508', 'a', 'Creation/production credits note', 'Creation/production credits note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5761 INSERT INTO `marc_subfield_structure` VALUES ('509', 'a', 'Informal Notes', 'Informal Notes', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5762 INSERT INTO `marc_subfield_structure` VALUES ('510', '3', 'Materials specified', 'Materials specified', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5763 INSERT INTO `marc_subfield_structure` VALUES ('510', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5764 INSERT INTO `marc_subfield_structure` VALUES ('510', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5765 INSERT INTO `marc_subfield_structure` VALUES ('510', 'a', 'Name of source', 'Name of source', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5766 INSERT INTO `marc_subfield_structure` VALUES ('510', 'b', 'Coverage of source', 'Coverage of source', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5767 INSERT INTO `marc_subfield_structure` VALUES ('510', 'c', 'Location within source', 'Location within source', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5768 INSERT INTO `marc_subfield_structure` VALUES ('510', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5769 INSERT INTO `marc_subfield_structure` VALUES ('511', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5770 INSERT INTO `marc_subfield_structure` VALUES ('511', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5771 INSERT INTO `marc_subfield_structure` VALUES ('511', 'a', 'Participant or performer note', 'Participant or performer note', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5772 INSERT INTO `marc_subfield_structure` VALUES ('512', '6', 'Linkage', 'Linkage', 0, 0, '', -1, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5773 INSERT INTO `marc_subfield_structure` VALUES ('512', 'a', 'Earlier or later volumes separately cataloged note', 'Earlier or later volumes separately cataloged note', 0, 0, '', -1, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5774 INSERT INTO `marc_subfield_structure` VALUES ('513', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5775 INSERT INTO `marc_subfield_structure` VALUES ('513', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5776 INSERT INTO `marc_subfield_structure` VALUES ('513', 'a', 'Type of report', 'Type of report', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5777 INSERT INTO `marc_subfield_structure` VALUES ('513', 'b', 'Period covered', 'Period covered', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5778 INSERT INTO `marc_subfield_structure` VALUES ('514', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5779 INSERT INTO `marc_subfield_structure` VALUES ('514', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5780 INSERT INTO `marc_subfield_structure` VALUES ('514', 'a', 'Attribute accuracy report', 'Attribute accuracy report', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5781 INSERT INTO `marc_subfield_structure` VALUES ('514', 'b', 'Attribute accuracy value', 'Attribute accuracy value', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5782 INSERT INTO `marc_subfield_structure` VALUES ('514', 'c', 'Attribute accuracy explanation', 'Attribute accuracy explanation', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5783 INSERT INTO `marc_subfield_structure` VALUES ('514', 'd', 'Logical consistency report', 'Logical consistency report', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5784 INSERT INTO `marc_subfield_structure` VALUES ('514', 'e', 'Completeness report', 'Completeness report', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5785 INSERT INTO `marc_subfield_structure` VALUES ('514', 'f', 'Horizontal position accuracy report', 'Horizontal position accuracy report', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5786 INSERT INTO `marc_subfield_structure` VALUES ('514', 'g', 'Horizontal position accuracy value', 'Horizontal position accuracy value', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5787 INSERT INTO `marc_subfield_structure` VALUES ('514', 'h', 'Horizontal position accuracy explanation', 'Horizontal position accuracy explanation', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5788 INSERT INTO `marc_subfield_structure` VALUES ('514', 'i', 'Vertical positional accuracy report', 'Vertical positional accuracy report', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5789 INSERT INTO `marc_subfield_structure` VALUES ('514', 'j', 'Vertical positional accuracy value', 'Vertical positional accuracy value', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5790 INSERT INTO `marc_subfield_structure` VALUES ('514', 'k', 'Vertical positional accuracy explanation', 'Vertical positional accuracy explanation', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5791 INSERT INTO `marc_subfield_structure` VALUES ('514', 'm', 'Cloud cover', 'Cloud cover', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5792 INSERT INTO `marc_subfield_structure` VALUES ('514', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -6, 'ASMP_BOOKS', '', '');
5793 INSERT INTO `marc_subfield_structure` VALUES ('514', 'z', 'Display note', 'Display note', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5794 INSERT INTO `marc_subfield_structure` VALUES ('515', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5795 INSERT INTO `marc_subfield_structure` VALUES ('515', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5796 INSERT INTO `marc_subfield_structure` VALUES ('515', 'a', 'Numbering peculiarities note', 'Numbering peculiarities note', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5797 INSERT INTO `marc_subfield_structure` VALUES ('515', 'z', 'Source of note information (SE) [OBSOLETE]', 'Source of note information (SE) [OBSOLETE]', 0, 0, '', -1, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5798 INSERT INTO `marc_subfield_structure` VALUES ('516', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5799 INSERT INTO `marc_subfield_structure` VALUES ('516', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5800 INSERT INTO `marc_subfield_structure` VALUES ('516', 'a', 'Type of computer file or data note', 'Type of computer file or data note', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5801 INSERT INTO `marc_subfield_structure` VALUES ('517', 'a', 'Different formats', 'Different formats', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5802 INSERT INTO `marc_subfield_structure` VALUES ('517', 'b', 'Content descriptors', 'Content descriptors', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5803 INSERT INTO `marc_subfield_structure` VALUES ('517', 'c', 'Additional animation techniques', 'Additional animation techniques', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5804 INSERT INTO `marc_subfield_structure` VALUES ('518', '3', 'Materials specified', 'Materials specified', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5805 INSERT INTO `marc_subfield_structure` VALUES ('518', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5806 INSERT INTO `marc_subfield_structure` VALUES ('518', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5807 INSERT INTO `marc_subfield_structure` VALUES ('518', 'a', 'Date/time and place of an event note', 'Date/time and place of an event note', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5808 INSERT INTO `marc_subfield_structure` VALUES ('520', '3', 'Materials specified', 'Materials specified', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5809 INSERT INTO `marc_subfield_structure` VALUES ('520', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5810 INSERT INTO `marc_subfield_structure` VALUES ('520', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5811 INSERT INTO `marc_subfield_structure` VALUES ('520', 'a', 'Summary, etc', 'Summary, etc', 0, 0, 'biblio.abstract', 5, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
5812 INSERT INTO `marc_subfield_structure` VALUES ('520', 'b', 'Expansion of summary note', 'Expansion of summary note', 0, 0, '', 5, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
5813 INSERT INTO `marc_subfield_structure` VALUES ('520', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -1, 'ASMP_BOOKS', '', '');
5814 INSERT INTO `marc_subfield_structure` VALUES ('520', 'z', 'Source of note information [OBSOLETE]', 'Source of note information [OBSOLETE]', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5815 INSERT INTO `marc_subfield_structure` VALUES ('521', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5816 INSERT INTO `marc_subfield_structure` VALUES ('521', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5817 INSERT INTO `marc_subfield_structure` VALUES ('521', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5818 INSERT INTO `marc_subfield_structure` VALUES ('521', 'a', 'Target audience note', 'Target audience note', 1, 0, NULL, 5, NULL, NULL, '', NULL, 0, 'ASMP_BOOKS', '', '');
5819 INSERT INTO `marc_subfield_structure` VALUES ('521', 'b', 'Source', 'Source', 0, 0, NULL, 5, NULL, NULL, '', NULL, 0, 'ASMP_BOOKS', '', '');
5820 INSERT INTO `marc_subfield_structure` VALUES ('522', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5821 INSERT INTO `marc_subfield_structure` VALUES ('522', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5822 INSERT INTO `marc_subfield_structure` VALUES ('522', 'a', 'Geographic coverage note', 'Geographic coverage note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -1, 'ASMP_BOOKS', '', '');
5823 INSERT INTO `marc_subfield_structure` VALUES ('523', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5824 INSERT INTO `marc_subfield_structure` VALUES ('523', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5825 INSERT INTO `marc_subfield_structure` VALUES ('523', 'a', 'Time period of content note', 'Time period of content note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5826 INSERT INTO `marc_subfield_structure` VALUES ('524', '2', 'Source of schema used', 'Source of schema used', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5827 INSERT INTO `marc_subfield_structure` VALUES ('524', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5828 INSERT INTO `marc_subfield_structure` VALUES ('524', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5829 INSERT INTO `marc_subfield_structure` VALUES ('524', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5830 INSERT INTO `marc_subfield_structure` VALUES ('524', 'a', 'Preferred citation of described materials note', 'Preferred citation of described materials note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5831 INSERT INTO `marc_subfield_structure` VALUES ('525', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5832 INSERT INTO `marc_subfield_structure` VALUES ('525', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5833 INSERT INTO `marc_subfield_structure` VALUES ('525', 'a', 'Supplement note', 'Supplement note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5834 INSERT INTO `marc_subfield_structure` VALUES ('525', 'z', 'Source of note information (SE) [OBSOLETE]', 'Source of note information (SE) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5835 INSERT INTO `marc_subfield_structure` VALUES ('526', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5836 INSERT INTO `marc_subfield_structure` VALUES ('526', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5837 INSERT INTO `marc_subfield_structure` VALUES ('526', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5838 INSERT INTO `marc_subfield_structure` VALUES ('526', 'a', 'Program name', 'Program name', 0, 0, '', 5, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
5839 INSERT INTO `marc_subfield_structure` VALUES ('526', 'b', 'Interest level', 'Interest level', 0, 0, '', 5, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
5840 INSERT INTO `marc_subfield_structure` VALUES ('526', 'c', 'Reading level', 'Reading level', 0, 0, '', 5, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
5841 INSERT INTO `marc_subfield_structure` VALUES ('526', 'd', 'Title point value', 'Title point value', 0, 0, '', 5, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
5842 INSERT INTO `marc_subfield_structure` VALUES ('526', 'i', 'Display text', 'Display text', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5843 INSERT INTO `marc_subfield_structure` VALUES ('526', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 5, '', '', '', NULL, 6, 'ASMP_BOOKS', '', '');
5844 INSERT INTO `marc_subfield_structure` VALUES ('526', 'z', 'Public note', 'Public note', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5845 INSERT INTO `marc_subfield_structure` VALUES ('527', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5846 INSERT INTO `marc_subfield_structure` VALUES ('527', 'a', 'Censorship note', 'Censorship note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5847 INSERT INTO `marc_subfield_structure` VALUES ('530', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5848 INSERT INTO `marc_subfield_structure` VALUES ('530', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5849 INSERT INTO `marc_subfield_structure` VALUES ('530', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5850 INSERT INTO `marc_subfield_structure` VALUES ('530', 'a', 'Additional physical form available note', 'Additional physical form available note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5851 INSERT INTO `marc_subfield_structure` VALUES ('530', 'b', 'Availability source', 'Availability source', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5852 INSERT INTO `marc_subfield_structure` VALUES ('530', 'c', 'Availability conditions', 'Availability conditions', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5853 INSERT INTO `marc_subfield_structure` VALUES ('530', 'd', 'Order number', 'Order number', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5854 INSERT INTO `marc_subfield_structure` VALUES ('530', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, NULL, 5, NULL, NULL, '', 1, -6, 'ASMP_BOOKS', '', '');
5855 INSERT INTO `marc_subfield_structure` VALUES ('530', 'z', 'Source of note information (AM CF VM SE) [OBSOLETE]', 'Source of note information (AM CF VM SE) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5856 INSERT INTO `marc_subfield_structure` VALUES ('533', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5857 INSERT INTO `marc_subfield_structure` VALUES ('533', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5858 INSERT INTO `marc_subfield_structure` VALUES ('533', '7', 'Fixed-length data elements of reproduction', 'Fixed-length data elements of reproduction', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5859 INSERT INTO `marc_subfield_structure` VALUES ('533', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5860 INSERT INTO `marc_subfield_structure` VALUES ('533', 'a', 'Type of reproduction', 'Type of reproduction', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5861 INSERT INTO `marc_subfield_structure` VALUES ('533', 'b', 'Place of reproduction', 'Place of reproduction', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5862 INSERT INTO `marc_subfield_structure` VALUES ('533', 'c', 'Agency responsible for reproduction', 'Agency responsible for reproduction', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5863 INSERT INTO `marc_subfield_structure` VALUES ('533', 'd', 'Date of reproduction', 'Date of reproduction', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5864 INSERT INTO `marc_subfield_structure` VALUES ('533', 'e', 'Physical description of reproduction', 'Physical description of reproduction', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5865 INSERT INTO `marc_subfield_structure` VALUES ('533', 'f', 'Series statement of reproduction', 'Series statement of reproduction', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5866 INSERT INTO `marc_subfield_structure` VALUES ('533', 'm', 'Dates and/or sequential designation of issues reproduced', 'Dates and/or sequential designation of issues reproduced', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5867 INSERT INTO `marc_subfield_structure` VALUES ('533', 'n', 'Note about reproduction', 'Note about reproduction', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5868 INSERT INTO `marc_subfield_structure` VALUES ('534', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5869 INSERT INTO `marc_subfield_structure` VALUES ('534', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5870 INSERT INTO `marc_subfield_structure` VALUES ('534', 'a', 'Main entry of original', 'Main entry of original', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5871 INSERT INTO `marc_subfield_structure` VALUES ('534', 'b', 'Edition statement of original', 'Edition statement of original', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5872 INSERT INTO `marc_subfield_structure` VALUES ('534', 'c', 'Publication, distribution, etc', 'Publication, distribution, etc', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5873 INSERT INTO `marc_subfield_structure` VALUES ('534', 'e', 'Physical description, etc', 'Physical description, etc', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5874 INSERT INTO `marc_subfield_structure` VALUES ('534', 'f', 'Series statement of original', 'Series statement of original', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5875 INSERT INTO `marc_subfield_structure` VALUES ('534', 'k', 'Key title of original', 'Key title of original', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5876 INSERT INTO `marc_subfield_structure` VALUES ('534', 'l', 'Location of original', 'Location of original', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5877 INSERT INTO `marc_subfield_structure` VALUES ('534', 'm', 'Material specific details', 'Material specific details', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5878 INSERT INTO `marc_subfield_structure` VALUES ('534', 'n', 'Note about original', 'Note about original', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5879 INSERT INTO `marc_subfield_structure` VALUES ('534', 'p', 'Introductory phrase', 'Introductory phrase', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5880 INSERT INTO `marc_subfield_structure` VALUES ('534', 't', 'Title statement of original', 'Title statement of original', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5881 INSERT INTO `marc_subfield_structure` VALUES ('534', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5882 INSERT INTO `marc_subfield_structure` VALUES ('534', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5883 INSERT INTO `marc_subfield_structure` VALUES ('535', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5884 INSERT INTO `marc_subfield_structure` VALUES ('535', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5885 INSERT INTO `marc_subfield_structure` VALUES ('535', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5886 INSERT INTO `marc_subfield_structure` VALUES ('535', 'a', 'Custodian', 'Custodian', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5887 INSERT INTO `marc_subfield_structure` VALUES ('535', 'b', 'Postal address', 'Postal address', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5888 INSERT INTO `marc_subfield_structure` VALUES ('535', 'c', 'Country', 'Country', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5889 INSERT INTO `marc_subfield_structure` VALUES ('535', 'd', 'Telecommunications address', 'Telecommunications address', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5890 INSERT INTO `marc_subfield_structure` VALUES ('535', 'g', 'Repository location code', 'Repository location code', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5891 INSERT INTO `marc_subfield_structure` VALUES ('536', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5892 INSERT INTO `marc_subfield_structure` VALUES ('536', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5893 INSERT INTO `marc_subfield_structure` VALUES ('536', 'a', 'Text of note', 'Text of note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5894 INSERT INTO `marc_subfield_structure` VALUES ('536', 'b', 'Contract number', 'Contract number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5895 INSERT INTO `marc_subfield_structure` VALUES ('536', 'c', 'Grant number', 'Grant number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5896 INSERT INTO `marc_subfield_structure` VALUES ('536', 'd', 'Undifferentiated number', 'Undifferentiated number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5897 INSERT INTO `marc_subfield_structure` VALUES ('536', 'e', 'Program element number', 'Program element number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5898 INSERT INTO `marc_subfield_structure` VALUES ('536', 'f', 'Project number', 'Project number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5899 INSERT INTO `marc_subfield_structure` VALUES ('536', 'g', 'Task number', 'Task number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5900 INSERT INTO `marc_subfield_structure` VALUES ('536', 'h', 'Work unit number', 'Work unit number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5901 INSERT INTO `marc_subfield_structure` VALUES ('537', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5902 INSERT INTO `marc_subfield_structure` VALUES ('537', 'a', 'Source of data note', 'Source of data note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5903 INSERT INTO `marc_subfield_structure` VALUES ('538', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5904 INSERT INTO `marc_subfield_structure` VALUES ('538', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5905 INSERT INTO `marc_subfield_structure` VALUES ('538', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5906 INSERT INTO `marc_subfield_structure` VALUES ('538', 'a', 'System details note', 'System details note', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5907 INSERT INTO `marc_subfield_structure` VALUES ('538', 'i', 'Display text', 'Display text', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5908 INSERT INTO `marc_subfield_structure` VALUES ('538', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -6, 'ASMP_BOOKS', '', '');
5909 INSERT INTO `marc_subfield_structure` VALUES ('540', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5910 INSERT INTO `marc_subfield_structure` VALUES ('540', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5911 INSERT INTO `marc_subfield_structure` VALUES ('540', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5912 INSERT INTO `marc_subfield_structure` VALUES ('540', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5913 INSERT INTO `marc_subfield_structure` VALUES ('540', 'a', 'Terms governing use and reproduction', 'Terms governing use and reproduction', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5914 INSERT INTO `marc_subfield_structure` VALUES ('540', 'b', 'Jurisdiction', 'Jurisdiction', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5915 INSERT INTO `marc_subfield_structure` VALUES ('540', 'c', 'Authorization', 'Authorization', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5916 INSERT INTO `marc_subfield_structure` VALUES ('540', 'd', 'Authorized users', 'Authorized users', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5917 INSERT INTO `marc_subfield_structure` VALUES ('540', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -6, 'ASMP_BOOKS', '', '');
5918 INSERT INTO `marc_subfield_structure` VALUES ('541', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5919 INSERT INTO `marc_subfield_structure` VALUES ('541', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5920 INSERT INTO `marc_subfield_structure` VALUES ('541', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5921 INSERT INTO `marc_subfield_structure` VALUES ('541', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5922 INSERT INTO `marc_subfield_structure` VALUES ('541', 'a', 'Source of acquisition', 'Source of acquisition', 0, 0, '', 9, '', '', '', NULL, 1, 'ASMP_BOOKS', '', '');
5923 INSERT INTO `marc_subfield_structure` VALUES ('541', 'b', 'Address', 'Address', 0, 0, '', 9, '', '', '', NULL, 1, 'ASMP_BOOKS', '', '');
5924 INSERT INTO `marc_subfield_structure` VALUES ('541', 'c', 'Method of acquisition', 'Method of acquisition', 0, 0, '', 9, '', '', '', NULL, 1, 'ASMP_BOOKS', '', '');
5925 INSERT INTO `marc_subfield_structure` VALUES ('541', 'd', 'Date of acquisition', 'Date of acquisition', 0, 0, '', 9, '', '', '', NULL, 1, 'ASMP_BOOKS', '', '');
5926 INSERT INTO `marc_subfield_structure` VALUES ('541', 'e', 'Accession number', 'Accession number', 0, 0, '', 9, '', '', '', NULL, 1, 'ASMP_BOOKS', '', '');
5927 INSERT INTO `marc_subfield_structure` VALUES ('541', 'f', 'Owner', 'Owner', 0, 0, '', 9, '', '', '', NULL, 1, 'ASMP_BOOKS', '', '');
5928 INSERT INTO `marc_subfield_structure` VALUES ('541', 'h', 'Purchase price', 'Purchase price', 0, 0, '', 9, '', '', '', NULL, 1, 'ASMP_BOOKS', '', '');
5929 INSERT INTO `marc_subfield_structure` VALUES ('541', 'n', 'Extent', 'Extent', 0, 0, '', 9, '', '', '', NULL, 1, 'ASMP_BOOKS', '', '');
5930 INSERT INTO `marc_subfield_structure` VALUES ('541', 'o', 'Type of unit', 'Type of unit', 1, 0, '', 9, '', '', '', NULL, 1, 'ASMP_BOOKS', '', '');
5931 INSERT INTO `marc_subfield_structure` VALUES ('543', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5932 INSERT INTO `marc_subfield_structure` VALUES ('543', 'a', 'Solicitation information note', 'Solicitation information note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5933 INSERT INTO `marc_subfield_structure` VALUES ('544', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5934 INSERT INTO `marc_subfield_structure` VALUES ('544', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5935 INSERT INTO `marc_subfield_structure` VALUES ('544', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5936 INSERT INTO `marc_subfield_structure` VALUES ('544', 'a', 'Custodian', 'Custodian', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5937 INSERT INTO `marc_subfield_structure` VALUES ('544', 'b', 'Address', 'Address', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5938 INSERT INTO `marc_subfield_structure` VALUES ('544', 'c', 'Country', 'Country', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5939 INSERT INTO `marc_subfield_structure` VALUES ('544', 'd', 'Title', 'Title', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5940 INSERT INTO `marc_subfield_structure` VALUES ('544', 'e', 'Provenance', 'Provenance', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5941 INSERT INTO `marc_subfield_structure` VALUES ('544', 'n', 'Note', 'Note', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5942 INSERT INTO `marc_subfield_structure` VALUES ('545', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5943 INSERT INTO `marc_subfield_structure` VALUES ('545', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5944 INSERT INTO `marc_subfield_structure` VALUES ('545', 'a', 'Biographical or historical note', 'Biographical or historical note', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5945 INSERT INTO `marc_subfield_structure` VALUES ('545', 'b', 'Expansion', 'Expansion', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5946 INSERT INTO `marc_subfield_structure` VALUES ('545', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -6, 'ASMP_BOOKS', '', '');
5947 INSERT INTO `marc_subfield_structure` VALUES ('546', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5948 INSERT INTO `marc_subfield_structure` VALUES ('546', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5949 INSERT INTO `marc_subfield_structure` VALUES ('546', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5950 INSERT INTO `marc_subfield_structure` VALUES ('546', 'a', 'Language note', 'Language note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -1, 'ASMP_BOOKS', '', '');
5951 INSERT INTO `marc_subfield_structure` VALUES ('546', 'b', 'Information code or alphabet', 'Information code or alphabet', 1, 0, NULL, 5, NULL, NULL, '', NULL, -1, 'ASMP_BOOKS', '', '');
5952 INSERT INTO `marc_subfield_structure` VALUES ('546', 'z', 'Source of note information (SE) [OBSOLETE]', 'Source of note information (SE) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5953 INSERT INTO `marc_subfield_structure` VALUES ('547', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5954 INSERT INTO `marc_subfield_structure` VALUES ('547', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5955 INSERT INTO `marc_subfield_structure` VALUES ('547', 'a', 'Former title complexity note', 'Former title complexity note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5956 INSERT INTO `marc_subfield_structure` VALUES ('547', 'z', 'Source of note information (SE) [OBSOLETE]', 'Source of note information (SE) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5957 INSERT INTO `marc_subfield_structure` VALUES ('550', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5958 INSERT INTO `marc_subfield_structure` VALUES ('550', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5959 INSERT INTO `marc_subfield_structure` VALUES ('550', 'a', 'Issuing body note', 'Issuing body note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5960 INSERT INTO `marc_subfield_structure` VALUES ('550', 'z', 'Source of note information (SE) [OBSOLETE]', 'Source of note information (SE) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5961 INSERT INTO `marc_subfield_structure` VALUES ('552', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5962 INSERT INTO `marc_subfield_structure` VALUES ('552', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5963 INSERT INTO `marc_subfield_structure` VALUES ('552', 'a', 'Entity type label', 'Entity type label', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5964 INSERT INTO `marc_subfield_structure` VALUES ('552', 'b', 'Entity type definition and source', 'Entity type definition and source', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5965 INSERT INTO `marc_subfield_structure` VALUES ('552', 'c', 'Attribute label', 'Attribute label', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5966 INSERT INTO `marc_subfield_structure` VALUES ('552', 'd', 'Attribute definition and source', 'Attribute definition and source', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5967 INSERT INTO `marc_subfield_structure` VALUES ('552', 'e', 'Enumerated domain value', 'Enumerated domain value', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5968 INSERT INTO `marc_subfield_structure` VALUES ('552', 'f', 'Enumerated domain value definition and source', 'Enumerated domain value definition and source', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5969 INSERT INTO `marc_subfield_structure` VALUES ('552', 'g', 'Range domain minimum and maximum', 'Range domain minimum and maximum', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5970 INSERT INTO `marc_subfield_structure` VALUES ('552', 'h', 'Codeset name and source', 'Codeset name and source', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5971 INSERT INTO `marc_subfield_structure` VALUES ('552', 'i', 'Unrepresentable domain', 'Unrepresentable domain', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5972 INSERT INTO `marc_subfield_structure` VALUES ('552', 'j', 'Attribute units of measurement and resolution', 'Attribute units of measurement and resolution', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5973 INSERT INTO `marc_subfield_structure` VALUES ('552', 'k', 'Beginning date and ending date of attribute values', 'Beginning date and ending date of attribute values', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5974 INSERT INTO `marc_subfield_structure` VALUES ('552', 'l', 'Attribute value accuracy', 'Attribute value accuracy', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5975 INSERT INTO `marc_subfield_structure` VALUES ('552', 'm', 'Attribute value accuracy explanation', 'Attribute value accuracy explanation', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5976 INSERT INTO `marc_subfield_structure` VALUES ('552', 'n', 'Attribute measurement frequency', 'Attribute measurement frequency', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5977 INSERT INTO `marc_subfield_structure` VALUES ('552', 'o', 'Entity and attribute overview', 'Entity and attribute overview', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5978 INSERT INTO `marc_subfield_structure` VALUES ('552', 'p', 'Entity and attribute detail citation', 'Entity and attribute detail citation', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5979 INSERT INTO `marc_subfield_structure` VALUES ('552', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -6, 'ASMP_BOOKS', '', '');
5980 INSERT INTO `marc_subfield_structure` VALUES ('552', 'z', 'Display note', 'Display note', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5981 INSERT INTO `marc_subfield_structure` VALUES ('555', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5982 INSERT INTO `marc_subfield_structure` VALUES ('555', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5983 INSERT INTO `marc_subfield_structure` VALUES ('555', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5984 INSERT INTO `marc_subfield_structure` VALUES ('555', 'a', 'Cumulative index/finding aids note', 'Cumulative index/finding aids note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5985 INSERT INTO `marc_subfield_structure` VALUES ('555', 'b', 'Availability source', 'Availability source', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5986 INSERT INTO `marc_subfield_structure` VALUES ('555', 'c', 'Degree of control', 'Degree of control', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5987 INSERT INTO `marc_subfield_structure` VALUES ('555', 'd', 'Bibliographic reference', 'Bibliographic reference', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5988 INSERT INTO `marc_subfield_structure` VALUES ('555', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, NULL, 5, NULL, NULL, '', 1, -6, 'ASMP_BOOKS', '', '');
5989 INSERT INTO `marc_subfield_structure` VALUES ('556', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5990 INSERT INTO `marc_subfield_structure` VALUES ('556', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5991 INSERT INTO `marc_subfield_structure` VALUES ('556', 'a', 'Information about documentation note', 'Information about documentation note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5992 INSERT INTO `marc_subfield_structure` VALUES ('556', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5993 INSERT INTO `marc_subfield_structure` VALUES ('561', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
5994 INSERT INTO `marc_subfield_structure` VALUES ('561', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5995 INSERT INTO `marc_subfield_structure` VALUES ('561', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5996 INSERT INTO `marc_subfield_structure` VALUES ('561', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
5997 INSERT INTO `marc_subfield_structure` VALUES ('561', 'a', 'History', 'History', 0, 0, '', 5, '', '', '', NULL, 6, 'ASMP_BOOKS', '', '');
5998 INSERT INTO `marc_subfield_structure` VALUES ('561', 'b', 'Time of collation [OBSOLETE]', 'Time of collation [OBSOLETE]', 0, 0, '', 5, '', '', '', NULL, 6, 'ASMP_BOOKS', '', '');
5999 INSERT INTO `marc_subfield_structure` VALUES ('562', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6000 INSERT INTO `marc_subfield_structure` VALUES ('562', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, NULL, -1, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6001 INSERT INTO `marc_subfield_structure` VALUES ('562', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6002 INSERT INTO `marc_subfield_structure` VALUES ('562', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6003 INSERT INTO `marc_subfield_structure` VALUES ('562', 'a', 'Identifying markings', 'Identifying markings', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6004 INSERT INTO `marc_subfield_structure` VALUES ('562', 'b', 'Copy identification', 'Copy identification', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6005 INSERT INTO `marc_subfield_structure` VALUES ('562', 'c', 'Version identification', 'Version identification', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6006 INSERT INTO `marc_subfield_structure` VALUES ('562', 'd', 'Presentation format', 'Presentation format', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6007 INSERT INTO `marc_subfield_structure` VALUES ('562', 'e', 'Number of copies', 'Number of copies', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6008 INSERT INTO `marc_subfield_structure` VALUES ('563', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6009 INSERT INTO `marc_subfield_structure` VALUES ('563', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, NULL, -1, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6010 INSERT INTO `marc_subfield_structure` VALUES ('563', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6011 INSERT INTO `marc_subfield_structure` VALUES ('563', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6012 INSERT INTO `marc_subfield_structure` VALUES ('563', 'a', 'Binding note', 'Binding note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6013 INSERT INTO `marc_subfield_structure` VALUES ('563', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, NULL, 5, NULL, NULL, '', 1, -6, 'ASMP_BOOKS', '', '');
6014 INSERT INTO `marc_subfield_structure` VALUES ('565', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6015 INSERT INTO `marc_subfield_structure` VALUES ('565', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6016 INSERT INTO `marc_subfield_structure` VALUES ('565', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6017 INSERT INTO `marc_subfield_structure` VALUES ('565', 'a', 'Number of cases/variables', 'Number of cases/variables', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6018 INSERT INTO `marc_subfield_structure` VALUES ('565', 'b', 'Name of variable', 'Name of variable', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6019 INSERT INTO `marc_subfield_structure` VALUES ('565', 'c', 'Unit of analysis', 'Unit of analysis', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6020 INSERT INTO `marc_subfield_structure` VALUES ('565', 'd', 'Universe of data', 'Universe of data', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6021 INSERT INTO `marc_subfield_structure` VALUES ('565', 'e', 'Filing scheme or code', 'Filing scheme or code', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6022 INSERT INTO `marc_subfield_structure` VALUES ('567', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6023 INSERT INTO `marc_subfield_structure` VALUES ('567', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6024 INSERT INTO `marc_subfield_structure` VALUES ('567', 'a', 'Methodology note', 'Methodology note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6025 INSERT INTO `marc_subfield_structure` VALUES ('570', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6026 INSERT INTO `marc_subfield_structure` VALUES ('570', 'a', 'Editor note', 'Editor note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6027 INSERT INTO `marc_subfield_structure` VALUES ('570', 'z', 'Source of note information', 'Source of note information', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6028 INSERT INTO `marc_subfield_structure` VALUES ('580', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6029 INSERT INTO `marc_subfield_structure` VALUES ('580', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6030 INSERT INTO `marc_subfield_structure` VALUES ('580', 'a', 'Linking entry complexity note', 'Linking entry complexity note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6031 INSERT INTO `marc_subfield_structure` VALUES ('580', 'z', 'Source of note information [OBSOLETE]', 'Source of note information [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6032 INSERT INTO `marc_subfield_structure` VALUES ('581', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6033 INSERT INTO `marc_subfield_structure` VALUES ('581', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6034 INSERT INTO `marc_subfield_structure` VALUES ('581', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6035 INSERT INTO `marc_subfield_structure` VALUES ('581', 'a', 'Publications about described materials note', 'Publications about described materials note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6036 INSERT INTO `marc_subfield_structure` VALUES ('581', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6037 INSERT INTO `marc_subfield_structure` VALUES ('582', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6038 INSERT INTO `marc_subfield_structure` VALUES ('582', 'a', 'Related computer files note', 'Related computer files note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6039 INSERT INTO `marc_subfield_structure` VALUES ('583', '2', 'Source of term', 'Source of term', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6040 INSERT INTO `marc_subfield_structure` VALUES ('583', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6041 INSERT INTO `marc_subfield_structure` VALUES ('583', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6042 INSERT INTO `marc_subfield_structure` VALUES ('583', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6043 INSERT INTO `marc_subfield_structure` VALUES ('583', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6044 INSERT INTO `marc_subfield_structure` VALUES ('583', 'a', 'Action', 'Action', 0, 0, '', 9, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
6045 INSERT INTO `marc_subfield_structure` VALUES ('583', 'b', 'Action identification', 'Action identification', 1, 0, '', 9, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
6046 INSERT INTO `marc_subfield_structure` VALUES ('583', 'c', 'Time/date of action', 'Time/date of action', 1, 0, '', 9, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
6047 INSERT INTO `marc_subfield_structure` VALUES ('583', 'd', 'Action interval', 'Action interval', 1, 0, '', 9, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
6048 INSERT INTO `marc_subfield_structure` VALUES ('583', 'e', 'Contingency for action', 'Contingency for action', 1, 0, '', 9, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
6049 INSERT INTO `marc_subfield_structure` VALUES ('583', 'f', 'Authorization', 'Authorization', 1, 0, '', 9, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
6050 INSERT INTO `marc_subfield_structure` VALUES ('583', 'h', 'Jurisdiction', 'Jurisdiction', 0, 0, '', 9, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
6051 INSERT INTO `marc_subfield_structure` VALUES ('583', 'i', 'Method of action', 'Method of action', 1, 0, '', 9, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
6052 INSERT INTO `marc_subfield_structure` VALUES ('583', 'j', 'Site of action', 'Site of action', 1, 0, '', 9, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
6053 INSERT INTO `marc_subfield_structure` VALUES ('583', 'k', 'Action agent', 'Action agent', 1, 0, '', 9, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
6054 INSERT INTO `marc_subfield_structure` VALUES ('583', 'l', 'Status', 'Status', 1, 0, '', 9, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
6055 INSERT INTO `marc_subfield_structure` VALUES ('583', 'n', 'Extent', 'Extent', 1, 0, '', 9, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
6056 INSERT INTO `marc_subfield_structure` VALUES ('583', 'o', 'Type of unit', 'Type of unit', 1, 0, '', 9, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
6057 INSERT INTO `marc_subfield_structure` VALUES ('583', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 9, '', '', '', 1, -1, 'ASMP_BOOKS', '', '');
6058 INSERT INTO `marc_subfield_structure` VALUES ('583', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 9, '', '', '', NULL, 4, 'ASMP_BOOKS', '', '');
6059 INSERT INTO `marc_subfield_structure` VALUES ('583', 'z', 'Public note', 'Public note', 1, 0, '', 9, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
6060 INSERT INTO `marc_subfield_structure` VALUES ('584', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6061 INSERT INTO `marc_subfield_structure` VALUES ('584', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6062 INSERT INTO `marc_subfield_structure` VALUES ('584', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6063 INSERT INTO `marc_subfield_structure` VALUES ('584', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6064 INSERT INTO `marc_subfield_structure` VALUES ('584', 'a', 'Accumulation', 'Accumulation', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6065 INSERT INTO `marc_subfield_structure` VALUES ('584', 'b', 'Frequency of use', 'Frequency of use', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6066 INSERT INTO `marc_subfield_structure` VALUES ('585', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6067 INSERT INTO `marc_subfield_structure` VALUES ('585', '5', 'Institution to which field applies', 'Institution to which field applies', 0, -6, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6068 INSERT INTO `marc_subfield_structure` VALUES ('585', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6069 INSERT INTO `marc_subfield_structure` VALUES ('585', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6070 INSERT INTO `marc_subfield_structure` VALUES ('585', 'a', 'Exhibitions note', 'Exhibitions note', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6071 INSERT INTO `marc_subfield_structure` VALUES ('586', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6072 INSERT INTO `marc_subfield_structure` VALUES ('586', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6073 INSERT INTO `marc_subfield_structure` VALUES ('586', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6074 INSERT INTO `marc_subfield_structure` VALUES ('586', 'a', 'Awards note', 'Awards note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -1, 'ASMP_BOOKS', '', '');
6075 INSERT INTO `marc_subfield_structure` VALUES ('590', '6', 'Linkage (RLIN)', 'Linkage (RLIN)', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6076 INSERT INTO `marc_subfield_structure` VALUES ('590', '8', 'Field link and sequence number (RLIN)', 'Field link and sequence number (RLIN)', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6077 INSERT INTO `marc_subfield_structure` VALUES ('590', 'a', 'Local note', 'Local note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6078 INSERT INTO `marc_subfield_structure` VALUES ('590', 'b', 'Provenance (VM) [OBSOLETE]', 'Provenance (VM) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6079 INSERT INTO `marc_subfield_structure` VALUES ('590', 'c', 'Condition of individual reels (VM) [OBSOLETE]', 'Condition of individual reels (VM) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6080 INSERT INTO `marc_subfield_structure` VALUES ('590', 'd', 'Origin of safety copy (VM) [OBSOLETE]', 'Origin of safety copy (VM) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6081 INSERT INTO `marc_subfield_structure` VALUES ('600', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
6082 INSERT INTO `marc_subfield_structure` VALUES ('600', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6083 INSERT INTO `marc_subfield_structure` VALUES ('600', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6084 INSERT INTO `marc_subfield_structure` VALUES ('600', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6085 INSERT INTO `marc_subfield_structure` VALUES ('600', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6086 INSERT INTO `marc_subfield_structure` VALUES ('600', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'ASMP_BOOKS', '', '');
6087 INSERT INTO `marc_subfield_structure` VALUES ('600', 'a', 'Personal name', 'Personal name', 0, 0, '', 6, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
6088 INSERT INTO `marc_subfield_structure` VALUES ('600', 'b', 'Numeration', 'Numeration', 0, 0, '', 6, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
6089 INSERT INTO `marc_subfield_structure` VALUES ('600', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
6090 INSERT INTO `marc_subfield_structure` VALUES ('600', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 6, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
6091 INSERT INTO `marc_subfield_structure` VALUES ('600', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6092 INSERT INTO `marc_subfield_structure` VALUES ('600', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6093 INSERT INTO `marc_subfield_structure` VALUES ('600', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6094 INSERT INTO `marc_subfield_structure` VALUES ('600', 'h', 'Medium', 'Medium', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6095 INSERT INTO `marc_subfield_structure` VALUES ('600', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6096 INSERT INTO `marc_subfield_structure` VALUES ('600', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6097 INSERT INTO `marc_subfield_structure` VALUES ('600', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6098 INSERT INTO `marc_subfield_structure` VALUES ('600', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6099 INSERT INTO `marc_subfield_structure` VALUES ('600', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6100 INSERT INTO `marc_subfield_structure` VALUES ('600', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6101 INSERT INTO `marc_subfield_structure` VALUES ('600', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6102 INSERT INTO `marc_subfield_structure` VALUES ('600', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 6, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
6103 INSERT INTO `marc_subfield_structure` VALUES ('600', 'r', 'Key for music', 'Key for music', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6104 INSERT INTO `marc_subfield_structure` VALUES ('600', 's', 'Version', 'Version', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6105 INSERT INTO `marc_subfield_structure` VALUES ('600', 't', 'Title of a work', 'Title of a work', 0, 0, '', 6, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
6106 INSERT INTO `marc_subfield_structure` VALUES ('600', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6107 INSERT INTO `marc_subfield_structure` VALUES ('600', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
6108 INSERT INTO `marc_subfield_structure` VALUES ('600', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
6109 INSERT INTO `marc_subfield_structure` VALUES ('600', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
6110 INSERT INTO `marc_subfield_structure` VALUES ('600', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
6111 INSERT INTO `marc_subfield_structure` VALUES ('610', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
6112 INSERT INTO `marc_subfield_structure` VALUES ('610', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6113 INSERT INTO `marc_subfield_structure` VALUES ('610', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6114 INSERT INTO `marc_subfield_structure` VALUES ('610', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6115 INSERT INTO `marc_subfield_structure` VALUES ('610', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6116 INSERT INTO `marc_subfield_structure` VALUES ('610', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'ASMP_BOOKS', '', '');
6117 INSERT INTO `marc_subfield_structure` VALUES ('610', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 6, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
6118 INSERT INTO `marc_subfield_structure` VALUES ('610', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
6119 INSERT INTO `marc_subfield_structure` VALUES ('610', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 6, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
6120 INSERT INTO `marc_subfield_structure` VALUES ('610', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
6121 INSERT INTO `marc_subfield_structure` VALUES ('610', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6122 INSERT INTO `marc_subfield_structure` VALUES ('610', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6123 INSERT INTO `marc_subfield_structure` VALUES ('610', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6124 INSERT INTO `marc_subfield_structure` VALUES ('610', 'h', 'Medium', 'Medium', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6125 INSERT INTO `marc_subfield_structure` VALUES ('610', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6126 INSERT INTO `marc_subfield_structure` VALUES ('610', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6127 INSERT INTO `marc_subfield_structure` VALUES ('610', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6128 INSERT INTO `marc_subfield_structure` VALUES ('610', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6129 INSERT INTO `marc_subfield_structure` VALUES ('610', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6130 INSERT INTO `marc_subfield_structure` VALUES ('610', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6131 INSERT INTO `marc_subfield_structure` VALUES ('610', 'r', 'Key for music', 'Key for music', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6132 INSERT INTO `marc_subfield_structure` VALUES ('610', 's', 'Version', 'Version', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6133 INSERT INTO `marc_subfield_structure` VALUES ('610', 't', 'Title of a work', 'Title of a work', 0, 0, '', 6, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
6134 INSERT INTO `marc_subfield_structure` VALUES ('610', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6135 INSERT INTO `marc_subfield_structure` VALUES ('610', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
6136 INSERT INTO `marc_subfield_structure` VALUES ('610', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
6137 INSERT INTO `marc_subfield_structure` VALUES ('610', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
6138 INSERT INTO `marc_subfield_structure` VALUES ('610', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
6139 INSERT INTO `marc_subfield_structure` VALUES ('611', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'ASMP_BOOKS', '', '');
6140 INSERT INTO `marc_subfield_structure` VALUES ('611', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6141 INSERT INTO `marc_subfield_structure` VALUES ('611', '4', 'Relator code', 'Relator code', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6142 INSERT INTO `marc_subfield_structure` VALUES ('611', '6', 'Linkage', 'Linkage', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6143 INSERT INTO `marc_subfield_structure` VALUES ('611', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6144 INSERT INTO `marc_subfield_structure` VALUES ('611', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'ASMP_BOOKS', '', '');
6145 INSERT INTO `marc_subfield_structure` VALUES ('611', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'ASMP_BOOKS', '', '');
6146 INSERT INTO `marc_subfield_structure` VALUES ('611', 'b', 'Number  (BK CF MP MU SE VM MX)  [OBSOLETE]', 'Number  (BK CF MP MU SE VM MX)  [OBSOLETE]', 1, 0, NULL, -1, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6147 INSERT INTO `marc_subfield_structure` VALUES ('611', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'ASMP_BOOKS', '', '');
6148 INSERT INTO `marc_subfield_structure` VALUES ('611', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'ASMP_BOOKS', '', '');
6149 INSERT INTO `marc_subfield_structure` VALUES ('611', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'ASMP_BOOKS', '', '');
6150 INSERT INTO `marc_subfield_structure` VALUES ('611', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6151 INSERT INTO `marc_subfield_structure` VALUES ('611', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6152 INSERT INTO `marc_subfield_structure` VALUES ('611', 'h', 'Medium', 'Medium', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6153 INSERT INTO `marc_subfield_structure` VALUES ('611', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6154 INSERT INTO `marc_subfield_structure` VALUES ('611', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6155 INSERT INTO `marc_subfield_structure` VALUES ('611', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6156 INSERT INTO `marc_subfield_structure` VALUES ('611', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6157 INSERT INTO `marc_subfield_structure` VALUES ('611', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6158 INSERT INTO `marc_subfield_structure` VALUES ('611', 's', 'Version', 'Version', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6159 INSERT INTO `marc_subfield_structure` VALUES ('611', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'ASMP_BOOKS', '', '');
6160 INSERT INTO `marc_subfield_structure` VALUES ('611', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6161 INSERT INTO `marc_subfield_structure` VALUES ('611', 'v', 'Form subdivision', 'Form subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'ASMP_BOOKS', '', '');
6162 INSERT INTO `marc_subfield_structure` VALUES ('611', 'x', 'General subdivision', 'General subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'ASMP_BOOKS', '', '');
6163 INSERT INTO `marc_subfield_structure` VALUES ('611', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'ASMP_BOOKS', '', '');
6164 INSERT INTO `marc_subfield_structure` VALUES ('611', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'ASMP_BOOKS', '', '');
6165 INSERT INTO `marc_subfield_structure` VALUES ('630', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'ASMP_BOOKS', '', '');
6166 INSERT INTO `marc_subfield_structure` VALUES ('630', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6167 INSERT INTO `marc_subfield_structure` VALUES ('630', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6168 INSERT INTO `marc_subfield_structure` VALUES ('630', '6', 'Linkage', 'Linkage', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6169 INSERT INTO `marc_subfield_structure` VALUES ('630', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6170 INSERT INTO `marc_subfield_structure` VALUES ('630', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'ASMP_BOOKS', '', '');
6171 INSERT INTO `marc_subfield_structure` VALUES ('630', 'a', 'Uniform title', 'Uniform title', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'ASMP_BOOKS', '', '');
6172 INSERT INTO `marc_subfield_structure` VALUES ('630', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6173 INSERT INTO `marc_subfield_structure` VALUES ('630', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
6174 INSERT INTO `marc_subfield_structure` VALUES ('630', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6175 INSERT INTO `marc_subfield_structure` VALUES ('630', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6176 INSERT INTO `marc_subfield_structure` VALUES ('630', 'h', 'Medium', 'Medium', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6177 INSERT INTO `marc_subfield_structure` VALUES ('630', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6178 INSERT INTO `marc_subfield_structure` VALUES ('630', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'ASMP_BOOKS', '', '');
6179 INSERT INTO `marc_subfield_structure` VALUES ('630', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6180 INSERT INTO `marc_subfield_structure` VALUES ('630', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6181 INSERT INTO `marc_subfield_structure` VALUES ('630', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6182 INSERT INTO `marc_subfield_structure` VALUES ('630', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6183 INSERT INTO `marc_subfield_structure` VALUES ('630', 'r', 'Key for music', 'Key for music', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6184 INSERT INTO `marc_subfield_structure` VALUES ('630', 's', 'Version', 'Version', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6185 INSERT INTO `marc_subfield_structure` VALUES ('630', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'ASMP_BOOKS', '', '');
6186 INSERT INTO `marc_subfield_structure` VALUES ('630', 'v', 'Form subdivision', 'Form subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'ASMP_BOOKS', '', '');
6187 INSERT INTO `marc_subfield_structure` VALUES ('630', 'x', 'General subdivision', 'General subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'ASMP_BOOKS', '', '');
6188 INSERT INTO `marc_subfield_structure` VALUES ('630', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'ASMP_BOOKS', '', '');
6189 INSERT INTO `marc_subfield_structure` VALUES ('630', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'ASMP_BOOKS', '', '');
6190 INSERT INTO `marc_subfield_structure` VALUES ('648', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6191 INSERT INTO `marc_subfield_structure` VALUES ('648', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6192 INSERT INTO `marc_subfield_structure` VALUES ('648', '6', 'Linkage', 'Linkage', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6193 INSERT INTO `marc_subfield_structure` VALUES ('648', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6194 INSERT INTO `marc_subfield_structure` VALUES ('648', 'a', 'Chronological term', 'Chronological term', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6195 INSERT INTO `marc_subfield_structure` VALUES ('648', 'v', 'Form subdivision', 'Form subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6196 INSERT INTO `marc_subfield_structure` VALUES ('648', 'x', 'General subdivision', 'General subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6197 INSERT INTO `marc_subfield_structure` VALUES ('648', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6198 INSERT INTO `marc_subfield_structure` VALUES ('648', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6199 INSERT INTO `marc_subfield_structure` VALUES ('650', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', 0, 0, 'ASMP_BOOKS', '', '');
6200 INSERT INTO `marc_subfield_structure` VALUES ('650', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
6201 INSERT INTO `marc_subfield_structure` VALUES ('650', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6202 INSERT INTO `marc_subfield_structure` VALUES ('650', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
6203 INSERT INTO `marc_subfield_structure` VALUES ('650', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
6204 INSERT INTO `marc_subfield_structure` VALUES ('650', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'ASMP_BOOKS', '', '');
6205 INSERT INTO `marc_subfield_structure` VALUES ('650', 'a', 'Topical term or geographic name as entry element', 'Topical term or geographic name as entry element', 0, 0, 'bibliosubject.subject', 6, '', '', '', 0, 0, 'ASMP_BOOKS', '''6003'',''600a'',''600b'',''600c'',''600d'',''600e'',''600f'',''600g'',''600h'',''600k'',''600l'',''600m'',''600n'',''600o'',''600p'',''600r'',''600s'',''600t'',''600u'',''600x'',''600z'',''600y'',''600v'',''6103'',''610a'',''610b'',''610c'',''610d'',''610e'',''610f'',''610g'',''610h'',''610k'',''610l'',''610m'',''610n'',''610o'',''610p'',''610r'',''610s'',''610t'',''610u'',''610x'',''610z'',''610y'',''610v'',''6113'',''611a'',''611b'',''611c'',''611d'',''611e'',''611f'',''611g'',''611h'',''611k'',''611l'',''611m'',''611n'',''611o'',''611p'',''611r'',''611s'',''611t'',''611u'',''611x'',''611z'',''611y'',''611v'',''630a'',''630b'',''630c'',''630d'',''630e'',''630f'',''630g'',''630h'',''630k'',''630l'',''630m'',''630n'',''630o'',''630p'',''630r'',''630s'',''630t'',''630x'',''630z'',''630y'',''630v'',''6483'',''648a'',''648x'',''648z'',''648y'',''648v'',''6503'',''650b'',''650c'',''650d'',''650e'',''650x'',''650z'',''650y'',''650v'',''6513'',''651a'',''651b'',''651c'',''651d'',''651e'',''651x'',''651z'',''651y'',''651v'',''653a'',''6543'',''654a'',''654b'',''654x'',''654z'',''654y'',''654v'',''6553'',''655a'',''655b'',''655x'',''655z'',''655y'',''655v'',''6563'',''656a'',''656k'',''656x'',''656z'',''656y'',''656v'',''6573'',''657a'',''657x'',''657z'',''657y'',''657v'',''658a'',''658b'',''658c'',''658d'',''658v''', '');
6206 INSERT INTO `marc_subfield_structure` VALUES ('650', 'b', 'Topical term following geographic name as entry element', 'Topical term following geographic name as entry element', 0, 0, '', 6, '', '', '', 0, -1, 'ASMP_BOOKS', '', '');
6207 INSERT INTO `marc_subfield_structure` VALUES ('650', 'c', 'Location of event', 'Location of event', 0, 0, '', 6, '', '', '', 0, -1, 'ASMP_BOOKS', '', '');
6208 INSERT INTO `marc_subfield_structure` VALUES ('650', 'd', 'Active dates', 'Active dates', 0, 0, '', 6, '', '', '', 0, -1, 'ASMP_BOOKS', '', '');
6209 INSERT INTO `marc_subfield_structure` VALUES ('650', 'e', 'Relator term', 'Relator term', 0, 0, '', 6, '', '', '', 0, -1, 'ASMP_BOOKS', '', '');
6210 INSERT INTO `marc_subfield_structure` VALUES ('650', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', 0, 0, 'ASMP_BOOKS', '', '');
6211 INSERT INTO `marc_subfield_structure` VALUES ('650', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', 0, 0, 'ASMP_BOOKS', '', '');
6212 INSERT INTO `marc_subfield_structure` VALUES ('650', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', 0, 0, 'ASMP_BOOKS', '', '');
6213 INSERT INTO `marc_subfield_structure` VALUES ('650', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', 0, 0, 'ASMP_BOOKS', '', '');
6214 INSERT INTO `marc_subfield_structure` VALUES ('651', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
6215 INSERT INTO `marc_subfield_structure` VALUES ('651', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6216 INSERT INTO `marc_subfield_structure` VALUES ('651', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6217 INSERT INTO `marc_subfield_structure` VALUES ('651', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6218 INSERT INTO `marc_subfield_structure` VALUES ('651', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6219 INSERT INTO `marc_subfield_structure` VALUES ('651', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'ASMP_BOOKS', '', '');
6220 INSERT INTO `marc_subfield_structure` VALUES ('651', 'a', 'Geographic name', 'Geographic name', 0, 0, '', 6, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
6221 INSERT INTO `marc_subfield_structure` VALUES ('651', 'b', 'Geographic name following place entry element [OBSOLETE]', 'Geographic name following place entry element [OBSOLETE]', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6222 INSERT INTO `marc_subfield_structure` VALUES ('651', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
6223 INSERT INTO `marc_subfield_structure` VALUES ('651', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
6224 INSERT INTO `marc_subfield_structure` VALUES ('651', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
6225 INSERT INTO `marc_subfield_structure` VALUES ('651', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
6226 INSERT INTO `marc_subfield_structure` VALUES ('651', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
6227 INSERT INTO `marc_subfield_structure` VALUES ('652', 'a', 'Geographic name of place element', 'Geographic name of place element', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6228 INSERT INTO `marc_subfield_structure` VALUES ('652', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6229 INSERT INTO `marc_subfield_structure` VALUES ('652', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6230 INSERT INTO `marc_subfield_structure` VALUES ('652', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6231 INSERT INTO `marc_subfield_structure` VALUES ('653', '6', 'Linkage', 'Linkage', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6232 INSERT INTO `marc_subfield_structure` VALUES ('653', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6233 INSERT INTO `marc_subfield_structure` VALUES ('653', 'a', 'Uncontrolled term', 'Uncontrolled term', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'ASMP_BOOKS', '', '');
6234 INSERT INTO `marc_subfield_structure` VALUES ('654', '2', 'Source of term', 'Source of term', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6235 INSERT INTO `marc_subfield_structure` VALUES ('654', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6236 INSERT INTO `marc_subfield_structure` VALUES ('654', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6237 INSERT INTO `marc_subfield_structure` VALUES ('654', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6238 INSERT INTO `marc_subfield_structure` VALUES ('654', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6239 INSERT INTO `marc_subfield_structure` VALUES ('654', 'a', 'Focus term', 'Focus term', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6240 INSERT INTO `marc_subfield_structure` VALUES ('654', 'b', 'Non-focus term', 'Non-focus term', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6241 INSERT INTO `marc_subfield_structure` VALUES ('654', 'c', 'Facet/hierarchy designation', 'Facet/hierarchy designation', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6242 INSERT INTO `marc_subfield_structure` VALUES ('654', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6243 INSERT INTO `marc_subfield_structure` VALUES ('654', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6244 INSERT INTO `marc_subfield_structure` VALUES ('654', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6245 INSERT INTO `marc_subfield_structure` VALUES ('654', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6246 INSERT INTO `marc_subfield_structure` VALUES ('654', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6247 INSERT INTO `marc_subfield_structure` VALUES ('655', '2', 'Source of term', 'Source of term', 0, 0, '', 6, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
6248 INSERT INTO `marc_subfield_structure` VALUES ('655', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6249 INSERT INTO `marc_subfield_structure` VALUES ('655', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6250 INSERT INTO `marc_subfield_structure` VALUES ('655', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6251 INSERT INTO `marc_subfield_structure` VALUES ('655', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6252 INSERT INTO `marc_subfield_structure` VALUES ('655', 'a', 'Genre/form data or focus term', 'Genre/form data or focus term', 0, 0, '', 6, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
6253 INSERT INTO `marc_subfield_structure` VALUES ('655', 'b', 'Non-focus term', 'Non-focus term', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
6254 INSERT INTO `marc_subfield_structure` VALUES ('655', 'c', 'Facet/hierarchy designation', 'Facet/hierarchy designation', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
6255 INSERT INTO `marc_subfield_structure` VALUES ('655', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
6256 INSERT INTO `marc_subfield_structure` VALUES ('655', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
6257 INSERT INTO `marc_subfield_structure` VALUES ('655', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
6258 INSERT INTO `marc_subfield_structure` VALUES ('655', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
6259 INSERT INTO `marc_subfield_structure` VALUES ('656', '2', 'Source of term', 'Source of term', 0, 0, '', 6, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
6260 INSERT INTO `marc_subfield_structure` VALUES ('656', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6261 INSERT INTO `marc_subfield_structure` VALUES ('656', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6262 INSERT INTO `marc_subfield_structure` VALUES ('656', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6263 INSERT INTO `marc_subfield_structure` VALUES ('656', 'a', 'Occupation', 'Occupation', 0, 0, '', 6, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
6264 INSERT INTO `marc_subfield_structure` VALUES ('656', 'k', 'Form', 'Form', 0, 0, '', 6, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
6265 INSERT INTO `marc_subfield_structure` VALUES ('656', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
6266 INSERT INTO `marc_subfield_structure` VALUES ('656', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
6267 INSERT INTO `marc_subfield_structure` VALUES ('656', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
6268 INSERT INTO `marc_subfield_structure` VALUES ('656', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
6269 INSERT INTO `marc_subfield_structure` VALUES ('657', '2', 'Source of term', 'Source of term', 0, 0, '', 6, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
6270 INSERT INTO `marc_subfield_structure` VALUES ('657', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6271 INSERT INTO `marc_subfield_structure` VALUES ('657', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6272 INSERT INTO `marc_subfield_structure` VALUES ('657', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6273 INSERT INTO `marc_subfield_structure` VALUES ('657', 'a', 'Function', 'Function', 0, 0, '', 6, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
6274 INSERT INTO `marc_subfield_structure` VALUES ('657', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
6275 INSERT INTO `marc_subfield_structure` VALUES ('657', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
6276 INSERT INTO `marc_subfield_structure` VALUES ('657', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
6277 INSERT INTO `marc_subfield_structure` VALUES ('657', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
6278 INSERT INTO `marc_subfield_structure` VALUES ('658', '2', 'Source of term', 'Source of term', 0, 0, '', 6, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
6279 INSERT INTO `marc_subfield_structure` VALUES ('658', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6280 INSERT INTO `marc_subfield_structure` VALUES ('658', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6281 INSERT INTO `marc_subfield_structure` VALUES ('658', 'a', 'Main curriculum objective', 'Main curriculum objective', 0, 0, '', 6, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
6282 INSERT INTO `marc_subfield_structure` VALUES ('658', 'b', 'Subordinate curriculum objective', 'Subordinate curriculum objective', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
6283 INSERT INTO `marc_subfield_structure` VALUES ('658', 'c', 'Curriculum code', 'Curriculum code', 0, 0, '', 6, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
6284 INSERT INTO `marc_subfield_structure` VALUES ('658', 'd', 'Correlation factor', 'Correlation factor', 0, 0, '', 6, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
6285 INSERT INTO `marc_subfield_structure` VALUES ('662', '2', 'Source of term', 'Source of term', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6286 INSERT INTO `marc_subfield_structure` VALUES ('662', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6287 INSERT INTO `marc_subfield_structure` VALUES ('662', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6288 INSERT INTO `marc_subfield_structure` VALUES ('662', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6289 INSERT INTO `marc_subfield_structure` VALUES ('662', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6290 INSERT INTO `marc_subfield_structure` VALUES ('662', 'a', 'Country or larger entity', 'Country or larger entity', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6291 INSERT INTO `marc_subfield_structure` VALUES ('662', 'b', 'First-order political jurisdiction', 'First-order political jurisdiction', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6292 INSERT INTO `marc_subfield_structure` VALUES ('662', 'c', 'Intermediate political jurisdiction', 'Intermediate political jurisdiction', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6293 INSERT INTO `marc_subfield_structure` VALUES ('662', 'd', 'City', 'City', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6294 INSERT INTO `marc_subfield_structure` VALUES ('662', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6295 INSERT INTO `marc_subfield_structure` VALUES ('662', 'f', 'City subsection', 'City subsection', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6296 INSERT INTO `marc_subfield_structure` VALUES ('662', 'g', 'Other nonjurisdictional geographic region and feature', 'Other nonjurisdictional geographic region and feature', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6297 INSERT INTO `marc_subfield_structure` VALUES ('662', 'h', 'Extraterrestrial area', 'Extraterrestrial area', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6298 INSERT INTO `marc_subfield_structure` VALUES ('690', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
6299 INSERT INTO `marc_subfield_structure` VALUES ('690', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
6300 INSERT INTO `marc_subfield_structure` VALUES ('690', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
6301 INSERT INTO `marc_subfield_structure` VALUES ('690', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
6302 INSERT INTO `marc_subfield_structure` VALUES ('690', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
6303 INSERT INTO `marc_subfield_structure` VALUES ('690', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'ASMP_BOOKS', '', '');
6304 INSERT INTO `marc_subfield_structure` VALUES ('690', 'a', 'Topical term or geographic name as entry element', 'Topical term or geographic name as entry element', 0, 0, '', 6, '', '', '', 0, -1, 'ASMP_BOOKS', '', '');
6305 INSERT INTO `marc_subfield_structure` VALUES ('690', 'b', 'Topical term following geographic name as entry element', 'Topical term following geographic name as entry element', 0, 0, '', 6, '', '', '', 0, -1, 'ASMP_BOOKS', '', '');
6306 INSERT INTO `marc_subfield_structure` VALUES ('690', 'c', 'Location of event', 'Location of event', 0, 0, '', 6, '', '', '', 0, -1, 'ASMP_BOOKS', '', '');
6307 INSERT INTO `marc_subfield_structure` VALUES ('690', 'd', 'Active dates', 'Active dates', 0, 0, '', 6, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
6308 INSERT INTO `marc_subfield_structure` VALUES ('690', 'e', 'Relator term', 'Relator term', 0, 0, '', 6, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
6309 INSERT INTO `marc_subfield_structure` VALUES ('690', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', 0, -1, 'ASMP_BOOKS', '', '');
6310 INSERT INTO `marc_subfield_structure` VALUES ('690', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', 0, -1, 'ASMP_BOOKS', '', '');
6311 INSERT INTO `marc_subfield_structure` VALUES ('690', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', 0, -1, 'ASMP_BOOKS', '', '');
6312 INSERT INTO `marc_subfield_structure` VALUES ('690', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', 0, -1, 'ASMP_BOOKS', '', '');
6313 INSERT INTO `marc_subfield_structure` VALUES ('691', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
6314 INSERT INTO `marc_subfield_structure` VALUES ('691', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6315 INSERT INTO `marc_subfield_structure` VALUES ('691', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6316 INSERT INTO `marc_subfield_structure` VALUES ('691', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6317 INSERT INTO `marc_subfield_structure` VALUES ('691', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6318 INSERT INTO `marc_subfield_structure` VALUES ('691', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'ASMP_BOOKS', '', '');
6319 INSERT INTO `marc_subfield_structure` VALUES ('691', 'a', 'Geographic name', 'Geographic name', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6320 INSERT INTO `marc_subfield_structure` VALUES ('691', 'b', 'Geographic name following place entry element [OBSOLETE]', 'Geographic name following place entry element [OBSOLETE]', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6321 INSERT INTO `marc_subfield_structure` VALUES ('691', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6322 INSERT INTO `marc_subfield_structure` VALUES ('691', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6323 INSERT INTO `marc_subfield_structure` VALUES ('691', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6324 INSERT INTO `marc_subfield_structure` VALUES ('691', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6325 INSERT INTO `marc_subfield_structure` VALUES ('696', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
6326 INSERT INTO `marc_subfield_structure` VALUES ('696', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6327 INSERT INTO `marc_subfield_structure` VALUES ('696', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6328 INSERT INTO `marc_subfield_structure` VALUES ('696', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6329 INSERT INTO `marc_subfield_structure` VALUES ('696', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6330 INSERT INTO `marc_subfield_structure` VALUES ('696', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6331 INSERT INTO `marc_subfield_structure` VALUES ('696', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'ASMP_BOOKS', '', '');
6332 INSERT INTO `marc_subfield_structure` VALUES ('696', 'a', 'Personal name', 'Personal name', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6333 INSERT INTO `marc_subfield_structure` VALUES ('696', 'b', 'Numeration', 'Numeration', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6334 INSERT INTO `marc_subfield_structure` VALUES ('696', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6335 INSERT INTO `marc_subfield_structure` VALUES ('696', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6336 INSERT INTO `marc_subfield_structure` VALUES ('696', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6337 INSERT INTO `marc_subfield_structure` VALUES ('696', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6338 INSERT INTO `marc_subfield_structure` VALUES ('696', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6339 INSERT INTO `marc_subfield_structure` VALUES ('696', 'h', 'Medium', 'Medium', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6340 INSERT INTO `marc_subfield_structure` VALUES ('696', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6341 INSERT INTO `marc_subfield_structure` VALUES ('696', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6342 INSERT INTO `marc_subfield_structure` VALUES ('696', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6343 INSERT INTO `marc_subfield_structure` VALUES ('696', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6344 INSERT INTO `marc_subfield_structure` VALUES ('696', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6345 INSERT INTO `marc_subfield_structure` VALUES ('696', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6346 INSERT INTO `marc_subfield_structure` VALUES ('696', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6347 INSERT INTO `marc_subfield_structure` VALUES ('696', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6348 INSERT INTO `marc_subfield_structure` VALUES ('696', 'r', 'Key for music', 'Key for music', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6349 INSERT INTO `marc_subfield_structure` VALUES ('696', 's', 'Version', 'Version', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6350 INSERT INTO `marc_subfield_structure` VALUES ('696', 't', 'Title of a work', 'Title of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6351 INSERT INTO `marc_subfield_structure` VALUES ('696', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6352 INSERT INTO `marc_subfield_structure` VALUES ('696', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6353 INSERT INTO `marc_subfield_structure` VALUES ('696', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6354 INSERT INTO `marc_subfield_structure` VALUES ('696', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6355 INSERT INTO `marc_subfield_structure` VALUES ('696', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6356 INSERT INTO `marc_subfield_structure` VALUES ('697', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
6357 INSERT INTO `marc_subfield_structure` VALUES ('697', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6358 INSERT INTO `marc_subfield_structure` VALUES ('697', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6359 INSERT INTO `marc_subfield_structure` VALUES ('697', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6360 INSERT INTO `marc_subfield_structure` VALUES ('697', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6361 INSERT INTO `marc_subfield_structure` VALUES ('697', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6362 INSERT INTO `marc_subfield_structure` VALUES ('697', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'ASMP_BOOKS', '', '');
6363 INSERT INTO `marc_subfield_structure` VALUES ('697', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6364 INSERT INTO `marc_subfield_structure` VALUES ('697', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6365 INSERT INTO `marc_subfield_structure` VALUES ('697', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6366 INSERT INTO `marc_subfield_structure` VALUES ('697', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6367 INSERT INTO `marc_subfield_structure` VALUES ('697', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6368 INSERT INTO `marc_subfield_structure` VALUES ('697', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6369 INSERT INTO `marc_subfield_structure` VALUES ('697', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6370 INSERT INTO `marc_subfield_structure` VALUES ('697', 'h', 'Medium', 'Medium', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6371 INSERT INTO `marc_subfield_structure` VALUES ('697', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6372 INSERT INTO `marc_subfield_structure` VALUES ('697', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6373 INSERT INTO `marc_subfield_structure` VALUES ('697', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6374 INSERT INTO `marc_subfield_structure` VALUES ('697', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6375 INSERT INTO `marc_subfield_structure` VALUES ('697', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6376 INSERT INTO `marc_subfield_structure` VALUES ('697', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6377 INSERT INTO `marc_subfield_structure` VALUES ('697', 'r', 'Key for music', 'Key for music', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6378 INSERT INTO `marc_subfield_structure` VALUES ('697', 's', 'Version', 'Version', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6379 INSERT INTO `marc_subfield_structure` VALUES ('697', 't', 'Title of a work', 'Title of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6380 INSERT INTO `marc_subfield_structure` VALUES ('697', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6381 INSERT INTO `marc_subfield_structure` VALUES ('697', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6382 INSERT INTO `marc_subfield_structure` VALUES ('697', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6383 INSERT INTO `marc_subfield_structure` VALUES ('697', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6384 INSERT INTO `marc_subfield_structure` VALUES ('697', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6385 INSERT INTO `marc_subfield_structure` VALUES ('698', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
6386 INSERT INTO `marc_subfield_structure` VALUES ('698', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6387 INSERT INTO `marc_subfield_structure` VALUES ('698', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6388 INSERT INTO `marc_subfield_structure` VALUES ('698', '4', 'Relator code', 'Relator code', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6389 INSERT INTO `marc_subfield_structure` VALUES ('698', '6', 'Linkage', 'Linkage', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6390 INSERT INTO `marc_subfield_structure` VALUES ('698', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6391 INSERT INTO `marc_subfield_structure` VALUES ('698', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'ASMP_BOOKS', '', '');
6392 INSERT INTO `marc_subfield_structure` VALUES ('698', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6393 INSERT INTO `marc_subfield_structure` VALUES ('698', 'b', 'Number  (BK CF MP MU SE VM MX)  [OBSOLETE]', 'Number  (BK CF MP MU SE VM MX)  [OBSOLETE]', 1, 0, NULL, -1, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6394 INSERT INTO `marc_subfield_structure` VALUES ('698', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6395 INSERT INTO `marc_subfield_structure` VALUES ('698', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6396 INSERT INTO `marc_subfield_structure` VALUES ('698', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6397 INSERT INTO `marc_subfield_structure` VALUES ('698', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6398 INSERT INTO `marc_subfield_structure` VALUES ('698', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6399 INSERT INTO `marc_subfield_structure` VALUES ('698', 'h', 'Medium', 'Medium', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6400 INSERT INTO `marc_subfield_structure` VALUES ('698', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6401 INSERT INTO `marc_subfield_structure` VALUES ('698', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6402 INSERT INTO `marc_subfield_structure` VALUES ('698', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6403 INSERT INTO `marc_subfield_structure` VALUES ('698', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6404 INSERT INTO `marc_subfield_structure` VALUES ('698', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6405 INSERT INTO `marc_subfield_structure` VALUES ('698', 's', 'Version', 'Version', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6406 INSERT INTO `marc_subfield_structure` VALUES ('698', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6407 INSERT INTO `marc_subfield_structure` VALUES ('698', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6408 INSERT INTO `marc_subfield_structure` VALUES ('698', 'v', 'Form subdivision', 'Form subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6409 INSERT INTO `marc_subfield_structure` VALUES ('698', 'x', 'General subdivision', 'General subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6410 INSERT INTO `marc_subfield_structure` VALUES ('698', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6411 INSERT INTO `marc_subfield_structure` VALUES ('698', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6412 INSERT INTO `marc_subfield_structure` VALUES ('699', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
6413 INSERT INTO `marc_subfield_structure` VALUES ('699', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6414 INSERT INTO `marc_subfield_structure` VALUES ('699', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6415 INSERT INTO `marc_subfield_structure` VALUES ('699', '6', 'Linkage', 'Linkage', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6416 INSERT INTO `marc_subfield_structure` VALUES ('699', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6417 INSERT INTO `marc_subfield_structure` VALUES ('699', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'ASMP_BOOKS', '', '');
6418 INSERT INTO `marc_subfield_structure` VALUES ('699', 'a', 'Uniform title', 'Uniform title', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6419 INSERT INTO `marc_subfield_structure` VALUES ('699', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6420 INSERT INTO `marc_subfield_structure` VALUES ('699', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6421 INSERT INTO `marc_subfield_structure` VALUES ('699', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6422 INSERT INTO `marc_subfield_structure` VALUES ('699', 'h', 'Medium', 'Medium', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6423 INSERT INTO `marc_subfield_structure` VALUES ('699', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6424 INSERT INTO `marc_subfield_structure` VALUES ('699', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6425 INSERT INTO `marc_subfield_structure` VALUES ('699', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6426 INSERT INTO `marc_subfield_structure` VALUES ('699', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6427 INSERT INTO `marc_subfield_structure` VALUES ('699', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6428 INSERT INTO `marc_subfield_structure` VALUES ('699', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6429 INSERT INTO `marc_subfield_structure` VALUES ('699', 'r', 'Key for music', 'Key for music', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6430 INSERT INTO `marc_subfield_structure` VALUES ('699', 's', 'Version', 'Version', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6431 INSERT INTO `marc_subfield_structure` VALUES ('699', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6432 INSERT INTO `marc_subfield_structure` VALUES ('699', 'v', 'Form subdivision', 'Form subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6433 INSERT INTO `marc_subfield_structure` VALUES ('699', 'x', 'General subdivision', 'General subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6434 INSERT INTO `marc_subfield_structure` VALUES ('699', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6435 INSERT INTO `marc_subfield_structure` VALUES ('700', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6436 INSERT INTO `marc_subfield_structure` VALUES ('700', '4', 'Relator code', 'Relator code', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6437 INSERT INTO `marc_subfield_structure` VALUES ('700', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6438 INSERT INTO `marc_subfield_structure` VALUES ('700', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6439 INSERT INTO `marc_subfield_structure` VALUES ('700', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6440 INSERT INTO `marc_subfield_structure` VALUES ('700', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'ASMP_BOOKS', '', '');
6441 INSERT INTO `marc_subfield_structure` VALUES ('700', 'a', 'Personal name', 'Personal name', 0, 0, 'additionalauthors.author', 7, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
6442 INSERT INTO `marc_subfield_structure` VALUES ('700', 'b', 'Numeration', 'Numeration', 0, 0, '', 7, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
6443 INSERT INTO `marc_subfield_structure` VALUES ('700', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 7, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
6444 INSERT INTO `marc_subfield_structure` VALUES ('700', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 7, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
6445 INSERT INTO `marc_subfield_structure` VALUES ('700', 'e', 'Relator term', 'Relator term', 1, 0, '', 7, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
6446 INSERT INTO `marc_subfield_structure` VALUES ('700', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6447 INSERT INTO `marc_subfield_structure` VALUES ('700', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6448 INSERT INTO `marc_subfield_structure` VALUES ('700', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6449 INSERT INTO `marc_subfield_structure` VALUES ('700', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6450 INSERT INTO `marc_subfield_structure` VALUES ('700', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6451 INSERT INTO `marc_subfield_structure` VALUES ('700', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6452 INSERT INTO `marc_subfield_structure` VALUES ('700', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6453 INSERT INTO `marc_subfield_structure` VALUES ('700', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6454 INSERT INTO `marc_subfield_structure` VALUES ('700', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6455 INSERT INTO `marc_subfield_structure` VALUES ('700', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6456 INSERT INTO `marc_subfield_structure` VALUES ('700', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 7, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
6457 INSERT INTO `marc_subfield_structure` VALUES ('700', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6458 INSERT INTO `marc_subfield_structure` VALUES ('700', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6459 INSERT INTO `marc_subfield_structure` VALUES ('700', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6460 INSERT INTO `marc_subfield_structure` VALUES ('700', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6461 INSERT INTO `marc_subfield_structure` VALUES ('700', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6462 INSERT INTO `marc_subfield_structure` VALUES ('705', 'a', 'Personal name', 'Personal name', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6463 INSERT INTO `marc_subfield_structure` VALUES ('705', 'b', 'Numeration', 'Numeration', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6464 INSERT INTO `marc_subfield_structure` VALUES ('705', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6465 INSERT INTO `marc_subfield_structure` VALUES ('705', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6466 INSERT INTO `marc_subfield_structure` VALUES ('705', 'e', 'Relator term', 'Relator term', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6467 INSERT INTO `marc_subfield_structure` VALUES ('705', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6468 INSERT INTO `marc_subfield_structure` VALUES ('705', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6469 INSERT INTO `marc_subfield_structure` VALUES ('705', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6470 INSERT INTO `marc_subfield_structure` VALUES ('705', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6471 INSERT INTO `marc_subfield_structure` VALUES ('705', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6472 INSERT INTO `marc_subfield_structure` VALUES ('705', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6473 INSERT INTO `marc_subfield_structure` VALUES ('705', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6474 INSERT INTO `marc_subfield_structure` VALUES ('705', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6475 INSERT INTO `marc_subfield_structure` VALUES ('705', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6476 INSERT INTO `marc_subfield_structure` VALUES ('705', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6477 INSERT INTO `marc_subfield_structure` VALUES ('705', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6478 INSERT INTO `marc_subfield_structure` VALUES ('705', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6479 INSERT INTO `marc_subfield_structure` VALUES ('710', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6480 INSERT INTO `marc_subfield_structure` VALUES ('710', '4', 'Relator code', 'Relator code', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6481 INSERT INTO `marc_subfield_structure` VALUES ('710', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6482 INSERT INTO `marc_subfield_structure` VALUES ('710', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6483 INSERT INTO `marc_subfield_structure` VALUES ('710', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6484 INSERT INTO `marc_subfield_structure` VALUES ('710', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'ASMP_BOOKS', '', '');
6485 INSERT INTO `marc_subfield_structure` VALUES ('710', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 7, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
6486 INSERT INTO `marc_subfield_structure` VALUES ('710', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 7, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
6487 INSERT INTO `marc_subfield_structure` VALUES ('710', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 7, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
6488 INSERT INTO `marc_subfield_structure` VALUES ('710', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 7, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
6489 INSERT INTO `marc_subfield_structure` VALUES ('710', 'e', 'Relator term', 'Relator term', 1, 0, '', 7, '', '', '', NULL, -1, 'ASMP_BOOKS', '', '');
6490 INSERT INTO `marc_subfield_structure` VALUES ('710', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6491 INSERT INTO `marc_subfield_structure` VALUES ('710', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6492 INSERT INTO `marc_subfield_structure` VALUES ('710', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6493 INSERT INTO `marc_subfield_structure` VALUES ('710', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6494 INSERT INTO `marc_subfield_structure` VALUES ('710', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6495 INSERT INTO `marc_subfield_structure` VALUES ('710', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6496 INSERT INTO `marc_subfield_structure` VALUES ('710', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6497 INSERT INTO `marc_subfield_structure` VALUES ('710', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6498 INSERT INTO `marc_subfield_structure` VALUES ('710', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6499 INSERT INTO `marc_subfield_structure` VALUES ('710', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6500 INSERT INTO `marc_subfield_structure` VALUES ('710', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6501 INSERT INTO `marc_subfield_structure` VALUES ('710', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6502 INSERT INTO `marc_subfield_structure` VALUES ('710', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6503 INSERT INTO `marc_subfield_structure` VALUES ('710', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6504 INSERT INTO `marc_subfield_structure` VALUES ('711', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6505 INSERT INTO `marc_subfield_structure` VALUES ('711', '4', 'Relator code', 'Relator code', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6506 INSERT INTO `marc_subfield_structure` VALUES ('711', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6507 INSERT INTO `marc_subfield_structure` VALUES ('711', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6508 INSERT INTO `marc_subfield_structure` VALUES ('711', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6509 INSERT INTO `marc_subfield_structure` VALUES ('711', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'ASMP_BOOKS', '', '');
6510 INSERT INTO `marc_subfield_structure` VALUES ('711', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 7, NULL, NULL, '', NULL, -1, 'ASMP_BOOKS', '', '');
6511 INSERT INTO `marc_subfield_structure` VALUES ('711', 'b', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6512 INSERT INTO `marc_subfield_structure` VALUES ('711', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 7, NULL, NULL, '', NULL, -1, 'ASMP_BOOKS', '', '');
6513 INSERT INTO `marc_subfield_structure` VALUES ('711', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 7, NULL, NULL, '', NULL, -1, 'ASMP_BOOKS', '', '');
6514 INSERT INTO `marc_subfield_structure` VALUES ('711', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 7, NULL, NULL, '', NULL, -1, 'ASMP_BOOKS', '', '');
6515 INSERT INTO `marc_subfield_structure` VALUES ('711', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6516 INSERT INTO `marc_subfield_structure` VALUES ('711', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6517 INSERT INTO `marc_subfield_structure` VALUES ('711', 'h', 'Medium', 'Medium', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6518 INSERT INTO `marc_subfield_structure` VALUES ('711', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6519 INSERT INTO `marc_subfield_structure` VALUES ('711', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6520 INSERT INTO `marc_subfield_structure` VALUES ('711', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6521 INSERT INTO `marc_subfield_structure` VALUES ('711', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6522 INSERT INTO `marc_subfield_structure` VALUES ('711', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6523 INSERT INTO `marc_subfield_structure` VALUES ('711', 's', 'Version', 'Version', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6524 INSERT INTO `marc_subfield_structure` VALUES ('711', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6525 INSERT INTO `marc_subfield_structure` VALUES ('711', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6526 INSERT INTO `marc_subfield_structure` VALUES ('711', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6527 INSERT INTO `marc_subfield_structure` VALUES ('715', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 7, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
6528 INSERT INTO `marc_subfield_structure` VALUES ('715', 'a', 'Corporate name or jurisdiction name', 'Corporate name or jurisdiction name', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6529 INSERT INTO `marc_subfield_structure` VALUES ('715', 'b', 'Subordinate unit', 'Subordinate unit', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6530 INSERT INTO `marc_subfield_structure` VALUES ('715', 'e', 'Relator term', 'Relator term', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6531 INSERT INTO `marc_subfield_structure` VALUES ('715', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6532 INSERT INTO `marc_subfield_structure` VALUES ('715', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6533 INSERT INTO `marc_subfield_structure` VALUES ('715', 'h', 'Medium', 'Medium', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6534 INSERT INTO `marc_subfield_structure` VALUES ('715', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6535 INSERT INTO `marc_subfield_structure` VALUES ('715', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6536 INSERT INTO `marc_subfield_structure` VALUES ('715', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6537 INSERT INTO `marc_subfield_structure` VALUES ('715', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6538 INSERT INTO `marc_subfield_structure` VALUES ('715', 'r', 'Key for music', 'Key for music', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6539 INSERT INTO `marc_subfield_structure` VALUES ('715', 's', 'Version', 'Version', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6540 INSERT INTO `marc_subfield_structure` VALUES ('715', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6541 INSERT INTO `marc_subfield_structure` VALUES ('715', 'u', 'Nonprinting information', 'Nonprinting information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6542 INSERT INTO `marc_subfield_structure` VALUES ('720', '4', 'Relator code', 'Relator code', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6543 INSERT INTO `marc_subfield_structure` VALUES ('720', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6544 INSERT INTO `marc_subfield_structure` VALUES ('720', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6545 INSERT INTO `marc_subfield_structure` VALUES ('720', 'a', 'Name', 'Name', 0, 0, '', 7, NULL, NULL, '', NULL, -1, 'ASMP_BOOKS', '', '');
6546 INSERT INTO `marc_subfield_structure` VALUES ('720', 'e', 'Relator term', 'Relator term', 1, 0, NULL, 7, NULL, NULL, '', NULL, -1, 'ASMP_BOOKS', '', '');
6547 INSERT INTO `marc_subfield_structure` VALUES ('730', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6548 INSERT INTO `marc_subfield_structure` VALUES ('730', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6549 INSERT INTO `marc_subfield_structure` VALUES ('730', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6550 INSERT INTO `marc_subfield_structure` VALUES ('730', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6551 INSERT INTO `marc_subfield_structure` VALUES ('730', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'ASMP_BOOKS', '', '');
6552 INSERT INTO `marc_subfield_structure` VALUES ('730', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6553 INSERT INTO `marc_subfield_structure` VALUES ('730', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6554 INSERT INTO `marc_subfield_structure` VALUES ('730', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6555 INSERT INTO `marc_subfield_structure` VALUES ('730', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6556 INSERT INTO `marc_subfield_structure` VALUES ('730', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6557 INSERT INTO `marc_subfield_structure` VALUES ('730', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6558 INSERT INTO `marc_subfield_structure` VALUES ('730', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6559 INSERT INTO `marc_subfield_structure` VALUES ('730', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6560 INSERT INTO `marc_subfield_structure` VALUES ('730', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6561 INSERT INTO `marc_subfield_structure` VALUES ('730', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6562 INSERT INTO `marc_subfield_structure` VALUES ('730', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6563 INSERT INTO `marc_subfield_structure` VALUES ('730', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6564 INSERT INTO `marc_subfield_structure` VALUES ('730', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6565 INSERT INTO `marc_subfield_structure` VALUES ('730', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6566 INSERT INTO `marc_subfield_structure` VALUES ('730', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6567 INSERT INTO `marc_subfield_structure` VALUES ('740', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6568 INSERT INTO `marc_subfield_structure` VALUES ('740', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6569 INSERT INTO `marc_subfield_structure` VALUES ('740', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6570 INSERT INTO `marc_subfield_structure` VALUES ('740', 'a', 'Uncontrolled related/analytical title', 'Uncontrolled related/analytical title', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6571 INSERT INTO `marc_subfield_structure` VALUES ('740', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6572 INSERT INTO `marc_subfield_structure` VALUES ('740', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6573 INSERT INTO `marc_subfield_structure` VALUES ('740', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6574 INSERT INTO `marc_subfield_structure` VALUES ('752', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6575 INSERT INTO `marc_subfield_structure` VALUES ('752', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6576 INSERT INTO `marc_subfield_structure` VALUES ('752', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6577 INSERT INTO `marc_subfield_structure` VALUES ('752', 'a', 'Country or larger entity', 'Country or larger entity', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6578 INSERT INTO `marc_subfield_structure` VALUES ('752', 'b', 'First-order political jurisdiction', 'First-order political jurisdiction', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6579 INSERT INTO `marc_subfield_structure` VALUES ('752', 'c', 'Intermediate political jurisdiction', 'Intermediate political jurisdiction', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6580 INSERT INTO `marc_subfield_structure` VALUES ('752', 'd', 'City', 'City', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6581 INSERT INTO `marc_subfield_structure` VALUES ('752', 'f', 'City subsection', 'City subsection', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6582 INSERT INTO `marc_subfield_structure` VALUES ('752', 'g', 'Other nonjurisdictional geographic region and feature', 'Other nonjurisdictional geographic region and feature', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6583 INSERT INTO `marc_subfield_structure` VALUES ('752', 'h', 'Extraterrestrial area', 'Extraterrestrial area', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6584 INSERT INTO `marc_subfield_structure` VALUES ('753', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6585 INSERT INTO `marc_subfield_structure` VALUES ('753', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6586 INSERT INTO `marc_subfield_structure` VALUES ('753', 'a', 'Make and model of machine', 'Make and model of machine', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6587 INSERT INTO `marc_subfield_structure` VALUES ('753', 'b', 'Programming language', 'Programming language', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6588 INSERT INTO `marc_subfield_structure` VALUES ('753', 'c', 'Operating system', 'Operating system', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6589 INSERT INTO `marc_subfield_structure` VALUES ('754', '2', 'Source of taxonomic identification', 'Source of taxonomic identification', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6590 INSERT INTO `marc_subfield_structure` VALUES ('754', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6591 INSERT INTO `marc_subfield_structure` VALUES ('754', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6592 INSERT INTO `marc_subfield_structure` VALUES ('754', 'a', 'Taxonomic name', 'Taxonomic name', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6593 INSERT INTO `marc_subfield_structure` VALUES ('754', 'c', 'Taxonomic category', 'Taxonomic category', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6594 INSERT INTO `marc_subfield_structure` VALUES ('754', 'd', 'Common or alternative name', 'Common or alternative name', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6595 INSERT INTO `marc_subfield_structure` VALUES ('754', 'x', 'Non-public note', 'Non-public note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6596 INSERT INTO `marc_subfield_structure` VALUES ('754', 'z', 'Public note', 'Public note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6597 INSERT INTO `marc_subfield_structure` VALUES ('755', '2', 'Source of taxonomic identification', 'Source of taxonomic identification', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6598 INSERT INTO `marc_subfield_structure` VALUES ('755', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6599 INSERT INTO `marc_subfield_structure` VALUES ('755', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6600 INSERT INTO `marc_subfield_structure` VALUES ('755', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6601 INSERT INTO `marc_subfield_structure` VALUES ('755', 'a', 'Access term', 'Access term', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6602 INSERT INTO `marc_subfield_structure` VALUES ('755', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6603 INSERT INTO `marc_subfield_structure` VALUES ('755', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6604 INSERT INTO `marc_subfield_structure` VALUES ('755', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6605 INSERT INTO `marc_subfield_structure` VALUES ('760', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6606 INSERT INTO `marc_subfield_structure` VALUES ('760', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6607 INSERT INTO `marc_subfield_structure` VALUES ('760', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6608 INSERT INTO `marc_subfield_structure` VALUES ('760', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6609 INSERT INTO `marc_subfield_structure` VALUES ('760', 'b', 'Edition', 'Edition', 0, 0, NULL, -6, NULL, NULL, '', NULL, 0, 'ASMP_BOOKS', '', '');
6610 INSERT INTO `marc_subfield_structure` VALUES ('760', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6611 INSERT INTO `marc_subfield_structure` VALUES ('760', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6612 INSERT INTO `marc_subfield_structure` VALUES ('760', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6613 INSERT INTO `marc_subfield_structure` VALUES ('760', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6614 INSERT INTO `marc_subfield_structure` VALUES ('760', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6615 INSERT INTO `marc_subfield_structure` VALUES ('760', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6616 INSERT INTO `marc_subfield_structure` VALUES ('760', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6617 INSERT INTO `marc_subfield_structure` VALUES ('760', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6618 INSERT INTO `marc_subfield_structure` VALUES ('760', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6619 INSERT INTO `marc_subfield_structure` VALUES ('760', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6620 INSERT INTO `marc_subfield_structure` VALUES ('760', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6621 INSERT INTO `marc_subfield_structure` VALUES ('760', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6622 INSERT INTO `marc_subfield_structure` VALUES ('760', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6623 INSERT INTO `marc_subfield_structure` VALUES ('760', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6624 INSERT INTO `marc_subfield_structure` VALUES ('762', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6625 INSERT INTO `marc_subfield_structure` VALUES ('762', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6626 INSERT INTO `marc_subfield_structure` VALUES ('762', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6627 INSERT INTO `marc_subfield_structure` VALUES ('762', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6628 INSERT INTO `marc_subfield_structure` VALUES ('762', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6629 INSERT INTO `marc_subfield_structure` VALUES ('762', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6630 INSERT INTO `marc_subfield_structure` VALUES ('762', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6631 INSERT INTO `marc_subfield_structure` VALUES ('762', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6632 INSERT INTO `marc_subfield_structure` VALUES ('762', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6633 INSERT INTO `marc_subfield_structure` VALUES ('762', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6634 INSERT INTO `marc_subfield_structure` VALUES ('762', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6635 INSERT INTO `marc_subfield_structure` VALUES ('762', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6636 INSERT INTO `marc_subfield_structure` VALUES ('762', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6637 INSERT INTO `marc_subfield_structure` VALUES ('762', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6638 INSERT INTO `marc_subfield_structure` VALUES ('762', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6639 INSERT INTO `marc_subfield_structure` VALUES ('762', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6640 INSERT INTO `marc_subfield_structure` VALUES ('762', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6641 INSERT INTO `marc_subfield_structure` VALUES ('762', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6642 INSERT INTO `marc_subfield_structure` VALUES ('762', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6643 INSERT INTO `marc_subfield_structure` VALUES ('765', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6644 INSERT INTO `marc_subfield_structure` VALUES ('765', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6645 INSERT INTO `marc_subfield_structure` VALUES ('765', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6646 INSERT INTO `marc_subfield_structure` VALUES ('765', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6647 INSERT INTO `marc_subfield_structure` VALUES ('765', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6648 INSERT INTO `marc_subfield_structure` VALUES ('765', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6649 INSERT INTO `marc_subfield_structure` VALUES ('765', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6650 INSERT INTO `marc_subfield_structure` VALUES ('765', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6651 INSERT INTO `marc_subfield_structure` VALUES ('765', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6652 INSERT INTO `marc_subfield_structure` VALUES ('765', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6653 INSERT INTO `marc_subfield_structure` VALUES ('765', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6654 INSERT INTO `marc_subfield_structure` VALUES ('765', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6655 INSERT INTO `marc_subfield_structure` VALUES ('765', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6656 INSERT INTO `marc_subfield_structure` VALUES ('765', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6657 INSERT INTO `marc_subfield_structure` VALUES ('765', 'q', 'Parallel title (BK SE)  [OBSOLETE]', 'Parallel title (BK SE)  [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6658 INSERT INTO `marc_subfield_structure` VALUES ('765', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6659 INSERT INTO `marc_subfield_structure` VALUES ('765', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6660 INSERT INTO `marc_subfield_structure` VALUES ('765', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6661 INSERT INTO `marc_subfield_structure` VALUES ('765', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6662 INSERT INTO `marc_subfield_structure` VALUES ('765', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6663 INSERT INTO `marc_subfield_structure` VALUES ('765', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6664 INSERT INTO `marc_subfield_structure` VALUES ('765', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6665 INSERT INTO `marc_subfield_structure` VALUES ('765', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6666 INSERT INTO `marc_subfield_structure` VALUES ('767', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6667 INSERT INTO `marc_subfield_structure` VALUES ('767', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6668 INSERT INTO `marc_subfield_structure` VALUES ('767', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6669 INSERT INTO `marc_subfield_structure` VALUES ('767', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6670 INSERT INTO `marc_subfield_structure` VALUES ('767', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6671 INSERT INTO `marc_subfield_structure` VALUES ('767', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6672 INSERT INTO `marc_subfield_structure` VALUES ('767', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6673 INSERT INTO `marc_subfield_structure` VALUES ('767', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6674 INSERT INTO `marc_subfield_structure` VALUES ('767', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6675 INSERT INTO `marc_subfield_structure` VALUES ('767', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6676 INSERT INTO `marc_subfield_structure` VALUES ('767', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6677 INSERT INTO `marc_subfield_structure` VALUES ('767', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6678 INSERT INTO `marc_subfield_structure` VALUES ('767', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6679 INSERT INTO `marc_subfield_structure` VALUES ('767', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6680 INSERT INTO `marc_subfield_structure` VALUES ('767', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6681 INSERT INTO `marc_subfield_structure` VALUES ('767', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6682 INSERT INTO `marc_subfield_structure` VALUES ('767', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6683 INSERT INTO `marc_subfield_structure` VALUES ('767', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6684 INSERT INTO `marc_subfield_structure` VALUES ('767', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6685 INSERT INTO `marc_subfield_structure` VALUES ('767', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6686 INSERT INTO `marc_subfield_structure` VALUES ('767', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6687 INSERT INTO `marc_subfield_structure` VALUES ('767', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6688 INSERT INTO `marc_subfield_structure` VALUES ('767', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6689 INSERT INTO `marc_subfield_structure` VALUES ('770', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6690 INSERT INTO `marc_subfield_structure` VALUES ('770', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6691 INSERT INTO `marc_subfield_structure` VALUES ('770', '8', 'Field link and sequence number', 'Field link and sequence number ', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6692 INSERT INTO `marc_subfield_structure` VALUES ('770', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6693 INSERT INTO `marc_subfield_structure` VALUES ('770', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6694 INSERT INTO `marc_subfield_structure` VALUES ('770', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6695 INSERT INTO `marc_subfield_structure` VALUES ('770', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6696 INSERT INTO `marc_subfield_structure` VALUES ('770', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6697 INSERT INTO `marc_subfield_structure` VALUES ('770', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6698 INSERT INTO `marc_subfield_structure` VALUES ('770', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6699 INSERT INTO `marc_subfield_structure` VALUES ('770', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6700 INSERT INTO `marc_subfield_structure` VALUES ('770', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6701 INSERT INTO `marc_subfield_structure` VALUES ('770', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6702 INSERT INTO `marc_subfield_structure` VALUES ('770', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6703 INSERT INTO `marc_subfield_structure` VALUES ('770', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6704 INSERT INTO `marc_subfield_structure` VALUES ('770', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6705 INSERT INTO `marc_subfield_structure` VALUES ('770', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6706 INSERT INTO `marc_subfield_structure` VALUES ('770', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6707 INSERT INTO `marc_subfield_structure` VALUES ('770', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6708 INSERT INTO `marc_subfield_structure` VALUES ('770', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6709 INSERT INTO `marc_subfield_structure` VALUES ('770', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6710 INSERT INTO `marc_subfield_structure` VALUES ('770', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6711 INSERT INTO `marc_subfield_structure` VALUES ('770', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6712 INSERT INTO `marc_subfield_structure` VALUES ('772', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6713 INSERT INTO `marc_subfield_structure` VALUES ('772', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6714 INSERT INTO `marc_subfield_structure` VALUES ('772', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6715 INSERT INTO `marc_subfield_structure` VALUES ('772', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6716 INSERT INTO `marc_subfield_structure` VALUES ('772', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6717 INSERT INTO `marc_subfield_structure` VALUES ('772', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6718 INSERT INTO `marc_subfield_structure` VALUES ('772', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6719 INSERT INTO `marc_subfield_structure` VALUES ('772', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6720 INSERT INTO `marc_subfield_structure` VALUES ('772', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6721 INSERT INTO `marc_subfield_structure` VALUES ('772', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6722 INSERT INTO `marc_subfield_structure` VALUES ('772', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6723 INSERT INTO `marc_subfield_structure` VALUES ('772', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6724 INSERT INTO `marc_subfield_structure` VALUES ('772', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6725 INSERT INTO `marc_subfield_structure` VALUES ('772', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6726 INSERT INTO `marc_subfield_structure` VALUES ('772', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6727 INSERT INTO `marc_subfield_structure` VALUES ('772', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6728 INSERT INTO `marc_subfield_structure` VALUES ('772', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6729 INSERT INTO `marc_subfield_structure` VALUES ('772', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6730 INSERT INTO `marc_subfield_structure` VALUES ('772', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6731 INSERT INTO `marc_subfield_structure` VALUES ('772', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6732 INSERT INTO `marc_subfield_structure` VALUES ('772', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6733 INSERT INTO `marc_subfield_structure` VALUES ('772', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6734 INSERT INTO `marc_subfield_structure` VALUES ('772', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6735 INSERT INTO `marc_subfield_structure` VALUES ('773', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6736 INSERT INTO `marc_subfield_structure` VALUES ('773', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6737 INSERT INTO `marc_subfield_structure` VALUES ('773', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6738 INSERT INTO `marc_subfield_structure` VALUES ('773', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6739 INSERT INTO `marc_subfield_structure` VALUES ('773', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6740 INSERT INTO `marc_subfield_structure` VALUES ('773', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6741 INSERT INTO `marc_subfield_structure` VALUES ('773', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6742 INSERT INTO `marc_subfield_structure` VALUES ('773', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6743 INSERT INTO `marc_subfield_structure` VALUES ('773', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6744 INSERT INTO `marc_subfield_structure` VALUES ('773', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6745 INSERT INTO `marc_subfield_structure` VALUES ('773', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6746 INSERT INTO `marc_subfield_structure` VALUES ('773', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6747 INSERT INTO `marc_subfield_structure` VALUES ('773', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6748 INSERT INTO `marc_subfield_structure` VALUES ('773', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6749 INSERT INTO `marc_subfield_structure` VALUES ('773', 'p', 'Abbreviated title', 'Abbreviated title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6750 INSERT INTO `marc_subfield_structure` VALUES ('773', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6751 INSERT INTO `marc_subfield_structure` VALUES ('773', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6752 INSERT INTO `marc_subfield_structure` VALUES ('773', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6753 INSERT INTO `marc_subfield_structure` VALUES ('773', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6754 INSERT INTO `marc_subfield_structure` VALUES ('773', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6755 INSERT INTO `marc_subfield_structure` VALUES ('773', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6756 INSERT INTO `marc_subfield_structure` VALUES ('773', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6757 INSERT INTO `marc_subfield_structure` VALUES ('773', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6758 INSERT INTO `marc_subfield_structure` VALUES ('774', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6759 INSERT INTO `marc_subfield_structure` VALUES ('774', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6760 INSERT INTO `marc_subfield_structure` VALUES ('774', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6761 INSERT INTO `marc_subfield_structure` VALUES ('774', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6762 INSERT INTO `marc_subfield_structure` VALUES ('774', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6763 INSERT INTO `marc_subfield_structure` VALUES ('774', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6764 INSERT INTO `marc_subfield_structure` VALUES ('774', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6765 INSERT INTO `marc_subfield_structure` VALUES ('774', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6766 INSERT INTO `marc_subfield_structure` VALUES ('774', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6767 INSERT INTO `marc_subfield_structure` VALUES ('774', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6768 INSERT INTO `marc_subfield_structure` VALUES ('774', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6769 INSERT INTO `marc_subfield_structure` VALUES ('774', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6770 INSERT INTO `marc_subfield_structure` VALUES ('774', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6771 INSERT INTO `marc_subfield_structure` VALUES ('774', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6772 INSERT INTO `marc_subfield_structure` VALUES ('774', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6773 INSERT INTO `marc_subfield_structure` VALUES ('774', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6774 INSERT INTO `marc_subfield_structure` VALUES ('774', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6775 INSERT INTO `marc_subfield_structure` VALUES ('774', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6776 INSERT INTO `marc_subfield_structure` VALUES ('774', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6777 INSERT INTO `marc_subfield_structure` VALUES ('774', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6778 INSERT INTO `marc_subfield_structure` VALUES ('774', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6779 INSERT INTO `marc_subfield_structure` VALUES ('774', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6780 INSERT INTO `marc_subfield_structure` VALUES ('775', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6781 INSERT INTO `marc_subfield_structure` VALUES ('775', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6782 INSERT INTO `marc_subfield_structure` VALUES ('775', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6783 INSERT INTO `marc_subfield_structure` VALUES ('775', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6784 INSERT INTO `marc_subfield_structure` VALUES ('775', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6785 INSERT INTO `marc_subfield_structure` VALUES ('775', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6786 INSERT INTO `marc_subfield_structure` VALUES ('775', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6787 INSERT INTO `marc_subfield_structure` VALUES ('775', 'e', 'Language code', 'Language code', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6788 INSERT INTO `marc_subfield_structure` VALUES ('775', 'f', 'Country code', 'Country code', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6789 INSERT INTO `marc_subfield_structure` VALUES ('775', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6790 INSERT INTO `marc_subfield_structure` VALUES ('775', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6791 INSERT INTO `marc_subfield_structure` VALUES ('775', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6792 INSERT INTO `marc_subfield_structure` VALUES ('775', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6793 INSERT INTO `marc_subfield_structure` VALUES ('775', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6794 INSERT INTO `marc_subfield_structure` VALUES ('775', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6795 INSERT INTO `marc_subfield_structure` VALUES ('775', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6796 INSERT INTO `marc_subfield_structure` VALUES ('775', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6797 INSERT INTO `marc_subfield_structure` VALUES ('775', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6798 INSERT INTO `marc_subfield_structure` VALUES ('775', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6799 INSERT INTO `marc_subfield_structure` VALUES ('775', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6800 INSERT INTO `marc_subfield_structure` VALUES ('775', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6801 INSERT INTO `marc_subfield_structure` VALUES ('775', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6802 INSERT INTO `marc_subfield_structure` VALUES ('775', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6803 INSERT INTO `marc_subfield_structure` VALUES ('775', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6804 INSERT INTO `marc_subfield_structure` VALUES ('775', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6805 INSERT INTO `marc_subfield_structure` VALUES ('776', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6806 INSERT INTO `marc_subfield_structure` VALUES ('776', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6807 INSERT INTO `marc_subfield_structure` VALUES ('776', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6808 INSERT INTO `marc_subfield_structure` VALUES ('776', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6809 INSERT INTO `marc_subfield_structure` VALUES ('776', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6810 INSERT INTO `marc_subfield_structure` VALUES ('776', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6811 INSERT INTO `marc_subfield_structure` VALUES ('776', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6812 INSERT INTO `marc_subfield_structure` VALUES ('776', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6813 INSERT INTO `marc_subfield_structure` VALUES ('776', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6814 INSERT INTO `marc_subfield_structure` VALUES ('776', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6815 INSERT INTO `marc_subfield_structure` VALUES ('776', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6816 INSERT INTO `marc_subfield_structure` VALUES ('776', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6817 INSERT INTO `marc_subfield_structure` VALUES ('776', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6818 INSERT INTO `marc_subfield_structure` VALUES ('776', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6819 INSERT INTO `marc_subfield_structure` VALUES ('776', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6820 INSERT INTO `marc_subfield_structure` VALUES ('776', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6821 INSERT INTO `marc_subfield_structure` VALUES ('776', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6822 INSERT INTO `marc_subfield_structure` VALUES ('776', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6823 INSERT INTO `marc_subfield_structure` VALUES ('776', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6824 INSERT INTO `marc_subfield_structure` VALUES ('776', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6825 INSERT INTO `marc_subfield_structure` VALUES ('776', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6826 INSERT INTO `marc_subfield_structure` VALUES ('776', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6827 INSERT INTO `marc_subfield_structure` VALUES ('776', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6828 INSERT INTO `marc_subfield_structure` VALUES ('777', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6829 INSERT INTO `marc_subfield_structure` VALUES ('777', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6830 INSERT INTO `marc_subfield_structure` VALUES ('777', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6831 INSERT INTO `marc_subfield_structure` VALUES ('777', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6832 INSERT INTO `marc_subfield_structure` VALUES ('777', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6833 INSERT INTO `marc_subfield_structure` VALUES ('777', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6834 INSERT INTO `marc_subfield_structure` VALUES ('777', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6835 INSERT INTO `marc_subfield_structure` VALUES ('777', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6836 INSERT INTO `marc_subfield_structure` VALUES ('777', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6837 INSERT INTO `marc_subfield_structure` VALUES ('777', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6838 INSERT INTO `marc_subfield_structure` VALUES ('777', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6839 INSERT INTO `marc_subfield_structure` VALUES ('777', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6840 INSERT INTO `marc_subfield_structure` VALUES ('777', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6841 INSERT INTO `marc_subfield_structure` VALUES ('777', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6842 INSERT INTO `marc_subfield_structure` VALUES ('777', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6843 INSERT INTO `marc_subfield_structure` VALUES ('777', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6844 INSERT INTO `marc_subfield_structure` VALUES ('777', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6845 INSERT INTO `marc_subfield_structure` VALUES ('777', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6846 INSERT INTO `marc_subfield_structure` VALUES ('777', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6847 INSERT INTO `marc_subfield_structure` VALUES ('777', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6848 INSERT INTO `marc_subfield_structure` VALUES ('780', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6849 INSERT INTO `marc_subfield_structure` VALUES ('780', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6850 INSERT INTO `marc_subfield_structure` VALUES ('780', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6851 INSERT INTO `marc_subfield_structure` VALUES ('780', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6852 INSERT INTO `marc_subfield_structure` VALUES ('780', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6853 INSERT INTO `marc_subfield_structure` VALUES ('780', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6854 INSERT INTO `marc_subfield_structure` VALUES ('780', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6855 INSERT INTO `marc_subfield_structure` VALUES ('780', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6856 INSERT INTO `marc_subfield_structure` VALUES ('780', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6857 INSERT INTO `marc_subfield_structure` VALUES ('780', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6858 INSERT INTO `marc_subfield_structure` VALUES ('780', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6859 INSERT INTO `marc_subfield_structure` VALUES ('780', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6860 INSERT INTO `marc_subfield_structure` VALUES ('780', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6861 INSERT INTO `marc_subfield_structure` VALUES ('780', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6862 INSERT INTO `marc_subfield_structure` VALUES ('780', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6863 INSERT INTO `marc_subfield_structure` VALUES ('780', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6864 INSERT INTO `marc_subfield_structure` VALUES ('780', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6865 INSERT INTO `marc_subfield_structure` VALUES ('780', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6866 INSERT INTO `marc_subfield_structure` VALUES ('780', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6867 INSERT INTO `marc_subfield_structure` VALUES ('780', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6868 INSERT INTO `marc_subfield_structure` VALUES ('780', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6869 INSERT INTO `marc_subfield_structure` VALUES ('780', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6870 INSERT INTO `marc_subfield_structure` VALUES ('780', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6871 INSERT INTO `marc_subfield_structure` VALUES ('785', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6872 INSERT INTO `marc_subfield_structure` VALUES ('785', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6873 INSERT INTO `marc_subfield_structure` VALUES ('785', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6874 INSERT INTO `marc_subfield_structure` VALUES ('785', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6875 INSERT INTO `marc_subfield_structure` VALUES ('785', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6876 INSERT INTO `marc_subfield_structure` VALUES ('785', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6877 INSERT INTO `marc_subfield_structure` VALUES ('785', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6878 INSERT INTO `marc_subfield_structure` VALUES ('785', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6879 INSERT INTO `marc_subfield_structure` VALUES ('785', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6880 INSERT INTO `marc_subfield_structure` VALUES ('785', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6881 INSERT INTO `marc_subfield_structure` VALUES ('785', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6882 INSERT INTO `marc_subfield_structure` VALUES ('785', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6883 INSERT INTO `marc_subfield_structure` VALUES ('785', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6884 INSERT INTO `marc_subfield_structure` VALUES ('785', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6885 INSERT INTO `marc_subfield_structure` VALUES ('785', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6886 INSERT INTO `marc_subfield_structure` VALUES ('785', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6887 INSERT INTO `marc_subfield_structure` VALUES ('785', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6888 INSERT INTO `marc_subfield_structure` VALUES ('785', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6889 INSERT INTO `marc_subfield_structure` VALUES ('785', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6890 INSERT INTO `marc_subfield_structure` VALUES ('785', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6891 INSERT INTO `marc_subfield_structure` VALUES ('785', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6892 INSERT INTO `marc_subfield_structure` VALUES ('785', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6893 INSERT INTO `marc_subfield_structure` VALUES ('785', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6894 INSERT INTO `marc_subfield_structure` VALUES ('786', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6895 INSERT INTO `marc_subfield_structure` VALUES ('786', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6896 INSERT INTO `marc_subfield_structure` VALUES ('786', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6897 INSERT INTO `marc_subfield_structure` VALUES ('786', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6898 INSERT INTO `marc_subfield_structure` VALUES ('786', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6899 INSERT INTO `marc_subfield_structure` VALUES ('786', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6900 INSERT INTO `marc_subfield_structure` VALUES ('786', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6901 INSERT INTO `marc_subfield_structure` VALUES ('786', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6902 INSERT INTO `marc_subfield_structure` VALUES ('786', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6903 INSERT INTO `marc_subfield_structure` VALUES ('786', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6904 INSERT INTO `marc_subfield_structure` VALUES ('786', 'j', 'Period of content', 'Period of content', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6905 INSERT INTO `marc_subfield_structure` VALUES ('786', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6906 INSERT INTO `marc_subfield_structure` VALUES ('786', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6907 INSERT INTO `marc_subfield_structure` VALUES ('786', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6908 INSERT INTO `marc_subfield_structure` VALUES ('786', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6909 INSERT INTO `marc_subfield_structure` VALUES ('786', 'p', 'Abbreviated title', 'Abbreviated title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6910 INSERT INTO `marc_subfield_structure` VALUES ('786', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6911 INSERT INTO `marc_subfield_structure` VALUES ('786', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6912 INSERT INTO `marc_subfield_structure` VALUES ('786', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6913 INSERT INTO `marc_subfield_structure` VALUES ('786', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6914 INSERT INTO `marc_subfield_structure` VALUES ('786', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6915 INSERT INTO `marc_subfield_structure` VALUES ('786', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6916 INSERT INTO `marc_subfield_structure` VALUES ('786', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6917 INSERT INTO `marc_subfield_structure` VALUES ('786', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6918 INSERT INTO `marc_subfield_structure` VALUES ('787', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6919 INSERT INTO `marc_subfield_structure` VALUES ('787', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6920 INSERT INTO `marc_subfield_structure` VALUES ('787', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6921 INSERT INTO `marc_subfield_structure` VALUES ('787', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6922 INSERT INTO `marc_subfield_structure` VALUES ('787', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6923 INSERT INTO `marc_subfield_structure` VALUES ('787', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6924 INSERT INTO `marc_subfield_structure` VALUES ('787', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6925 INSERT INTO `marc_subfield_structure` VALUES ('787', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6926 INSERT INTO `marc_subfield_structure` VALUES ('787', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6927 INSERT INTO `marc_subfield_structure` VALUES ('787', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6928 INSERT INTO `marc_subfield_structure` VALUES ('787', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6929 INSERT INTO `marc_subfield_structure` VALUES ('787', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6930 INSERT INTO `marc_subfield_structure` VALUES ('787', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6931 INSERT INTO `marc_subfield_structure` VALUES ('787', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6932 INSERT INTO `marc_subfield_structure` VALUES ('787', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6933 INSERT INTO `marc_subfield_structure` VALUES ('787', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6934 INSERT INTO `marc_subfield_structure` VALUES ('787', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6935 INSERT INTO `marc_subfield_structure` VALUES ('787', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6936 INSERT INTO `marc_subfield_structure` VALUES ('787', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6937 INSERT INTO `marc_subfield_structure` VALUES ('787', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6938 INSERT INTO `marc_subfield_structure` VALUES ('787', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6939 INSERT INTO `marc_subfield_structure` VALUES ('787', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6940 INSERT INTO `marc_subfield_structure` VALUES ('787', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
6941 INSERT INTO `marc_subfield_structure` VALUES ('789', '%', '%', '%', 0, 0, '', 7, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
6942 INSERT INTO `marc_subfield_structure` VALUES ('789', '2', '2', '2', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6943 INSERT INTO `marc_subfield_structure` VALUES ('789', '3', '3', '3', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6944 INSERT INTO `marc_subfield_structure` VALUES ('789', '4', '4', '4', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6945 INSERT INTO `marc_subfield_structure` VALUES ('789', '5', '5', '5', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6946 INSERT INTO `marc_subfield_structure` VALUES ('789', '6', '6', '6', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6947 INSERT INTO `marc_subfield_structure` VALUES ('789', '7', '7', '7', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6948 INSERT INTO `marc_subfield_structure` VALUES ('789', '8', '8', '8', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6949 INSERT INTO `marc_subfield_structure` VALUES ('789', '9', '9', '9', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6950 INSERT INTO `marc_subfield_structure` VALUES ('789', 'a', 'a', 'a', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6951 INSERT INTO `marc_subfield_structure` VALUES ('789', 'b', 'b', 'b', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6952 INSERT INTO `marc_subfield_structure` VALUES ('789', 'c', 'c', 'c', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6953 INSERT INTO `marc_subfield_structure` VALUES ('789', 'd', 'd', 'd', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6954 INSERT INTO `marc_subfield_structure` VALUES ('789', 'e', 'e', 'e', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6955 INSERT INTO `marc_subfield_structure` VALUES ('789', 'f', 'f', 'f', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6956 INSERT INTO `marc_subfield_structure` VALUES ('789', 'g', 'g', 'g', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6957 INSERT INTO `marc_subfield_structure` VALUES ('789', 'h', 'h', 'h', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6958 INSERT INTO `marc_subfield_structure` VALUES ('789', 'i', 'i', 'i', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6959 INSERT INTO `marc_subfield_structure` VALUES ('789', 'j', 'j', 'j', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6960 INSERT INTO `marc_subfield_structure` VALUES ('789', 'k', 'k', 'k', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6961 INSERT INTO `marc_subfield_structure` VALUES ('789', 'l', 'l', 'l', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6962 INSERT INTO `marc_subfield_structure` VALUES ('789', 'm', 'm', 'm', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6963 INSERT INTO `marc_subfield_structure` VALUES ('789', 'n', 'n', 'n', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6964 INSERT INTO `marc_subfield_structure` VALUES ('789', 'o', 'o', 'o', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6965 INSERT INTO `marc_subfield_structure` VALUES ('789', 'p', 'p', 'p', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6966 INSERT INTO `marc_subfield_structure` VALUES ('789', 'q', 'q', 'q', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6967 INSERT INTO `marc_subfield_structure` VALUES ('789', 'r', 'r', 'r', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6968 INSERT INTO `marc_subfield_structure` VALUES ('789', 's', 's', 's', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6969 INSERT INTO `marc_subfield_structure` VALUES ('789', 't', 't', 't', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6970 INSERT INTO `marc_subfield_structure` VALUES ('789', 'u', 'u', 'u', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6971 INSERT INTO `marc_subfield_structure` VALUES ('789', 'v', 'v', 'v', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6972 INSERT INTO `marc_subfield_structure` VALUES ('789', 'w', 'w', 'w', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6973 INSERT INTO `marc_subfield_structure` VALUES ('789', 'x', 'x', 'x', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6974 INSERT INTO `marc_subfield_structure` VALUES ('789', 'y', 'y', 'y', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6975 INSERT INTO `marc_subfield_structure` VALUES ('789', 'z', 'z', 'z', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6976 INSERT INTO `marc_subfield_structure` VALUES ('796', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 7, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
6977 INSERT INTO `marc_subfield_structure` VALUES ('796', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6978 INSERT INTO `marc_subfield_structure` VALUES ('796', '4', 'Relator code', 'Relator code', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6979 INSERT INTO `marc_subfield_structure` VALUES ('796', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6980 INSERT INTO `marc_subfield_structure` VALUES ('796', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6981 INSERT INTO `marc_subfield_structure` VALUES ('796', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6982 INSERT INTO `marc_subfield_structure` VALUES ('796', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'ASMP_BOOKS', '', '');
6983 INSERT INTO `marc_subfield_structure` VALUES ('796', 'a', 'Personal name', 'Personal name', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6984 INSERT INTO `marc_subfield_structure` VALUES ('796', 'b', 'Numeration', 'Numeration', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6985 INSERT INTO `marc_subfield_structure` VALUES ('796', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6986 INSERT INTO `marc_subfield_structure` VALUES ('796', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6987 INSERT INTO `marc_subfield_structure` VALUES ('796', 'e', 'Relator term', 'Relator term', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6988 INSERT INTO `marc_subfield_structure` VALUES ('796', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6989 INSERT INTO `marc_subfield_structure` VALUES ('796', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6990 INSERT INTO `marc_subfield_structure` VALUES ('796', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6991 INSERT INTO `marc_subfield_structure` VALUES ('796', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6992 INSERT INTO `marc_subfield_structure` VALUES ('796', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6993 INSERT INTO `marc_subfield_structure` VALUES ('796', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6994 INSERT INTO `marc_subfield_structure` VALUES ('796', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6995 INSERT INTO `marc_subfield_structure` VALUES ('796', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6996 INSERT INTO `marc_subfield_structure` VALUES ('796', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6997 INSERT INTO `marc_subfield_structure` VALUES ('796', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6998 INSERT INTO `marc_subfield_structure` VALUES ('796', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
6999 INSERT INTO `marc_subfield_structure` VALUES ('796', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7000 INSERT INTO `marc_subfield_structure` VALUES ('796', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7001 INSERT INTO `marc_subfield_structure` VALUES ('796', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7002 INSERT INTO `marc_subfield_structure` VALUES ('796', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7003 INSERT INTO `marc_subfield_structure` VALUES ('796', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7004 INSERT INTO `marc_subfield_structure` VALUES ('797', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 7, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
7005 INSERT INTO `marc_subfield_structure` VALUES ('797', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7006 INSERT INTO `marc_subfield_structure` VALUES ('797', '4', 'Relator code', 'Relator code', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7007 INSERT INTO `marc_subfield_structure` VALUES ('797', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7008 INSERT INTO `marc_subfield_structure` VALUES ('797', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7009 INSERT INTO `marc_subfield_structure` VALUES ('797', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7010 INSERT INTO `marc_subfield_structure` VALUES ('797', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'ASMP_BOOKS', '', '');
7011 INSERT INTO `marc_subfield_structure` VALUES ('797', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7012 INSERT INTO `marc_subfield_structure` VALUES ('797', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7013 INSERT INTO `marc_subfield_structure` VALUES ('797', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7014 INSERT INTO `marc_subfield_structure` VALUES ('797', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7015 INSERT INTO `marc_subfield_structure` VALUES ('797', 'e', 'Relator term', 'Relator term', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7016 INSERT INTO `marc_subfield_structure` VALUES ('797', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7017 INSERT INTO `marc_subfield_structure` VALUES ('797', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7018 INSERT INTO `marc_subfield_structure` VALUES ('797', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7019 INSERT INTO `marc_subfield_structure` VALUES ('797', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7020 INSERT INTO `marc_subfield_structure` VALUES ('797', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7021 INSERT INTO `marc_subfield_structure` VALUES ('797', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7022 INSERT INTO `marc_subfield_structure` VALUES ('797', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7023 INSERT INTO `marc_subfield_structure` VALUES ('797', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7024 INSERT INTO `marc_subfield_structure` VALUES ('797', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7025 INSERT INTO `marc_subfield_structure` VALUES ('797', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7026 INSERT INTO `marc_subfield_structure` VALUES ('797', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7027 INSERT INTO `marc_subfield_structure` VALUES ('797', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7028 INSERT INTO `marc_subfield_structure` VALUES ('797', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7029 INSERT INTO `marc_subfield_structure` VALUES ('797', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7030 INSERT INTO `marc_subfield_structure` VALUES ('798', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'ASMP_BOOKS', '', '');
7031 INSERT INTO `marc_subfield_structure` VALUES ('798', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7032 INSERT INTO `marc_subfield_structure` VALUES ('798', '4', 'Relator code', 'Relator code', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7033 INSERT INTO `marc_subfield_structure` VALUES ('798', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7034 INSERT INTO `marc_subfield_structure` VALUES ('798', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7035 INSERT INTO `marc_subfield_structure` VALUES ('798', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7036 INSERT INTO `marc_subfield_structure` VALUES ('798', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'ASMP_BOOKS', '', '');
7037 INSERT INTO `marc_subfield_structure` VALUES ('798', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7038 INSERT INTO `marc_subfield_structure` VALUES ('798', 'b', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7039 INSERT INTO `marc_subfield_structure` VALUES ('798', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7040 INSERT INTO `marc_subfield_structure` VALUES ('798', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7041 INSERT INTO `marc_subfield_structure` VALUES ('798', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7042 INSERT INTO `marc_subfield_structure` VALUES ('798', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7043 INSERT INTO `marc_subfield_structure` VALUES ('798', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7044 INSERT INTO `marc_subfield_structure` VALUES ('798', 'h', 'Medium', 'Medium', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7045 INSERT INTO `marc_subfield_structure` VALUES ('798', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7046 INSERT INTO `marc_subfield_structure` VALUES ('798', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7047 INSERT INTO `marc_subfield_structure` VALUES ('798', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7048 INSERT INTO `marc_subfield_structure` VALUES ('798', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7049 INSERT INTO `marc_subfield_structure` VALUES ('798', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7050 INSERT INTO `marc_subfield_structure` VALUES ('798', 's', 'Version', 'Version', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7051 INSERT INTO `marc_subfield_structure` VALUES ('798', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7052 INSERT INTO `marc_subfield_structure` VALUES ('798', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7053 INSERT INTO `marc_subfield_structure` VALUES ('798', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7054 INSERT INTO `marc_subfield_structure` VALUES ('799', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 7, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
7055 INSERT INTO `marc_subfield_structure` VALUES ('799', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7056 INSERT INTO `marc_subfield_structure` VALUES ('799', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7057 INSERT INTO `marc_subfield_structure` VALUES ('799', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7058 INSERT INTO `marc_subfield_structure` VALUES ('799', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7059 INSERT INTO `marc_subfield_structure` VALUES ('799', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'ASMP_BOOKS', '', '');
7060 INSERT INTO `marc_subfield_structure` VALUES ('799', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7061 INSERT INTO `marc_subfield_structure` VALUES ('799', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7062 INSERT INTO `marc_subfield_structure` VALUES ('799', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7063 INSERT INTO `marc_subfield_structure` VALUES ('799', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7064 INSERT INTO `marc_subfield_structure` VALUES ('799', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7065 INSERT INTO `marc_subfield_structure` VALUES ('799', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7066 INSERT INTO `marc_subfield_structure` VALUES ('799', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7067 INSERT INTO `marc_subfield_structure` VALUES ('799', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7068 INSERT INTO `marc_subfield_structure` VALUES ('799', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7069 INSERT INTO `marc_subfield_structure` VALUES ('799', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7070 INSERT INTO `marc_subfield_structure` VALUES ('799', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7071 INSERT INTO `marc_subfield_structure` VALUES ('799', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7072 INSERT INTO `marc_subfield_structure` VALUES ('799', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7073 INSERT INTO `marc_subfield_structure` VALUES ('799', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7074 INSERT INTO `marc_subfield_structure` VALUES ('799', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7075 INSERT INTO `marc_subfield_structure` VALUES ('800', '4', 'Relator code', 'Relator code', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7076 INSERT INTO `marc_subfield_structure` VALUES ('800', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7077 INSERT INTO `marc_subfield_structure` VALUES ('800', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7078 INSERT INTO `marc_subfield_structure` VALUES ('800', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, 'ASMP_BOOKS', '', '');
7079 INSERT INTO `marc_subfield_structure` VALUES ('800', 'a', 'Personal name', 'Personal name', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7080 INSERT INTO `marc_subfield_structure` VALUES ('800', 'b', 'Numeration', 'Numeration', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7081 INSERT INTO `marc_subfield_structure` VALUES ('800', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7082 INSERT INTO `marc_subfield_structure` VALUES ('800', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7083 INSERT INTO `marc_subfield_structure` VALUES ('800', 'e', 'Relator term', 'Relator term', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7084 INSERT INTO `marc_subfield_structure` VALUES ('800', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7085 INSERT INTO `marc_subfield_structure` VALUES ('800', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7086 INSERT INTO `marc_subfield_structure` VALUES ('800', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7087 INSERT INTO `marc_subfield_structure` VALUES ('800', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7088 INSERT INTO `marc_subfield_structure` VALUES ('800', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7089 INSERT INTO `marc_subfield_structure` VALUES ('800', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7090 INSERT INTO `marc_subfield_structure` VALUES ('800', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7091 INSERT INTO `marc_subfield_structure` VALUES ('800', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7092 INSERT INTO `marc_subfield_structure` VALUES ('800', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7093 INSERT INTO `marc_subfield_structure` VALUES ('800', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7094 INSERT INTO `marc_subfield_structure` VALUES ('800', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7095 INSERT INTO `marc_subfield_structure` VALUES ('800', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7096 INSERT INTO `marc_subfield_structure` VALUES ('800', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7097 INSERT INTO `marc_subfield_structure` VALUES ('800', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7098 INSERT INTO `marc_subfield_structure` VALUES ('800', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7099 INSERT INTO `marc_subfield_structure` VALUES ('800', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7100 INSERT INTO `marc_subfield_structure` VALUES ('810', '4', 'Relator code', 'Relator code', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7101 INSERT INTO `marc_subfield_structure` VALUES ('810', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7102 INSERT INTO `marc_subfield_structure` VALUES ('810', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7103 INSERT INTO `marc_subfield_structure` VALUES ('810', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, 'ASMP_BOOKS', '', '');
7104 INSERT INTO `marc_subfield_structure` VALUES ('810', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7105 INSERT INTO `marc_subfield_structure` VALUES ('810', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7106 INSERT INTO `marc_subfield_structure` VALUES ('810', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7107 INSERT INTO `marc_subfield_structure` VALUES ('810', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7108 INSERT INTO `marc_subfield_structure` VALUES ('810', 'e', 'Relator term', 'Relator term', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7109 INSERT INTO `marc_subfield_structure` VALUES ('810', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7110 INSERT INTO `marc_subfield_structure` VALUES ('810', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7111 INSERT INTO `marc_subfield_structure` VALUES ('810', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7112 INSERT INTO `marc_subfield_structure` VALUES ('810', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7113 INSERT INTO `marc_subfield_structure` VALUES ('810', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7114 INSERT INTO `marc_subfield_structure` VALUES ('810', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7115 INSERT INTO `marc_subfield_structure` VALUES ('810', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7116 INSERT INTO `marc_subfield_structure` VALUES ('810', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7117 INSERT INTO `marc_subfield_structure` VALUES ('810', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7118 INSERT INTO `marc_subfield_structure` VALUES ('810', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7119 INSERT INTO `marc_subfield_structure` VALUES ('810', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7120 INSERT INTO `marc_subfield_structure` VALUES ('810', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7121 INSERT INTO `marc_subfield_structure` VALUES ('810', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7122 INSERT INTO `marc_subfield_structure` VALUES ('810', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7123 INSERT INTO `marc_subfield_structure` VALUES ('811', '4', 'Relator code', 'Relator code', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7124 INSERT INTO `marc_subfield_structure` VALUES ('811', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7125 INSERT INTO `marc_subfield_structure` VALUES ('811', '8', 'Field link and sequence number ', 'Field link and sequence number ', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7126 INSERT INTO `marc_subfield_structure` VALUES ('811', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, 'ASMP_BOOKS', '', '');
7127 INSERT INTO `marc_subfield_structure` VALUES ('811', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7128 INSERT INTO `marc_subfield_structure` VALUES ('811', 'b', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7129 INSERT INTO `marc_subfield_structure` VALUES ('811', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7130 INSERT INTO `marc_subfield_structure` VALUES ('811', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7131 INSERT INTO `marc_subfield_structure` VALUES ('811', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7132 INSERT INTO `marc_subfield_structure` VALUES ('811', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7133 INSERT INTO `marc_subfield_structure` VALUES ('811', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7134 INSERT INTO `marc_subfield_structure` VALUES ('811', 'h', 'Medium', 'Medium', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7135 INSERT INTO `marc_subfield_structure` VALUES ('811', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7136 INSERT INTO `marc_subfield_structure` VALUES ('811', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7137 INSERT INTO `marc_subfield_structure` VALUES ('811', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7138 INSERT INTO `marc_subfield_structure` VALUES ('811', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7139 INSERT INTO `marc_subfield_structure` VALUES ('811', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7140 INSERT INTO `marc_subfield_structure` VALUES ('811', 's', 'Version', 'Version', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7141 INSERT INTO `marc_subfield_structure` VALUES ('811', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7142 INSERT INTO `marc_subfield_structure` VALUES ('811', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7143 INSERT INTO `marc_subfield_structure` VALUES ('811', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7144 INSERT INTO `marc_subfield_structure` VALUES ('830', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7145 INSERT INTO `marc_subfield_structure` VALUES ('830', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7146 INSERT INTO `marc_subfield_structure` VALUES ('830', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, 'ASMP_BOOKS', '', '');
7147 INSERT INTO `marc_subfield_structure` VALUES ('830', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7148 INSERT INTO `marc_subfield_structure` VALUES ('830', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7149 INSERT INTO `marc_subfield_structure` VALUES ('830', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7150 INSERT INTO `marc_subfield_structure` VALUES ('830', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7151 INSERT INTO `marc_subfield_structure` VALUES ('830', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7152 INSERT INTO `marc_subfield_structure` VALUES ('830', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7153 INSERT INTO `marc_subfield_structure` VALUES ('830', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7154 INSERT INTO `marc_subfield_structure` VALUES ('830', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7155 INSERT INTO `marc_subfield_structure` VALUES ('830', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7156 INSERT INTO `marc_subfield_structure` VALUES ('830', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7157 INSERT INTO `marc_subfield_structure` VALUES ('830', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7158 INSERT INTO `marc_subfield_structure` VALUES ('830', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7159 INSERT INTO `marc_subfield_structure` VALUES ('830', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7160 INSERT INTO `marc_subfield_structure` VALUES ('830', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7161 INSERT INTO `marc_subfield_structure` VALUES ('830', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7162 INSERT INTO `marc_subfield_structure` VALUES ('840', 'a', 'Title', 'Title', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7163 INSERT INTO `marc_subfield_structure` VALUES ('840', 'h', 'Medium', 'Medium', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7164 INSERT INTO `marc_subfield_structure` VALUES ('840', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7165 INSERT INTO `marc_subfield_structure` VALUES ('841', 'a', 'Type of record', 'Type of record', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_BOOKS', '', '');
7166 INSERT INTO `marc_subfield_structure` VALUES ('841', 'b', 'Fixed-length data elements', 'Fixed-length data elements', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_BOOKS', '', '');
7167 INSERT INTO `marc_subfield_structure` VALUES ('841', 'e', 'Encoding level', 'Encoding level', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_BOOKS', '', '');
7168 INSERT INTO `marc_subfield_structure` VALUES ('842', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7169 INSERT INTO `marc_subfield_structure` VALUES ('842', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7170 INSERT INTO `marc_subfield_structure` VALUES ('842', 'a', 'Textual physical form designator', 'Textual physical form designator', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7171 INSERT INTO `marc_subfield_structure` VALUES ('843', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_BOOKS', '', '');
7172 INSERT INTO `marc_subfield_structure` VALUES ('843', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_BOOKS', '', '');
7173 INSERT INTO `marc_subfield_structure` VALUES ('843', '7', 'Fixed-length data elements of reproduction', 'Fixed-length data elements of reproduction', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_BOOKS', '', '');
7174 INSERT INTO `marc_subfield_structure` VALUES ('843', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_BOOKS', '', '');
7175 INSERT INTO `marc_subfield_structure` VALUES ('843', 'a', 'Type of reproduction', 'Type of reproduction', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_BOOKS', '', '');
7176 INSERT INTO `marc_subfield_structure` VALUES ('843', 'b', 'Place of reproduction', 'Place of reproduction', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_BOOKS', '', '');
7177 INSERT INTO `marc_subfield_structure` VALUES ('843', 'c', 'Agency responsible for reproduction', 'Agency responsible for reproduction', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_BOOKS', '', '');
7178 INSERT INTO `marc_subfield_structure` VALUES ('843', 'd', 'Date of reproduction', 'Date of reproduction', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_BOOKS', '', '');
7179 INSERT INTO `marc_subfield_structure` VALUES ('843', 'e', 'Physical description of reproduction', 'Physical description of reproduction', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_BOOKS', '', '');
7180 INSERT INTO `marc_subfield_structure` VALUES ('843', 'f', 'Series statement of reproduction', 'Series statement of reproduction', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_BOOKS', '', '');
7181 INSERT INTO `marc_subfield_structure` VALUES ('843', 'm', 'Dates of publication and/or sequential designation of issues reproduced', 'Dates of publication and/or sequential designation of issues reproduced', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_BOOKS', '', '');
7182 INSERT INTO `marc_subfield_structure` VALUES ('843', 'n', 'Note about reproduction', 'Note about reproduction', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_BOOKS', '', '');
7183 INSERT INTO `marc_subfield_structure` VALUES ('844', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7184 INSERT INTO `marc_subfield_structure` VALUES ('844', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7185 INSERT INTO `marc_subfield_structure` VALUES ('844', 'a', 'Name of unit', 'Name of unit', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7186 INSERT INTO `marc_subfield_structure` VALUES ('845', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_BOOKS', '', '');
7187 INSERT INTO `marc_subfield_structure` VALUES ('845', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_BOOKS', '', '');
7188 INSERT INTO `marc_subfield_structure` VALUES ('845', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_BOOKS', '', '');
7189 INSERT INTO `marc_subfield_structure` VALUES ('845', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_BOOKS', '', '');
7190 INSERT INTO `marc_subfield_structure` VALUES ('845', 'a', 'Terms governing use and reproduction', 'Terms governing use and reproduction', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_BOOKS', '', '');
7191 INSERT INTO `marc_subfield_structure` VALUES ('845', 'b', 'Jurisdiction', 'Jurisdiction', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_BOOKS', '', '');
7192 INSERT INTO `marc_subfield_structure` VALUES ('845', 'c', 'Authorization', 'Authorization', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_BOOKS', '', '');
7193 INSERT INTO `marc_subfield_structure` VALUES ('845', 'd', 'Authorized users', 'Authorized users', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_BOOKS', '', '');
7194 INSERT INTO `marc_subfield_structure` VALUES ('850', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_BOOKS', '', '');
7195 INSERT INTO `marc_subfield_structure` VALUES ('850', 'a', 'Holding institution', 'Holding institution', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_BOOKS', '', '');
7196 INSERT INTO `marc_subfield_structure` VALUES ('850', 'b', 'Holdings (NR) (MU VM SE) [OBSOLETE]', 'Holdings (NR) (MU VM SE) [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_BOOKS', '', '');
7197 INSERT INTO `marc_subfield_structure` VALUES ('850', 'd', 'Inclusive dates (NR) (MU VM SE) [OBSOLETE]', 'Inclusive dates (NR) (MU VM SE) [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_BOOKS', '', '');
7198 INSERT INTO `marc_subfield_structure` VALUES ('850', 'e', 'Retention statement (NR) (CF MU VM SE) [OBSOLETE]', 'Retention statement (NR) (CF MU VM SE) [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_BOOKS', '', '');
7199 INSERT INTO `marc_subfield_structure` VALUES ('851', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_BOOKS', '', '');
7200 INSERT INTO `marc_subfield_structure` VALUES ('851', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_BOOKS', '', '');
7201 INSERT INTO `marc_subfield_structure` VALUES ('851', 'a', 'Name (custodian or owner)', 'Name (custodian or owner)', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_BOOKS', '', '');
7202 INSERT INTO `marc_subfield_structure` VALUES ('851', 'b', 'Institutional division', 'Institutional division', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_BOOKS', '', '');
7203 INSERT INTO `marc_subfield_structure` VALUES ('851', 'c', 'Street address', 'Street address', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_BOOKS', '', '');
7204 INSERT INTO `marc_subfield_structure` VALUES ('851', 'd', 'Country', 'Country', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_BOOKS', '', '');
7205 INSERT INTO `marc_subfield_structure` VALUES ('851', 'e', 'Location of units', 'Location of units', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_BOOKS', '', '');
7206 INSERT INTO `marc_subfield_structure` VALUES ('851', 'f', 'Item number', 'Item number', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_BOOKS', '', '');
7207 INSERT INTO `marc_subfield_structure` VALUES ('851', 'g', 'Repository location code', 'Repository location code', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_BOOKS', '', '');
7208 INSERT INTO `marc_subfield_structure` VALUES ('852', '2', 'Source of classification or shelving scheme', 'Source of classification or shelving scheme', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7209 INSERT INTO `marc_subfield_structure` VALUES ('852', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7210 INSERT INTO `marc_subfield_structure` VALUES ('852', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7211 INSERT INTO `marc_subfield_structure` VALUES ('852', '8', 'Sequence number', 'Sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7212 INSERT INTO `marc_subfield_structure` VALUES ('852', 'a', 'Location', 'Location', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7213 INSERT INTO `marc_subfield_structure` VALUES ('852', 'b', 'Sublocation or collection', 'Sublocation or collection', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7214 INSERT INTO `marc_subfield_structure` VALUES ('852', 'c', 'Shelving location', 'Shelving location', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7215 INSERT INTO `marc_subfield_structure` VALUES ('852', 'e', 'Address', 'Address', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7216 INSERT INTO `marc_subfield_structure` VALUES ('852', 'f', 'Coded location qualifier', 'Coded location qualifier', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7217 INSERT INTO `marc_subfield_structure` VALUES ('852', 'g', 'Non-coded location qualifier', 'Non-coded location qualifier', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7218 INSERT INTO `marc_subfield_structure` VALUES ('852', 'h', 'Classification part', 'Classification part', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7219 INSERT INTO `marc_subfield_structure` VALUES ('852', 'i', 'Item part', 'Item part', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7220 INSERT INTO `marc_subfield_structure` VALUES ('852', 'j', 'Shelving control number', 'Shelving control number', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7221 INSERT INTO `marc_subfield_structure` VALUES ('852', 'k', 'Call number prefix', 'Call number prefix', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7222 INSERT INTO `marc_subfield_structure` VALUES ('852', 'l', 'Shelving form of title', 'Shelving form of title', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7223 INSERT INTO `marc_subfield_structure` VALUES ('852', 'm', 'Call number suffix', 'Call number suffix', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7224 INSERT INTO `marc_subfield_structure` VALUES ('852', 'n', 'Country code', 'Country code', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7225 INSERT INTO `marc_subfield_structure` VALUES ('852', 'p', 'Piece designation', 'Piece designation', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7226 INSERT INTO `marc_subfield_structure` VALUES ('852', 'q', 'Piece physical condition', 'Piece physical condition', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7227 INSERT INTO `marc_subfield_structure` VALUES ('852', 's', 'Copyright article-fee code', 'Copyright article-fee code', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7228 INSERT INTO `marc_subfield_structure` VALUES ('852', 't', 'Copy number', 'Copy number', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7229 INSERT INTO `marc_subfield_structure` VALUES ('852', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7230 INSERT INTO `marc_subfield_structure` VALUES ('852', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7231 INSERT INTO `marc_subfield_structure` VALUES ('853', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7232 INSERT INTO `marc_subfield_structure` VALUES ('853', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7233 INSERT INTO `marc_subfield_structure` VALUES ('853', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7234 INSERT INTO `marc_subfield_structure` VALUES ('853', 'a', 'First level of enumeration', 'First level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7235 INSERT INTO `marc_subfield_structure` VALUES ('853', 'b', 'Second level of enumeration', 'Second level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7236 INSERT INTO `marc_subfield_structure` VALUES ('853', 'c', 'Third level of enumeration', 'Third level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7237 INSERT INTO `marc_subfield_structure` VALUES ('853', 'd', 'Fourth level of enumeration', 'Fourth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7238 INSERT INTO `marc_subfield_structure` VALUES ('853', 'e', 'Fifth level of enumeration', 'Fifth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7239 INSERT INTO `marc_subfield_structure` VALUES ('853', 'f', 'Sixth level of enumeration', 'Sixth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7240 INSERT INTO `marc_subfield_structure` VALUES ('853', 'g', 'Alternative numbering scheme, first level of enumeration', 'Alternative numbering scheme, first level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7241 INSERT INTO `marc_subfield_structure` VALUES ('853', 'h', 'Alternative numbering scheme, second level of enumeration', 'Alternative numbering scheme, second level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7242 INSERT INTO `marc_subfield_structure` VALUES ('853', 'i', 'First level of chronology', 'First level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7243 INSERT INTO `marc_subfield_structure` VALUES ('853', 'j', 'Second level of chronology', 'Second level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7244 INSERT INTO `marc_subfield_structure` VALUES ('853', 'k', 'Third level of chronology', 'Third level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7245 INSERT INTO `marc_subfield_structure` VALUES ('853', 'l', 'Fourth level of chronology', 'Fourth level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7246 INSERT INTO `marc_subfield_structure` VALUES ('853', 'm', 'Alternative numbering scheme, chronology', 'Alternative numbering scheme, chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7247 INSERT INTO `marc_subfield_structure` VALUES ('853', 'n', 'Pattern note', 'Pattern note', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7248 INSERT INTO `marc_subfield_structure` VALUES ('853', 'p', 'Number of pieces per issuance', 'Number of pieces per issuance', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7249 INSERT INTO `marc_subfield_structure` VALUES ('853', 't', 'Copy', 'Copy', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7250 INSERT INTO `marc_subfield_structure` VALUES ('853', 'u', 'Bibliographic units per next higher level', 'Bibliographic units per next higher level', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7251 INSERT INTO `marc_subfield_structure` VALUES ('853', 'v', 'Numbering continuity', 'Numbering continuity', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7252 INSERT INTO `marc_subfield_structure` VALUES ('853', 'w', 'Frequency', 'Frequency', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7253 INSERT INTO `marc_subfield_structure` VALUES ('853', 'x', 'Calendar change', 'Calendar change', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7254 INSERT INTO `marc_subfield_structure` VALUES ('853', 'y', 'Regularity pattern', 'Regularity pattern', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7255 INSERT INTO `marc_subfield_structure` VALUES ('853', 'z', 'Numbering scheme', 'Numbering scheme', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7256 INSERT INTO `marc_subfield_structure` VALUES ('854', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7257 INSERT INTO `marc_subfield_structure` VALUES ('854', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7258 INSERT INTO `marc_subfield_structure` VALUES ('854', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7259 INSERT INTO `marc_subfield_structure` VALUES ('854', 'a', 'First level of enumeration', 'First level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7260 INSERT INTO `marc_subfield_structure` VALUES ('854', 'b', 'Second level of enumeration', 'Second level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7261 INSERT INTO `marc_subfield_structure` VALUES ('854', 'c', 'Third level of enumeration', 'Third level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7262 INSERT INTO `marc_subfield_structure` VALUES ('854', 'd', 'Fourth level of enumeration', 'Fourth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7263 INSERT INTO `marc_subfield_structure` VALUES ('854', 'e', 'Fifth level of enumeration', 'Fifth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7264 INSERT INTO `marc_subfield_structure` VALUES ('854', 'f', 'Sixth level of enumeration', 'Sixth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7265 INSERT INTO `marc_subfield_structure` VALUES ('854', 'g', 'Alternative numbering scheme, first level of enumeration', 'Alternative numbering scheme, first level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7266 INSERT INTO `marc_subfield_structure` VALUES ('854', 'h', 'Alternative numbering scheme, second level of enumeration', 'Alternative numbering scheme, second level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7267 INSERT INTO `marc_subfield_structure` VALUES ('854', 'i', 'First level of chronology', 'First level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7268 INSERT INTO `marc_subfield_structure` VALUES ('854', 'j', 'Second level of chronology', 'Second level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7269 INSERT INTO `marc_subfield_structure` VALUES ('854', 'k', 'Third level of chronology', 'Third level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7270 INSERT INTO `marc_subfield_structure` VALUES ('854', 'l', 'Fourth level of chronology', 'Fourth level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7271 INSERT INTO `marc_subfield_structure` VALUES ('854', 'm', 'Alternative numbering scheme, chronology', 'Alternative numbering scheme, chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7272 INSERT INTO `marc_subfield_structure` VALUES ('854', 'n', 'Pattern note', 'Pattern note', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7273 INSERT INTO `marc_subfield_structure` VALUES ('854', 'p', 'Number of pieces per issuance', 'Number of pieces per issuance', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7274 INSERT INTO `marc_subfield_structure` VALUES ('854', 't', 'Copy', 'Copy', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7275 INSERT INTO `marc_subfield_structure` VALUES ('854', 'u', 'Bibliographic units per next higher level', 'Bibliographic units per next higher level', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7276 INSERT INTO `marc_subfield_structure` VALUES ('854', 'v', 'Numbering continuity', 'Numbering continuity', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7277 INSERT INTO `marc_subfield_structure` VALUES ('854', 'w', 'Frequency', 'Frequency', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7278 INSERT INTO `marc_subfield_structure` VALUES ('854', 'x', 'Calendar change', 'Calendar change', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7279 INSERT INTO `marc_subfield_structure` VALUES ('854', 'y', 'Regularity pattern', 'Regularity pattern', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7280 INSERT INTO `marc_subfield_structure` VALUES ('854', 'z', 'Numbering scheme', 'Numbering scheme', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7281 INSERT INTO `marc_subfield_structure` VALUES ('855', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7282 INSERT INTO `marc_subfield_structure` VALUES ('855', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7283 INSERT INTO `marc_subfield_structure` VALUES ('855', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7284 INSERT INTO `marc_subfield_structure` VALUES ('855', 'a', 'First level of enumeration', 'First level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7285 INSERT INTO `marc_subfield_structure` VALUES ('855', 'b', 'Second level of enumeration', 'Second level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7286 INSERT INTO `marc_subfield_structure` VALUES ('855', 'c', 'Third level of enumeration', 'Third level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7287 INSERT INTO `marc_subfield_structure` VALUES ('855', 'd', 'Fourth level of enumeration', 'Fourth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7288 INSERT INTO `marc_subfield_structure` VALUES ('855', 'e', 'Fifth level of enumeration', 'Fifth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7289 INSERT INTO `marc_subfield_structure` VALUES ('855', 'f', 'Sixth level of enumeration', 'Sixth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7290 INSERT INTO `marc_subfield_structure` VALUES ('855', 'g', 'Alternative numbering scheme, first level of enumeration', 'Alternative numbering scheme, first level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7291 INSERT INTO `marc_subfield_structure` VALUES ('855', 'h', 'Alternative numbering scheme, second level of enumeration', 'Alternative numbering scheme, second level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7292 INSERT INTO `marc_subfield_structure` VALUES ('855', 'i', 'First level of chronology', 'First level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7293 INSERT INTO `marc_subfield_structure` VALUES ('855', 'j', 'Second level of chronology', 'Second level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7294 INSERT INTO `marc_subfield_structure` VALUES ('855', 'k', 'Third level of chronology', 'Third level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7295 INSERT INTO `marc_subfield_structure` VALUES ('855', 'l', 'Fourth level of chronology', 'Fourth level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7296 INSERT INTO `marc_subfield_structure` VALUES ('855', 'm', 'Alternative numbering scheme, chronology', 'Alternative numbering scheme, chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7297 INSERT INTO `marc_subfield_structure` VALUES ('855', 'n', 'Pattern note', 'Pattern note', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7298 INSERT INTO `marc_subfield_structure` VALUES ('855', 'p', 'Number of pieces per issuance', 'Number of pieces per issuance', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7299 INSERT INTO `marc_subfield_structure` VALUES ('855', 't', 'Copy', 'Copy', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7300 INSERT INTO `marc_subfield_structure` VALUES ('855', 'u', 'Bibliographic units per next higher level', 'Bibliographic units per next higher level', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7301 INSERT INTO `marc_subfield_structure` VALUES ('855', 'v', 'Numbering continuity', 'Numbering continuity', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7302 INSERT INTO `marc_subfield_structure` VALUES ('855', 'w', 'Frequency', 'Frequency', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7303 INSERT INTO `marc_subfield_structure` VALUES ('855', 'x', 'Calendar change', 'Calendar change', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7304 INSERT INTO `marc_subfield_structure` VALUES ('855', 'y', 'Regularity pattern', 'Regularity pattern', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7305 INSERT INTO `marc_subfield_structure` VALUES ('855', 'z', 'Numbering scheme', 'Numbering scheme', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7306 INSERT INTO `marc_subfield_structure` VALUES ('856', '2', 'Access method', 'Access method', 0, 0, '', 8, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
7307 INSERT INTO `marc_subfield_structure` VALUES ('856', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
7308 INSERT INTO `marc_subfield_structure` VALUES ('856', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
7309 INSERT INTO `marc_subfield_structure` VALUES ('856', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
7310 INSERT INTO `marc_subfield_structure` VALUES ('856', 'a', 'Host name', 'Host name', 1, 0, '', 8, '', '', '', 0, -1, 'ASMP_BOOKS', '', '');
7311 INSERT INTO `marc_subfield_structure` VALUES ('856', 'b', 'Access number', 'Access number', 1, 0, '', 8, '', '', '', 0, -1, 'ASMP_BOOKS', '', '');
7312 INSERT INTO `marc_subfield_structure` VALUES ('856', 'c', 'Compression information', 'Compression information', 1, 0, '', 8, '', '', '', 0, -1, 'ASMP_BOOKS', '', '');
7313 INSERT INTO `marc_subfield_structure` VALUES ('856', 'd', 'Path', 'Path', 1, 0, '', 8, '', '', '', 0, -1, 'ASMP_BOOKS', '', '');
7314 INSERT INTO `marc_subfield_structure` VALUES ('856', 'f', 'Electronic name', 'Electronic name', 1, 0, '', 8, '', '', '', 0, -1, 'ASMP_BOOKS', '', '');
7315 INSERT INTO `marc_subfield_structure` VALUES ('856', 'h', 'Processor of request', 'Processor of request', 0, 0, '', 8, '', '', '', 0, -1, 'ASMP_BOOKS', '', '');
7316 INSERT INTO `marc_subfield_structure` VALUES ('856', 'i', 'Instruction', 'Instruction', 1, 0, '', 8, '', '', '', 0, -1, 'ASMP_BOOKS', '', '');
7317 INSERT INTO `marc_subfield_structure` VALUES ('856', 'j', 'Bits per second', 'Bits per second', 0, 0, '', 8, '', '', '', 0, -1, 'ASMP_BOOKS', '', '');
7318 INSERT INTO `marc_subfield_structure` VALUES ('856', 'k', 'Password', 'Password', 0, 0, '', 8, '', '', '', 0, -1, 'ASMP_BOOKS', '', '');
7319 INSERT INTO `marc_subfield_structure` VALUES ('856', 'l', 'Logon', 'Logon', 0, 0, '', 8, '', '', '', 0, -1, 'ASMP_BOOKS', '', '');
7320 INSERT INTO `marc_subfield_structure` VALUES ('856', 'm', 'Contact for access assistance', 'Contact for access assistance', 1, 0, '', 8, '', '', '', 0, -1, 'ASMP_BOOKS', '', '');
7321 INSERT INTO `marc_subfield_structure` VALUES ('856', 'n', 'Name of location of host in subfield', 'Name of location of host in subfield', 0, 0, '', 8, '', '', '', 0, -1, 'ASMP_BOOKS', '', '');
7322 INSERT INTO `marc_subfield_structure` VALUES ('856', 'o', 'Operating system', 'Operating system', 0, 0, '', 8, '', '', '', 0, -1, 'ASMP_BOOKS', '', '');
7323 INSERT INTO `marc_subfield_structure` VALUES ('856', 'p', 'Port', 'Port', 0, 0, '', 8, '', '', '', 0, -1, 'ASMP_BOOKS', '', '');
7324 INSERT INTO `marc_subfield_structure` VALUES ('856', 'q', 'Electronic format type', 'Electronic format type', 0, 0, '', 8, '', '', '', 0, -1, 'ASMP_BOOKS', '', '');
7325 INSERT INTO `marc_subfield_structure` VALUES ('856', 'r', 'Settings', 'Settings', 0, 0, '', 8, '', '', '', 0, -1, 'ASMP_BOOKS', '', '');
7326 INSERT INTO `marc_subfield_structure` VALUES ('856', 's', 'File size', 'File size', 1, 0, '', 8, '', '', '', 0, -1, 'ASMP_BOOKS', '', '');
7327 INSERT INTO `marc_subfield_structure` VALUES ('856', 't', 'Terminal emulation', 'Terminal emulation', 1, 0, '', 8, '', '', '', 0, -1, 'ASMP_BOOKS', '', '');
7328 INSERT INTO `marc_subfield_structure` VALUES ('856', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, 'biblioitems.url', 8, '', '', '', 1, -1, 'ASMP_BOOKS', '', '');
7329 INSERT INTO `marc_subfield_structure` VALUES ('856', 'v', 'Hours access method available', 'Hours access method available', 1, 0, '', 8, '', '', '', 0, -1, 'ASMP_BOOKS', '', '');
7330 INSERT INTO `marc_subfield_structure` VALUES ('856', 'w', 'Record control number', 'Record control number', 1, 0, '', 8, '', '', '', 0, -1, 'ASMP_BOOKS', '', '');
7331 INSERT INTO `marc_subfield_structure` VALUES ('856', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', 0, 1, 'ASMP_BOOKS', '', '');
7332 INSERT INTO `marc_subfield_structure` VALUES ('856', 'y', 'Link text', 'Link text', 1, 0, '', 8, '', '', '', 0, -1, 'ASMP_BOOKS', '', '');
7333 INSERT INTO `marc_subfield_structure` VALUES ('856', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', 0, -1, 'ASMP_BOOKS', '', '');
7334 INSERT INTO `marc_subfield_structure` VALUES ('859', 'b', 'Operator\'s initials, OID (RLIN)', 'Operator\'s initials, OID (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
7335 INSERT INTO `marc_subfield_structure` VALUES ('859', 'c', 'Cataloger\'s initials, CIN (RLIN)', 'Cataloger\'s initials, CIN (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
7336 INSERT INTO `marc_subfield_structure` VALUES ('859', 'd', 'TDC (RLIN)', 'TDC (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
7337 INSERT INTO `marc_subfield_structure` VALUES ('859', 'l', 'LIB (RLIN)', 'LIB (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
7338 INSERT INTO `marc_subfield_structure` VALUES ('859', 'p', 'PRI (RLIN)', 'PRI (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
7339 INSERT INTO `marc_subfield_structure` VALUES ('859', 'r', 'REG (RLIN)', 'REG (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
7340 INSERT INTO `marc_subfield_structure` VALUES ('859', 'v', 'VER (RLIN)', 'VER (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
7341 INSERT INTO `marc_subfield_structure` VALUES ('859', 'x', 'LDEL (RLIN)', 'LDEL (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
7342 INSERT INTO `marc_subfield_structure` VALUES ('866', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7343 INSERT INTO `marc_subfield_structure` VALUES ('866', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7344 INSERT INTO `marc_subfield_structure` VALUES ('866', 'a', 'Textual string', 'Textual string', 0, 0, '', 8, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
7345 INSERT INTO `marc_subfield_structure` VALUES ('866', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
7346 INSERT INTO `marc_subfield_structure` VALUES ('866', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
7347 INSERT INTO `marc_subfield_structure` VALUES ('867', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7348 INSERT INTO `marc_subfield_structure` VALUES ('867', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7349 INSERT INTO `marc_subfield_structure` VALUES ('867', 'a', 'Textual string', 'Textual string', 0, 0, '', 8, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
7350 INSERT INTO `marc_subfield_structure` VALUES ('867', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
7351 INSERT INTO `marc_subfield_structure` VALUES ('867', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
7352 INSERT INTO `marc_subfield_structure` VALUES ('868', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7353 INSERT INTO `marc_subfield_structure` VALUES ('868', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7354 INSERT INTO `marc_subfield_structure` VALUES ('868', 'a', 'Textual string', 'Textual string', 0, 0, '', 8, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
7355 INSERT INTO `marc_subfield_structure` VALUES ('868', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
7356 INSERT INTO `marc_subfield_structure` VALUES ('868', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
7357 INSERT INTO `marc_subfield_structure` VALUES ('870', '4', 'Relator code', 'Relator code', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7358 INSERT INTO `marc_subfield_structure` VALUES ('870', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7359 INSERT INTO `marc_subfield_structure` VALUES ('870', 'a', 'Personal name', 'Personal name', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7360 INSERT INTO `marc_subfield_structure` VALUES ('870', 'b', 'Numeration', 'Numeration', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7361 INSERT INTO `marc_subfield_structure` VALUES ('870', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7362 INSERT INTO `marc_subfield_structure` VALUES ('870', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7363 INSERT INTO `marc_subfield_structure` VALUES ('870', 'e', 'Relator term', 'Relator term', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7364 INSERT INTO `marc_subfield_structure` VALUES ('870', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7365 INSERT INTO `marc_subfield_structure` VALUES ('870', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7366 INSERT INTO `marc_subfield_structure` VALUES ('870', 'j', 'Tag and sequence number', 'Tag and sequence number', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7367 INSERT INTO `marc_subfield_structure` VALUES ('870', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7368 INSERT INTO `marc_subfield_structure` VALUES ('870', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7369 INSERT INTO `marc_subfield_structure` VALUES ('870', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7370 INSERT INTO `marc_subfield_structure` VALUES ('870', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7371 INSERT INTO `marc_subfield_structure` VALUES ('870', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7372 INSERT INTO `marc_subfield_structure` VALUES ('870', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7373 INSERT INTO `marc_subfield_structure` VALUES ('870', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7374 INSERT INTO `marc_subfield_structure` VALUES ('871', '4', 'Relator code', 'Relator code', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7375 INSERT INTO `marc_subfield_structure` VALUES ('871', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7376 INSERT INTO `marc_subfield_structure` VALUES ('871', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7377 INSERT INTO `marc_subfield_structure` VALUES ('871', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7378 INSERT INTO `marc_subfield_structure` VALUES ('871', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7379 INSERT INTO `marc_subfield_structure` VALUES ('871', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7380 INSERT INTO `marc_subfield_structure` VALUES ('871', 'e', 'Relator term', 'Relator term', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7381 INSERT INTO `marc_subfield_structure` VALUES ('871', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7382 INSERT INTO `marc_subfield_structure` VALUES ('871', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7383 INSERT INTO `marc_subfield_structure` VALUES ('871', 'j', 'Tag and sequence number', 'Tag and sequence number', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7384 INSERT INTO `marc_subfield_structure` VALUES ('871', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7385 INSERT INTO `marc_subfield_structure` VALUES ('871', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7386 INSERT INTO `marc_subfield_structure` VALUES ('871', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7387 INSERT INTO `marc_subfield_structure` VALUES ('871', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7388 INSERT INTO `marc_subfield_structure` VALUES ('871', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7389 INSERT INTO `marc_subfield_structure` VALUES ('871', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7390 INSERT INTO `marc_subfield_structure` VALUES ('872', '4', 'Relator code', 'Relator code', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7391 INSERT INTO `marc_subfield_structure` VALUES ('872', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7392 INSERT INTO `marc_subfield_structure` VALUES ('872', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7393 INSERT INTO `marc_subfield_structure` VALUES ('872', 'b', 'Number [OBSOLETE]', 'Number [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7394 INSERT INTO `marc_subfield_structure` VALUES ('872', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7395 INSERT INTO `marc_subfield_structure` VALUES ('872', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7396 INSERT INTO `marc_subfield_structure` VALUES ('872', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7397 INSERT INTO `marc_subfield_structure` VALUES ('872', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7398 INSERT INTO `marc_subfield_structure` VALUES ('872', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7399 INSERT INTO `marc_subfield_structure` VALUES ('872', 'j', 'Tag and sequence number', 'Tag and sequence number', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7400 INSERT INTO `marc_subfield_structure` VALUES ('872', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7401 INSERT INTO `marc_subfield_structure` VALUES ('872', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7402 INSERT INTO `marc_subfield_structure` VALUES ('872', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7403 INSERT INTO `marc_subfield_structure` VALUES ('872', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7404 INSERT INTO `marc_subfield_structure` VALUES ('872', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7405 INSERT INTO `marc_subfield_structure` VALUES ('872', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7406 INSERT INTO `marc_subfield_structure` VALUES ('872', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7407 INSERT INTO `marc_subfield_structure` VALUES ('873', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7408 INSERT INTO `marc_subfield_structure` VALUES ('873', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7409 INSERT INTO `marc_subfield_structure` VALUES ('873', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7410 INSERT INTO `marc_subfield_structure` VALUES ('873', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7411 INSERT INTO `marc_subfield_structure` VALUES ('873', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7412 INSERT INTO `marc_subfield_structure` VALUES ('873', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7413 INSERT INTO `marc_subfield_structure` VALUES ('873', 'j', 'Tag and sequence number', 'Tag and sequence number', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7414 INSERT INTO `marc_subfield_structure` VALUES ('873', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7415 INSERT INTO `marc_subfield_structure` VALUES ('873', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7416 INSERT INTO `marc_subfield_structure` VALUES ('873', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7417 INSERT INTO `marc_subfield_structure` VALUES ('873', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7418 INSERT INTO `marc_subfield_structure` VALUES ('873', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7419 INSERT INTO `marc_subfield_structure` VALUES ('873', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7420 INSERT INTO `marc_subfield_structure` VALUES ('873', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7421 INSERT INTO `marc_subfield_structure` VALUES ('873', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7422 INSERT INTO `marc_subfield_structure` VALUES ('873', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7423 INSERT INTO `marc_subfield_structure` VALUES ('876', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7424 INSERT INTO `marc_subfield_structure` VALUES ('876', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7425 INSERT INTO `marc_subfield_structure` VALUES ('876', '8', 'Sequence number', 'Sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7426 INSERT INTO `marc_subfield_structure` VALUES ('876', 'a', 'Internal item number', 'Internal item number', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7427 INSERT INTO `marc_subfield_structure` VALUES ('876', 'b', 'Invalid or canceled internal item number', 'Invalid or canceled internal item number', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7428 INSERT INTO `marc_subfield_structure` VALUES ('876', 'c', 'Cost', 'Cost', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7429 INSERT INTO `marc_subfield_structure` VALUES ('876', 'd', 'Date acquired', 'Date acquired', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7430 INSERT INTO `marc_subfield_structure` VALUES ('876', 'e', 'Source of acquisition', 'Source of acquisition', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7431 INSERT INTO `marc_subfield_structure` VALUES ('876', 'h', 'Use restrictions', 'Use restrictions', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7432 INSERT INTO `marc_subfield_structure` VALUES ('876', 'j', 'Item status', 'Item status', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7433 INSERT INTO `marc_subfield_structure` VALUES ('876', 'l', 'Temporary location', 'Temporary location', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7434 INSERT INTO `marc_subfield_structure` VALUES ('876', 'p', 'Piece designation', 'Piece designation', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7435 INSERT INTO `marc_subfield_structure` VALUES ('876', 'r', 'Invalid or canceled piece designation', 'Invalid or canceled piece designation', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7436 INSERT INTO `marc_subfield_structure` VALUES ('876', 't', 'Copy number', 'Copy number', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7437 INSERT INTO `marc_subfield_structure` VALUES ('876', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7438 INSERT INTO `marc_subfield_structure` VALUES ('876', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7439 INSERT INTO `marc_subfield_structure` VALUES ('877', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7440 INSERT INTO `marc_subfield_structure` VALUES ('877', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7441 INSERT INTO `marc_subfield_structure` VALUES ('877', '8', 'Sequence number', 'Sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7442 INSERT INTO `marc_subfield_structure` VALUES ('877', 'a', 'Internal item number', 'Internal item number', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7443 INSERT INTO `marc_subfield_structure` VALUES ('877', 'b', 'Invalid or canceled internal item number', 'Invalid or canceled internal item number', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7444 INSERT INTO `marc_subfield_structure` VALUES ('877', 'c', 'Cost', 'Cost', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7445 INSERT INTO `marc_subfield_structure` VALUES ('877', 'd', 'Date acquired', 'Date acquired', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7446 INSERT INTO `marc_subfield_structure` VALUES ('877', 'e', 'Source of acquisition', 'Source of acquisition', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7447 INSERT INTO `marc_subfield_structure` VALUES ('877', 'h', 'Use restrictions', 'Use restrictions', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7448 INSERT INTO `marc_subfield_structure` VALUES ('877', 'j', 'Item status', 'Item status', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7449 INSERT INTO `marc_subfield_structure` VALUES ('877', 'l', 'Temporary location', 'Temporary location', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7450 INSERT INTO `marc_subfield_structure` VALUES ('877', 'p', 'Piece designation', 'Piece designation', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7451 INSERT INTO `marc_subfield_structure` VALUES ('877', 'r', 'Invalid or canceled piece designation', 'Invalid or canceled piece designation', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7452 INSERT INTO `marc_subfield_structure` VALUES ('877', 't', 'Copy number', 'Copy number', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7453 INSERT INTO `marc_subfield_structure` VALUES ('877', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7454 INSERT INTO `marc_subfield_structure` VALUES ('877', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7455 INSERT INTO `marc_subfield_structure` VALUES ('878', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7456 INSERT INTO `marc_subfield_structure` VALUES ('878', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7457 INSERT INTO `marc_subfield_structure` VALUES ('878', '8', 'Sequence number', 'Sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7458 INSERT INTO `marc_subfield_structure` VALUES ('878', 'a', 'Internal item number', 'Internal item number', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7459 INSERT INTO `marc_subfield_structure` VALUES ('878', 'b', 'Invalid or canceled internal item number', 'Invalid or canceled internal item number', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7460 INSERT INTO `marc_subfield_structure` VALUES ('878', 'c', 'Cost', 'Cost', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7461 INSERT INTO `marc_subfield_structure` VALUES ('878', 'd', 'Date acquired', 'Date acquired', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7462 INSERT INTO `marc_subfield_structure` VALUES ('878', 'e', 'Source of acquisition', 'Source of acquisition', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7463 INSERT INTO `marc_subfield_structure` VALUES ('878', 'h', 'Use restrictions', 'Use restrictions', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7464 INSERT INTO `marc_subfield_structure` VALUES ('878', 'j', 'Item status', 'Item status', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7465 INSERT INTO `marc_subfield_structure` VALUES ('878', 'l', 'Temporary location', 'Temporary location', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7466 INSERT INTO `marc_subfield_structure` VALUES ('878', 'p', 'Piece designation', 'Piece designation', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7467 INSERT INTO `marc_subfield_structure` VALUES ('878', 'r', 'Invalid or canceled piece designation', 'Invalid or canceled piece designation', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7468 INSERT INTO `marc_subfield_structure` VALUES ('878', 't', 'Copy number', 'Copy number', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7469 INSERT INTO `marc_subfield_structure` VALUES ('878', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7470 INSERT INTO `marc_subfield_structure` VALUES ('878', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7471 INSERT INTO `marc_subfield_structure` VALUES ('880', '2', '2', '2', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7472 INSERT INTO `marc_subfield_structure` VALUES ('880', '3', '3', '3', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7473 INSERT INTO `marc_subfield_structure` VALUES ('880', '4', '4', '4', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7474 INSERT INTO `marc_subfield_structure` VALUES ('880', '5', '5', '5', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7475 INSERT INTO `marc_subfield_structure` VALUES ('880', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7476 INSERT INTO `marc_subfield_structure` VALUES ('880', '7', '7', '7', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7477 INSERT INTO `marc_subfield_structure` VALUES ('880', '8', '8', '8', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7478 INSERT INTO `marc_subfield_structure` VALUES ('880', '9', '9', '9', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7479 INSERT INTO `marc_subfield_structure` VALUES ('880', 'a', 'a', 'a', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7480 INSERT INTO `marc_subfield_structure` VALUES ('880', 'b', 'b', 'b', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7481 INSERT INTO `marc_subfield_structure` VALUES ('880', 'c', 'c', 'c', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7482 INSERT INTO `marc_subfield_structure` VALUES ('880', 'd', 'd', 'd', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7483 INSERT INTO `marc_subfield_structure` VALUES ('880', 'e', 'e', 'e', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7484 INSERT INTO `marc_subfield_structure` VALUES ('880', 'f', 'f', 'f', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7485 INSERT INTO `marc_subfield_structure` VALUES ('880', 'g', 'g', 'g', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7486 INSERT INTO `marc_subfield_structure` VALUES ('880', 'h', 'h', 'h', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7487 INSERT INTO `marc_subfield_structure` VALUES ('880', 'i', 'i', 'i', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7488 INSERT INTO `marc_subfield_structure` VALUES ('880', 'j', 'j', 'j', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7489 INSERT INTO `marc_subfield_structure` VALUES ('880', 'k', 'k', 'k', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7490 INSERT INTO `marc_subfield_structure` VALUES ('880', 'l', 'l', 'l', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7491 INSERT INTO `marc_subfield_structure` VALUES ('880', 'm', 'm', 'm', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7492 INSERT INTO `marc_subfield_structure` VALUES ('880', 'n', 'n', 'n', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7493 INSERT INTO `marc_subfield_structure` VALUES ('880', 'o', 'o', 'o', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7494 INSERT INTO `marc_subfield_structure` VALUES ('880', 'p', 'p', 'p', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7495 INSERT INTO `marc_subfield_structure` VALUES ('880', 'q', 'q', 'q', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7496 INSERT INTO `marc_subfield_structure` VALUES ('880', 'r', 'r', 'r', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7497 INSERT INTO `marc_subfield_structure` VALUES ('880', 's', 's', 's', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7498 INSERT INTO `marc_subfield_structure` VALUES ('880', 't', 't', 't', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7499 INSERT INTO `marc_subfield_structure` VALUES ('880', 'u', 'u', 'u', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7500 INSERT INTO `marc_subfield_structure` VALUES ('880', 'v', 'v', 'v', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7501 INSERT INTO `marc_subfield_structure` VALUES ('880', 'w', 'w', 'w', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7502 INSERT INTO `marc_subfield_structure` VALUES ('880', 'x', 'x', 'x', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7503 INSERT INTO `marc_subfield_structure` VALUES ('880', 'y', 'y', 'y', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7504 INSERT INTO `marc_subfield_structure` VALUES ('880', 'z', 'z', 'z', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7505 INSERT INTO `marc_subfield_structure` VALUES ('886', '0', '0', '0', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7506 INSERT INTO `marc_subfield_structure` VALUES ('886', '1', '1', '1', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7507 INSERT INTO `marc_subfield_structure` VALUES ('886', '2', '2', '2', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7508 INSERT INTO `marc_subfield_structure` VALUES ('886', '3', '3', '3', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7509 INSERT INTO `marc_subfield_structure` VALUES ('886', '4', '4', '4', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7510 INSERT INTO `marc_subfield_structure` VALUES ('886', '5', '5', '5', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7511 INSERT INTO `marc_subfield_structure` VALUES ('886', '6', '6', '6', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7512 INSERT INTO `marc_subfield_structure` VALUES ('886', '7', '7', '7', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7513 INSERT INTO `marc_subfield_structure` VALUES ('886', '8', '8', '8', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7514 INSERT INTO `marc_subfield_structure` VALUES ('886', '9', '9', '9', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7515 INSERT INTO `marc_subfield_structure` VALUES ('886', 'a', 'a', 'a', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7516 INSERT INTO `marc_subfield_structure` VALUES ('886', 'b', 'b', 'b', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7517 INSERT INTO `marc_subfield_structure` VALUES ('886', 'c', 'c', 'c', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7518 INSERT INTO `marc_subfield_structure` VALUES ('886', 'd', 'd', 'd', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7519 INSERT INTO `marc_subfield_structure` VALUES ('886', 'e', 'e', 'e', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7520 INSERT INTO `marc_subfield_structure` VALUES ('886', 'f', 'f', 'f', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7521 INSERT INTO `marc_subfield_structure` VALUES ('886', 'g', 'g', 'g', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7522 INSERT INTO `marc_subfield_structure` VALUES ('886', 'h', 'h', 'h', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7523 INSERT INTO `marc_subfield_structure` VALUES ('886', 'i', 'i', 'i', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7524 INSERT INTO `marc_subfield_structure` VALUES ('886', 'j', 'j', 'j', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7525 INSERT INTO `marc_subfield_structure` VALUES ('886', 'k', 'k', 'k', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7526 INSERT INTO `marc_subfield_structure` VALUES ('886', 'l', 'l', 'l', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7527 INSERT INTO `marc_subfield_structure` VALUES ('886', 'm', 'm', 'm', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7528 INSERT INTO `marc_subfield_structure` VALUES ('886', 'n', 'n', 'n', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7529 INSERT INTO `marc_subfield_structure` VALUES ('886', 'o', 'o', 'o', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7530 INSERT INTO `marc_subfield_structure` VALUES ('886', 'p', 'p', 'p', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7531 INSERT INTO `marc_subfield_structure` VALUES ('886', 'q', 'q', 'q', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7532 INSERT INTO `marc_subfield_structure` VALUES ('886', 'r', 'r', 'r', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7533 INSERT INTO `marc_subfield_structure` VALUES ('886', 's', 's', 's', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7534 INSERT INTO `marc_subfield_structure` VALUES ('886', 't', 't', 't', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7535 INSERT INTO `marc_subfield_structure` VALUES ('886', 'u', 'u', 'u', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7536 INSERT INTO `marc_subfield_structure` VALUES ('886', 'v', 'v', 'v', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7537 INSERT INTO `marc_subfield_structure` VALUES ('886', 'w', 'w', 'w', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7538 INSERT INTO `marc_subfield_structure` VALUES ('886', 'x', 'x', 'x', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7539 INSERT INTO `marc_subfield_structure` VALUES ('886', 'y', 'y', 'y', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7540 INSERT INTO `marc_subfield_structure` VALUES ('886', 'z', 'z', 'z', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7541 INSERT INTO `marc_subfield_structure` VALUES ('887', '2', 'Source of data', 'Source of data', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7542 INSERT INTO `marc_subfield_structure` VALUES ('887', 'a', 'Content of non-MARC field', 'Content of non-MARC field', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7543 INSERT INTO `marc_subfield_structure` VALUES ('896', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 8, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
7544 INSERT INTO `marc_subfield_structure` VALUES ('896', '4', 'Relator code', 'Relator code', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7545 INSERT INTO `marc_subfield_structure` VALUES ('896', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7546 INSERT INTO `marc_subfield_structure` VALUES ('896', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7547 INSERT INTO `marc_subfield_structure` VALUES ('896', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, 'ASMP_BOOKS', '', '');
7548 INSERT INTO `marc_subfield_structure` VALUES ('896', 'a', 'Personal name', 'Personal name', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7549 INSERT INTO `marc_subfield_structure` VALUES ('896', 'b', 'Numeration', 'Numeration', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7550 INSERT INTO `marc_subfield_structure` VALUES ('896', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7551 INSERT INTO `marc_subfield_structure` VALUES ('896', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7552 INSERT INTO `marc_subfield_structure` VALUES ('896', 'e', 'Relator term', 'Relator term', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7553 INSERT INTO `marc_subfield_structure` VALUES ('896', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7554 INSERT INTO `marc_subfield_structure` VALUES ('896', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7555 INSERT INTO `marc_subfield_structure` VALUES ('896', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7556 INSERT INTO `marc_subfield_structure` VALUES ('896', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7557 INSERT INTO `marc_subfield_structure` VALUES ('896', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7558 INSERT INTO `marc_subfield_structure` VALUES ('896', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7559 INSERT INTO `marc_subfield_structure` VALUES ('896', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7560 INSERT INTO `marc_subfield_structure` VALUES ('896', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7561 INSERT INTO `marc_subfield_structure` VALUES ('896', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7562 INSERT INTO `marc_subfield_structure` VALUES ('896', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7563 INSERT INTO `marc_subfield_structure` VALUES ('896', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7564 INSERT INTO `marc_subfield_structure` VALUES ('896', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7565 INSERT INTO `marc_subfield_structure` VALUES ('896', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7566 INSERT INTO `marc_subfield_structure` VALUES ('896', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7567 INSERT INTO `marc_subfield_structure` VALUES ('896', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7568 INSERT INTO `marc_subfield_structure` VALUES ('896', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7569 INSERT INTO `marc_subfield_structure` VALUES ('897', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 8, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
7570 INSERT INTO `marc_subfield_structure` VALUES ('897', '4', 'Relator code', 'Relator code', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7571 INSERT INTO `marc_subfield_structure` VALUES ('897', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7572 INSERT INTO `marc_subfield_structure` VALUES ('897', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7573 INSERT INTO `marc_subfield_structure` VALUES ('897', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, 'ASMP_BOOKS', '', '');
7574 INSERT INTO `marc_subfield_structure` VALUES ('897', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7575 INSERT INTO `marc_subfield_structure` VALUES ('897', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7576 INSERT INTO `marc_subfield_structure` VALUES ('897', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7577 INSERT INTO `marc_subfield_structure` VALUES ('897', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7578 INSERT INTO `marc_subfield_structure` VALUES ('897', 'e', 'Relator term', 'Relator term', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7579 INSERT INTO `marc_subfield_structure` VALUES ('897', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7580 INSERT INTO `marc_subfield_structure` VALUES ('897', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7581 INSERT INTO `marc_subfield_structure` VALUES ('897', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7582 INSERT INTO `marc_subfield_structure` VALUES ('897', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7583 INSERT INTO `marc_subfield_structure` VALUES ('897', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7584 INSERT INTO `marc_subfield_structure` VALUES ('897', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7585 INSERT INTO `marc_subfield_structure` VALUES ('897', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7586 INSERT INTO `marc_subfield_structure` VALUES ('897', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7587 INSERT INTO `marc_subfield_structure` VALUES ('897', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7588 INSERT INTO `marc_subfield_structure` VALUES ('897', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7589 INSERT INTO `marc_subfield_structure` VALUES ('897', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7590 INSERT INTO `marc_subfield_structure` VALUES ('897', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7591 INSERT INTO `marc_subfield_structure` VALUES ('897', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7592 INSERT INTO `marc_subfield_structure` VALUES ('897', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7593 INSERT INTO `marc_subfield_structure` VALUES ('898', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 8, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
7594 INSERT INTO `marc_subfield_structure` VALUES ('898', '4', 'Relator code', 'Relator code', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7595 INSERT INTO `marc_subfield_structure` VALUES ('898', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7596 INSERT INTO `marc_subfield_structure` VALUES ('898', '8', 'Field link and sequence number ', 'Field link and sequence number ', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7597 INSERT INTO `marc_subfield_structure` VALUES ('898', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, 'ASMP_BOOKS', '', '');
7598 INSERT INTO `marc_subfield_structure` VALUES ('898', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7599 INSERT INTO `marc_subfield_structure` VALUES ('898', 'b', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7600 INSERT INTO `marc_subfield_structure` VALUES ('898', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7601 INSERT INTO `marc_subfield_structure` VALUES ('898', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7602 INSERT INTO `marc_subfield_structure` VALUES ('898', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7603 INSERT INTO `marc_subfield_structure` VALUES ('898', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7604 INSERT INTO `marc_subfield_structure` VALUES ('898', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7605 INSERT INTO `marc_subfield_structure` VALUES ('898', 'h', 'Medium', 'Medium', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7606 INSERT INTO `marc_subfield_structure` VALUES ('898', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7607 INSERT INTO `marc_subfield_structure` VALUES ('898', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7608 INSERT INTO `marc_subfield_structure` VALUES ('898', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7609 INSERT INTO `marc_subfield_structure` VALUES ('898', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7610 INSERT INTO `marc_subfield_structure` VALUES ('898', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7611 INSERT INTO `marc_subfield_structure` VALUES ('898', 's', 'Version', 'Version', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7612 INSERT INTO `marc_subfield_structure` VALUES ('898', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7613 INSERT INTO `marc_subfield_structure` VALUES ('898', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7614 INSERT INTO `marc_subfield_structure` VALUES ('898', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7615 INSERT INTO `marc_subfield_structure` VALUES ('899', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 8, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
7616 INSERT INTO `marc_subfield_structure` VALUES ('899', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7617 INSERT INTO `marc_subfield_structure` VALUES ('899', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7618 INSERT INTO `marc_subfield_structure` VALUES ('899', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, 'ASMP_BOOKS', '', '');
7619 INSERT INTO `marc_subfield_structure` VALUES ('899', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7620 INSERT INTO `marc_subfield_structure` VALUES ('899', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7621 INSERT INTO `marc_subfield_structure` VALUES ('899', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7622 INSERT INTO `marc_subfield_structure` VALUES ('899', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7623 INSERT INTO `marc_subfield_structure` VALUES ('899', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7624 INSERT INTO `marc_subfield_structure` VALUES ('899', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7625 INSERT INTO `marc_subfield_structure` VALUES ('899', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7626 INSERT INTO `marc_subfield_structure` VALUES ('899', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7627 INSERT INTO `marc_subfield_structure` VALUES ('899', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7628 INSERT INTO `marc_subfield_structure` VALUES ('899', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7629 INSERT INTO `marc_subfield_structure` VALUES ('899', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7630 INSERT INTO `marc_subfield_structure` VALUES ('899', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7631 INSERT INTO `marc_subfield_structure` VALUES ('899', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7632 INSERT INTO `marc_subfield_structure` VALUES ('899', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7633 INSERT INTO `marc_subfield_structure` VALUES ('899', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
7634 INSERT INTO `marc_subfield_structure` VALUES ('89e', '0', '0', '0', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7635 INSERT INTO `marc_subfield_structure` VALUES ('89e', '1', '1', '1', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7636 INSERT INTO `marc_subfield_structure` VALUES ('89e', '2', '2', '2', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7637 INSERT INTO `marc_subfield_structure` VALUES ('89e', '3', '3', '3', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7638 INSERT INTO `marc_subfield_structure` VALUES ('89e', '4', '4', '4', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7639 INSERT INTO `marc_subfield_structure` VALUES ('89e', '5', '5', '5', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7640 INSERT INTO `marc_subfield_structure` VALUES ('89e', '6', '6', '6', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7641 INSERT INTO `marc_subfield_structure` VALUES ('89e', '7', '7', '7', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7642 INSERT INTO `marc_subfield_structure` VALUES ('89e', '8', '8', '8', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7643 INSERT INTO `marc_subfield_structure` VALUES ('89e', '9', '9', '9', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7644 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'a', 'a', 'a', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7645 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'b', 'b', 'b', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7646 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'c', 'c', 'c', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7647 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'd', 'd', 'd', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7648 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'e', 'e', 'e', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7649 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'f', 'f', 'f', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7650 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'g', 'g', 'g', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7651 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'h', 'h', 'h', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7652 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'i', 'i', 'i', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7653 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'j', 'j', 'j', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7654 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'k', 'k', 'k', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7655 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'l', 'l', 'l', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7656 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'm', 'm', 'm', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7657 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'n', 'n', 'n', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7658 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'o', 'o', 'o', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7659 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'p', 'p', 'p', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7660 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'q', 'q', 'q', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7661 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'r', 'r', 'r', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7662 INSERT INTO `marc_subfield_structure` VALUES ('89e', 's', 's', 's', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7663 INSERT INTO `marc_subfield_structure` VALUES ('89e', 't', 't', 't', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7664 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'u', 'u', 'u', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7665 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'v', 'v', 'v', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7666 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'w', 'w', 'w', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7667 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'x', 'x', 'x', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7668 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'y', 'y', 'y', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7669 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'z', 'z', 'z', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7670 INSERT INTO `marc_subfield_structure` VALUES ('900', '4', 'Relator code', 'Relator code', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
7671 INSERT INTO `marc_subfield_structure` VALUES ('900', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
7672 INSERT INTO `marc_subfield_structure` VALUES ('900', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
7673 INSERT INTO `marc_subfield_structure` VALUES ('900', 'a', 'Personal name', 'Personal name', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
7674 INSERT INTO `marc_subfield_structure` VALUES ('900', 'b', 'Numeration', 'Numeration', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
7675 INSERT INTO `marc_subfield_structure` VALUES ('900', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
7676 INSERT INTO `marc_subfield_structure` VALUES ('900', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
7677 INSERT INTO `marc_subfield_structure` VALUES ('900', 'e', 'Relator term', 'Relator term', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
7678 INSERT INTO `marc_subfield_structure` VALUES ('900', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
7679 INSERT INTO `marc_subfield_structure` VALUES ('900', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
7680 INSERT INTO `marc_subfield_structure` VALUES ('900', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
7681 INSERT INTO `marc_subfield_structure` VALUES ('900', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
7682 INSERT INTO `marc_subfield_structure` VALUES ('900', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
7683 INSERT INTO `marc_subfield_structure` VALUES ('900', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
7684 INSERT INTO `marc_subfield_structure` VALUES ('900', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
7685 INSERT INTO `marc_subfield_structure` VALUES ('900', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
7686 INSERT INTO `marc_subfield_structure` VALUES ('900', 't', 'Title of a work', 'Title of a work', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
7687 INSERT INTO `marc_subfield_structure` VALUES ('900', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
7688 INSERT INTO `marc_subfield_structure` VALUES ('901', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7689 INSERT INTO `marc_subfield_structure` VALUES ('901', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7690 INSERT INTO `marc_subfield_structure` VALUES ('901', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7691 INSERT INTO `marc_subfield_structure` VALUES ('901', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7692 INSERT INTO `marc_subfield_structure` VALUES ('901', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7693 INSERT INTO `marc_subfield_structure` VALUES ('901', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7694 INSERT INTO `marc_subfield_structure` VALUES ('901', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7695 INSERT INTO `marc_subfield_structure` VALUES ('901', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7696 INSERT INTO `marc_subfield_structure` VALUES ('901', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7697 INSERT INTO `marc_subfield_structure` VALUES ('901', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7698 INSERT INTO `marc_subfield_structure` VALUES ('901', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7699 INSERT INTO `marc_subfield_structure` VALUES ('901', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7700 INSERT INTO `marc_subfield_structure` VALUES ('901', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7701 INSERT INTO `marc_subfield_structure` VALUES ('901', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7702 INSERT INTO `marc_subfield_structure` VALUES ('901', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7703 INSERT INTO `marc_subfield_structure` VALUES ('901', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7704 INSERT INTO `marc_subfield_structure` VALUES ('901', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7705 INSERT INTO `marc_subfield_structure` VALUES ('901', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7706 INSERT INTO `marc_subfield_structure` VALUES ('901', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7707 INSERT INTO `marc_subfield_structure` VALUES ('901', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7708 INSERT INTO `marc_subfield_structure` VALUES ('901', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7709 INSERT INTO `marc_subfield_structure` VALUES ('901', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7710 INSERT INTO `marc_subfield_structure` VALUES ('901', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7711 INSERT INTO `marc_subfield_structure` VALUES ('901', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7712 INSERT INTO `marc_subfield_structure` VALUES ('901', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7713 INSERT INTO `marc_subfield_structure` VALUES ('901', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7714 INSERT INTO `marc_subfield_structure` VALUES ('901', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7715 INSERT INTO `marc_subfield_structure` VALUES ('901', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7716 INSERT INTO `marc_subfield_structure` VALUES ('901', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7717 INSERT INTO `marc_subfield_structure` VALUES ('901', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7718 INSERT INTO `marc_subfield_structure` VALUES ('901', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7719 INSERT INTO `marc_subfield_structure` VALUES ('901', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7720 INSERT INTO `marc_subfield_structure` VALUES ('901', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7721 INSERT INTO `marc_subfield_structure` VALUES ('901', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7722 INSERT INTO `marc_subfield_structure` VALUES ('901', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7723 INSERT INTO `marc_subfield_structure` VALUES ('901', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7724 INSERT INTO `marc_subfield_structure` VALUES ('902', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7725 INSERT INTO `marc_subfield_structure` VALUES ('902', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7726 INSERT INTO `marc_subfield_structure` VALUES ('902', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7727 INSERT INTO `marc_subfield_structure` VALUES ('902', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7728 INSERT INTO `marc_subfield_structure` VALUES ('902', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7729 INSERT INTO `marc_subfield_structure` VALUES ('902', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7730 INSERT INTO `marc_subfield_structure` VALUES ('902', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7731 INSERT INTO `marc_subfield_structure` VALUES ('902', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7732 INSERT INTO `marc_subfield_structure` VALUES ('902', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7733 INSERT INTO `marc_subfield_structure` VALUES ('902', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7734 INSERT INTO `marc_subfield_structure` VALUES ('902', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7735 INSERT INTO `marc_subfield_structure` VALUES ('902', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7736 INSERT INTO `marc_subfield_structure` VALUES ('902', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7737 INSERT INTO `marc_subfield_structure` VALUES ('902', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7738 INSERT INTO `marc_subfield_structure` VALUES ('902', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7739 INSERT INTO `marc_subfield_structure` VALUES ('902', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7740 INSERT INTO `marc_subfield_structure` VALUES ('902', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7741 INSERT INTO `marc_subfield_structure` VALUES ('902', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7742 INSERT INTO `marc_subfield_structure` VALUES ('902', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7743 INSERT INTO `marc_subfield_structure` VALUES ('902', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7744 INSERT INTO `marc_subfield_structure` VALUES ('902', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7745 INSERT INTO `marc_subfield_structure` VALUES ('902', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7746 INSERT INTO `marc_subfield_structure` VALUES ('902', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7747 INSERT INTO `marc_subfield_structure` VALUES ('902', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7748 INSERT INTO `marc_subfield_structure` VALUES ('902', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7749 INSERT INTO `marc_subfield_structure` VALUES ('902', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7750 INSERT INTO `marc_subfield_structure` VALUES ('902', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7751 INSERT INTO `marc_subfield_structure` VALUES ('902', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7752 INSERT INTO `marc_subfield_structure` VALUES ('902', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7753 INSERT INTO `marc_subfield_structure` VALUES ('902', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7754 INSERT INTO `marc_subfield_structure` VALUES ('902', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7755 INSERT INTO `marc_subfield_structure` VALUES ('902', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7756 INSERT INTO `marc_subfield_structure` VALUES ('902', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7757 INSERT INTO `marc_subfield_structure` VALUES ('902', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7758 INSERT INTO `marc_subfield_structure` VALUES ('902', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7759 INSERT INTO `marc_subfield_structure` VALUES ('902', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7760 INSERT INTO `marc_subfield_structure` VALUES ('903', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7761 INSERT INTO `marc_subfield_structure` VALUES ('903', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7762 INSERT INTO `marc_subfield_structure` VALUES ('903', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7763 INSERT INTO `marc_subfield_structure` VALUES ('903', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7764 INSERT INTO `marc_subfield_structure` VALUES ('903', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7765 INSERT INTO `marc_subfield_structure` VALUES ('903', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7766 INSERT INTO `marc_subfield_structure` VALUES ('903', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7767 INSERT INTO `marc_subfield_structure` VALUES ('903', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7768 INSERT INTO `marc_subfield_structure` VALUES ('903', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7769 INSERT INTO `marc_subfield_structure` VALUES ('903', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7770 INSERT INTO `marc_subfield_structure` VALUES ('903', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7771 INSERT INTO `marc_subfield_structure` VALUES ('903', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7772 INSERT INTO `marc_subfield_structure` VALUES ('903', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7773 INSERT INTO `marc_subfield_structure` VALUES ('903', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7774 INSERT INTO `marc_subfield_structure` VALUES ('903', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7775 INSERT INTO `marc_subfield_structure` VALUES ('903', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7776 INSERT INTO `marc_subfield_structure` VALUES ('903', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7777 INSERT INTO `marc_subfield_structure` VALUES ('903', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7778 INSERT INTO `marc_subfield_structure` VALUES ('903', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7779 INSERT INTO `marc_subfield_structure` VALUES ('903', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7780 INSERT INTO `marc_subfield_structure` VALUES ('903', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7781 INSERT INTO `marc_subfield_structure` VALUES ('903', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7782 INSERT INTO `marc_subfield_structure` VALUES ('903', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7783 INSERT INTO `marc_subfield_structure` VALUES ('903', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7784 INSERT INTO `marc_subfield_structure` VALUES ('903', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7785 INSERT INTO `marc_subfield_structure` VALUES ('903', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7786 INSERT INTO `marc_subfield_structure` VALUES ('903', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7787 INSERT INTO `marc_subfield_structure` VALUES ('903', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7788 INSERT INTO `marc_subfield_structure` VALUES ('903', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7789 INSERT INTO `marc_subfield_structure` VALUES ('903', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7790 INSERT INTO `marc_subfield_structure` VALUES ('903', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7791 INSERT INTO `marc_subfield_structure` VALUES ('903', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7792 INSERT INTO `marc_subfield_structure` VALUES ('903', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7793 INSERT INTO `marc_subfield_structure` VALUES ('903', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7794 INSERT INTO `marc_subfield_structure` VALUES ('903', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7795 INSERT INTO `marc_subfield_structure` VALUES ('903', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7796 INSERT INTO `marc_subfield_structure` VALUES ('904', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7797 INSERT INTO `marc_subfield_structure` VALUES ('904', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7798 INSERT INTO `marc_subfield_structure` VALUES ('904', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7799 INSERT INTO `marc_subfield_structure` VALUES ('904', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7800 INSERT INTO `marc_subfield_structure` VALUES ('904', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7801 INSERT INTO `marc_subfield_structure` VALUES ('904', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7802 INSERT INTO `marc_subfield_structure` VALUES ('904', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7803 INSERT INTO `marc_subfield_structure` VALUES ('904', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7804 INSERT INTO `marc_subfield_structure` VALUES ('904', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7805 INSERT INTO `marc_subfield_structure` VALUES ('904', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7806 INSERT INTO `marc_subfield_structure` VALUES ('904', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7807 INSERT INTO `marc_subfield_structure` VALUES ('904', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7808 INSERT INTO `marc_subfield_structure` VALUES ('904', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7809 INSERT INTO `marc_subfield_structure` VALUES ('904', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7810 INSERT INTO `marc_subfield_structure` VALUES ('904', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7811 INSERT INTO `marc_subfield_structure` VALUES ('904', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7812 INSERT INTO `marc_subfield_structure` VALUES ('904', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7813 INSERT INTO `marc_subfield_structure` VALUES ('904', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7814 INSERT INTO `marc_subfield_structure` VALUES ('904', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7815 INSERT INTO `marc_subfield_structure` VALUES ('904', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7816 INSERT INTO `marc_subfield_structure` VALUES ('904', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7817 INSERT INTO `marc_subfield_structure` VALUES ('904', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7818 INSERT INTO `marc_subfield_structure` VALUES ('904', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7819 INSERT INTO `marc_subfield_structure` VALUES ('904', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7820 INSERT INTO `marc_subfield_structure` VALUES ('904', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7821 INSERT INTO `marc_subfield_structure` VALUES ('904', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7822 INSERT INTO `marc_subfield_structure` VALUES ('904', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7823 INSERT INTO `marc_subfield_structure` VALUES ('904', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7824 INSERT INTO `marc_subfield_structure` VALUES ('904', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7825 INSERT INTO `marc_subfield_structure` VALUES ('904', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7826 INSERT INTO `marc_subfield_structure` VALUES ('904', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7827 INSERT INTO `marc_subfield_structure` VALUES ('904', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7828 INSERT INTO `marc_subfield_structure` VALUES ('904', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7829 INSERT INTO `marc_subfield_structure` VALUES ('904', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7830 INSERT INTO `marc_subfield_structure` VALUES ('904', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7831 INSERT INTO `marc_subfield_structure` VALUES ('904', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7832 INSERT INTO `marc_subfield_structure` VALUES ('905', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7833 INSERT INTO `marc_subfield_structure` VALUES ('905', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7834 INSERT INTO `marc_subfield_structure` VALUES ('905', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7835 INSERT INTO `marc_subfield_structure` VALUES ('905', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7836 INSERT INTO `marc_subfield_structure` VALUES ('905', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7837 INSERT INTO `marc_subfield_structure` VALUES ('905', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7838 INSERT INTO `marc_subfield_structure` VALUES ('905', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7839 INSERT INTO `marc_subfield_structure` VALUES ('905', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7840 INSERT INTO `marc_subfield_structure` VALUES ('905', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7841 INSERT INTO `marc_subfield_structure` VALUES ('905', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7842 INSERT INTO `marc_subfield_structure` VALUES ('905', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7843 INSERT INTO `marc_subfield_structure` VALUES ('905', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7844 INSERT INTO `marc_subfield_structure` VALUES ('905', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7845 INSERT INTO `marc_subfield_structure` VALUES ('905', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7846 INSERT INTO `marc_subfield_structure` VALUES ('905', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7847 INSERT INTO `marc_subfield_structure` VALUES ('905', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7848 INSERT INTO `marc_subfield_structure` VALUES ('905', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7849 INSERT INTO `marc_subfield_structure` VALUES ('905', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7850 INSERT INTO `marc_subfield_structure` VALUES ('905', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7851 INSERT INTO `marc_subfield_structure` VALUES ('905', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7852 INSERT INTO `marc_subfield_structure` VALUES ('905', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7853 INSERT INTO `marc_subfield_structure` VALUES ('905', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7854 INSERT INTO `marc_subfield_structure` VALUES ('905', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7855 INSERT INTO `marc_subfield_structure` VALUES ('905', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7856 INSERT INTO `marc_subfield_structure` VALUES ('905', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7857 INSERT INTO `marc_subfield_structure` VALUES ('905', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7858 INSERT INTO `marc_subfield_structure` VALUES ('905', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7859 INSERT INTO `marc_subfield_structure` VALUES ('905', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7860 INSERT INTO `marc_subfield_structure` VALUES ('905', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7861 INSERT INTO `marc_subfield_structure` VALUES ('905', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7862 INSERT INTO `marc_subfield_structure` VALUES ('905', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7863 INSERT INTO `marc_subfield_structure` VALUES ('905', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7864 INSERT INTO `marc_subfield_structure` VALUES ('905', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7865 INSERT INTO `marc_subfield_structure` VALUES ('905', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7866 INSERT INTO `marc_subfield_structure` VALUES ('905', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7867 INSERT INTO `marc_subfield_structure` VALUES ('905', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7868 INSERT INTO `marc_subfield_structure` VALUES ('906', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7869 INSERT INTO `marc_subfield_structure` VALUES ('906', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7870 INSERT INTO `marc_subfield_structure` VALUES ('906', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7871 INSERT INTO `marc_subfield_structure` VALUES ('906', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7872 INSERT INTO `marc_subfield_structure` VALUES ('906', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7873 INSERT INTO `marc_subfield_structure` VALUES ('906', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7874 INSERT INTO `marc_subfield_structure` VALUES ('906', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7875 INSERT INTO `marc_subfield_structure` VALUES ('906', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7876 INSERT INTO `marc_subfield_structure` VALUES ('906', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7877 INSERT INTO `marc_subfield_structure` VALUES ('906', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7878 INSERT INTO `marc_subfield_structure` VALUES ('906', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7879 INSERT INTO `marc_subfield_structure` VALUES ('906', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7880 INSERT INTO `marc_subfield_structure` VALUES ('906', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7881 INSERT INTO `marc_subfield_structure` VALUES ('906', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7882 INSERT INTO `marc_subfield_structure` VALUES ('906', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7883 INSERT INTO `marc_subfield_structure` VALUES ('906', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7884 INSERT INTO `marc_subfield_structure` VALUES ('906', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7885 INSERT INTO `marc_subfield_structure` VALUES ('906', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7886 INSERT INTO `marc_subfield_structure` VALUES ('906', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7887 INSERT INTO `marc_subfield_structure` VALUES ('906', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7888 INSERT INTO `marc_subfield_structure` VALUES ('906', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7889 INSERT INTO `marc_subfield_structure` VALUES ('906', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7890 INSERT INTO `marc_subfield_structure` VALUES ('906', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7891 INSERT INTO `marc_subfield_structure` VALUES ('906', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7892 INSERT INTO `marc_subfield_structure` VALUES ('906', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7893 INSERT INTO `marc_subfield_structure` VALUES ('906', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7894 INSERT INTO `marc_subfield_structure` VALUES ('906', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7895 INSERT INTO `marc_subfield_structure` VALUES ('906', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7896 INSERT INTO `marc_subfield_structure` VALUES ('906', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7897 INSERT INTO `marc_subfield_structure` VALUES ('906', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7898 INSERT INTO `marc_subfield_structure` VALUES ('906', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7899 INSERT INTO `marc_subfield_structure` VALUES ('906', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7900 INSERT INTO `marc_subfield_structure` VALUES ('906', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7901 INSERT INTO `marc_subfield_structure` VALUES ('906', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7902 INSERT INTO `marc_subfield_structure` VALUES ('906', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7903 INSERT INTO `marc_subfield_structure` VALUES ('906', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7904 INSERT INTO `marc_subfield_structure` VALUES ('907', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7905 INSERT INTO `marc_subfield_structure` VALUES ('907', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7906 INSERT INTO `marc_subfield_structure` VALUES ('907', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7907 INSERT INTO `marc_subfield_structure` VALUES ('907', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7908 INSERT INTO `marc_subfield_structure` VALUES ('907', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7909 INSERT INTO `marc_subfield_structure` VALUES ('907', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7910 INSERT INTO `marc_subfield_structure` VALUES ('907', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7911 INSERT INTO `marc_subfield_structure` VALUES ('907', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7912 INSERT INTO `marc_subfield_structure` VALUES ('907', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7913 INSERT INTO `marc_subfield_structure` VALUES ('907', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7914 INSERT INTO `marc_subfield_structure` VALUES ('907', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7915 INSERT INTO `marc_subfield_structure` VALUES ('907', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7916 INSERT INTO `marc_subfield_structure` VALUES ('907', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7917 INSERT INTO `marc_subfield_structure` VALUES ('907', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7918 INSERT INTO `marc_subfield_structure` VALUES ('907', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7919 INSERT INTO `marc_subfield_structure` VALUES ('907', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7920 INSERT INTO `marc_subfield_structure` VALUES ('907', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7921 INSERT INTO `marc_subfield_structure` VALUES ('907', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7922 INSERT INTO `marc_subfield_structure` VALUES ('907', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7923 INSERT INTO `marc_subfield_structure` VALUES ('907', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7924 INSERT INTO `marc_subfield_structure` VALUES ('907', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7925 INSERT INTO `marc_subfield_structure` VALUES ('907', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7926 INSERT INTO `marc_subfield_structure` VALUES ('907', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7927 INSERT INTO `marc_subfield_structure` VALUES ('907', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7928 INSERT INTO `marc_subfield_structure` VALUES ('907', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7929 INSERT INTO `marc_subfield_structure` VALUES ('907', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7930 INSERT INTO `marc_subfield_structure` VALUES ('907', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7931 INSERT INTO `marc_subfield_structure` VALUES ('907', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7932 INSERT INTO `marc_subfield_structure` VALUES ('907', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7933 INSERT INTO `marc_subfield_structure` VALUES ('907', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7934 INSERT INTO `marc_subfield_structure` VALUES ('907', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7935 INSERT INTO `marc_subfield_structure` VALUES ('907', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7936 INSERT INTO `marc_subfield_structure` VALUES ('907', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7937 INSERT INTO `marc_subfield_structure` VALUES ('907', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7938 INSERT INTO `marc_subfield_structure` VALUES ('907', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7939 INSERT INTO `marc_subfield_structure` VALUES ('907', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7940 INSERT INTO `marc_subfield_structure` VALUES ('908', 'a', 'Put command parameter', 'Put command parameter', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
7941 INSERT INTO `marc_subfield_structure` VALUES ('910', '4', 'Relator code', 'Relator code', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7942 INSERT INTO `marc_subfield_structure` VALUES ('910', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7943 INSERT INTO `marc_subfield_structure` VALUES ('910', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7944 INSERT INTO `marc_subfield_structure` VALUES ('910', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7945 INSERT INTO `marc_subfield_structure` VALUES ('910', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7946 INSERT INTO `marc_subfield_structure` VALUES ('910', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7947 INSERT INTO `marc_subfield_structure` VALUES ('910', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7948 INSERT INTO `marc_subfield_structure` VALUES ('910', 'e', 'Relator term', 'Relator term', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7949 INSERT INTO `marc_subfield_structure` VALUES ('910', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7950 INSERT INTO `marc_subfield_structure` VALUES ('910', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7951 INSERT INTO `marc_subfield_structure` VALUES ('910', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7952 INSERT INTO `marc_subfield_structure` VALUES ('910', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7953 INSERT INTO `marc_subfield_structure` VALUES ('910', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7954 INSERT INTO `marc_subfield_structure` VALUES ('910', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7955 INSERT INTO `marc_subfield_structure` VALUES ('910', 't', 'Title of a work', 'Title of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7956 INSERT INTO `marc_subfield_structure` VALUES ('910', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7957 INSERT INTO `marc_subfield_structure` VALUES ('91o', 'a', 'User-option data', 'User-option data', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
7958 INSERT INTO `marc_subfield_structure` VALUES ('91r', 'a', 'RLG standards note', 'RLG standards note', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
7959 INSERT INTO `marc_subfield_structure` VALUES ('911', '4', 'Relator code', 'Relator code', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7960 INSERT INTO `marc_subfield_structure` VALUES ('911', '6', 'Linkage', 'Linkage', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7961 INSERT INTO `marc_subfield_structure` VALUES ('911', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7962 INSERT INTO `marc_subfield_structure` VALUES ('911', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7963 INSERT INTO `marc_subfield_structure` VALUES ('911', 'b', 'Number [OBSOLETE]', 'Number [OBSOLETE]', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7964 INSERT INTO `marc_subfield_structure` VALUES ('911', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7965 INSERT INTO `marc_subfield_structure` VALUES ('911', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7966 INSERT INTO `marc_subfield_structure` VALUES ('911', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7967 INSERT INTO `marc_subfield_structure` VALUES ('911', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7968 INSERT INTO `marc_subfield_structure` VALUES ('911', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7969 INSERT INTO `marc_subfield_structure` VALUES ('911', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7970 INSERT INTO `marc_subfield_structure` VALUES ('911', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7971 INSERT INTO `marc_subfield_structure` VALUES ('911', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7972 INSERT INTO `marc_subfield_structure` VALUES ('911', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7973 INSERT INTO `marc_subfield_structure` VALUES ('911', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7974 INSERT INTO `marc_subfield_structure` VALUES ('911', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7975 INSERT INTO `marc_subfield_structure` VALUES ('911', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7976 INSERT INTO `marc_subfield_structure` VALUES ('930', '6', 'Linkage', 'Linkage', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7977 INSERT INTO `marc_subfield_structure` VALUES ('930', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7978 INSERT INTO `marc_subfield_structure` VALUES ('930', 'a', 'Uniform title', 'Uniform title', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7979 INSERT INTO `marc_subfield_structure` VALUES ('930', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7980 INSERT INTO `marc_subfield_structure` VALUES ('930', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7981 INSERT INTO `marc_subfield_structure` VALUES ('930', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7982 INSERT INTO `marc_subfield_structure` VALUES ('930', 'h', 'Medium', 'Medium', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7983 INSERT INTO `marc_subfield_structure` VALUES ('930', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7984 INSERT INTO `marc_subfield_structure` VALUES ('930', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7985 INSERT INTO `marc_subfield_structure` VALUES ('930', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7986 INSERT INTO `marc_subfield_structure` VALUES ('930', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7987 INSERT INTO `marc_subfield_structure` VALUES ('930', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7988 INSERT INTO `marc_subfield_structure` VALUES ('930', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7989 INSERT INTO `marc_subfield_structure` VALUES ('930', 'r', 'Key for music', 'Key for music', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7990 INSERT INTO `marc_subfield_structure` VALUES ('930', 's', 'Version', 'Version', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7991 INSERT INTO `marc_subfield_structure` VALUES ('930', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
7992 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'a', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'ASMP_BOOKS', '', '');
7993 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'b', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'ASMP_BOOKS', '', '');
7994 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'c', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'ASMP_BOOKS', '', '');
7995 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'd', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'ASMP_BOOKS', '', '');
7996 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'e', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'ASMP_BOOKS', '', '');
7997 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'f', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'ASMP_BOOKS', '', '');
7998 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'g', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'ASMP_BOOKS', '', '');
7999 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'h', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'ASMP_BOOKS', '', '');
8000 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'i', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'ASMP_BOOKS', '', '');
8001 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'k', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'ASMP_BOOKS', '', '');
8002 INSERT INTO `marc_subfield_structure` VALUES ('936', 'a', 'OCLC control number(s) of parallel record(s) (OCLC); Piece used for cataloging, PUC (RLIN)', 'OCLC control number(s) of parallel record(s) (OCLC); Piece used for cataloging, PUC (RLIN)', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
8003 INSERT INTO `marc_subfield_structure` VALUES ('940', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
8004 INSERT INTO `marc_subfield_structure` VALUES ('940', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
8005 INSERT INTO `marc_subfield_structure` VALUES ('940', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 9, '', '', '', 1, -6, 'ASMP_BOOKS', '', '');
8006 INSERT INTO `marc_subfield_structure` VALUES ('940', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
8007 INSERT INTO `marc_subfield_structure` VALUES ('940', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
8008 INSERT INTO `marc_subfield_structure` VALUES ('940', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
8009 INSERT INTO `marc_subfield_structure` VALUES ('940', 'h', 'Medium', 'Medium', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
8010 INSERT INTO `marc_subfield_structure` VALUES ('940', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
8011 INSERT INTO `marc_subfield_structure` VALUES ('940', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
8012 INSERT INTO `marc_subfield_structure` VALUES ('940', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
8013 INSERT INTO `marc_subfield_structure` VALUES ('940', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
8014 INSERT INTO `marc_subfield_structure` VALUES ('940', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
8015 INSERT INTO `marc_subfield_structure` VALUES ('940', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
8016 INSERT INTO `marc_subfield_structure` VALUES ('940', 'r', 'Key for music', 'Key for music', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
8017 INSERT INTO `marc_subfield_structure` VALUES ('940', 's', 'Version', 'Version', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
8018 INSERT INTO `marc_subfield_structure` VALUES ('941', 'a', 'Romanized title', 'Romanized title', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
8019 INSERT INTO `marc_subfield_structure` VALUES ('941', 'h', 'Medium', 'Medium', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
8020 INSERT INTO `marc_subfield_structure` VALUES ('943', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
8021 INSERT INTO `marc_subfield_structure` VALUES ('943', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
8022 INSERT INTO `marc_subfield_structure` VALUES ('943', 'a', 'Uniform title', 'Unifor title', 0, 0, '', 9, '', '', '', 1, 5, 'ASMP_BOOKS', '', '130');
8023 INSERT INTO `marc_subfield_structure` VALUES ('943', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
8024 INSERT INTO `marc_subfield_structure` VALUES ('943', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
8025 INSERT INTO `marc_subfield_structure` VALUES ('943', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
8026 INSERT INTO `marc_subfield_structure` VALUES ('943', 'h', 'Medium', 'Medium', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
8027 INSERT INTO `marc_subfield_structure` VALUES ('943', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
8028 INSERT INTO `marc_subfield_structure` VALUES ('943', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
8029 INSERT INTO `marc_subfield_structure` VALUES ('943', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
8030 INSERT INTO `marc_subfield_structure` VALUES ('943', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
8031 INSERT INTO `marc_subfield_structure` VALUES ('943', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
8032 INSERT INTO `marc_subfield_structure` VALUES ('943', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
8033 INSERT INTO `marc_subfield_structure` VALUES ('943', 'r', 'Key for music', 'Key for music', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
8034 INSERT INTO `marc_subfield_structure` VALUES ('943', 's', 'Version', 'Version', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
8035 INSERT INTO `marc_subfield_structure` VALUES ('945', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8036 INSERT INTO `marc_subfield_structure` VALUES ('945', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8037 INSERT INTO `marc_subfield_structure` VALUES ('945', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8038 INSERT INTO `marc_subfield_structure` VALUES ('945', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8039 INSERT INTO `marc_subfield_structure` VALUES ('945', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8040 INSERT INTO `marc_subfield_structure` VALUES ('945', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8041 INSERT INTO `marc_subfield_structure` VALUES ('945', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8042 INSERT INTO `marc_subfield_structure` VALUES ('945', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8043 INSERT INTO `marc_subfield_structure` VALUES ('945', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8044 INSERT INTO `marc_subfield_structure` VALUES ('945', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8045 INSERT INTO `marc_subfield_structure` VALUES ('945', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8046 INSERT INTO `marc_subfield_structure` VALUES ('945', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8047 INSERT INTO `marc_subfield_structure` VALUES ('945', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8048 INSERT INTO `marc_subfield_structure` VALUES ('945', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8049 INSERT INTO `marc_subfield_structure` VALUES ('945', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8050 INSERT INTO `marc_subfield_structure` VALUES ('945', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8051 INSERT INTO `marc_subfield_structure` VALUES ('945', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8052 INSERT INTO `marc_subfield_structure` VALUES ('945', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8053 INSERT INTO `marc_subfield_structure` VALUES ('945', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8054 INSERT INTO `marc_subfield_structure` VALUES ('945', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8055 INSERT INTO `marc_subfield_structure` VALUES ('945', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8056 INSERT INTO `marc_subfield_structure` VALUES ('945', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8057 INSERT INTO `marc_subfield_structure` VALUES ('945', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8058 INSERT INTO `marc_subfield_structure` VALUES ('945', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8059 INSERT INTO `marc_subfield_structure` VALUES ('945', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8060 INSERT INTO `marc_subfield_structure` VALUES ('945', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8061 INSERT INTO `marc_subfield_structure` VALUES ('945', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8062 INSERT INTO `marc_subfield_structure` VALUES ('945', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8063 INSERT INTO `marc_subfield_structure` VALUES ('945', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8064 INSERT INTO `marc_subfield_structure` VALUES ('945', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8065 INSERT INTO `marc_subfield_structure` VALUES ('945', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8066 INSERT INTO `marc_subfield_structure` VALUES ('945', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8067 INSERT INTO `marc_subfield_structure` VALUES ('945', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8068 INSERT INTO `marc_subfield_structure` VALUES ('945', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8069 INSERT INTO `marc_subfield_structure` VALUES ('945', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8070 INSERT INTO `marc_subfield_structure` VALUES ('945', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8071 INSERT INTO `marc_subfield_structure` VALUES ('94c', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8072 INSERT INTO `marc_subfield_structure` VALUES ('94c', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8073 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'a', 'Title', 'Title', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8074 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'b', 'Remainder of title', 'Remainder of title', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8075 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'c', 'Statement of responsibility, etc', 'Statement of responsibility, etc', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8076 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'd', 'Designation of section/part/series (SE) [OBSOLETE]', 'Designation of section section/part/series (SE) [OBSOLETE]', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8077 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'e', 'Name of part/section/series (SE) [OBSOLETE]', 'Name of part/section/series (SE) [OBSOLETE]', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8078 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'f', 'Inclusive dates', 'Inclusive dates', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8079 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'g', 'Bulk dates', 'Bulk dates', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8080 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'h', 'Medium', 'Medium', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8081 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'k', 'Form', 'Form', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8082 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8083 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8084 INSERT INTO `marc_subfield_structure` VALUES ('94c', 's', 'Version', 'Version', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8085 INSERT INTO `marc_subfield_structure` VALUES ('946', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8086 INSERT INTO `marc_subfield_structure` VALUES ('946', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8087 INSERT INTO `marc_subfield_structure` VALUES ('946', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8088 INSERT INTO `marc_subfield_structure` VALUES ('946', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8089 INSERT INTO `marc_subfield_structure` VALUES ('946', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8090 INSERT INTO `marc_subfield_structure` VALUES ('946', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8091 INSERT INTO `marc_subfield_structure` VALUES ('946', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8092 INSERT INTO `marc_subfield_structure` VALUES ('946', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8093 INSERT INTO `marc_subfield_structure` VALUES ('946', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8094 INSERT INTO `marc_subfield_structure` VALUES ('946', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8095 INSERT INTO `marc_subfield_structure` VALUES ('946', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8096 INSERT INTO `marc_subfield_structure` VALUES ('946', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8097 INSERT INTO `marc_subfield_structure` VALUES ('946', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8098 INSERT INTO `marc_subfield_structure` VALUES ('946', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8099 INSERT INTO `marc_subfield_structure` VALUES ('946', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8100 INSERT INTO `marc_subfield_structure` VALUES ('946', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8101 INSERT INTO `marc_subfield_structure` VALUES ('946', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8102 INSERT INTO `marc_subfield_structure` VALUES ('946', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8103 INSERT INTO `marc_subfield_structure` VALUES ('946', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8104 INSERT INTO `marc_subfield_structure` VALUES ('946', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8105 INSERT INTO `marc_subfield_structure` VALUES ('946', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8106 INSERT INTO `marc_subfield_structure` VALUES ('946', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8107 INSERT INTO `marc_subfield_structure` VALUES ('946', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8108 INSERT INTO `marc_subfield_structure` VALUES ('946', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8109 INSERT INTO `marc_subfield_structure` VALUES ('946', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8110 INSERT INTO `marc_subfield_structure` VALUES ('946', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8111 INSERT INTO `marc_subfield_structure` VALUES ('946', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8112 INSERT INTO `marc_subfield_structure` VALUES ('946', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8113 INSERT INTO `marc_subfield_structure` VALUES ('946', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8114 INSERT INTO `marc_subfield_structure` VALUES ('946', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8115 INSERT INTO `marc_subfield_structure` VALUES ('946', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8116 INSERT INTO `marc_subfield_structure` VALUES ('946', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8117 INSERT INTO `marc_subfield_structure` VALUES ('946', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8118 INSERT INTO `marc_subfield_structure` VALUES ('946', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8119 INSERT INTO `marc_subfield_structure` VALUES ('946', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8120 INSERT INTO `marc_subfield_structure` VALUES ('946', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8121 INSERT INTO `marc_subfield_structure` VALUES ('947', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8122 INSERT INTO `marc_subfield_structure` VALUES ('947', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8123 INSERT INTO `marc_subfield_structure` VALUES ('947', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8124 INSERT INTO `marc_subfield_structure` VALUES ('947', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8125 INSERT INTO `marc_subfield_structure` VALUES ('947', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8126 INSERT INTO `marc_subfield_structure` VALUES ('947', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8127 INSERT INTO `marc_subfield_structure` VALUES ('947', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8128 INSERT INTO `marc_subfield_structure` VALUES ('947', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8129 INSERT INTO `marc_subfield_structure` VALUES ('947', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8130 INSERT INTO `marc_subfield_structure` VALUES ('947', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8131 INSERT INTO `marc_subfield_structure` VALUES ('947', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8132 INSERT INTO `marc_subfield_structure` VALUES ('947', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8133 INSERT INTO `marc_subfield_structure` VALUES ('947', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8134 INSERT INTO `marc_subfield_structure` VALUES ('947', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8135 INSERT INTO `marc_subfield_structure` VALUES ('947', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8136 INSERT INTO `marc_subfield_structure` VALUES ('947', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8137 INSERT INTO `marc_subfield_structure` VALUES ('947', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8138 INSERT INTO `marc_subfield_structure` VALUES ('947', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8139 INSERT INTO `marc_subfield_structure` VALUES ('947', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8140 INSERT INTO `marc_subfield_structure` VALUES ('947', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8141 INSERT INTO `marc_subfield_structure` VALUES ('947', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8142 INSERT INTO `marc_subfield_structure` VALUES ('947', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8143 INSERT INTO `marc_subfield_structure` VALUES ('947', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8144 INSERT INTO `marc_subfield_structure` VALUES ('947', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8145 INSERT INTO `marc_subfield_structure` VALUES ('947', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8146 INSERT INTO `marc_subfield_structure` VALUES ('947', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8147 INSERT INTO `marc_subfield_structure` VALUES ('947', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8148 INSERT INTO `marc_subfield_structure` VALUES ('947', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8149 INSERT INTO `marc_subfield_structure` VALUES ('947', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8150 INSERT INTO `marc_subfield_structure` VALUES ('947', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8151 INSERT INTO `marc_subfield_structure` VALUES ('947', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8152 INSERT INTO `marc_subfield_structure` VALUES ('947', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8153 INSERT INTO `marc_subfield_structure` VALUES ('947', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8154 INSERT INTO `marc_subfield_structure` VALUES ('947', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8155 INSERT INTO `marc_subfield_structure` VALUES ('947', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8156 INSERT INTO `marc_subfield_structure` VALUES ('947', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8157 INSERT INTO `marc_subfield_structure` VALUES ('948', '0', '0 (OCLC)', '0 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8158 INSERT INTO `marc_subfield_structure` VALUES ('948', '1', '1 (OCLC)', '1 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8159 INSERT INTO `marc_subfield_structure` VALUES ('948', '2', '2 (OCLC)', '2 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8160 INSERT INTO `marc_subfield_structure` VALUES ('948', '3', '3 (OCLC)', '3 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8161 INSERT INTO `marc_subfield_structure` VALUES ('948', '4', '4 (OCLC)', '4 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8162 INSERT INTO `marc_subfield_structure` VALUES ('948', '5', '5 (OCLC)', '5 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8163 INSERT INTO `marc_subfield_structure` VALUES ('948', '6', '6 (OCLC)', '6 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8164 INSERT INTO `marc_subfield_structure` VALUES ('948', '7', '7 (OCLC)', '7 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8165 INSERT INTO `marc_subfield_structure` VALUES ('948', '8', '8 (OCLC)', '8 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8166 INSERT INTO `marc_subfield_structure` VALUES ('948', '9', '9 (OCLC)', '9 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8167 INSERT INTO `marc_subfield_structure` VALUES ('948', 'a', 'Series part designator, SPT (RLIN)', 'Series part designator, SPT (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
8168 INSERT INTO `marc_subfield_structure` VALUES ('948', 'b', 'b (OCLC)', 'b (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8169 INSERT INTO `marc_subfield_structure` VALUES ('948', 'c', 'c (OCLC)', 'c (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8170 INSERT INTO `marc_subfield_structure` VALUES ('948', 'd', 'd (OCLC)', 'd (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8171 INSERT INTO `marc_subfield_structure` VALUES ('948', 'e', 'e (OCLC)', 'e (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8172 INSERT INTO `marc_subfield_structure` VALUES ('948', 'f', 'f (OCLC)', 'f (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8173 INSERT INTO `marc_subfield_structure` VALUES ('948', 'g', 'g (OCLC)', 'g (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8174 INSERT INTO `marc_subfield_structure` VALUES ('948', 'h', 'h (OCLC)', 'h (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8175 INSERT INTO `marc_subfield_structure` VALUES ('948', 'i', 'i (OCLC)', 'i (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8176 INSERT INTO `marc_subfield_structure` VALUES ('948', 'j', 'j (OCLC)', 'j (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8177 INSERT INTO `marc_subfield_structure` VALUES ('948', 'k', 'k (OCLC)', 'k (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8178 INSERT INTO `marc_subfield_structure` VALUES ('948', 'l', 'l (OCLC)', 'l (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8179 INSERT INTO `marc_subfield_structure` VALUES ('948', 'm', 'm (OCLC)', 'm (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8180 INSERT INTO `marc_subfield_structure` VALUES ('948', 'n', 'n (OCLC)', 'n (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8181 INSERT INTO `marc_subfield_structure` VALUES ('948', 'o', 'o (OCLC)', 'o (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8182 INSERT INTO `marc_subfield_structure` VALUES ('948', 'p', 'p (OCLC)', 'p (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8183 INSERT INTO `marc_subfield_structure` VALUES ('948', 'q', 'q (OCLC)', 'q (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8184 INSERT INTO `marc_subfield_structure` VALUES ('948', 'r', 'r (OCLC)', 'r (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8185 INSERT INTO `marc_subfield_structure` VALUES ('948', 's', 's (OCLC)', 's (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8186 INSERT INTO `marc_subfield_structure` VALUES ('948', 't', 't (OCLC)', 't (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8187 INSERT INTO `marc_subfield_structure` VALUES ('948', 'u', 'u (OCLC)', 'u (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8188 INSERT INTO `marc_subfield_structure` VALUES ('948', 'v', 'v (OCLC)', 'v (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8189 INSERT INTO `marc_subfield_structure` VALUES ('948', 'w', 'w (OCLC)', 'w (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8190 INSERT INTO `marc_subfield_structure` VALUES ('948', 'x', 'x (OCLC)', 'x (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8191 INSERT INTO `marc_subfield_structure` VALUES ('948', 'y', 'y (OCLC)', 'y (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8192 INSERT INTO `marc_subfield_structure` VALUES ('948', 'z', 'z (OCLC)', 'z (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8193 INSERT INTO `marc_subfield_structure` VALUES ('949', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8194 INSERT INTO `marc_subfield_structure` VALUES ('949', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8195 INSERT INTO `marc_subfield_structure` VALUES ('949', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8196 INSERT INTO `marc_subfield_structure` VALUES ('949', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8197 INSERT INTO `marc_subfield_structure` VALUES ('949', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8198 INSERT INTO `marc_subfield_structure` VALUES ('949', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8199 INSERT INTO `marc_subfield_structure` VALUES ('949', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8200 INSERT INTO `marc_subfield_structure` VALUES ('949', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8201 INSERT INTO `marc_subfield_structure` VALUES ('949', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8202 INSERT INTO `marc_subfield_structure` VALUES ('949', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8203 INSERT INTO `marc_subfield_structure` VALUES ('949', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8204 INSERT INTO `marc_subfield_structure` VALUES ('949', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8205 INSERT INTO `marc_subfield_structure` VALUES ('949', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8206 INSERT INTO `marc_subfield_structure` VALUES ('949', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8207 INSERT INTO `marc_subfield_structure` VALUES ('949', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8208 INSERT INTO `marc_subfield_structure` VALUES ('949', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8209 INSERT INTO `marc_subfield_structure` VALUES ('949', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8210 INSERT INTO `marc_subfield_structure` VALUES ('949', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8211 INSERT INTO `marc_subfield_structure` VALUES ('949', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8212 INSERT INTO `marc_subfield_structure` VALUES ('949', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8213 INSERT INTO `marc_subfield_structure` VALUES ('949', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8214 INSERT INTO `marc_subfield_structure` VALUES ('949', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8215 INSERT INTO `marc_subfield_structure` VALUES ('949', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8216 INSERT INTO `marc_subfield_structure` VALUES ('949', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8217 INSERT INTO `marc_subfield_structure` VALUES ('949', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8218 INSERT INTO `marc_subfield_structure` VALUES ('949', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8219 INSERT INTO `marc_subfield_structure` VALUES ('949', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8220 INSERT INTO `marc_subfield_structure` VALUES ('949', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8221 INSERT INTO `marc_subfield_structure` VALUES ('949', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8222 INSERT INTO `marc_subfield_structure` VALUES ('949', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8223 INSERT INTO `marc_subfield_structure` VALUES ('949', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8224 INSERT INTO `marc_subfield_structure` VALUES ('949', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8225 INSERT INTO `marc_subfield_structure` VALUES ('949', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8226 INSERT INTO `marc_subfield_structure` VALUES ('949', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8227 INSERT INTO `marc_subfield_structure` VALUES ('949', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8228 INSERT INTO `marc_subfield_structure` VALUES ('949', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8229 INSERT INTO `marc_subfield_structure` VALUES ('94a', 'a', 'ATN', 'ATN', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
8230 INSERT INTO `marc_subfield_structure` VALUES ('94a', 'b', 'ATN', 'ATN', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
8231 INSERT INTO `marc_subfield_structure` VALUES ('94a', 'c', 'ATN', 'ATN', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
8232 INSERT INTO `marc_subfield_structure` VALUES ('94a', 'd', 'ATN', 'ATN', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
8233 INSERT INTO `marc_subfield_structure` VALUES ('94a', 'e', 'ATN', 'ATN', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
8234 INSERT INTO `marc_subfield_structure` VALUES ('94b', 'a', 'ATC', 'ATC', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
8235 INSERT INTO `marc_subfield_structure` VALUES ('94b', 'b', 'SNR', 'SNR', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
8236 INSERT INTO `marc_subfield_structure` VALUES ('950', 'a', 'Classification number, LCAL (RLIN)', 'Classification number, LCAL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8237 INSERT INTO `marc_subfield_structure` VALUES ('950', 'b', 'Book number/undivided call number, LCAL (RLIN)', 'Book number/undivided call number, LCAL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8238 INSERT INTO `marc_subfield_structure` VALUES ('950', 'd', 'Additional free-text stamp above the call number, LCAL (RLIN)', 'Additional free-text stamp above the call number, LCAL (RLIN)', 1, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8239 INSERT INTO `marc_subfield_structure` VALUES ('950', 'e', 'Additional free-text or profiled stamp below the call number, LCAL (RLIN)', 'Additional free-text or profiled stamp below the call number, LCAL (RLIN)', 1, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8240 INSERT INTO `marc_subfield_structure` VALUES ('950', 'f', 'Location-level footnote, LFNT (RLIN)', 'Location-level footnote, LFNT (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8241 INSERT INTO `marc_subfield_structure` VALUES ('950', 'h', 'Location-level output transaction history, LHST (RLIN)', 'Location-level output transaction history, LHST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8242 INSERT INTO `marc_subfield_structure` VALUES ('950', 'i', 'Location-level extra card request, LEXT (RLIN)', 'Location-level extra card request, LEXT (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8243 INSERT INTO `marc_subfield_structure` VALUES ('950', 'l', 'Permanent shelving location, LOC (RLIN)', 'Permanent shelving location, LOC (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8244 INSERT INTO `marc_subfield_structure` VALUES ('950', 'n', 'Location-level additional note, LANT (RLIN)', 'Location-level additional note, LANT (RLIN)', 1, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8245 INSERT INTO `marc_subfield_structure` VALUES ('950', 'p', 'Location-level pathfinder, LPTH (RLIN)', 'Location-level pathfinder, LPTH (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8246 INSERT INTO `marc_subfield_structure` VALUES ('950', 't', 'Location-level field suppression, LFSP (RLIN)', 'Location-level field suppression, LFSP (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8247 INSERT INTO `marc_subfield_structure` VALUES ('950', 'u', 'Non-printing notes, LANT (RLIN)', 'Non-printing notes, LANT (RLIN)', 1, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8248 INSERT INTO `marc_subfield_structure` VALUES ('950', 'v', 'Volumes, LVOL (RLIN)', 'Volumes, LVOL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8249 INSERT INTO `marc_subfield_structure` VALUES ('950', 'w', 'Subscription status code, LANT (RLIN)', 'Subscription status code, LANT (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8250 INSERT INTO `marc_subfield_structure` VALUES ('950', 'y', 'Date, LVOL (RLIN)', 'Date, LVOL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8251 INSERT INTO `marc_subfield_structure` VALUES ('950', 'z', 'Retention, LVOL (RLIN)', 'Retention, LVOL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8252 INSERT INTO `marc_subfield_structure` VALUES ('951', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8253 INSERT INTO `marc_subfield_structure` VALUES ('951', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8254 INSERT INTO `marc_subfield_structure` VALUES ('951', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8255 INSERT INTO `marc_subfield_structure` VALUES ('951', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8256 INSERT INTO `marc_subfield_structure` VALUES ('951', 'a', 'Geographic name', 'Geographic name', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8257 INSERT INTO `marc_subfield_structure` VALUES ('951', 'b', 'Geographic name following place entry element [OBSOLETE]', 'Geographic name following place entry element [OBSOLETE]', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8258 INSERT INTO `marc_subfield_structure` VALUES ('951', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8259 INSERT INTO `marc_subfield_structure` VALUES ('951', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8260 INSERT INTO `marc_subfield_structure` VALUES ('951', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8261 INSERT INTO `marc_subfield_structure` VALUES ('951', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8262 INSERT INTO `marc_subfield_structure` VALUES ('95c', 'a', 'Record ID (RLIN)', 'Record ID (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8263 INSERT INTO `marc_subfield_structure` VALUES ('95c', 'b', 'Institution name (RLIN)', 'Institution name (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8264 INSERT INTO `marc_subfield_structure` VALUES ('95r', '6', 'Linkage', 'Linkage', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'ASMP_BOOKS', '', '');
8265 INSERT INTO `marc_subfield_structure` VALUES ('95r', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'ASMP_BOOKS', '', '');
8266 INSERT INTO `marc_subfield_structure` VALUES ('95r', 'a', 'Country', 'Country', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'ASMP_BOOKS', '', '');
8267 INSERT INTO `marc_subfield_structure` VALUES ('95r', 'b', 'State, province, territory', 'State, province, territory', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'ASMP_BOOKS', '', '');
8268 INSERT INTO `marc_subfield_structure` VALUES ('95r', 'c', 'County, region, islands area', 'County, region, islands area', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'ASMP_BOOKS', '', '');
8269 INSERT INTO `marc_subfield_structure` VALUES ('95r', 'd', 'City', 'City', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'ASMP_BOOKS', '', '');
8270 INSERT INTO `marc_subfield_structure` VALUES ('955', 'a', 'Classification number, CCAL (RLIN)', 'Classification number, CCAL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8271 INSERT INTO `marc_subfield_structure` VALUES ('955', 'b', 'Book number/undivided call number, CCAL (RLIN)', 'Book number/undivided call number, CCAL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8272 INSERT INTO `marc_subfield_structure` VALUES ('955', 'c', 'Copy information and material description, CCAL + MDES (RLIN)', 'Copy information and material description, CCAL + MDES (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8273 INSERT INTO `marc_subfield_structure` VALUES ('955', 'h', 'Copy status--for earlier dates, CST (RLIN)', 'Copy status--for earlier dates, CST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8274 INSERT INTO `marc_subfield_structure` VALUES ('955', 'i', 'Copy status, CST (RLIN)', 'Copy status, CST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8275 INSERT INTO `marc_subfield_structure` VALUES ('955', 'l', 'Permanent shelving location, LOC (RLIN)', 'Permanent shelving location, LOC (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8276 INSERT INTO `marc_subfield_structure` VALUES ('955', 'q', 'Aquisitions control number, HNT (RLIN)', 'Aquisitions control number, HNT (RLIN)', 1, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8277 INSERT INTO `marc_subfield_structure` VALUES ('955', 'r', 'Circulation control number, HNT (RLIN)', 'Circulation control number, HNT (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8278 INSERT INTO `marc_subfield_structure` VALUES ('955', 's', 'Shelflist note, HNT (RLIN)', 'Shelflist note, HNT (RLIN)', 1, 0, '', 9, '', '', '', 1, 5, 'ASMP_BOOKS', '', '');
8279 INSERT INTO `marc_subfield_structure` VALUES ('955', 'u', 'Non-printing notes, HNT (RLIN)', 'Non-printing notes, HNT (RLIN)', 1, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8280 INSERT INTO `marc_subfield_structure` VALUES ('956', '2', 'Access method', 'Access method', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
8281 INSERT INTO `marc_subfield_structure` VALUES ('956', '3', 'Materials specified', 'Materials specified', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
8282 INSERT INTO `marc_subfield_structure` VALUES ('956', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
8283 INSERT INTO `marc_subfield_structure` VALUES ('956', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
8284 INSERT INTO `marc_subfield_structure` VALUES ('956', 'a', 'Host name', 'Host name', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
8285 INSERT INTO `marc_subfield_structure` VALUES ('956', 'b', 'Access number', 'Access number', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
8286 INSERT INTO `marc_subfield_structure` VALUES ('956', 'c', 'Compression information', 'Compression information', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
8287 INSERT INTO `marc_subfield_structure` VALUES ('956', 'd', 'Path', 'Path', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
8288 INSERT INTO `marc_subfield_structure` VALUES ('956', 'f', 'Electronic name', 'Electronic name', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
8289 INSERT INTO `marc_subfield_structure` VALUES ('956', 'h', 'Processor of request', 'Processor of request', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
8290 INSERT INTO `marc_subfield_structure` VALUES ('956', 'i', 'Instruction', 'Instruction', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
8291 INSERT INTO `marc_subfield_structure` VALUES ('956', 'j', 'Bits per second', 'Bits per second', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
8292 INSERT INTO `marc_subfield_structure` VALUES ('956', 'k', 'Password', 'Password', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
8293 INSERT INTO `marc_subfield_structure` VALUES ('956', 'l', 'Logon', 'Logon', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
8294 INSERT INTO `marc_subfield_structure` VALUES ('956', 'm', 'Contact for access assistance', 'Contact for access assistance', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
8295 INSERT INTO `marc_subfield_structure` VALUES ('956', 'n', 'Name of location of host in subfield', 'Name of location of host in subfield', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
8296 INSERT INTO `marc_subfield_structure` VALUES ('956', 'o', 'Operating system', 'Operating system', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
8297 INSERT INTO `marc_subfield_structure` VALUES ('956', 'p', 'Port', 'Port', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
8298 INSERT INTO `marc_subfield_structure` VALUES ('956', 'q', 'Electronic format type', 'Electronic format type', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
8299 INSERT INTO `marc_subfield_structure` VALUES ('956', 'r', 'Settings', 'Settings', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
8300 INSERT INTO `marc_subfield_structure` VALUES ('956', 's', 'File size', 'File size', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
8301 INSERT INTO `marc_subfield_structure` VALUES ('956', 't', 'Terminal emulation', 'Terminal emulation', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
8302 INSERT INTO `marc_subfield_structure` VALUES ('956', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 9, '', '', '', 1, -6, 'ASMP_BOOKS', '', '');
8303 INSERT INTO `marc_subfield_structure` VALUES ('956', 'v', 'Hours access method available', 'Hours access method available', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
8304 INSERT INTO `marc_subfield_structure` VALUES ('956', 'w', 'Record control number', 'Record control number', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
8305 INSERT INTO `marc_subfield_structure` VALUES ('956', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 9, '', '', '', 0, 6, 'ASMP_BOOKS', '', '');
8306 INSERT INTO `marc_subfield_structure` VALUES ('956', 'y', 'Link text', 'Link text', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
8307 INSERT INTO `marc_subfield_structure` VALUES ('956', 'z', 'Public note', 'Public note', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
8308 INSERT INTO `marc_subfield_structure` VALUES ('960', '3', 'Materials specified, MATL', 'Materials specified, MATL', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8309 INSERT INTO `marc_subfield_structure` VALUES ('960', 'a', 'Physical location, PLOC (RLIN)', 'Physical location, PLOC (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
8310 INSERT INTO `marc_subfield_structure` VALUES ('967', 'a', 'GNR (RLIN)', 'GNR (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
8311 INSERT INTO `marc_subfield_structure` VALUES ('967', 'c', 'PSI (RLIN)', 'PSI (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
8312 INSERT INTO `marc_subfield_structure` VALUES ('980', '4', 'Relator code', 'Relator code', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8313 INSERT INTO `marc_subfield_structure` VALUES ('980', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8314 INSERT INTO `marc_subfield_structure` VALUES ('980', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8315 INSERT INTO `marc_subfield_structure` VALUES ('980', 'a', 'Personal name', 'Personal name', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8316 INSERT INTO `marc_subfield_structure` VALUES ('980', 'b', 'Numeration', 'Numeration', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8317 INSERT INTO `marc_subfield_structure` VALUES ('980', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8318 INSERT INTO `marc_subfield_structure` VALUES ('980', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8319 INSERT INTO `marc_subfield_structure` VALUES ('980', 'e', 'Relator term', 'Relator term', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8320 INSERT INTO `marc_subfield_structure` VALUES ('980', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8321 INSERT INTO `marc_subfield_structure` VALUES ('980', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8322 INSERT INTO `marc_subfield_structure` VALUES ('980', 'h', 'Medium', 'Medium', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8323 INSERT INTO `marc_subfield_structure` VALUES ('980', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8324 INSERT INTO `marc_subfield_structure` VALUES ('980', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8325 INSERT INTO `marc_subfield_structure` VALUES ('980', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8326 INSERT INTO `marc_subfield_structure` VALUES ('980', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8327 INSERT INTO `marc_subfield_structure` VALUES ('980', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8328 INSERT INTO `marc_subfield_structure` VALUES ('980', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8329 INSERT INTO `marc_subfield_structure` VALUES ('980', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8330 INSERT INTO `marc_subfield_structure` VALUES ('980', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8331 INSERT INTO `marc_subfield_structure` VALUES ('980', 'r', 'Key for music', 'Key for music', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8332 INSERT INTO `marc_subfield_structure` VALUES ('980', 's', 'Version', 'Version', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8333 INSERT INTO `marc_subfield_structure` VALUES ('980', 't', 'Title of a work', 'Title of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8334 INSERT INTO `marc_subfield_structure` VALUES ('980', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8335 INSERT INTO `marc_subfield_structure` VALUES ('980', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8336 INSERT INTO `marc_subfield_structure` VALUES ('981', '4', 'Relator code', 'Relator code', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8337 INSERT INTO `marc_subfield_structure` VALUES ('981', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8338 INSERT INTO `marc_subfield_structure` VALUES ('981', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8339 INSERT INTO `marc_subfield_structure` VALUES ('981', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8340 INSERT INTO `marc_subfield_structure` VALUES ('981', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8341 INSERT INTO `marc_subfield_structure` VALUES ('981', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8342 INSERT INTO `marc_subfield_structure` VALUES ('981', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8343 INSERT INTO `marc_subfield_structure` VALUES ('981', 'e', 'Relator term', 'Relator term', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8344 INSERT INTO `marc_subfield_structure` VALUES ('981', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8345 INSERT INTO `marc_subfield_structure` VALUES ('981', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8346 INSERT INTO `marc_subfield_structure` VALUES ('981', 'h', 'Medium', 'Medium', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8347 INSERT INTO `marc_subfield_structure` VALUES ('981', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8348 INSERT INTO `marc_subfield_structure` VALUES ('981', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8349 INSERT INTO `marc_subfield_structure` VALUES ('981', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8350 INSERT INTO `marc_subfield_structure` VALUES ('981', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8351 INSERT INTO `marc_subfield_structure` VALUES ('981', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8352 INSERT INTO `marc_subfield_structure` VALUES ('981', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8353 INSERT INTO `marc_subfield_structure` VALUES ('981', 'r', 'Key for music', 'Key for music', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8354 INSERT INTO `marc_subfield_structure` VALUES ('981', 's', 'Version', 'Version', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8355 INSERT INTO `marc_subfield_structure` VALUES ('981', 't', 'Title of a work', 'Title of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8356 INSERT INTO `marc_subfield_structure` VALUES ('981', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8357 INSERT INTO `marc_subfield_structure` VALUES ('981', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8358 INSERT INTO `marc_subfield_structure` VALUES ('982', '4', 'Relator code', 'Relator code', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
8359 INSERT INTO `marc_subfield_structure` VALUES ('982', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
8360 INSERT INTO `marc_subfield_structure` VALUES ('982', '8', 'Field link and sequence number ', 'Field link and sequence number ', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
8361 INSERT INTO `marc_subfield_structure` VALUES ('982', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
8362 INSERT INTO `marc_subfield_structure` VALUES ('982', 'b', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
8363 INSERT INTO `marc_subfield_structure` VALUES ('982', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
8364 INSERT INTO `marc_subfield_structure` VALUES ('982', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
8365 INSERT INTO `marc_subfield_structure` VALUES ('982', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
8366 INSERT INTO `marc_subfield_structure` VALUES ('982', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
8367 INSERT INTO `marc_subfield_structure` VALUES ('982', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
8368 INSERT INTO `marc_subfield_structure` VALUES ('982', 'h', 'Medium', 'Medium', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
8369 INSERT INTO `marc_subfield_structure` VALUES ('982', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
8370 INSERT INTO `marc_subfield_structure` VALUES ('982', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
8371 INSERT INTO `marc_subfield_structure` VALUES ('982', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
8372 INSERT INTO `marc_subfield_structure` VALUES ('982', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
8373 INSERT INTO `marc_subfield_structure` VALUES ('982', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
8374 INSERT INTO `marc_subfield_structure` VALUES ('982', 's', 'Version', 'Version', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
8375 INSERT INTO `marc_subfield_structure` VALUES ('982', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
8376 INSERT INTO `marc_subfield_structure` VALUES ('982', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
8377 INSERT INTO `marc_subfield_structure` VALUES ('982', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_BOOKS', '', '');
8378 INSERT INTO `marc_subfield_structure` VALUES ('983', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8379 INSERT INTO `marc_subfield_structure` VALUES ('983', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8380 INSERT INTO `marc_subfield_structure` VALUES ('983', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8381 INSERT INTO `marc_subfield_structure` VALUES ('983', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8382 INSERT INTO `marc_subfield_structure` VALUES ('983', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8383 INSERT INTO `marc_subfield_structure` VALUES ('983', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8384 INSERT INTO `marc_subfield_structure` VALUES ('983', 'h', 'Medium', 'Medium', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8385 INSERT INTO `marc_subfield_structure` VALUES ('983', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8386 INSERT INTO `marc_subfield_structure` VALUES ('983', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8387 INSERT INTO `marc_subfield_structure` VALUES ('983', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8388 INSERT INTO `marc_subfield_structure` VALUES ('983', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8389 INSERT INTO `marc_subfield_structure` VALUES ('983', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8390 INSERT INTO `marc_subfield_structure` VALUES ('983', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8391 INSERT INTO `marc_subfield_structure` VALUES ('983', 'r', 'Key for music', 'Key for music', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8392 INSERT INTO `marc_subfield_structure` VALUES ('983', 's', 'Version', 'Version', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8393 INSERT INTO `marc_subfield_structure` VALUES ('983', 't', 'Title of a work', 'Title of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8394 INSERT INTO `marc_subfield_structure` VALUES ('983', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8395 INSERT INTO `marc_subfield_structure` VALUES ('984', 'a', 'Holding library identification number', 'Holding library identification number', 0, 0, '', 9, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
8396 INSERT INTO `marc_subfield_structure` VALUES ('984', 'b', 'Physical description codes', 'Physical description codes', 1, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8397 INSERT INTO `marc_subfield_structure` VALUES ('984', 'c', 'Call number', 'Call number', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8398 INSERT INTO `marc_subfield_structure` VALUES ('984', 'd', 'Volume or other numbering', 'Volume or other numbering', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8399 INSERT INTO `marc_subfield_structure` VALUES ('984', 'e', 'Dates', 'Dates', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8400 INSERT INTO `marc_subfield_structure` VALUES ('984', 'f', 'Completeness note', 'Completeness note', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8401 INSERT INTO `marc_subfield_structure` VALUES ('984', 'g', 'Referral note', 'Referral note', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8402 INSERT INTO `marc_subfield_structure` VALUES ('984', 'h', 'Retention note', 'Retention note', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8403 INSERT INTO `marc_subfield_structure` VALUES ('987', 'a', 'Romanization/conversion identifier', 'Romanization/conversion identifier', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_BOOKS', '', '');
8404 INSERT INTO `marc_subfield_structure` VALUES ('987', 'b', 'Agency that converted, created or reviewed', 'Agency that converted, created or reviewed', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
8405 INSERT INTO `marc_subfield_structure` VALUES ('987', 'c', 'Date of conversion or review', 'Date of conversion or review', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
8406 INSERT INTO `marc_subfield_structure` VALUES ('987', 'd', 'Status code', 'Status code ', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
8407 INSERT INTO `marc_subfield_structure` VALUES ('987', 'e', 'Version of conversion program used', 'Version of conversion program used', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
8408 INSERT INTO `marc_subfield_structure` VALUES ('987', 'f', 'Note', 'Note', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
8409 INSERT INTO `marc_subfield_structure` VALUES ('990', 'a', 'Link information for 9XX fields', 'Link information for 9XX fields', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
8410 INSERT INTO `marc_subfield_structure` VALUES ('990', 'b', 'Link information for field corresponding to 9XX field', 'Link information for field corresponding to 9XX field', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
8411 INSERT INTO `marc_subfield_structure` VALUES ('995', 'a', 'Origine du document, texte libre', 'Origine du document, texte libre', 0, 0, '', 9, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
8412 INSERT INTO `marc_subfield_structure` VALUES ('995', 'b', 'Origine du document, donn&eacute;e cod&eacute;e', '', 0, 0, '', 9, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
8413 INSERT INTO `marc_subfield_structure` VALUES ('995', 'c', '&Eacute;tablissement pr&ecirc;teur ou d&eacute;posant, texte libre', '&Eacute;tablissement pr&ecirc;teur ou d&eacute;posant, texte libre', 0, 0, '', 9, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
8414 INSERT INTO `marc_subfield_structure` VALUES ('995', 'd', '&Eacute;tablissement pr&ecirc;teur ou d&eacute;posant, donn&eacute;e cod&eacute;e', '&Eacute;tablissement pr&ecirc;teur ou d&eacute;posant, donn&eacute;e cod&eacute;e', 0, 0, '', 9, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
8415 INSERT INTO `marc_subfield_structure` VALUES ('995', 'e', 'Genre d&eacute;taill&eacute;', 'Genre d&eacute;taill&eacute;', 0, 0, '', 9, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
8416 INSERT INTO `marc_subfield_structure` VALUES ('995', 'f', 'Code &agrave; barres, suite alphanum&eacute;rique int&eacute;grale', 'Code &agrave; barres, suite alphanum&eacute;rique int&eacute;grale', 0, 0, '', 9, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
8417 INSERT INTO `marc_subfield_structure` VALUES ('995', 'g', 'Code &agrave; barres, pr&eacute;fixe', 'Code &agrave; barres, pr&eacute;fixe', 0, 0, '', 9, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
8418 INSERT INTO `marc_subfield_structure` VALUES ('995', 'h', 'Code &agrave; barres, incr&eacute;mentation', 'Code &agrave; barres, incr&eacute;mentation', 0, 0, '', 9, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
8419 INSERT INTO `marc_subfield_structure` VALUES ('995', 'i', 'Code &agrave; barres, suffixe', 'Code &agrave; barres, suffixe', 0, 0, '', 9, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
8420 INSERT INTO `marc_subfield_structure` VALUES ('995', 'j', '&Eacute;tablissement pr&ecirc;teur ou d&eacute;posant, donn&eacute;e cod&eacute;e', '&Eacute;tablissement pr&ecirc;teur ou d&eacute;posant, donn&eacute;e cod&eacute;e', 0, 0, '', 9, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
8421 INSERT INTO `marc_subfield_structure` VALUES ('995', 'k', 'Cote', 'Cote', 0, 0, '', 9, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
8422 INSERT INTO `marc_subfield_structure` VALUES ('995', 'l', 'Volumaison', 'Volumaison', 0, 0, '', 9, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
8423 INSERT INTO `marc_subfield_structure` VALUES ('995', 'm', 'Date de pr&ecirc;t ou de d&eacute;p&ocirc;t', 'Date de pr&ecirc;t ou de d&eacute;p&ocirc;t', 0, 0, '', 9, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
8424 INSERT INTO `marc_subfield_structure` VALUES ('995', 'n', 'Date de restitution pr&eacute;vue', 'Date de restitution pr&eacute;vue', 0, 0, '', 9, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
8425 INSERT INTO `marc_subfield_structure` VALUES ('995', 'o', 'Cat&eacute;gorie de circulation', 'Cat&eacute;gorie de circulation', 0, 0, '', 9, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
8426 INSERT INTO `marc_subfield_structure` VALUES ('995', 'p', 'P&eacute;riodique', 'P&eacute;riodique', 0, 0, '', 9, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
8427 INSERT INTO `marc_subfield_structure` VALUES ('995', 'q', 'Public vis&eacute; (selon l\'&acirc;ge)', 'Public vis&eacute; (selon l\'&acirc;ge)', 0, 0, '', 9, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
8428 INSERT INTO `marc_subfield_structure` VALUES ('995', 'r', 'Type de document et support mat&eacute;riel', 'Type de document et support mat&eacute;riel', 0, 0, '', 9, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
8429 INSERT INTO `marc_subfield_structure` VALUES ('995', 's', '�&eacute;ment de tri', '�&eacute;ment de tri', 0, 0, '', 9, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
8430 INSERT INTO `marc_subfield_structure` VALUES ('995', 't', 'Genre', 'Genre', 0, 0, '', 9, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
8431 INSERT INTO `marc_subfield_structure` VALUES ('995', 'u', 'Note sur l\'exemplaire', 'Note sur l\'exemplaire', 0, 0, '', 9, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
8432 INSERT INTO `marc_subfield_structure` VALUES ('995', 'v', 'Note sur le num&eacute;ro de p&eacute;riodique', 'Note sur le num&eacute;ro de p&eacute;riodique', 0, 0, '', 9, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
8433 INSERT INTO `marc_subfield_structure` VALUES ('995', 'w', '�ablissement cible du document, texte libre', '�ablissement cible du document, texte libre', 0, 0, '', 9, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
8434 INSERT INTO `marc_subfield_structure` VALUES ('995', 'x', '&Eacute;tablissement cible du document, donn&eacute;e cod&eacute;e', '&Eacute;tablissement cible du document, donn&eacute;e cod&eacute;e', 0, 0, '', 9, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
8435 INSERT INTO `marc_subfield_structure` VALUES ('995', 'y', 'Ensemble cible du document , texte libre', 'Ensemble cible du document, texte libre', 0, 0, '', 9, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
8436 INSERT INTO `marc_subfield_structure` VALUES ('995', 'z', 'Ensemble cible du document, donn&eacute;e cod&eacute;e', 'Ensemble cible du document, donn&eacute;e cod&eacute;e', 0, 0, '', 9, '', '', '', NULL, 5, 'ASMP_BOOKS', '', '');
8437 INSERT INTO `marc_subfield_structure` VALUES ('998', 'b', 'Operator\'s initials, OID (RLIN)', 'Operator\'s initials, OID (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
8438 INSERT INTO `marc_subfield_structure` VALUES ('998', 'c', 'Cataloger\'s initials, CIN (RLIN)', 'Cataloger\'s initials, CIN (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
8439 INSERT INTO `marc_subfield_structure` VALUES ('998', 'd', 'First date, FD (RLIN)', 'First Date, FD (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
8440 INSERT INTO `marc_subfield_structure` VALUES ('998', 'i', 'RINS (RLIN)', 'RINS (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8441 INSERT INTO `marc_subfield_structure` VALUES ('998', 'l', 'LI (RLIN)', 'LI (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8442 INSERT INTO `marc_subfield_structure` VALUES ('998', 'n', 'NUC (RLIN)', 'NUC (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8443 INSERT INTO `marc_subfield_structure` VALUES ('998', 'p', 'PROC (RLIN)', 'PROC (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8444 INSERT INTO `marc_subfield_structure` VALUES ('998', 's', 'CC (RLIN)', 'CC (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8445 INSERT INTO `marc_subfield_structure` VALUES ('998', 't', 'RTYP (RLIN)', 'RTYP (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8446 INSERT INTO `marc_subfield_structure` VALUES ('998', 'w', 'PLINK (RLIN)', 'PLINK (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8447 INSERT INTO `marc_subfield_structure` VALUES ('999', 'a', 'Classification number (OCLC) (R) ; Classification number, CALL (RLIN) (NR)', 'Classification number (OCLC) (R) ; Classification number, CALL (RLIN) (NR)', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
8448 INSERT INTO `marc_subfield_structure` VALUES ('999', 'b', 'Local cutter number (OCLC) ; Book number/undivided call number, CALL (RLIN)', 'Local cutter number (OCLC) ; Book number/undivided call number, CALL (RLIN)', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_BOOKS', '', '');
8449 INSERT INTO `marc_subfield_structure` VALUES ('999', 'e', 'Feature heading (OCLC)', 'Feature heading (OCLC)', 0, 0, '', 0, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8450 INSERT INTO `marc_subfield_structure` VALUES ('999', 'f', 'Filing suffix (OCLC); Footnote, FNT (RLIN)', 'Filing suffix (OCLC); Footnote, FNT (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8451 INSERT INTO `marc_subfield_structure` VALUES ('999', 'h', 'Output transaction history, HST (RLIN)', 'Output transaction history, HST (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8452 INSERT INTO `marc_subfield_structure` VALUES ('999', 'i', 'Output transaction instruction, INS (RLIN)', 'Output transaction instruction, INS (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8453 INSERT INTO `marc_subfield_structure` VALUES ('999', 'l', 'Extra card control statement, EXT (RLIN)', 'Extra card control statement, EXT (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8454 INSERT INTO `marc_subfield_structure` VALUES ('999', 'n', 'Additional local notes, ANT (RLIN)', 'Additional local notes, ANT (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8455 INSERT INTO `marc_subfield_structure` VALUES ('999', 'p', 'Pathfinder code, PTH (RLIN)', 'Pathfinder code, PTH (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8456 INSERT INTO `marc_subfield_structure` VALUES ('999', 't', 'Field suppresion, FSP (RLIN)', 'Field suppresion, FSP (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8457 INSERT INTO `marc_subfield_structure` VALUES ('999', 'v', 'Volumes, VOL (RLIN)', 'Volumes, VOL (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8458 INSERT INTO `marc_subfield_structure` VALUES ('999', 'y', 'Date, VOL (RLIN)', 'Date, VOL (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8459 INSERT INTO `marc_subfield_structure` VALUES ('999', 'z', 'Retention, VOL (RLIN)', 'Retention, VOL (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8460 INSERT INTO `marc_subfield_structure` VALUES ('u01', 'a', 'Operator\'s initials, OID (RLIN)', 'Operator\'s initials, OID (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8461 INSERT INTO `marc_subfield_structure` VALUES ('u01', 'd', 'UAD (RLIN)', 'UAD (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8462 INSERT INTO `marc_subfield_structure` VALUES ('u01', 'f', 'FPST (RLIN)', 'FPST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8463 INSERT INTO `marc_subfield_structure` VALUES ('u01', 'h', 'CPST (RLIN)', 'FPST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8464 INSERT INTO `marc_subfield_structure` VALUES ('u01', 'i', 'CPST (RLIN)', 'FPST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8465 INSERT INTO `marc_subfield_structure` VALUES ('u01', 's', 'UST (RLIN)', 'UST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8466 INSERT INTO `marc_subfield_structure` VALUES ('u01', 't', 'UTYP (RLIN)', 'UTYP (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8467 INSERT INTO `marc_subfield_structure` VALUES ('u02', '2', 'Source of number or code', 'Source of number or code', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8468 INSERT INTO `marc_subfield_structure` VALUES ('u02', 'a', 'Standard number or code', 'Standard number or code', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8469 INSERT INTO `marc_subfield_structure` VALUES ('u02', 'b', 'Additional codes following the standard number', 'Additional codes following the standard number', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8470 INSERT INTO `marc_subfield_structure` VALUES ('u02', 'c', 'Terms of availability', 'Terms of availability', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8471 INSERT INTO `marc_subfield_structure` VALUES ('u02', 'z', 'Canceled/invalid standard number or code', 'Canceled/invalid standard number or code', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8472 INSERT INTO `marc_subfield_structure` VALUES ('u08', 'n', 'LSI', 'LSI', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8473 INSERT INTO `marc_subfield_structure` VALUES ('u08', 'o', 'SID', 'SID', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8474 INSERT INTO `marc_subfield_structure` VALUES ('u08', 'p', 'DP', 'DP', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8475 INSERT INTO `marc_subfield_structure` VALUES ('u08', 'r', 'RUSH', 'RUSH', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8476 INSERT INTO `marc_subfield_structure` VALUES ('u10', 'a', 'REQ', 'REQ', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8477 INSERT INTO `marc_subfield_structure` VALUES ('u10', 'b', 'SID', 'REQ', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8478 INSERT INTO `marc_subfield_structure` VALUES ('u10', 'c', 'REQ', 'REQ', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8479 INSERT INTO `marc_subfield_structure` VALUES ('u10', 'd', 'REQ', 'REQ', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8480 INSERT INTO `marc_subfield_structure` VALUES ('u10', 'e', 'REQ', 'REQ', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8481 INSERT INTO `marc_subfield_structure` VALUES ('u10', 's', 'REQ', 'REQ', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8482 INSERT INTO `marc_subfield_structure` VALUES ('u11', 'a', 'Department report request, DRR (DRRH for earlier occurrences)', 'DRR (DRRH for earlier occurrences)', 1, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8483 INSERT INTO `marc_subfield_structure` VALUES ('u20', 'a', 'SUPN', 'SUPN', 1, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8484 INSERT INTO `marc_subfield_structure` VALUES ('u20', 'b', 'SUPN', 'SUPN', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8485 INSERT INTO `marc_subfield_structure` VALUES ('u20', 'c', 'SUPN', 'SUPN', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8486 INSERT INTO `marc_subfield_structure` VALUES ('u20', 'd', 'SUPN', 'SUPN', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8487 INSERT INTO `marc_subfield_structure` VALUES ('u20', 'e', 'SUPN', 'SUPN', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8488 INSERT INTO `marc_subfield_structure` VALUES ('u20', 'x', 'SUPN', 'SUPN', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8489 INSERT INTO `marc_subfield_structure` VALUES ('u21', 'a', 'SHIP', 'SHIP', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8490 INSERT INTO `marc_subfield_structure` VALUES ('u21', 'b', 'BILL', 'BILL', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8491 INSERT INTO `marc_subfield_structure` VALUES ('u21', 'c', 'DAC', 'DAC', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8492 INSERT INTO `marc_subfield_structure` VALUES ('u21', 'n', 'LSAC', 'LSAC', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8493 INSERT INTO `marc_subfield_structure` VALUES ('u22', 'a', 'SICO', 'SICO', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8494 INSERT INTO `marc_subfield_structure` VALUES ('u22', 'b', 'SICO', 'SICO', 1, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8495 INSERT INTO `marc_subfield_structure` VALUES ('u22', 'c', 'SCAT', 'SCAT', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8496 INSERT INTO `marc_subfield_structure` VALUES ('u25', 'a', 'Supplier report(s), SRPT', 'Supplier report(s), SRPT', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8497 INSERT INTO `marc_subfield_structure` VALUES ('u30', 'a', 'NCC [OBSOLETE]', 'NCC [OBSOLETE]', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8498 INSERT INTO `marc_subfield_structure` VALUES ('u30', 'i', 'ICI', 'ICI', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8499 INSERT INTO `marc_subfield_structure` VALUES ('u30', 'm', 'MCI', 'MCI', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8500 INSERT INTO `marc_subfield_structure` VALUES ('u31', 'a', 'NCC', 'NCC', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8501 INSERT INTO `marc_subfield_structure` VALUES ('u31', 'b', 'NCS', 'NCS', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8502 INSERT INTO `marc_subfield_structure` VALUES ('u33', 'a', 'ICL', 'ICL', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8503 INSERT INTO `marc_subfield_structure` VALUES ('u33', 'd', 'ICAD', 'ICAD', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8504 INSERT INTO `marc_subfield_structure` VALUES ('u34', 'a', 'EPCL', 'EPCL', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8505 INSERT INTO `marc_subfield_structure` VALUES ('u34', 'r', 'ERI', 'ERI', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8506 INSERT INTO `marc_subfield_structure` VALUES ('u40', 'd', 'EPDT [OBSOLETE]', 'EPDT [OBSOLETE]', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8507 INSERT INTO `marc_subfield_structure` VALUES ('u40', 'f', 'EFRQ', 'EFRQ', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8508 INSERT INTO `marc_subfield_structure` VALUES ('u40', 's', 'EPST', 'EPST', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8509 INSERT INTO `marc_subfield_structure` VALUES ('u40', 't', 'ETYP', 'ETYP', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8510 INSERT INTO `marc_subfield_structure` VALUES ('u50', 'a', 'Acquisitions notes, AQNT', 'Acquisitions notes, AQNT', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8511 INSERT INTO `marc_subfield_structure` VALUES ('u51', 'a', 'Selection notes, SLNT', 'Selection notes, SLNT', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8512 INSERT INTO `marc_subfield_structure` VALUES ('u52', 'a', 'INT', 'INT', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8513 INSERT INTO `marc_subfield_structure` VALUES ('u52', 'b', 'INT', 'NT', 1, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8514 INSERT INTO `marc_subfield_structure` VALUES ('u53', 'a', 'CLNT', 'CLNT', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8515 INSERT INTO `marc_subfield_structure` VALUES ('u53', 'b', 'CLNT', 'CLNT', 1, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8516 INSERT INTO `marc_subfield_structure` VALUES ('u54', 'a', 'Notes to serials department, SRNT', 'Notes to serials department, SRNT', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8517 INSERT INTO `marc_subfield_structure` VALUES ('u55', 'a', 'Cataloging notes, CTNT', 'Cataloging notes, CTNT', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8518 INSERT INTO `marc_subfield_structure` VALUES ('u5f', 'a', 'Accounting notes, ACNT', 'Accounting notes, ACNT', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8519 INSERT INTO `marc_subfield_structure` VALUES ('u70', 'a', 'QTY', 'QTY', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8520 INSERT INTO `marc_subfield_structure` VALUES ('u70', 'b', 'MAT', 'MAT', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8521 INSERT INTO `marc_subfield_structure` VALUES ('u70', 'l', 'MLOC', 'MLOC', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8522 INSERT INTO `marc_subfield_structure` VALUES ('u71', 'a', 'Fund account, FUND', 'Fund account, FUND', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8523 INSERT INTO `marc_subfield_structure` VALUES ('u75', 'a', 'ITEM', 'ITEM', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8524 INSERT INTO `marc_subfield_structure` VALUES ('u75', 'c', 'CIRC', 'CIRC', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8525 INSERT INTO `marc_subfield_structure` VALUES ('u75', 'h', 'IPST', 'IPST', 1, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8526 INSERT INTO `marc_subfield_structure` VALUES ('u75', 'i', 'ITEM', 'ITEM', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8527 INSERT INTO `marc_subfield_structure` VALUES ('u75', 'l', 'SLOC', 'SLOC', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8528 INSERT INTO `marc_subfield_structure` VALUES ('u7f', 'a', 'LPRI', 'LPRI', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8529 INSERT INTO `marc_subfield_structure` VALUES ('u7f', 'b', 'CURR', 'CURR', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8530 INSERT INTO `marc_subfield_structure` VALUES ('u7f', 'k', 'CVRT [OBSOLETE]', 'CVRT [OBSOLETE]', 1, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8531 INSERT INTO `marc_subfield_structure` VALUES ('u7f', 'p', 'LPD', 'LPD', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8532 INSERT INTO `marc_subfield_structure` VALUES ('u7f', 'r', 'EDRT', 'EDRT', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8533 INSERT INTO `marc_subfield_structure` VALUES ('u90', 'h', 'TAPE', 'TAPE', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8534 INSERT INTO `marc_subfield_structure` VALUES ('u90', 'i', 'TAPE', 'TAPE', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8535 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'a', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8536 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'b', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8537 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'c', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8538 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'd', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8539 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'e', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8540 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'f', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8541 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'g', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8542 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'h', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8543 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'n', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_BOOKS', '', '');
8544
8545
8546 -- *******************************************************
8547
8548
8549
8550 -- ****************************************************************************
8551 -- ASMP SOUND RECORDINGS KOHA RECORD AND HOLDINGS MANAGEMENT FIELDS/SUBFIELDS. 
8552 -- ****************************************************************************
8553
8554 -- These ought to be adjusted for different less conflicting and more 
8555 -- rationally chosen fields and subfields but I had left that for last. 
8556
8557 -- ADJUST ME
8558 -- Use values from your dump of marc_tag_structure and marc_subfield_structure 
8559 -- to provide support for your Koha database.
8560
8561
8562 -- ******************************************************
8563
8564
8565 -- Current Record ID Field/Subfields 
8566
8567
8568 INSERT INTO `marc_tag_structure` VALUES ('090', 'SYSTEM CONTROL NUMBERS (KOHA)', 'SYSTEM CONTROL NUMBERS (KOHA)', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
8569
8570 INSERT INTO `marc_subfield_structure` VALUES ('090', 'a', 'Item type [OBSOLETE]', 'Item type [OBSOLETE]', 0, 0, NULL, -1, NULL, NULL, '', NULL, -5, 'ASMP_SOUND_RECORDINGS', '', '');
8571 INSERT INTO `marc_subfield_structure` VALUES ('090', 'b', 'Koha Dewey Subclass [OBSOLETE]', 'Koha Dewey Subclass [OBSOLETE]', 0, 0, NULL, 0, NULL, NULL, '', NULL, -5, 'ASMP_SOUND_RECORDINGS', '', '');
8572 INSERT INTO `marc_subfield_structure` VALUES ('090', 'c', 'Koha biblionumber', 'Koha biblionumber', 0, 0, 'biblio.biblionumber', -1, NULL, NULL, '', NULL, -5, 'ASMP_SOUND_RECORDINGS', '', '');
8573 INSERT INTO `marc_subfield_structure` VALUES ('090', 'd', 'Koha biblioitemnumber', 'Koha biblioitemnumber', 0, 0, 'biblioitems.biblioitemnumber', -1, NULL, NULL, '', NULL, -5, 'ASMP_SOUND_RECORDINGS', '', '');
8574
8575
8576 -- ******************************************************
8577
8578
8579 -- Current primary biblioitems Field/Subfields 
8580
8581
8582 INSERT INTO `marc_tag_structure` VALUES ('942', 'ADDED ENTRY ELEMENTS (KOHA)', 'ADDED ENTRY ELEMENTS (KOHA)', 0, 0, '', 'ASMP_SOUND_RECORDINGS');
8583
8584 INSERT INTO `marc_subfield_structure` VALUES ('942', 'a', 'Institution code [OBSOLETE]', 'Institution code [OBSOLETE]', 0, 0, '', 9, '', '', '', NULL, -5, 'ASMP_SOUND_RECORDINGS', '', '');
8585 INSERT INTO `marc_subfield_structure` VALUES ('942', 'c', 'Item type', 'Item type', 0, 1, 'biblioitems.itemtype', 9, 'itemtypes', '', '', NULL, 0, 'ASMP_SOUND_RECORDINGS', '', '');
8586 INSERT INTO `marc_subfield_structure` VALUES ('942', 'j', 'Location (call number prefix code)', 'Location (call number prefix code)', 0, 0, 'biblioitems.classification', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
8587 INSERT INTO `marc_subfield_structure` VALUES ('942', 'k', 'Classification base (DDC to decimal or LCC letter class padded after single letter classes with trailing 0', 'Classification base', 0, 0, 'biblioitems.dewey', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
8588 INSERT INTO `marc_subfield_structure` VALUES ('942', 'l', 'Classification subclass (DDC after decimal or LCC number after letters', 'Classification subclass', 0, 0, 'biblioitems.subclass', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
8589
8590
8591 -- ******************************************************
8592
8593
8594 -- Recommended items Field/Subfields 
8595
8596
8597 -- INSERT INTO `marc_tag_structure` VALUES ('95k', 'LOCATION AND ITEM INFORMATION (KOHA)', 'LOCATION AND ITEM INFORMATION (KOHA)', 1, 0, '', '');
8598
8599 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '0', 'Item status (withdrawn) (similar to 876-8 $j)', 'Item status (withdrawn)', 0, 0, 'items.withdrawn', 10, '', '', '', 0, 0, 'ASMP_SOUND_RECORDINGS', '', '');
8600 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '1', 'Item status (lost) (similar to 876-8 $j)', 'Item status (lost)', 0, 0, 'items.itemlost', 10, '', '', '', 0, 0, 'ASMP_SOUND_RECORDINGS', '', '');
8601 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '2', 'Source of classification or shelving scheme (similar to 852 $2)', 'Source of classification or shelving scheme', 0, 0, '', 10, '', '', '', NULL, 0, 'ASMP_SOUND_RECORDINGS', '', '');
8602 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '3', 'Materials specified (similar to 852, 876-8 $3)', 'Materials specified', 0, 0, '', 10, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
8603 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '4', 'Use restrictions (similar to 506 $a, 876-8 $h)', 'Use restrictions', 0, 0, 'items.restricted', 10, '', '', '', 0, 0, 'ASMP_SOUND_RECORDINGS', '', '');
8604 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '6', 'Linkage (similar to 852, 876-8 $6)', 'Linkage', 0, 0, '', 10, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
8605 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '8', 'Sequence number (similar to 852, 876-8 $8)', 'Sequence number', 1, 0, '', 10, '', '', '', NULL, 0, 'ASMP_SOUND_RECORDINGS', '', '');
8606 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '9', 'Koha itemnumber (autogenerated similar to 852, 876-8 $3 $8 $t combined)', 'Koha itemnumber', 0, 0, 'items.itemnumber', -1, '', '', '', 0, 0, 'ASMP_SOUND_RECORDINGS', '', '');
8607 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'a', 'Location (homebranch) (similar to 852 $a)', 'Location (homebranch)', 0, 0, 'items.homebranch', 10, 'branches', '', '', 0, 0, '', '', '');
8608 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'b', 'Sublocation or collection (holdingbranch) (similar to 852 $b)', 'Sublocation or collection (holdingbranch)', 1, 0, 'items.holdingbranch', 10, 'branches', '', '', 0, 0, 'ASMP_SOUND_RECORDINGS', '', '');
8609 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'c', 'Shelving location (similar to 852 $c, 876-8 $l)', 'Shelving location', 1, 0, 'items.location', 10, '', '', '', 0, 0, 'ASMP_SOUND_RECORDINGS', '', '');
8610 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'd', 'Date acquired (similar to 541, 876-8 $d)', 'Date acquired', 0, 0, 'items.dateaccessioned', 10, '', '', '', 0, 0, 'ASMP_SOUND_RECORDINGS', '', '');
8611 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'e', 'Source of acquisition (similar to 541 $a, 876-8 $e)', 'Source of acquisition', 1, 0, 'items.booksellerid', 10, '', '', '', 0, 0, 'ASMP_SOUND_RECORDINGS', '', '');
8612 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'f', 'Coded location qualifier (similar to 852 $f)', 'Coded location qualifier', 1, 0, '', 10, '', '', '', NULL, 0, 'ASMP_SOUND_RECORDINGS', '', '');
8613 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'g', 'Non-coded location qualifier (similar to 852 $g)', 'Non-coded location qualifier', 1, 0, '', 10, '', '', '', NULL, 0, 'ASMP_SOUND_RECORDINGS', '', '');
8614 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'h', 'Classification part (similar to 852 $h)', 'Classification part', 0, 0, '', 10, '', '', '', NULL, 0, 'ASMP_SOUND_RECORDINGS', '', '');
8615 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'i', 'Item part (similar to 852 $i)', 'Item part', 1, 0, '', 10, '', '', '', NULL, 0, 'ASMP_SOUND_RECORDINGS', '', '');
8616 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'j', 'Shelving control number (similar to 852 $j)', 'Shelving control number', 0, 0, '', 10, '', '', '', NULL, 0, 'ASMP_SOUND_RECORDINGS', '', '');
8617 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'k', 'Call number prefix (similar to 852 $k)', 'Call number prefix', 0, 0, '', 10, '', '', '', NULL, 0, 'ASMP_SOUND_RECORDINGS', '', '');
8618 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'l', 'Shelving form of title (similar to 852 $l)', 'Shelving form of title', 0, 0, '', 10, '', '', '', NULL, 0, 'ASMP_SOUND_RECORDINGS', '', '');
8619 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'm', 'Call number suffix (similar to 852 $m)', 'Call number suffix', 0, 0, '', 10, '', '', '', NULL, 0, 'ASMP_SOUND_RECORDINGS', '', '');
8620 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'n', 'Country code (similar to 852 $n)', 'Country code', 0, 0, '', 10, '', '', '', NULL, 0, 'ASMP_SOUND_RECORDINGS', '', '');
8621 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'o', 'Call number (similar to 852 $k $h $i $m combined)', 'Call number', 0, 0, 'items.itemcallnumber', 10, '', '', NULL, 0, 0, 'ASMP_SOUND_RECORDINGS', '', '');
8622 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'p', 'Piece designation (barcode) (similar to 852, 876-8 $p)', 'Piece designation (barcode)', 0, 1, 'items.barcode', 10, '', '', '', 0, 0, 'ASMP_SOUND_RECORDINGS', '', '');
8623 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'q', 'Piece physical condition (similar to 562 $a, 852 $q)', 'Piece physical condition', 0, 0, '', 10, '', '', '', NULL, 0, 'ASMP_SOUND_RECORDINGS', '', '');
8624 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'r', 'Invalid or canceled piece designation (canceled barcode) (similar to 876-8 $r)', 'Invalid or canceled piece designation (canceled barcode)', 1, 0, '', 10, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
8625 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 's', 'Copyright article-fee code (similar to 018 $a, 852 $s)', 'Copyright article-fee code', 1, 0, '', 10, '', '', '', NULL, 0, 'ASMP_SOUND_RECORDINGS', '', '');
8626 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 't', 'Copy number (similar to 852, 876-8 $t)', 'Copy number', 0, 0, '', 10, '', '', '', NULL, 0, 'ASMP_SOUND_RECORDINGS', '', '');
8627 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'u', 'Cost, normal purchase price (similar to 541 $h, 876-8 $c)', 'Cost, normal purchase price', 0, 0, 'items.price', 10, '', '', '', 0, 0, 'ASMP_SOUND_RECORDINGS', '', '');
8628 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'v', 'Cost, replacement price (similar to 365 $b, 876-8 $c)', 'Cost, replacement price', 0, 0, 'items.replacementprice', 10, '', '', '', 0, 0, 'ASMP_SOUND_RECORDINGS', '', '');
8629 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'w', 'Price effective from (similar to 365 $f)', 'Price effective from', 0, 0, 'items.replacementpricedate', 10, '', '', '', 0, 0, 'ASMP_SOUND_RECORDINGS', '', '');
8630 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'x', 'Nonpublic note (similar to 852, 876-8 $x)', 'Nonpublic note', 1, 0, '', 10, '', '', '', NULL, 6, 'ASMP_SOUND_RECORDINGS', '', '');
8631 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'y', 'Use restrictions (not for loan) (similar to 506 $a, 876-8 $h)', 'Use restrictions (not for loan)', 0, 0, 'items.notforloan', 10, '', '', '', 0, 0, 'ASMP_SOUND_RECORDINGS', '', '');
8632 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'z', 'Public note (similar to 852, 876-8 $z)', 'Public note', 0, 0, 'items.itemnotes', 10, '', '', '', 1, 0, 'ASMP_SOUND_RECORDINGS', '', '');
8633
8634
8635
8636 -- Current items Field/Subfields 
8637
8638
8639 INSERT INTO `marc_tag_structure` VALUES ('952', 'LOCATION AND ITEM INFORMATION (KOHA)', 'LOCATION AND ITEM INFORMATION (KOHA)', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
8640
8641 INSERT INTO `marc_subfield_structure` VALUES ('952', '0', 'Item status (withdrawn)', 'Item status (withdrawn)', 0, 0, 'items.withdrawn', 10, '', '', '', 0, 0, 'ASMP_SOUND_RECORDINGS', '', '');
8642 INSERT INTO `marc_subfield_structure` VALUES ('952', '1', 'Item status (lost)', 'Item status (lost)', 0, 0, 'items.itemlost', 10, '', '', '', 0, 0, 'ASMP_SOUND_RECORDINGS', '', '');
8643 INSERT INTO `marc_subfield_structure` VALUES ('952', '2', 'Source of classification or shelving scheme', 'Source of classification or shelving scheme', 0, 0, '', 10, '', '', '', NULL, 0, 'ASMP_SOUND_RECORDINGS', '', '');
8644 INSERT INTO `marc_subfield_structure` VALUES ('952', '3', 'Materials specified', 'Materials specified', 0, 0, '', 10, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
8645 INSERT INTO `marc_subfield_structure` VALUES ('952', '4', 'Use restrictions', 'Use restrictions', 0, 0, 'items.restricted', 10, '', '', '', 0, 0, 'ASMP_SOUND_RECORDINGS', '', '');
8646 INSERT INTO `marc_subfield_structure` VALUES ('952', '6', 'Linkage', 'Linkage', 0, 0, '', 10, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
8647 INSERT INTO `marc_subfield_structure` VALUES ('952', '8', 'Sequence number', 'Sequence number', 1, 0, '', 10, '', '', '', NULL, 0, 'ASMP_SOUND_RECORDINGS', '', '');
8648 INSERT INTO `marc_subfield_structure` VALUES ('952', '9', 'Cost, normal purchase price', 'Cost, normal purchase price', 0, 0, 'items.price', 10, '', '', '', 0, 0, 'ASMP_SOUND_RECORDINGS', '', '');
8649 INSERT INTO `marc_subfield_structure` VALUES ('952', 'a', 'Invalid or canceled piece designation (canceled barcode)', 'Invalid or canceled piece designation (canceled barcode)', 1, 0, '', 10, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
8650 INSERT INTO `marc_subfield_structure` VALUES ('952', 'b', 'Location (homebranch) (similar to 852 $a)', 'Location (homebranch)', 0, 0, 'items.homebranch', 10, 'branches', '', '', 0, 0, 'ASMP_SOUND_RECORDINGS', '', '');
8651 INSERT INTO `marc_subfield_structure` VALUES ('952', 'c', 'Shelving location (similar to 852 $c, 876-8 $l)', 'Shelving location', 1, 0, 'items.location', 10, '', '', '', 0, 0, 'ASMP_SOUND_RECORDINGS', '', '');
8652 INSERT INTO `marc_subfield_structure` VALUES ('952', 'd', 'Sublocation or collection (holdingbranch)', 'Sublocation or collection (holdingbranch)', 0, 0, 'items.holdingbranch', 10, 'branches', '', '', 0, 0, 'ASMP_SOUND_RECORDINGS', '''952b''', '');
8653 INSERT INTO `marc_subfield_structure` VALUES ('952', 'e', 'Source of acquisition', 'Source of acquisition', 1, 0, 'items.booksellerid', 10, '', '', '', 0, 0, 'ASMP_SOUND_RECORDINGS', '', '');
8654 INSERT INTO `marc_subfield_structure` VALUES ('952', 'f', 'Coded location qualifier', 'Coded location qualifier', 1, 0, '', 10, '', '', '', NULL, 0, 'ASMP_SOUND_RECORDINGS', '', '');
8655 INSERT INTO `marc_subfield_structure` VALUES ('952', 'g', 'Non-coded location qualifier', 'Non-coded location qualifier', 1, 0, '', 10, '', '', '', NULL, 0, 'ASMP_SOUND_RECORDINGS', '', '');
8656 INSERT INTO `marc_subfield_structure` VALUES ('952', 'h', 'Classification part', 'Classification part', 0, 0, '', 10, '', '', '', NULL, 0, 'ASMP_SOUND_RECORDINGS', '', '');
8657 INSERT INTO `marc_subfield_structure` VALUES ('952', 'i', 'Item part', 'Item part', 1, 0, '', 10, '', '', '', NULL, 0, 'ASMP_SOUND_RECORDINGS', '', '');
8658 INSERT INTO `marc_subfield_structure` VALUES ('952', 'j', 'Shelving control number', 'Shelving control number', 0, 0, '', 10, '', '', '', NULL, 0, 'ASMP_SOUND_RECORDINGS', '', '');
8659 INSERT INTO `marc_subfield_structure` VALUES ('952', 'k', 'Call number (combined)', 'Call number', 0, 0, 'items.itemcallnumber', 10, '', '', NULL, 0, 0, 'ASMP_SOUND_RECORDINGS', '', '');
8660 INSERT INTO `marc_subfield_structure` VALUES ('952', 'l', 'Shelving form of title', 'Shelving form of title', 0, 0, '', 10, '', '', '', NULL, 0, 'ASMP_SOUND_RECORDINGS', '', '');
8661 INSERT INTO `marc_subfield_structure` VALUES ('952', 'm', 'Call number suffix', 'Call number suffix', 0, 0, '', 10, '', '', '', NULL, 0, 'ASMP_SOUND_RECORDINGS', '', '');
8662 INSERT INTO `marc_subfield_structure` VALUES ('952', 'n', 'Country code', 'Country code', 0, 0, '', 10, '', '', '', NULL, 0, 'ASMP_SOUND_RECORDINGS', '', '');
8663 INSERT INTO `marc_subfield_structure` VALUES ('952', 'o', 'Call number prefix', 'Call number prefix', 0, 0, '', 10, '', '', '', NULL, 0, 'ASMP_SOUND_RECORDINGS', '', '');
8664 INSERT INTO `marc_subfield_structure` VALUES ('952', 'p', 'Piece designation (barcode)', 'Piece designation (barcode)', 0, 1, 'items.barcode', 10, '', '', '', 0, 0, 'ASMP_SOUND_RECORDINGS', '', '');
8665 INSERT INTO `marc_subfield_structure` VALUES ('952', 'q', 'Piece physical condition', 'Piece physical condition', 0, 0, '', 10, '', '', '', NULL, 0, 'ASMP_SOUND_RECORDINGS', '', '');
8666 INSERT INTO `marc_subfield_structure` VALUES ('952', 'r', 'Cost, replacement price', 'Cost, replacement price', 0, 0, 'items.replacementprice', 10, '', '', '', 0, 0, 'ASMP_SOUND_RECORDINGS', '', '');
8667 INSERT INTO `marc_subfield_structure` VALUES ('952', 's', 'Copyright article-fee code', 'Copyright article-fee code', 1, 0, '', 10, '', '', '', NULL, 0, 'ASMP_SOUND_RECORDINGS', '', '');
8668 INSERT INTO `marc_subfield_structure` VALUES ('952', 't', 'Copy number', 'Copy number', 0, 0, '', 10, '', '', '', NULL, 0, 'ASMP_SOUND_RECORDINGS', '', '');
8669 INSERT INTO `marc_subfield_structure` VALUES ('952', 'u', 'Koha itemnumber (autogenerated)', 'Koha itemnumber', 0, 0, 'items.itemnumber', -1, '', '', '', 0, 0, 'ASMP_SOUND_RECORDINGS', '', '');
8670 INSERT INTO `marc_subfield_structure` VALUES ('952', 'v', 'Date acquired', 'Date acquired', 0, 0, 'items.dateaccessioned', 10, '', '', '', 0, 0, 'ASMP_SOUND_RECORDINGS', '', '');
8671 INSERT INTO `marc_subfield_structure` VALUES ('952', 'w', 'Price effective from', 'Price effective from', 0, 0, 'items.replacementpricedate', 10, '', '', '', 0, 0, 'ASMP_SOUND_RECORDINGS', '', '');
8672 INSERT INTO `marc_subfield_structure` VALUES ('952', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 10, '', '', '', NULL, 6, 'ASMP_SOUND_RECORDINGS', '', '');
8673 INSERT INTO `marc_subfield_structure` VALUES ('952', 'y', 'Use restrictions (not for loan)', 'Use restrictions (not for loan)', 0, 0, 'items.notforloan', 10, '', '', '', 0, 0, 'ASMP_SOUND_RECORDINGS', '', '');
8674 INSERT INTO `marc_subfield_structure` VALUES ('952', 'z', 'Public note', 'Public note', 0, 0, 'items.itemnotes', 10, '', '', '', 1, 0, 'ASMP_SOUND_RECORDINGS', '', '');
8675
8676
8677 -- *******************************************************
8678
8679
8680
8681 -- ******************************************************************
8682 -- ASMP SOUND RECORDINGS MARC 21 FIELDS/SUBFIELDS AND COMMMONLY USED EXTENSIONS 
8683 -- ******************************************************************
8684
8685
8686 -- A Few local use codes need specifying.  Several seealso, plugin, and 
8687 -- authority framework columns need improving.  $9 for authority record linking 
8688 -- needs to be added where not already provided by RLIN specifications. 
8689 -- Needs checking for errors but probably tolerable for use on a production. 
8690 -- A server can be upgraded easily from later versions of this file.
8691 --                                                                          
8692 -- In the absense of more column support for qualifying the relative 
8693 -- importance of subfields to the record editor, some modest modification of 
8694 -- the default framework is needed setting the not-useful non-Koha holdings 
8695 -- subfields to not managed in Koha.
8696
8697 -- MARC fields including letters as part of the field identifier are from RLIN
8698 -- and should be expected to remain along with RLIN $% subfields.  RLIN has 
8699 -- been using letters in fields because there are not enough local use number 
8700 -- fields which have not already been specified for very large union catalogue 
8701 -- networks such as RLIN itself.
8702
8703
8704 -- Fields ending in c, o, or r are temporary placeholders for information from
8705 -- a numeric value until a non-conflicting way to treat the content under the
8706 -- proper original numeric field is adopted.  090 for LC call numbers is much 
8707 -- too common and important so 999 is also provided as a temporary place 
8708 -- holder until all Koha code for finding control fields has been changed from 
8709 -- a numeric test of < 10 to a regular expression match of m/^00/ to prevent 
8710 -- mistaken matching of fields with letters such as 09o if they were control 
8711 -- fields.
8712
8713 INSERT INTO `marc_tag_structure` VALUES ('000', 'LEADER', 'LEADER', 0, 1, '', 'ASMP_SOUND_RECORDINGS');
8714 INSERT INTO `marc_tag_structure` VALUES ('001', 'CONTROL NUMBER', 'CONTROL NUMBER', 0, 0, '', 'ASMP_SOUND_RECORDINGS');
8715 INSERT INTO `marc_tag_structure` VALUES ('003', 'CONTROL NUMBER IDENTIFIER', 'CONTROL NUMBER IDENTIFIER', 0, 0, '', 'ASMP_SOUND_RECORDINGS');
8716 INSERT INTO `marc_tag_structure` VALUES ('005', 'DATE AND TIME OF LATEST TRANSACTION', 'DATE AND TIME OF LATEST TRANSACTION', 0, 0, '', 'ASMP_SOUND_RECORDINGS');
8717 INSERT INTO `marc_tag_structure` VALUES ('006', 'FIXED-LENGTH DATA ELEMENTS--ADDITIONAL MATERIAL CHARACTERISTICS--GENERAL INFORMATION', 'FIXED-LENGTH DATA ELEMENTS--ADDITIONAL MATERIAL CHARACTERISTICS--GENERAL INFORMATION', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
8718 INSERT INTO `marc_tag_structure` VALUES ('007', 'PHYSICAL DESCRIPTION FIXED FIELD--GENERAL INFORMATION', 'PHYSICAL DESCRIPTION FIXED FIELD--GENERAL INFORMATION', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
8719 INSERT INTO `marc_tag_structure` VALUES ('008', 'FIXED-LENGTH DATA ELEMENTS--GENERAL INFORMATION', 'FIXED-LENGTH DATA ELEMENTS--GENERAL INFORMATION', 0, 1, '', 'ASMP_SOUND_RECORDINGS');
8720 INSERT INTO `marc_tag_structure` VALUES ('009', 'PHYSICAL DESCRIPTION FIXED-FIELD FOR ARCHIVAL COLLECTION (VM) [OBSOLETE]', 'PHYSICAL DESCRIPTION FIXED-FIELD FOR ARCHIVAL COLLECTION (VM) [OBSOLETE]', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
8721 INSERT INTO `marc_tag_structure` VALUES ('010', 'LIBRARY OF CONGRESS CONTROL NUMBER', 'LIBRARY OF CONGRESS CONTROL NUMBER', 0, 0, '', 'ASMP_SOUND_RECORDINGS');
8722 INSERT INTO `marc_tag_structure` VALUES ('011', 'LINKING LIBRARY OF CONGRESS CONTROL NUMBER [OBSOLETE]', 'LINKING LIBRARY OF CONGRESS CONTROL NUMBER [OBSOLETE]', 0, 0, '', 'ASMP_SOUND_RECORDINGS');
8723 INSERT INTO `marc_tag_structure` VALUES ('013', 'PATENT CONTROL INFORMATION', 'PATENT CONTROL INFORMATION', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
8724 INSERT INTO `marc_tag_structure` VALUES ('015', 'NATIONAL BIBLIOGRAPHY NUMBER', 'NATIONAL BIBLIOGRAPHY NUMBER', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
8725 INSERT INTO `marc_tag_structure` VALUES ('016', 'NATIONAL BIBLIOGRAPHIC AGENCY CONTROL NUMBER', 'NATIONAL BIBLIOGRAPHIC AGENCY CONTROL NUMBER', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
8726 INSERT INTO `marc_tag_structure` VALUES ('017', 'COPYRIGHT OR LEGAL DEPOSIT NUMBER', 'COPYRIGHT OR LEGAL DEPOSIT NUMBER', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
8727 INSERT INTO `marc_tag_structure` VALUES ('018', 'COPYRIGHT ARTICLE-FEE CODE', 'COPYRIGHT ARTICLE-FEE CODE', 0, 0, '', 'ASMP_SOUND_RECORDINGS');
8728 INSERT INTO `marc_tag_structure` VALUES ('01e', 'CODED FIELD ERROR (RLIN)', 'CODED FIELD ERROR (RLIN)', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
8729 INSERT INTO `marc_tag_structure` VALUES ('020', 'ISBN', 'INTERNATIONAL STANDARD BOOK NUMBER', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8730 INSERT INTO `marc_tag_structure` VALUES ('022', 'INTERNATIONAL STANDARD SERIAL NUMBER', 'INTERNATIONAL STANDARD SERIAL NUMBER', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8731 INSERT INTO `marc_tag_structure` VALUES ('023', 'STANDARD FILM NUMBER (VM) [DELETED]', 'STANDARD FILM NUMBER (VM) [DELETED]', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8732 INSERT INTO `marc_tag_structure` VALUES ('024', 'OTHER STANDARD IDENTIFIER', 'OTHER STANDARD IDENTIFIER', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8733 INSERT INTO `marc_tag_structure` VALUES ('025', 'OVERSEAS ACQUISITION NUMBER', 'OVERSEAS ACQUISITION NUMBER', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
8734 INSERT INTO `marc_tag_structure` VALUES ('026', 'FINGERPRINT IDENTIFIER', 'FINGERPRINT IDENTIFIER', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
8735 INSERT INTO `marc_tag_structure` VALUES ('027', 'STANDARD TECHNICAL REPORT NUMBER', 'STANDARD TECHNICAL REPORT NUMBER', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
8736 INSERT INTO `marc_tag_structure` VALUES ('028', 'IDENTIFICATION NUMBER--PUBLISHER NUMBER', 'PUBLISHER NUMBER', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8737 INSERT INTO `marc_tag_structure` VALUES ('029', 'OTHER SYSTEM CONTROL NUMBER (OCLC)', ' (OCLC)', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
8738 INSERT INTO `marc_tag_structure` VALUES ('030', 'CODEN DESIGNATION', 'CODEN DESIGNATION', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
8739 INSERT INTO `marc_tag_structure` VALUES ('031', 'MUSICAL INCIPITS INFORMATION', 'MUSICAL INCIPITS INFORMATION', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
8740 INSERT INTO `marc_tag_structure` VALUES ('032', 'POSTAL REGISTRATION NUMBER', 'POSTAL REGISTRATION NUMBER', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
8741 INSERT INTO `marc_tag_structure` VALUES ('033', 'DATE/TIME AND PLACE OF AN EVENT', 'DATE/TIME AND PLACE OF AN EVENT', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
8742 INSERT INTO `marc_tag_structure` VALUES ('034', 'CODED CARTOGRAPHIC MATHEMATICAL DATA', 'CODED CARTOGRAPHIC MATHEMATICAL DATA', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
8743 INSERT INTO `marc_tag_structure` VALUES ('035', 'SYSTEM CONTROL NUMBER', 'SYSTEM CONTROL NUMBER', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8744 INSERT INTO `marc_tag_structure` VALUES ('036', 'ORIGINAL STUDY NUMBER FOR COMPUTER DATA FILES', 'ORIGINAL STUDY NUMBER FOR COMPUTER DATA FILES', 0, 0, '', 'ASMP_SOUND_RECORDINGS');
8745 INSERT INTO `marc_tag_structure` VALUES ('037', 'PUBLICATION, DISTRIBUTION DETAILS--SOURCE OF ACQUISITION', 'SOURCE OF ACQUISITION', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8746 INSERT INTO `marc_tag_structure` VALUES ('038', 'RECORD CONTENT LICENSOR', 'RECORD CONTENT LICENSOR', 0, 0, '', 'ASMP_SOUND_RECORDINGS');
8747 INSERT INTO `marc_tag_structure` VALUES ('039', 'LEVEL OF BIBLIOGRAPHIC CONTROL AND CODING DETAIL [OBSOLETE]', 'LEVEL OF BIBLIOGRAPHIC CONTROL AND CODING DETAIL [OBSOLETE]', 0, 0, '', 'ASMP_SOUND_RECORDINGS');
8748 INSERT INTO `marc_tag_structure` VALUES ('040', 'CATALOGING SOURCE', 'CATALOGING SOURCE', 0, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8749 INSERT INTO `marc_tag_structure` VALUES ('041', 'LANGUAGE CODE', 'LANGUAGE CODE', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
8750 INSERT INTO `marc_tag_structure` VALUES ('042', 'AUTHENTICATION CODE', 'AUTHENTICATION CODE', 0, 0, '', 'ASMP_SOUND_RECORDINGS');
8751 INSERT INTO `marc_tag_structure` VALUES ('043', 'GEOGRAPHIC AREA CODE', 'GEOGRAPHIC AREA CODE', 0, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8752 INSERT INTO `marc_tag_structure` VALUES ('044', 'COUNTRY OF PUBLISHING/PRODUCING ENTITY CODE', 'COUNTRY OF PUBLISHING/PRODUCING ENTITY CODE', 0, 0, '', 'ASMP_SOUND_RECORDINGS');
8753 INSERT INTO `marc_tag_structure` VALUES ('045', 'TIME PERIOD OF CONTENT', 'TIME PERIOD OF CONTENT', 0, 0, '', 'ASMP_SOUND_RECORDINGS');
8754 INSERT INTO `marc_tag_structure` VALUES ('046', 'SPECIAL CODED DATES', 'SPECIAL CODED DATES', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
8755 INSERT INTO `marc_tag_structure` VALUES ('047', 'FORM OF MUSICAL COMPOSITION CODE', 'FORM OF MUSICAL COMPOSITION CODE', 0, 0, '', 'ASMP_SOUND_RECORDINGS');
8756 INSERT INTO `marc_tag_structure` VALUES ('048', 'NUMBER OF MUSICAL INSTRUMENTS OR VOICES CODE', 'NUMBER OF MUSICAL INSTRUMENTS OR VOICES CODE', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
8757 INSERT INTO `marc_tag_structure` VALUES ('049', 'LOCAL HOLDINGS (OCLC)', 'LOCAL HOLDINGS (OCLC)', 0, 0, '', 'ASMP_SOUND_RECORDINGS');
8758 INSERT INTO `marc_tag_structure` VALUES ('050', 'LIBRARY OF CONGRESS CALL NUMBER', 'LIBRARY OF CONGRESS CALL NUMBER', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8759 INSERT INTO `marc_tag_structure` VALUES ('051', 'LIBRARY OF CONGRESS COPY, ISSUE, OFFPRINT STATEMENT', 'LIBRARY OF CONGRESS COPY, ISSUE, OFFPRINT STATEMENT', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8760 INSERT INTO `marc_tag_structure` VALUES ('052', 'GEOGRAPHIC CLASSIFICATION', 'GEOGRAPHIC CLASSIFICATION', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8761 INSERT INTO `marc_tag_structure` VALUES ('055', 'CLASSIFICATION NUMBERS ASSIGNED IN CANADA', 'CLASSIFICATION NUMBERS ASSIGNED IN CANADA', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8762 INSERT INTO `marc_tag_structure` VALUES ('060', 'NATIONAL LIBRARY OF MEDICINE CALL NUMBER', 'NATIONAL LIBRARY OF MEDICINE CALL NUMBER', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8763 INSERT INTO `marc_tag_structure` VALUES ('061', 'NATIONAL LIBRARY OF MEDICINE COPY STATEMENT', 'NATIONAL LIBRARY OF MEDICINE COPY STATEMENT', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8764 INSERT INTO `marc_tag_structure` VALUES ('066', 'CHARACTER SETS PRESENT', 'CHARACTER SETS PRESENT', 0, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8765 INSERT INTO `marc_tag_structure` VALUES ('070', 'NATIONAL AGRICULTURAL LIBRARY CALL NUMBER', 'NATIONAL AGRICULTURAL LIBRARY CALL NUMBER', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8766 INSERT INTO `marc_tag_structure` VALUES ('071', 'NATIONAL AGRICULTURAL LIBRARY COPY STATEMENT', 'NATIONAL AGRICULTURAL LIBRARY COPY STATEMENT', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8767 INSERT INTO `marc_tag_structure` VALUES ('072', 'SUBJECT CATEGORY CODE', 'SUBJECT CATEGORY CODE', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8768 INSERT INTO `marc_tag_structure` VALUES ('074', 'GPO ITEM NUMBER', 'GPO ITEM NUMBER', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8769 INSERT INTO `marc_tag_structure` VALUES ('080', 'UNIVERSAL DECIMAL CLASSIFICATION NUMBER', 'UNIVERSAL DECIMAL CLASSIFICATION NUMBER', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8770 INSERT INTO `marc_tag_structure` VALUES ('082', 'DEWEY DECIMAL CLASSIFICATION NUMBER', 'DEWEY DECIMAL CLASSIFICATION NUMBER', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8771 INSERT INTO `marc_tag_structure` VALUES ('084', 'OTHER CLASSIFICATION NUMBER', 'OTHER CLASSIFICATION NUMBER', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8772 INSERT INTO `marc_tag_structure` VALUES ('086', 'GOVERNMENT DOCUMENT CLASSIFICATION NUMBER', 'GOVERNMENT DOCUMENT CLASSIFICATION NUMBER', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8773 INSERT INTO `marc_tag_structure` VALUES ('087', 'REPORT NUMBER [OBSOLETE, CAN/MARC]', 'REPORT NUMBER [OBSOLETE, CAN/MARC]', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8774 INSERT INTO `marc_tag_structure` VALUES ('088', 'REPORT NUMBER', 'REPORT NUMBER', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8775 INSERT INTO `marc_tag_structure` VALUES ('09o', 'LOCALLY ASSIGNED LC-TYPE CALL NUMBER (OCLC); LOCAL CALL NUMBER (RLIN)', 'LOCALLY ASSIGNED LC-TYPE CALL NUMBER (OCLC); LOCAL CALL NUMBER (OCLC)', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
8776 INSERT INTO `marc_tag_structure` VALUES ('091', 'MICROFILM SHELF LOCATION (AM) [OBSOLETE]', 'MICROFILM SHELF LOCATION (AM) [OBSOLETE]', 0, 0, '', 'ASMP_SOUND_RECORDINGS');
8777 INSERT INTO `marc_tag_structure` VALUES ('092', 'LOCALLY ASSIGNED DEWEY CALL NUMBER (OCLC)', 'LOCALLY ASSIGNED DEWEY CALL NUMBER (OCLC)', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
8778 INSERT INTO `marc_tag_structure` VALUES ('096', 'LOCALLY ASSIGNED NLM-TYPE CALL NUMBER (OCLC)', 'LOCALLY ASSIGNED NLM-TYPE CALL NUMBER (OCLC)', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
8779 INSERT INTO `marc_tag_structure` VALUES ('098', 'OTHER CLASSIFICATION SCHEMES (OCLC)', 'OTHER CLASSIFICATION SCHEMES (OCLC)', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
8780 INSERT INTO `marc_tag_structure` VALUES ('099', 'LOCAL FREE-TEXT CALL NUMBER (OCLC)', 'LOCAL FREE-TEXT CALL NUMBER (OCLC)', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
8781 INSERT INTO `marc_tag_structure` VALUES ('100', 'MAIN ENTRY--COMPOSER/PERSONAL NAME', 'MAIN ENTRY--PERSONAL NAME', 0, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8782 INSERT INTO `marc_tag_structure` VALUES ('110', 'MAIN ENTRY--CORPORATE NAME', 'MAIN ENTRY--CORPORATE NAME', 0, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8783 INSERT INTO `marc_tag_structure` VALUES ('111', 'MAIN ENTRY--MEETING NAME', 'MAIN ENTRY--MEETING NAME', 0, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8784 INSERT INTO `marc_tag_structure` VALUES ('130', 'MAIN ENTRY--UNIFORM TITLE', 'MAIN ENTRY--UNIFORM TITLE', 0, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8785 INSERT INTO `marc_tag_structure` VALUES ('210', 'ABBREVIATED TITLE', 'ABBREVIATED TITLE', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8786 INSERT INTO `marc_tag_structure` VALUES ('211', 'ACRONYM OR SHORTENED TITLE [OBSOLETE]', 'ACRONYM OR SHORTENED TITLE [OBSOLETE]', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8787 INSERT INTO `marc_tag_structure` VALUES ('212', 'VARIANT ACCESS TITLE [OBSOLETE]', 'VARIANT ACCESS TITLE [OBSOLETE]', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8788 INSERT INTO `marc_tag_structure` VALUES ('214', 'AUGMENTED TITLE [OBSOLETE]', 'AUGMENTED TITLE [OBSOLETE]', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8789 INSERT INTO `marc_tag_structure` VALUES ('222', 'KEY TITLE', 'KEY TITLE', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8790 INSERT INTO `marc_tag_structure` VALUES ('240', 'UNIFORM TITLE', 'UNIFORM TITLE', 0, 0, 'Unititle', 'ASMP_SOUND_RECORDINGS');
8791 INSERT INTO `marc_tag_structure` VALUES ('241', 'ROMANIZED TITLE (BK AM CF MP MU VM) [OBSOLETE]', 'ROMANIZED TITLE (BK AM CF MP MU VM) [OBSOLETE]', 0, 0, '', 'ASMP_SOUND_RECORDINGS');
8792 INSERT INTO `marc_tag_structure` VALUES ('242', 'TRANSLATION OF TITLE BY CATALOGING AGENCY', 'TRANSLATION OF TITLE BY CATALOGING AGENCY', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8793 INSERT INTO `marc_tag_structure` VALUES ('243', 'COLLECTIVE UNIFORM TITLE', 'COLLECTIVE UNIFORM TITLE', 0, 0, '', 'ASMP_SOUND_RECORDINGS');
8794 INSERT INTO `marc_tag_structure` VALUES ('245', 'TITLE', 'TITLE STATEMENT', 0, 1, '', 'ASMP_SOUND_RECORDINGS');
8795 INSERT INTO `marc_tag_structure` VALUES ('246', 'VARYING FORM OF TITLE', 'VARYING FORM OF TITLE', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8796 INSERT INTO `marc_tag_structure` VALUES ('247', 'FORMER TITLE', 'FORMER TITLE', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8797 INSERT INTO `marc_tag_structure` VALUES ('250', 'EDITION STATEMENT', 'EDITION STATEMENT', 0, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8798 INSERT INTO `marc_tag_structure` VALUES ('254', 'MUSICAL PRESENTATION STATEMENT', 'MUSICAL PRESENTATION STATEMENT', 0, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8799 INSERT INTO `marc_tag_structure` VALUES ('255', 'CARTOGRAPHIC MATHEMATICAL DATA', 'CARTOGRAPHIC MATHEMATICAL DATA', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8800 INSERT INTO `marc_tag_structure` VALUES ('256', 'COMPUTER FILE CHARACTERISTICS', 'COMPUTER FILE CHARACTERISTICS', 0, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8801 INSERT INTO `marc_tag_structure` VALUES ('257', 'COUNTRY OF PRODUCING ENTITY FOR ARCHIVAL FILMS', 'COUNTRY OF PRODUCING ENTITY FOR ARCHIVAL FILMS', 0, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8802 INSERT INTO `marc_tag_structure` VALUES ('258', 'PHILATELIC ISSUE DATE', 'PHILATELIC ISSUE DATE', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8803 INSERT INTO `marc_tag_structure` VALUES ('260', 'PUBLISHER/RECORD LABEL--PUBLICATION, DISTRIBUTION, ETC. (IMPRINT)', 'PUBLICATION, DISTRIBUTION, ETC. (IMPRINT)', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8804 INSERT INTO `marc_tag_structure` VALUES ('261', 'IMPRINT STATEMENT FOR FILMS (Pre-AACR 1 Revised) [OBSOLETE, CAN/MARC], [LOCAL, USA]', 'IMPRINT STATEMENT FOR FILMS (Pre-AACR 1 Revised) [OBSOLETE, CAN/MARC], [LOCAL, USA]', 0, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8805 INSERT INTO `marc_tag_structure` VALUES ('262', 'IMPRINT STATEMENT FOR SOUND RECORDINGS (Pre-AACR 2) [LOCAL, USA]', 'IMPRINT STATEMENT FOR SOUND RECORDINGS (Pre-AACR 2) [LOCAL, USA]', 0, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8806 INSERT INTO `marc_tag_structure` VALUES ('263', 'PROJECTED PUBLICATION DATE', 'PROJECTED PUBLICATION DATE', 0, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8807 INSERT INTO `marc_tag_structure` VALUES ('265', 'SOURCE FOR ACQUISITION/SUBSCRIPTION ADDRESS [OBSOLETE]', 'SOURCE FOR ACQUISITION/SUBSCRIPTION ADDRESS [OBSOLETE]', 0, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8808 INSERT INTO `marc_tag_structure` VALUES ('270', 'PUBLICATION, DISTRIBUTION DETAILS--ADDRESS', 'ADDRESS', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8809 INSERT INTO `marc_tag_structure` VALUES ('300', 'PHYSICAL DESCRIPTION', 'PHYSICAL DESCRIPTION', 1, 1, NULL, 'ASMP_SOUND_RECORDINGS');
8810 INSERT INTO `marc_tag_structure` VALUES ('301', 'PHYSICAL DESCRIPTION FOR FILMS (PRE-AACR 2) (VM) [OBSOLETE, USMARC]', 'PHYSICAL DESCRIPTION FOR FILMS (PRE-AACR 2) (VM) [OBSOLETE, USMARC]', 0, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8811 INSERT INTO `marc_tag_structure` VALUES ('302', 'PAGE OR ITEM COUNT (BK AM) [OBSOLETE]', 'PAGE OR ITEM COUNT (BK AM) [OBSOLETE]', 0, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8812 INSERT INTO `marc_tag_structure` VALUES ('303', 'UNIT COUNT (AM) [OBSOLETE, USMARC]', 'UNIT COUNT (AM) [OBSOLETE, USMARC]', 0, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8813 INSERT INTO `marc_tag_structure` VALUES ('304', 'LINEAR FOOTAGE (AM) [OBSOLETE, USMARC]', 'LINEAR FOOTAGE (AM) [OBSOLETE, USMARC]', 0, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8814 INSERT INTO `marc_tag_structure` VALUES ('305', 'PHYSICAL DESCRIPTION FOR SOUND RECORDINGS (Pre-AACR 2) (MU) [OBSOLETE]', 'PHYSICAL DESCRIPTION FOR SOUND RECORDINGS (Pre-AACR 2) (MU) [OBSOLETE]', 0, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8815 INSERT INTO `marc_tag_structure` VALUES ('306', 'RUN TIME', 'PLAYING TIME', 0, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8816 INSERT INTO `marc_tag_structure` VALUES ('307', 'HOURS, ETC.', 'HOURS, ETC.', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8817 INSERT INTO `marc_tag_structure` VALUES ('308', 'PHYSICAL DESCRIPTION FOR FILMS (ARCHIVAL) (VM) [OBSOLETE]', 'PHYSICAL DESCRIPTION FOR FILMS (ARCHIVAL) (VM) [OBSOLETE]', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8818 INSERT INTO `marc_tag_structure` VALUES ('310', 'CURRENT PUBLICATION FREQUENCY', 'CURRENT PUBLICATION FREQUENCY', 0, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8819 INSERT INTO `marc_tag_structure` VALUES ('315', 'FREQUENCY (CF MP) [OBSOLETE]', 'FREQUENCY (CF MP) [OBSOLETE]', 0, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8820 INSERT INTO `marc_tag_structure` VALUES ('321', 'FORMER PUBLICATION FREQUENCY', 'FORMER PUBLICATION FREQUENCY', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8821 INSERT INTO `marc_tag_structure` VALUES ('340', 'PHYSICAL MEDIUM', 'PHYSICAL MEDIUM', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8822 INSERT INTO `marc_tag_structure` VALUES ('342', 'GEOSPATIAL REFERENCE DATA', 'GEOSPATIAL REFERENCE DATA', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8823 INSERT INTO `marc_tag_structure` VALUES ('343', 'PLANAR COORDINATE DATA', 'PLANAR COORDINATE DATA', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8824 INSERT INTO `marc_tag_structure` VALUES ('350', 'PRICE (NR) (BK AM CF MU VM SE) [OBSOLETE]', 'PRICE (NR) (BK AM CF MU VM SE) [OBSOLETE]', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8825 INSERT INTO `marc_tag_structure` VALUES ('351', 'ORGANIZATION AND ARRANGEMENT OF MATERIALS', 'ORGANIZATION AND ARRANGEMENT OF MATERIALS', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8826 INSERT INTO `marc_tag_structure` VALUES ('352', 'DIGITAL GRAPHIC REPRESENTATION', 'DIGITAL GRAPHIC REPRESENTATION', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8827 INSERT INTO `marc_tag_structure` VALUES ('355', 'SECURITY CLASSIFICATION CONTROL', 'SECURITY CLASSIFICATION CONTROL', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8828 INSERT INTO `marc_tag_structure` VALUES ('357', 'ORIGINATOR DISSEMINATION CONTROL', 'ORIGINATOR DISSEMINATION CONTROL', 0, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8829 INSERT INTO `marc_tag_structure` VALUES ('359', 'RENTAL PRICE (VM) [OBSOLETE]', 'RENTAL PRICE (VM) [OBSOLETE]', 0, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8830 INSERT INTO `marc_tag_structure` VALUES ('362', 'DATES OF PUBLICATION AND/OR SEQUENTIAL DESIGNATION', 'DATES OF PUBLICATION AND/OR SEQUENTIAL DESIGNATION', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8831 INSERT INTO `marc_tag_structure` VALUES ('365', 'PUBLICATION, DISTRIBUTION DETAILS--TRADE PRICE', 'TRADE PRICE', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8832 INSERT INTO `marc_tag_structure` VALUES ('366', 'PUBLICATION, DISTRIBUTION DETAILS--TRADE AVAILABILITY INFORMATION', 'TRADE AVAILABILITY INFORMATION', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8833 INSERT INTO `marc_tag_structure` VALUES ('400', 'SERIES STATEMENT/ADDED ENTRY--PERSONAL NAME [OBSOLETE, CAN/MARC], [LOCAL, USA]', 'SERIES STATEMENT/ADDED ENTRY--PERSONAL NAME [OBSOLETE, CAN/MARC], [LOCAL, USA]', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8834 INSERT INTO `marc_tag_structure` VALUES ('410', 'SERIES STATEMENT/ADDED ENTRY--CORPORATE NAME [OBSOLETE, CAN/MARC], [LOCAL, USA]', 'SERIES STATEMENT/ADDED ENTRY--CORPORATE NAME [OBSOLETE, CAN/MARC], [LOCAL, USA]', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8835 INSERT INTO `marc_tag_structure` VALUES ('411', 'SERIES STATEMENT/ADDED ENTRY--MEETING NAME [OBSOLETE, CAN/MARC], [LOCAL, USA]', 'SERIES STATEMENT/ADDED ENTRY--MEETING NAME [OBSOLETE, CAN/MARC], [LOCAL, USA]', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8836 INSERT INTO `marc_tag_structure` VALUES ('440', 'SERIES--TITLE', 'SERIES STATEMENT/ADDED ENTRY--TITLE', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8837 INSERT INTO `marc_tag_structure` VALUES ('490', 'SERIES STATEMENT', 'SERIES STATEMENT', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
8838 INSERT INTO `marc_tag_structure` VALUES ('500', 'GENERAL NOTE', 'GENERAL NOTE', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8839 INSERT INTO `marc_tag_structure` VALUES ('501', 'WITH NOTE', 'WITH NOTE', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8840 INSERT INTO `marc_tag_structure` VALUES ('502', 'DISSERTATION NOTE', 'DISSERTATION NOTE', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8841 INSERT INTO `marc_tag_structure` VALUES ('503', 'BIBLIOGRAPHIC HISTORY NOTE (BK CF MU) [OBSOLETE]', 'BIBLIOGRAPHIC HISTORY NOTE (BK CF MU) [OBSOLETE]', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8842 INSERT INTO `marc_tag_structure` VALUES ('504', 'BIBLIOGRAPHY, ETC. NOTE', 'BIBLIOGRAPHY, ETC. NOTE', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8843 INSERT INTO `marc_tag_structure` VALUES ('505', 'FORMATTED CONTENTS NOTE', 'FORMATTED CONTENTS NOTE', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8844 INSERT INTO `marc_tag_structure` VALUES ('506', 'RESTRICTIONS ON ACCESS NOTE', 'RESTRICTIONS ON ACCESS NOTE', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8845 INSERT INTO `marc_tag_structure` VALUES ('507', 'SCALE NOTE FOR GRAPHIC MATERIAL', 'SCALE NOTE FOR GRAPHIC MATERIAL', 0, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8846 INSERT INTO `marc_tag_structure` VALUES ('508', 'CREATION/PRODUCTION CREDITS NOTE', 'CREATION/PRODUCTION CREDITS NOTE', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8847 INSERT INTO `marc_tag_structure` VALUES ('509', 'INFORMAL NOTES (RLIN)', 'INFORMAL NOTES (RLIN)', 0, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8848 INSERT INTO `marc_tag_structure` VALUES ('510', 'CITATION/REFERENCES NOTE', 'CITATION/REFERENCES NOTE', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8849 INSERT INTO `marc_tag_structure` VALUES ('511', 'PARTICIPANT OR PERFORMER NOTE', 'PARTICIPANT OR PERFORMER NOTE', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8850 INSERT INTO `marc_tag_structure` VALUES ('512', 'EARLIER OR LATER VOLUMES SEPARATELY CATALOGED NOTE (SE) [OBSOLETE]', 'EARLIER OR LATER VOLUMES SEPARATELY CATALOGED NOTE (SE) [OBSOLETE]', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8851 INSERT INTO `marc_tag_structure` VALUES ('513', 'TYPE OF REPORT AND PERIOD COVERED NOTE', 'TYPE OF REPORT AND PERIOD COVERED NOTE', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8852 INSERT INTO `marc_tag_structure` VALUES ('514', 'DATA QUALITY NOTE', 'DATA QUALITY NOTE', 0, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8853 INSERT INTO `marc_tag_structure` VALUES ('515', 'NUMBERING PECULIARITIES NOTE', 'NUMBERING PECULIARITIES NOTE', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8854 INSERT INTO `marc_tag_structure` VALUES ('516', 'TYPE OF COMPUTER FILE OR DATA NOTE', 'TYPE OF COMPUTER FILE OR DATA NOTE', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8855 INSERT INTO `marc_tag_structure` VALUES ('517', 'CATEGORIES OF FILMS NOTE (ARCHIVAL) (VM) [OBSOLETE]', 'CATEGORIES OF FILMS NOTE (ARCHIVAL) (VM) [OBSOLETE]', 0, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8856 INSERT INTO `marc_tag_structure` VALUES ('518', 'DATE/TIME AND PLACE OF AN EVENT NOTE', 'DATE/TIME AND PLACE OF AN EVENT NOTE', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8857 INSERT INTO `marc_tag_structure` VALUES ('520', 'SUMMARY, ETC.', 'SUMMARY, ETC.', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8858 INSERT INTO `marc_tag_structure` VALUES ('521', 'GRADE LEVEL/TARGET AUDIENCE NOTE', 'TARGET AUDIENCE NOTE', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8859 INSERT INTO `marc_tag_structure` VALUES ('522', 'GEOGRAPHIC DETAILS/GEOGRAPHIC COVERAGE NOTE', 'GEOGRAPHIC COVERAGE NOTE', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8860 INSERT INTO `marc_tag_structure` VALUES ('523', 'TIME PERIOD OF CONTENT NOTE (CF) [OBSOLETE]', 'TIME PERIOD OF CONTENT NOTE (CF) [OBSOLETE]', 0, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8861 INSERT INTO `marc_tag_structure` VALUES ('524', 'PREFERRED CITATION OF DESCRIBED MATERIALS NOTE', 'PREFERRED CITATION OF DESCRIBED MATERIALS NOTE', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8862 INSERT INTO `marc_tag_structure` VALUES ('525', 'SUPPLEMENT NOTE', 'SUPPLEMENT NOTE', 0, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8863 INSERT INTO `marc_tag_structure` VALUES ('526', 'STUDY PROGRAM INFORMATION NOTE', 'STUDY PROGRAM INFORMATION NOTE', 0, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8864 INSERT INTO `marc_tag_structure` VALUES ('527', 'CENSORSHIP NOTE (VM) [OBSOLETE]', 'CENSORSHIP NOTE (VM) [OBSOLETE]', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8865 INSERT INTO `marc_tag_structure` VALUES ('530', 'ADDITIONAL PHYSICAL FORM AVAILABLE NOTE', 'ADDITIONAL PHYSICAL FORM AVAILABLE NOTE', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8866 INSERT INTO `marc_tag_structure` VALUES ('533', 'REPRODUCTION NOTE', 'REPRODUCTION NOTE', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8867 INSERT INTO `marc_tag_structure` VALUES ('534', 'ORIGINAL VERSION NOTE', 'ORIGINAL VERSION NOTE', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8868 INSERT INTO `marc_tag_structure` VALUES ('535', 'LOCATION OF ORIGINALS/DUPLICATES NOTE', 'LOCATION OF ORIGINALS/DUPLICATES NOTE', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8869 INSERT INTO `marc_tag_structure` VALUES ('536', 'FUNDING INFORMATION NOTE', 'FUNDING INFORMATION NOTE', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8870 INSERT INTO `marc_tag_structure` VALUES ('537', 'SOURCE OF DATA NOTE (CF) [OBSOLETE]', 'SOURCE OF DATA NOTE (CF) [OBSOLETE]', 0, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8871 INSERT INTO `marc_tag_structure` VALUES ('538', 'SYSTEM DETAILS NOTE', 'SYSTEM DETAILS NOTE', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8872 INSERT INTO `marc_tag_structure` VALUES ('540', 'TERMS GOVERNING USE AND REPRODUCTION NOTE', 'TERMS GOVERNING USE AND REPRODUCTION NOTE', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8873 INSERT INTO `marc_tag_structure` VALUES ('541', 'ACQUISITION INFO--IMMEDIATE SOURCE OF ACQUISITION NOTE', 'IMMEDIATE SOURCE OF ACQUISITION NOTE', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8874 INSERT INTO `marc_tag_structure` VALUES ('543', 'SOLICITATION INFORMATION NOTE (AM) [OBSOLETE]', 'SOLICITATION INFORMATION NOTE (AM) [OBSOLETE]', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8875 INSERT INTO `marc_tag_structure` VALUES ('544', 'LOCATION OF OTHER ARCHIVAL MATERIALS NOTE', 'LOCATION OF OTHER ARCHIVAL MATERIALS NOTE', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8876 INSERT INTO `marc_tag_structure` VALUES ('546', 'LANGUAGE/TRANSLATION INFO', 'LANGUAGE NOTE', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8877 INSERT INTO `marc_tag_structure` VALUES ('547', 'FORMER TITLE COMPLEXITY NOTE', 'FORMER TITLE COMPLEXITY NOTE', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8878 INSERT INTO `marc_tag_structure` VALUES ('550', 'ISSUING BODY NOTE', 'ISSUING BODY NOTE', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8879 INSERT INTO `marc_tag_structure` VALUES ('552', 'ENTITY AND ATTRIBUTE INFORMATION NOTE', 'ENTITY AND ATTRIBUTE INFORMATION NOTE', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8880 INSERT INTO `marc_tag_structure` VALUES ('555', 'CUMULATIVE INDEX/FINDING AIDS NOTE', 'CUMULATIVE INDEX/FINDING AIDS NOTE', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8881 INSERT INTO `marc_tag_structure` VALUES ('556', 'INFORMATION ABOUT DOCUMENTATION NOTE', 'INFORMATION ABOUT DOCUMENTATION NOTE', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8882 INSERT INTO `marc_tag_structure` VALUES ('561', 'OWNERSHIP AND CUSTODIAL HISTORY', 'OWNERSHIP AND CUSTODIAL HISTORY', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8883 INSERT INTO `marc_tag_structure` VALUES ('562', 'COPY AND VERSION IDENTIFICATION NOTE', 'COPY AND VERSION IDENTIFICATION NOTE', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8884 INSERT INTO `marc_tag_structure` VALUES ('563', 'BINDING INFORMATION', 'BINDING INFORMATION', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8885 INSERT INTO `marc_tag_structure` VALUES ('565', 'CASE FILE CHARACTERISTICS NOTE', 'CASE FILE CHARACTERISTICS NOTE', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8886 INSERT INTO `marc_tag_structure` VALUES ('567', 'METHODOLOGY NOTE', 'METHODOLOGY NOTE', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8887 INSERT INTO `marc_tag_structure` VALUES ('570', 'EDITOR NOTE (SE) [OBSOLETE]', 'EDITOR NOTE (SE) [OBSOLETE]', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8888 INSERT INTO `marc_tag_structure` VALUES ('580', 'LINKING ENTRY COMPLEXITY NOTE', 'LINKING ENTRY COMPLEXITY NOTE', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8889 INSERT INTO `marc_tag_structure` VALUES ('581', 'PUBLICATIONS ABOUT DESCRIBED MATERIALS NOTE', 'PUBLICATIONS ABOUT DESCRIBED MATERIALS NOTE', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8890 INSERT INTO `marc_tag_structure` VALUES ('582', 'RELATED COMPUTER FILES NOTE (CF) [OBSOLETE]', 'RELATED COMPUTER FILES NOTE (CF) [OBSOLETE]', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8891 INSERT INTO `marc_tag_structure` VALUES ('583', 'ACQUISITION INFO--ACTION NOTE', 'ACTION NOTE', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8892 INSERT INTO `marc_tag_structure` VALUES ('584', 'ACCUMULATION AND FREQUENCY OF USE NOTE', 'ACCUMULATION AND FREQUENCY OF USE NOTE', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8893 INSERT INTO `marc_tag_structure` VALUES ('585', 'EXHIBITIONS NOTE', 'EXHIBITIONS NOTE', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8894 INSERT INTO `marc_tag_structure` VALUES ('586', 'AWARDS', 'AWARDS NOTE', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8895 INSERT INTO `marc_tag_structure` VALUES ('590', 'LOCAL NOTE (RLIN)', 'LOCAL NOTE (RLIN)', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8896 INSERT INTO `marc_tag_structure` VALUES ('600', 'SUBJECT--PERSONAL NAME', 'SUBJECT ADDED ENTRY--PERSONAL NAME', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8897 INSERT INTO `marc_tag_structure` VALUES ('610', 'SUBJECT--CORPORATE NAME', 'SUBJECT ADDED ENTRY--CORPORATE NAME', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8898 INSERT INTO `marc_tag_structure` VALUES ('611', 'SUBJECT--MEETING NAME', 'SUBJECT ADDED ENTRY--MEETING NAME', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8899 INSERT INTO `marc_tag_structure` VALUES ('630', 'SUBJECT--UNIFORM TITLE', 'SUBJECT ADDED ENTRY--UNIFORM TITLE', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8900 INSERT INTO `marc_tag_structure` VALUES ('648', 'SUBJECT--CHRONOLOGICAL TERM', 'SUBJECT ADDED ENTRY--CHRONOLOGICAL TERM', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8901 INSERT INTO `marc_tag_structure` VALUES ('650', 'SUBJECT--TOPIC', 'SUBJECT ADDED ENTRY--TOPICAL TERM', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8902 INSERT INTO `marc_tag_structure` VALUES ('651', 'SUBJECT--GEOGRAPHIC NAME', 'SUBJECT ADDED ENTRY--GEOGRAPHIC NAME', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8903 INSERT INTO `marc_tag_structure` VALUES ('652', 'SUBJECT ADDED ENTRY--REVERSE GEOGRAPHIC (BK MP SE) [OBSOLETE]', 'SUBJECT ADDED ENTRY--REVERSE GEOGRAPHIC (BK MP SE) [OBSOLETE]', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8904 INSERT INTO `marc_tag_structure` VALUES ('653', 'SUBJECT--UNCONTROLLED', 'INDEX TERM--UNCONTROLLED', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8905 INSERT INTO `marc_tag_structure` VALUES ('654', 'SUBJECT ADDED ENTRY--FACETED TOPICAL TERM', 'SUBJECT ADDED ENTRY--FACETED TOPICAL TERM', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8906 INSERT INTO `marc_tag_structure` VALUES ('655', 'SUBJECT--GENRE/FORM', 'INDEX TERM--GENRE/FORM', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8907 INSERT INTO `marc_tag_structure` VALUES ('656', 'SUBJECT--OCCUPATION', 'INDEX TERM--OCCUPATION', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8908 INSERT INTO `marc_tag_structure` VALUES ('657', 'SUBJECT--FUNCTION', 'INDEX TERM--FUNCTION', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8909 INSERT INTO `marc_tag_structure` VALUES ('658', 'SUBJECT--CURRICULUM OBJECTIVE', 'INDEX TERM--CURRICULUM OBJECTIVE', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8910 INSERT INTO `marc_tag_structure` VALUES ('662', 'SUBJECT ADDED ENTRY--HIERARCHICAL PLACE NAME', 'SUBJECT ADDED ENTRY--HIERARCHICAL PLACE NAME', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8911 INSERT INTO `marc_tag_structure` VALUES ('690', 'LOCAL SUBJECT--TOPICAL TERM (OCLC, RLIN)', 'LOCAL SUBJECT ADDED ENTRY--TOPICAL TERM (OCLC, RLIN)', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
8912 INSERT INTO `marc_tag_structure` VALUES ('691', 'LOCAL SUBJECT ADDED ENTRY--GEOGRAPHIC NAME (RLIN)', 'LOCAL SUBJECT ADDED ENTRY--GEOGRAPHIC NAME (RLIN)', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
8913 INSERT INTO `marc_tag_structure` VALUES ('696', 'LOCAL SUBJECT ADDED ENTRY--PERSONAL NAME (RLIN)', 'LOCAL SUBJECT ADDED ENTRY--PERSONAL NAME (RLIN)', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
8914 INSERT INTO `marc_tag_structure` VALUES ('697', 'LOCAL SUBJECT ADDED ENTRY--CORPORATE NAME (RLIN)', 'LOCAL SUBJECT ADDED ENTRY--CORPORATE NAME (RLIN)', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
8915 INSERT INTO `marc_tag_structure` VALUES ('698', 'LOCAL SUBJECT ADDED ENTRY--MEETING NAME (RLIN)', 'LOCAL SUBJECT ADDED ENTRY--MEETING NAME (RLIN)', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
8916 INSERT INTO `marc_tag_structure` VALUES ('699', 'LOCAL SUBJECT ADDED ENTRY--UNIFORM TITLE (RLIN)', 'LOCAL SUBJECT ADDED ENTRY--UNIFORM TITLE (RLIN)', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
8917 INSERT INTO `marc_tag_structure` VALUES ('700', 'ADDED ENTRY--PERSONAL NAME', 'ADDED ENTRY--PERSONAL NAME', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8918 INSERT INTO `marc_tag_structure` VALUES ('705', 'ADDED ENTRY--PERSONAL NAME (PERFORMER) (MU) [OBSOLETE]', 'ADDED ENTRY--PERSONAL NAME (PERFORMER) (MU) [OBSOLETE]', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8919 INSERT INTO `marc_tag_structure` VALUES ('710', 'ADDED ENTRY--CORPORATE NAME', 'ADDED ENTRY--CORPORATE NAME', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8920 INSERT INTO `marc_tag_structure` VALUES ('711', 'ADDED ENTRY--MEETING NAME', 'ADDED ENTRY--MEETING NAME', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8921 INSERT INTO `marc_tag_structure` VALUES ('715', 'ADDED ENTRY--CORPORATE NAME (PERFORMER) (MU) [OBSOLETE]', 'ADDED ENTRY--CORPORATE NAME (PERFORMER) (MU) [OBSOLETE]', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8922 INSERT INTO `marc_tag_structure` VALUES ('720', 'ADDED ENTRY--PERFORMER/UNCONTROLLED NAME', 'ADDED ENTRY--UNCONTROLLED NAME', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8923 INSERT INTO `marc_tag_structure` VALUES ('730', 'ADDED ENTRY--UNIFORM TITLE', 'ADDED ENTRY--UNIFORM TITLE', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8924 INSERT INTO `marc_tag_structure` VALUES ('740', 'ADDED ENTRY--UNCONTROLLED RELATED/ANALYTICAL TITLE', 'ADDED ENTRY--UNCONTROLLED RELATED/ANALYTICAL TITLE', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8925 INSERT INTO `marc_tag_structure` VALUES ('752', 'ADDED ENTRY--HIERARCHICAL PLACE NAME', 'ADDED ENTRY--HIERARCHICAL PLACE NAME', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8926 INSERT INTO `marc_tag_structure` VALUES ('753', 'SYSTEM DETAILS ACCESS TO COMPUTER FILES', 'SYSTEM DETAILS ACCESS TO COMPUTER FILES', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8927 INSERT INTO `marc_tag_structure` VALUES ('754', 'ADDED ENTRY--TAXONOMIC IDENTIFICATION', 'ADDED ENTRY--TAXONOMIC IDENTIFICATION', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8928 INSERT INTO `marc_tag_structure` VALUES ('755', 'ADDED ENTRY--PHYSICAL CHARACTERISTICS [OBSOLETE]', 'ADDED ENTRY--PHYSICAL CHARACTERISTICS [OBSOLETE]', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8929 INSERT INTO `marc_tag_structure` VALUES ('760', 'MAIN SERIES ENTRY', 'MAIN SERIES ENTRY', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8930 INSERT INTO `marc_tag_structure` VALUES ('762', 'SUBSERIES ENTRY', 'SUBSERIES ENTRY', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8931 INSERT INTO `marc_tag_structure` VALUES ('765', 'ORIGINAL LANGUAGE ENTRY', 'ORIGINAL LANGUAGE ENTRY', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8932 INSERT INTO `marc_tag_structure` VALUES ('767', 'TRANSLATION ENTRY', 'TRANSLATION ENTRY', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8933 INSERT INTO `marc_tag_structure` VALUES ('770', 'SUPPLEMENT/SPECIAL ISSUE ENTRY', 'SUPPLEMENT/SPECIAL ISSUE ENTRY', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8934 INSERT INTO `marc_tag_structure` VALUES ('772', 'SUPPLEMENT PARENT ENTRY', 'SUPPLEMENT PARENT ENTRY', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8935 INSERT INTO `marc_tag_structure` VALUES ('773', 'HOST ITEM ENTRY', 'HOST ITEM ENTRY', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8936 INSERT INTO `marc_tag_structure` VALUES ('774', 'CONSTITUENT UNIT ENTRY', 'CONSTITUENT UNIT ENTRY', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8937 INSERT INTO `marc_tag_structure` VALUES ('775', 'OTHER EDITION ENTRY', 'OTHER EDITION ENTRY', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8938 INSERT INTO `marc_tag_structure` VALUES ('776', 'ADDITIONAL PHYSICAL FORM ENTRY', 'ADDITIONAL PHYSICAL FORM ENTRY', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8939 INSERT INTO `marc_tag_structure` VALUES ('777', 'ISSUED WITH ENTRY', 'ISSUED WITH ENTRY', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8940 INSERT INTO `marc_tag_structure` VALUES ('780', 'PRECEDING ENTRY', 'PRECEDING ENTRY', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8941 INSERT INTO `marc_tag_structure` VALUES ('785', 'SUCCEEDING ENTRY', 'SUCCEEDING ENTRY', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8942 INSERT INTO `marc_tag_structure` VALUES ('786', 'DATA SOURCE ENTRY', 'DATA SOURCE ENTRY', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8943 INSERT INTO `marc_tag_structure` VALUES ('787', 'NONSPECIFIC RELATIONSHIP ENTRY', 'NONSPECIFIC RELATIONSHIP ENTRY', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8944 INSERT INTO `marc_tag_structure` VALUES ('789', 'COMPONENT ITEM ENTRY (RLIN)', 'COMPONENT ITEM ENTRY (RLIN)', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
8945 INSERT INTO `marc_tag_structure` VALUES ('796', 'LOCAL ADDED ENTRY--PERSONAL NAME (RLIN)', 'LOCAL ADDED ENTRY--PERSONAL NAME (RLIN)', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
8946 INSERT INTO `marc_tag_structure` VALUES ('797', 'LOCAL ADDED ENTRY--CORPORATE NAME (RLIN)', 'LOCAL ADDED ENTRY--CORPORATE NAME (RLIN)', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
8947 INSERT INTO `marc_tag_structure` VALUES ('798', 'LOCAL ADDED ENTRY--MEETING NAME (RLIN)', 'LOCAL ADDED ENTRY--MEETING NAME (RLIN)', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
8948 INSERT INTO `marc_tag_structure` VALUES ('799', 'LOCAL ADDED ENTRY--UNIFORM TITLE (RLIN)', 'LOCAL ADDED ENTRY--UNIFORM TITLE (RLIN)', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
8949 INSERT INTO `marc_tag_structure` VALUES ('800', 'SERIES ADDED ENTRY--PERSONAL NAME', 'SERIES ADDED ENTRY--PERSONAL NAME', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8950 INSERT INTO `marc_tag_structure` VALUES ('810', 'SERIES ADDED ENTRY--CORPORATE NAME', 'SERIES ADDED ENTRY--CORPORATE NAME', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8951 INSERT INTO `marc_tag_structure` VALUES ('811', 'SERIES ADDED ENTRY--MEETING NAME', 'SERIES ADDED ENTRY--MEETING NAME', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8952 INSERT INTO `marc_tag_structure` VALUES ('830', 'SERIES ADDED ENTRY--UNIFORM TITLE', 'SERIES ADDED ENTRY--UNIFORM TITLE', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8953 INSERT INTO `marc_tag_structure` VALUES ('840', 'SERIES ADDED ENTRY--TITLE [OBSOLETE]', 'SERIES ADDED ENTRY--TITLE [OBSOLETE]', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8954 INSERT INTO `marc_tag_structure` VALUES ('841', 'HOLDINGS CODED DATA VALUES', 'HOLDINGS CODED DATA VALUES', 0, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8955 INSERT INTO `marc_tag_structure` VALUES ('842', 'TEXTUAL PHYSICAL FORM DESIGNATOR', 'TEXTUAL PHYSICAL FORM DESIGNATOR', 0, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8956 INSERT INTO `marc_tag_structure` VALUES ('843', 'REPRODUCTION NOTE', 'REPRODUCTION NOTE', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8957 INSERT INTO `marc_tag_structure` VALUES ('844', 'NAME OF UNIT', 'NAME OF UNIT', 0, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8958 INSERT INTO `marc_tag_structure` VALUES ('845', 'TERMS GOVERNING USE AND REPRODUCTION NOTE', 'TERMS GOVERNING USE AND REPRODUCTION NOTE', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8959 INSERT INTO `marc_tag_structure` VALUES ('850', 'HOLDING INSTITUTION', 'HOLDING INSTITUTION', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8960 INSERT INTO `marc_tag_structure` VALUES ('851', 'LOCATION [OBSOLETE]', 'LOCATION [OBSOLETE]', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8961 INSERT INTO `marc_tag_structure` VALUES ('852', 'LOCATION/CALL NUMBER', 'LOCATION/CALL NUMBER', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8962 INSERT INTO `marc_tag_structure` VALUES ('853', 'CAPTIONS AND PATTERN--BASIC BIBLIOGRAPHIC UNIT', 'CAPTIONS AND PATTERN--BASIC BIBLIOGRAPHIC UNIT', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8963 INSERT INTO `marc_tag_structure` VALUES ('854', 'CAPTIONS AND PATTERN--SUPPLEMENTARY MATERIAL', 'CAPTIONS AND PATTERN--SUPPLEMENTARY MATERIAL', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8964 INSERT INTO `marc_tag_structure` VALUES ('855', 'CAPTIONS AND PATTERN--INDEXES', 'CAPTIONS AND PATTERN--INDEXES', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8965 INSERT INTO `marc_tag_structure` VALUES ('856', 'ELECTRONIC LOCATION AND ACCESS', 'ELECTRONIC LOCATION AND ACCESS', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8966 INSERT INTO `marc_tag_structure` VALUES ('859', 'LOCAL CONTROL INFORMATION (RLIN)', 'LOCAL CONTROL INFORMATION (RLIN)', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
8967 INSERT INTO `marc_tag_structure` VALUES ('863', 'ENUMERATION AND CHRONOLOGY--BASIC BIBLIOGRAPHIC UNIT', 'ENUMERATION AND CHRONOLOGY--BASIC BIBLIOGRAPHIC UNIT', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8968 INSERT INTO `marc_tag_structure` VALUES ('864', 'ENUMERATION AND CHRONOLOGY--SUPPLEMENTARY MATERIAL', 'ENUMERATION AND CHRONOLOGY--SUPPLEMENTARY MATERIAL', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8969 INSERT INTO `marc_tag_structure` VALUES ('865', 'ENUMERATION AND CHRONOLOGY--INDEXES', 'ENUMERATION AND CHRONOLOGY--INDEXES', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8970 INSERT INTO `marc_tag_structure` VALUES ('866', 'TEXTUAL HOLDINGS--BASIC BIBLIOGRAPHIC UNIT', 'TEXTUAL HOLDINGS--BASIC BIBLIOGRAPHIC UNIT', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8971 INSERT INTO `marc_tag_structure` VALUES ('867', 'TEXTUAL HOLDINGS--SUPPLEMENTARY MATERIAL', 'TEXTUAL HOLDINGS--SUPPLEMENTARY MATERIAL', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8972 INSERT INTO `marc_tag_structure` VALUES ('868', 'TEXTUAL HOLDINGS--INDEXES', 'TEXTUAL HOLDINGS--INDEXES', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8973 INSERT INTO `marc_tag_structure` VALUES ('870', 'VARIANT PERSONAL NAME (SE) [OBSOLETE]', 'VARIANT PERSONAL NAME (SE) [OBSOLETE]', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8974 INSERT INTO `marc_tag_structure` VALUES ('871', 'VARIANT CORPORATE NAME (SE)[OBSOLETE]', 'VARIANT CORPORATE NAME (SE)[OBSOLETE]', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8975 INSERT INTO `marc_tag_structure` VALUES ('872', 'VARIANT CONFERENCE OR MEETING NAME (SE) [OBSOLETE]', 'VARIANT CONFERENCE OR MEETING NAME (SE) [OBSOLETE]', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8976 INSERT INTO `marc_tag_structure` VALUES ('873', 'VARIANT UNIFORM TITLE HEADING (SE) [OBSOLETE]', 'VARIANT UNIFORM TITLE HEADING (SE) [OBSOLETE]', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8977 INSERT INTO `marc_tag_structure` VALUES ('876', 'ITEM INFORMATION--BASIC BIBLIOGRAPHIC UNIT', 'ITEM INFORMATION--BASIC BIBLIOGRAPHIC UNIT', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8978 INSERT INTO `marc_tag_structure` VALUES ('877', 'ITEM INFORMATION--SUPPLEMENTARY MATERIAL', 'ITEM INFORMATION--SUPPLEMENTARY MATERIAL', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8979 INSERT INTO `marc_tag_structure` VALUES ('878', 'ITEM INFORMATION--INDEXES', 'ITEM INFORMATION--INDEXES', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8980 INSERT INTO `marc_tag_structure` VALUES ('880', 'ALTERNATE GRAPHIC REPRESENTATION', 'ALTERNATE GRAPHIC REPRESENTATION', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8981 INSERT INTO `marc_tag_structure` VALUES ('886', 'FOREIGN MARC INFORMATION FIELD', 'FOREIGN MARC INFORMATION FIELD', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8982 INSERT INTO `marc_tag_structure` VALUES ('887', 'NON-MARC INFORMATION FIELD', 'NON-MARC INFORMATION FIELD', 1, 0, NULL, 'ASMP_SOUND_RECORDINGS');
8983 INSERT INTO `marc_tag_structure` VALUES ('896', 'LOCAL SERIES ADDED ENTRY--PERSONAL NAME (RLIN)', 'LOCAL SERIES ADDED ENTRY--PERSONAL NAME (RLIN)', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
8984 INSERT INTO `marc_tag_structure` VALUES ('897', 'LOCAL SERIES ADDED ENTRY--CORPORATE NAME (RLIN)', 'LOCAL SERIES ADDED ENTRY--CORPORATE NAME (RLIN)', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
8985 INSERT INTO `marc_tag_structure` VALUES ('898', 'LOCAL SERIES ADDED ENTRY--MEETING NAME (RLIN)', 'LOCAL SERIES ADDED ENTRY--MEETING NAME (RLIN)', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
8986 INSERT INTO `marc_tag_structure` VALUES ('899', 'LOCAL SERIES ADDED ENTRY--UNIFORM TITLE (RLIN)', 'LOCAL SERIES ADDED ENTRY--UNIFORM TITLE (RLIN)', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
8987 INSERT INTO `marc_tag_structure` VALUES ('89e', 'ERRONEOUS FIELD, ERR (RLIN)', 'ERRONEOUS FIELD, ERR (RLIN)', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
8988 INSERT INTO `marc_tag_structure` VALUES ('900', 'EQUIVALENCE OR CROSS-REFERENCE-PERSONAL NAME [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-PERSONAL NAME [LOCAL, CANADA]', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
8989 INSERT INTO `marc_tag_structure` VALUES ('901', 'LOCAL DATA ELEMENT A, LDA (RLIN)', 'LOCAL DATA ELEMENT A, LDA (RLIN)', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
8990 INSERT INTO `marc_tag_structure` VALUES ('902', 'LOCAL DATA ELEMENT B, LDB (RLIN)', 'LOCAL DATA ELEMENT B, LDB (RLIN)', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
8991 INSERT INTO `marc_tag_structure` VALUES ('903', 'LOCAL DATA ELEMENT C, LDC (RLIN)', 'LOCAL DATA ELEMENT C, LDC (RLIN)', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
8992 INSERT INTO `marc_tag_structure` VALUES ('904', 'LOCAL DATA ELEMENT D, LDD (RLIN)', 'LOCAL DATA ELEMENT D, LDD (RLIN)', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
8993 INSERT INTO `marc_tag_structure` VALUES ('905', 'LOCAL DATA ELEMENT E, LDE (RLIN)', 'LOCAL DATA ELEMENT E, LDE (RLIN)', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
8994 INSERT INTO `marc_tag_structure` VALUES ('906', 'LOCAL DATA ELEMENT F, LDF (RLIN)', 'LOCAL DATA ELEMENT F, LDF (RLIN)', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
8995 INSERT INTO `marc_tag_structure` VALUES ('907', 'LOCAL DATA ELEMENT G, LDG (RLIN)', 'LOCAL DATA ELEMENT G, LDG (RLIN)', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
8996 INSERT INTO `marc_tag_structure` VALUES ('908', 'PUT COMMAND PARAMETER (RLIN)', 'PUT COMMAND PARAMETER (RLIN)', 0, 0, '', 'ASMP_SOUND_RECORDINGS');
8997 INSERT INTO `marc_tag_structure` VALUES ('910', 'EQUIVALENCE OR CROSS-REFERENCE-CORPORATE NAME [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-CORPORATE NAME [LOCAL, CANADA]', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
8998 INSERT INTO `marc_tag_structure` VALUES ('91o', 'USER-OPTION DATA (COLC)', 'USER-OPTION DATA (OCLC)', 0, 0, '', 'ASMP_SOUND_RECORDINGS');
8999 INSERT INTO `marc_tag_structure` VALUES ('91r', 'RLG STANDARDS NOTE (RLIN)', 'RLG STANDARDS NOTE (RLIN)', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
9000 INSERT INTO `marc_tag_structure` VALUES ('911', 'EQUIVALENCE OR CROSS-REFERENCE-CONFERENCE OR MEETING NAME [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-CONFERENCE OR MEETING NAME [LOCAL, CANADA]', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
9001 INSERT INTO `marc_tag_structure` VALUES ('930', 'EQUIVALENCE OR CROSS-REFERENCE-UNIFORM TITLE HEADING [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-UNIFORM TITLE HEADING [LOCAL, CANADA]', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
9002 INSERT INTO `marc_tag_structure` VALUES ('93r', 'SUMMARY HOLDINGS STATEMENT (RLIN)', 'SUMMARY HOLDINGS STATEMENT (RLIN)', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
9003 INSERT INTO `marc_tag_structure` VALUES ('936', 'OCLC/CONSER MISCELLANEOUS DATA (OCLC); PIECE USED FOR CATALOGING (pre-AACR2) (RLIN)', 'OCLC/CONSER MISCELLANEOUS DATA (OCLC); PIECE USED FOR CATALOGING (pre-AACR2) (RLIN)', 0, 0, '', 'ASMP_SOUND_RECORDINGS');
9004 INSERT INTO `marc_tag_structure` VALUES ('940', 'EQUIVALENCE OR CROSS-REFERENCE--UNIFORM TITLE [OBSOLETE] [CAN/MARC only]', 'EQUIVALENCE OR CROSS-REFERENCE--UNIFORM TITLE [OBSOLETE] [CAN/MARC only]', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
9005 INSERT INTO `marc_tag_structure` VALUES ('941', 'EQUIVALENCE OR CROSS-REFERENCE--ROMANIZED TITLE [OBSOLETE] [CAN/MARC only]', 'EQUIVALENCE OR CROSS-REFERENCE--ROMANIZED TITLE [OBSOLETE] [CAN/MARC only]', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
9006 INSERT INTO `marc_tag_structure` VALUES ('943', 'EQUIVALENCE OR CROSS-REFERENCE--COLLECTIVE TITLE [OBSOLETE] [CAN/MARC only]', 'EQUIVALENCE OR CROSS-REFERENCE--COLLECTIVE TITLE [OBSOLETE] [CAN/MARC only]', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
9007 INSERT INTO `marc_tag_structure` VALUES ('945', 'LOCAL PROCESSING INFORMATION (OCLC)', 'LOCAL PROCESSING INFORMATION (OCLC)', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
9008 INSERT INTO `marc_tag_structure` VALUES ('94c', 'EQUIVALENCE OR CROSS-REFERENCE--TITLE [OBSOLETE] [CAN/MARC only]', 'EQUIVALENCE OR CROSS-REFERENCE--TITLE [OBSOLETE] [CAN/MARC only]', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
9009 INSERT INTO `marc_tag_structure` VALUES ('946', 'LOCAL PROCESSING INFORMATION (OCLC)', 'LOCAL PROCESSING INFORMATION (OCLC)', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
9010 INSERT INTO `marc_tag_structure` VALUES ('947', 'LOCAL PROCESSING INFORMATION (OCLC)', 'LOCAL PROCESSING INFORMATION (OCLC)', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
9011 INSERT INTO `marc_tag_structure` VALUES ('948', 'LOCAL PROCESSING INFORMATION (OCLC); SERIES PART DESIGNATOR (RLIN)', 'LOCAL PROCESSING INFORMATION (OCLC); SERIES PART DESIGNATOR (RLIN)', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
9012 INSERT INTO `marc_tag_structure` VALUES ('949', 'LOCAL PROCESSING INFORMATION (OCLC)', 'LOCAL PROCESSING INFORMATION (OCLC)', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
9013 INSERT INTO `marc_tag_structure` VALUES ('94a', 'ANALYSIS TREATMENT NOTE (RLIN)', 'ANALYSIS TREATMENT NOTE (RLIN)', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
9014 INSERT INTO `marc_tag_structure` VALUES ('94b', 'TREATMENT CODES (RLIN)', 'TREATMENT CODES (RLIN)', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
9015 INSERT INTO `marc_tag_structure` VALUES ('950', 'LOCAL HOLDINGS (RLIN)', 'LOCAL HOLDINGS (RLIN)', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
9016 INSERT INTO `marc_tag_structure` VALUES ('951', 'EQUIVALENCE OR CROSS-REFERENCE--GEOGRAPHIC NAME/AREA NAME [OBSOLETE] [CAN/MARC only]', 'EQUIVALENCE OR CROSS-REFERENCE-GEOGRAPHIC NAME/AREA NAME [OBSOLETE] [CAN/MARC only]', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
9017 INSERT INTO `marc_tag_structure` VALUES ('95c', 'EQUIVALENCE OR CROSS-REFERENCE--HIERARCHICAL PLACE NAME [OBSOLETE] [CAN/MARC only]', 'EQUIVALENCE OR CROSS-REFERENCE-HIERARCHICAL PLACE NAME [OBSOLETE] [CAN/MARC only]', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
9018 INSERT INTO `marc_tag_structure` VALUES ('95r', 'CLUSTER MEMBER (RLIN)', 'CLUSTER MEMBER (RLIN)', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
9019 INSERT INTO `marc_tag_structure` VALUES ('955', 'COPY-LEVEL INFORMATION (RLIN)', 'COPY-LEVEL INFORMATION (RLIN)', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
9020 INSERT INTO `marc_tag_structure` VALUES ('956', 'LOCAL ELECTRONIC LOCATION AND ACCESS (OCLC)', 'LOCAL ELECTRONIC LOCATION AND ACCESS (OCLC)', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
9021 INSERT INTO `marc_tag_structure` VALUES ('960', 'PHYSICAL LOCATION (RLIN)', 'PHYSICAL LOCATION (RLIN)', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
9022 INSERT INTO `marc_tag_structure` VALUES ('967', 'ADDITIONAL ESTC CODES (RLIN)', 'ADDITIONAL ESTC CODES (RLIN)', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
9023 INSERT INTO `marc_tag_structure` VALUES ('980', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--PERSONAL NAME/TITLE [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--PERSONAL NAME/TITLE [LOCAL, CANADA]', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
9024 INSERT INTO `marc_tag_structure` VALUES ('981', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--CORPORATE NAME/TITLE [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--CORPORATE NAME/TITLE [LOCAL, CANADA]', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
9025 INSERT INTO `marc_tag_structure` VALUES ('982', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--CONFERENCE OR MEETING NAME/TITLE [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--CONFERENCE OR MEETING NAME/TITLE [LOCAL, CANADA]', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
9026 INSERT INTO `marc_tag_structure` VALUES ('983', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--TITLE/UNIFORM TITLE [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE--SERIES STATEMENT-TITLE/UNIFORM TITLE [LOCAL, CANADA]', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
9027 INSERT INTO `marc_tag_structure` VALUES ('984', 'WLN AUTOMATIC HOLDINGS STATEMENT (OCLC)', 'WLN AUTOMATIC HOLDINGS STATEMENT (OCLC)', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
9028 INSERT INTO `marc_tag_structure` VALUES ('987', 'LOCAL ROMANIZATION/CONVERSION HISTORY (OCLC)', 'LOCAL ROMANIZATION/CONVERSION HISTORY (OCLC)', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
9029 INSERT INTO `marc_tag_structure` VALUES ('990', 'EQUIVALENCES OR CROSS-REFERENCES [LOCAL, CANADA]', 'EQUIVALENCES OR CROSS-REFERENCES [LOCAL, CANADA]', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
9030 INSERT INTO `marc_tag_structure` VALUES ('995', 'RECOMMANDATION 995 [LOCAL, UNIMARC FRANCE]', 'RECOMMANDATION 995 [LOCAL, UNIMARC FRANCE]', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
9031 INSERT INTO `marc_tag_structure` VALUES ('998', 'LOCAL CONTROL INFORMATION (RLIN)', 'LOCAL CONTROL INFORMATION (RLIN)', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
9032 INSERT INTO `marc_tag_structure` VALUES ('999', '090: LOCALLY ASSIGNED LC-TYPE CALL NUMBER (OCLC); LOCAL CALL NUMBER (RLIN)', '090: LOCALLY ASSIGNED LC-TYPE CALL NUMBER (OCLC); LOCAL CALL NUMBER (OCLC)', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
9033 INSERT INTO `marc_tag_structure` VALUES ('b99', 'PRIVATE LOCAL INFORMATION (RLIN)', 'PRIVATE LOCAL INFORMATION (RLIN)', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
9034 INSERT INTO `marc_tag_structure` VALUES ('u01', 'UNIT IDENTIFICATION, STATUS, AND TYPE (RLIN)', 'UNIT IDENTIFICATION, STATUS, AND TYPE (RLIN)', 0, 0, '', 'ASMP_SOUND_RECORDINGS');
9035 INSERT INTO `marc_tag_structure` VALUES ('u02', 'STANDARD NUMBER (RLIN)', 'STANDARD NUMBER (RLIN)', 0, 0, '', 'ASMP_SOUND_RECORDINGS');
9036 INSERT INTO `marc_tag_structure` VALUES ('u08', 'CODED INFORMATION (RLIN)', 'CODED INFORMATION (RLIN)', 0, 0, '', 'ASMP_SOUND_RECORDINGS');
9037 INSERT INTO `marc_tag_structure` VALUES ('u10', 'REQUESTER IDENTIFICATION (RLIN)', 'REQUESTER IDENTIFICATION (RLIN)', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
9038 INSERT INTO `marc_tag_structure` VALUES ('u11', 'DEPARTMENT REPORT REQUEST (RLIN)', 'DEPARTMENT REPORT REQUEST (RLIN)', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
9039 INSERT INTO `marc_tag_structure` VALUES ('u20', 'SUPPLIER IDENTIFICATION, SUPN (RLIN)', 'SUPPLIER IDENTIFICATION, SUPN (RLIN)', 0, 0, '', 'ASMP_SOUND_RECORDINGS');
9040 INSERT INTO `marc_tag_structure` VALUES ('u21', 'LIBRARY CODES FOR VENDOR AND ORDER (RLIN)', 'LIBRARY CODES FOR VENDOR AND ORDER (RLIN)', 0, 0, '', 'ASMP_SOUND_RECORDINGS');
9041 INSERT INTO `marc_tag_structure` VALUES ('u22', 'SUPPLIER CODES AND CATALOG INFORMATION (RLIN)', 'SUPPLIER CODES AND CATALOG INFORMATION (RLIN)', 0, 0, '', 'ASMP_SOUND_RECORDINGS');
9042 INSERT INTO `marc_tag_structure` VALUES ('u25', 'SUPPLIER REPORT(S) (RLIN)', 'SUPPLIER REPORT(S) (RLIN)', 0, 0, '', 'ASMP_SOUND_RECORDINGS');
9043 INSERT INTO `marc_tag_structure` VALUES ('u30', 'INTERVALS (RLIN)', 'INTERVALS (RLIN)', 0, 0, '', 'ASMP_SOUND_RECORDINGS');
9044 INSERT INTO `marc_tag_structure` VALUES ('u31', 'CLAIM COUNTS (RLIN)', 'CLAIM COUNTS (RLIN)', 0, 0, '', 'ASMP_SOUND_RECORDINGS');
9045 INSERT INTO `marc_tag_structure` VALUES ('u33', 'INVOICE CLAIM (RLIN)', 'INVOICE CLAIM (RLIN)', 0, 0, '', 'ASMP_SOUND_RECORDINGS');
9046 INSERT INTO `marc_tag_structure` VALUES ('u34', 'EXTENDED PROCUREMENT CLAIM AND REVIEW (RLIN)', 'EXTENDED PROCUREMENT CLAIM AND REVIEW (RLIN)', 0, 0, '', 'ASMP_SOUND_RECORDINGS');
9047 INSERT INTO `marc_tag_structure` VALUES ('u40', 'EXTENDED PROCUREMENT CODES (RLIN)', 'EXTENDED PROCUREMENT CODES (RLIN)', 0, 0, '', 'ASMP_SOUND_RECORDINGS');
9048 INSERT INTO `marc_tag_structure` VALUES ('u50', 'ACQUISITIONS NOTES (RLIN)', 'ACQUISITIONS NOTES (RLIN)', 0, 0, '', 'ASMP_SOUND_RECORDINGS');
9049 INSERT INTO `marc_tag_structure` VALUES ('u51', 'SELECTION NOTES (RLIN)', 'SELECTION NOTES (RLIN)', 0, 0, '', 'ASMP_SOUND_RECORDINGS');
9050 INSERT INTO `marc_tag_structure` VALUES ('u52', 'SUPPLIER INSTRUCTIONS AND NOTES, SINT (RLIN)', 'SUPPLIER INSTRUCTIONS AND NOTES, SINT (RLIN)', 0, 0, '', 'ASMP_SOUND_RECORDINGS');
9051 INSERT INTO `marc_tag_structure` VALUES ('u53', 'CLAIM INSTRUCTIONS AND NOTES, CLNT (RLIN)', 'CLAIM INSTRUCTIONS AND NOTES, CLNT (RLIN)', 0, 0, '', 'ASMP_SOUND_RECORDINGS');
9052 INSERT INTO `marc_tag_structure` VALUES ('u54', 'NOTES TO SERIALS DEPARTMENT (RLIN)', 'NOTES TO SERIALS DEPARTMENT (RLIN)', 0, 0, '', 'ASMP_SOUND_RECORDINGS');
9053 INSERT INTO `marc_tag_structure` VALUES ('u55', 'CATALOGING NOTES (RLIN)', 'CATALOGING NOTES (RLIN)', 0, 0, '', 'ASMP_SOUND_RECORDINGS');
9054 INSERT INTO `marc_tag_structure` VALUES ('u5f', 'ACCOUNTING NOTES (RLIN)', 'ACCOUNTING NOTES (RLIN)', 0, 0, '', 'ASMP_SOUND_RECORDINGS');
9055 INSERT INTO `marc_tag_structure` VALUES ('u70', 'MATERIAL AND LOCATION INFORMATION (RLIN)', 'MATERIAL AND LOCATION INFORMATION (RLIN)', 0, 0, '', 'ASMP_SOUND_RECORDINGS');
9056 INSERT INTO `marc_tag_structure` VALUES ('u71', 'FUND ACCOUNT (RLIN)', 'FUND ACCOUNT (RLIN)', 0, 0, '', 'ASMP_SOUND_RECORDINGS');
9057 INSERT INTO `marc_tag_structure` VALUES ('u75', 'ITEM DETAILS (RLIN)', 'ITEM DETAILS (RLIN)', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
9058 INSERT INTO `marc_tag_structure` VALUES ('u7f', 'PRICE INFORMATION (RLIN)', 'PRICE INFORMATION (RLIN)', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
9059 INSERT INTO `marc_tag_structure` VALUES ('u90', 'TAPE OUTPUT, TAPE (RLIN)', 'TAPE OUTPUT, TAPE (RLIN)', 0, 0, '', 'ASMP_SOUND_RECORDINGS');
9060 INSERT INTO `marc_tag_structure` VALUES ('ufi', 'FISCAL INFORMATION, FI (RLIN)', 'FISCAL INFORMATION, FI (RLIN)', 1, 0, '', 'ASMP_SOUND_RECORDINGS');
9061
9062
9063
9064 INSERT INTO `marc_subfield_structure` VALUES ('000', '@', 'fixed length control field', 'fixed length control field', 0, 1, '', 0, '', '', 'marc21_leader.pl', 0, 0, 'ASMP_SOUND_RECORDINGS', '', '');
9065 INSERT INTO `marc_subfield_structure` VALUES ('001', '@', 'control field', 'control field', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9066 INSERT INTO `marc_subfield_structure` VALUES ('003', '@', 'control field', 'control field', 0, 0, '', 0, '', '', 'marc21_field_003.pl', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9067 INSERT INTO `marc_subfield_structure` VALUES ('005', '@', 'control field', 'control field', 0, 0, '', 0, '', '', 'marc21_field_005.pl', 0, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9068 INSERT INTO `marc_subfield_structure` VALUES ('006', '@', 'fixed length control field', 'fixed length control field', 0, 0, '', 0, '', '', 'marc21_field_006.pl', 0, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9069 INSERT INTO `marc_subfield_structure` VALUES ('007', '@', 'fixed length control field', 'fixed length control field', 0, 0, '', 0, '', '', 'marc21_field_007.pl', 0, 0, 'ASMP_SOUND_RECORDINGS', '', '');
9070 INSERT INTO `marc_subfield_structure` VALUES ('008', '@', 'fixed length control field', 'fixed length control field', 0, 1, '', 0, '', '', 'marc21_field_008.pl', 0, 0, 'ASMP_SOUND_RECORDINGS', '', '');
9071 INSERT INTO `marc_subfield_structure` VALUES ('009', '@', 'fixed length control field', 'fixed length control field', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9072 INSERT INTO `marc_subfield_structure` VALUES ('010', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', NULL, 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9073 INSERT INTO `marc_subfield_structure` VALUES ('010', 'a', 'LC control number', 'LC control number', 0, 0, 'biblioitems.lccn', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9074 INSERT INTO `marc_subfield_structure` VALUES ('010', 'b', 'NUCMC control number', 'NUCMC control number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9075 INSERT INTO `marc_subfield_structure` VALUES ('010', 'z', 'Canceled/invalid LC control number', 'Canceled/invalid LC control number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9076 INSERT INTO `marc_subfield_structure` VALUES ('011', 'a', 'LC control number', 'LC control number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9077 INSERT INTO `marc_subfield_structure` VALUES ('013', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', NULL, 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9078 INSERT INTO `marc_subfield_structure` VALUES ('013', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9079 INSERT INTO `marc_subfield_structure` VALUES ('013', 'a', 'Number', 'Number', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9080 INSERT INTO `marc_subfield_structure` VALUES ('013', 'b', 'Country', 'Country', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9081 INSERT INTO `marc_subfield_structure` VALUES ('013', 'c', 'Type of number', 'Type of number', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9082 INSERT INTO `marc_subfield_structure` VALUES ('013', 'd', 'Date', 'Date', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9083 INSERT INTO `marc_subfield_structure` VALUES ('013', 'e', 'Status', 'Status', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9084 INSERT INTO `marc_subfield_structure` VALUES ('013', 'f', 'Party to document', 'Party to document', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9085 INSERT INTO `marc_subfield_structure` VALUES ('015', '2', 'Source', 'Source', 0, 0, '', 0, '', '', NULL, 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9086 INSERT INTO `marc_subfield_structure` VALUES ('015', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9087 INSERT INTO `marc_subfield_structure` VALUES ('015', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9088 INSERT INTO `marc_subfield_structure` VALUES ('015', 'a', 'National bibliography number', 'National bibliography number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9089 INSERT INTO `marc_subfield_structure` VALUES ('016', '2', 'Source', 'Source', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9090 INSERT INTO `marc_subfield_structure` VALUES ('016', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9091 INSERT INTO `marc_subfield_structure` VALUES ('016', 'a', 'Record control number', 'Record control number', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9092 INSERT INTO `marc_subfield_structure` VALUES ('016', 'z', 'Canceled or invalid record control number', 'Canceled or invalid record control number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9093 INSERT INTO `marc_subfield_structure` VALUES ('017', '2', 'Source', 'Source', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9094 INSERT INTO `marc_subfield_structure` VALUES ('017', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9095 INSERT INTO `marc_subfield_structure` VALUES ('017', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9096 INSERT INTO `marc_subfield_structure` VALUES ('017', 'a', 'Copyright or legal deposit number', 'Copyright or legal deposit number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9097 INSERT INTO `marc_subfield_structure` VALUES ('017', 'b', 'Assigning agency', 'Assigning agency', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9098 INSERT INTO `marc_subfield_structure` VALUES ('017', 'd', 'Date', 'Date', 0, 0, '', 0, '', '', NULL, 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9099 INSERT INTO `marc_subfield_structure` VALUES ('017', 'i', 'Display text', 'Display text', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9100 INSERT INTO `marc_subfield_structure` VALUES ('018', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9101 INSERT INTO `marc_subfield_structure` VALUES ('018', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9102 INSERT INTO `marc_subfield_structure` VALUES ('018', 'a', 'Copyright article-fee code', 'Copyright article-fee code', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9103 INSERT INTO `marc_subfield_structure` VALUES ('01e', 'a', 'Coded field error', 'Coded field error', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9104 INSERT INTO `marc_subfield_structure` VALUES ('020', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9105 INSERT INTO `marc_subfield_structure` VALUES ('020', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9106 INSERT INTO `marc_subfield_structure` VALUES ('020', 'a', 'International Standard Book Number', 'International Standard Book Number', 0, 0, 'biblioitems.isbn', 0, '', '', '', 0, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9107 INSERT INTO `marc_subfield_structure` VALUES ('020', 'c', 'Terms of availability', 'Terms of availability', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9108 INSERT INTO `marc_subfield_structure` VALUES ('020', 'z', 'Cancelled/invalid ISBN', 'Cancelled/invalid ISBN', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9109 INSERT INTO `marc_subfield_structure` VALUES ('022', '2', 'Source', 'Source', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9110 INSERT INTO `marc_subfield_structure` VALUES ('022', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9111 INSERT INTO `marc_subfield_structure` VALUES ('022', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9112 INSERT INTO `marc_subfield_structure` VALUES ('022', 'a', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, 'biblioitems.issn', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9113 INSERT INTO `marc_subfield_structure` VALUES ('022', 'y', 'Incorrect ISSN', 'Incorrect ISSN', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9114 INSERT INTO `marc_subfield_structure` VALUES ('022', 'z', 'Canceled ISSN', 'Canceled ISSN', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9115 INSERT INTO `marc_subfield_structure` VALUES ('023', 'a', 'Standard film number', 'Standard film number', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9116 INSERT INTO `marc_subfield_structure` VALUES ('024', '2', 'Source of number or code', 'Source of number or code', 0, 0, '', 0, '', '', '', 0, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9117 INSERT INTO `marc_subfield_structure` VALUES ('024', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9118 INSERT INTO `marc_subfield_structure` VALUES ('024', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9119 INSERT INTO `marc_subfield_structure` VALUES ('024', 'a', 'Standard number or code', 'Standard number or code', 0, 0, '', 0, '', '', '', 0, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9120 INSERT INTO `marc_subfield_structure` VALUES ('024', 'b', 'Additional codes following the standard number [OBSOLETE]', 'Additional codes following the standard number [OBSOLETE]', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9121 INSERT INTO `marc_subfield_structure` VALUES ('024', 'c', 'Terms of availability', 'Terms of availability', 0, 0, '', 0, '', '', '', 0, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9122 INSERT INTO `marc_subfield_structure` VALUES ('024', 'd', 'Additional codes following the standard number or code', 'Additional codes following the standard number or code', 0, 0, '', 0, '', '', '', 0, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9123 INSERT INTO `marc_subfield_structure` VALUES ('024', 'z', 'Canceled/invalid standard number or code', 'Canceled/invalid standard number or code', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9124 INSERT INTO `marc_subfield_structure` VALUES ('025', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9125 INSERT INTO `marc_subfield_structure` VALUES ('025', 'a', 'Overseas acquisition number', 'Overseas acquisition number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9126 INSERT INTO `marc_subfield_structure` VALUES ('026', '2', 'Source', 'Source', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9127 INSERT INTO `marc_subfield_structure` VALUES ('026', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9128 INSERT INTO `marc_subfield_structure` VALUES ('026', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9129 INSERT INTO `marc_subfield_structure` VALUES ('026', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9130 INSERT INTO `marc_subfield_structure` VALUES ('026', 'a', 'First and second groups of characters', 'First and second groups of characters', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9131 INSERT INTO `marc_subfield_structure` VALUES ('026', 'b', 'Third and fourth groups of characters', 'Third and fourth groups of characters', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9132 INSERT INTO `marc_subfield_structure` VALUES ('026', 'c', 'Date', 'Date', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9133 INSERT INTO `marc_subfield_structure` VALUES ('026', 'd', 'Number of volume or part', 'Number of volume or part', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9134 INSERT INTO `marc_subfield_structure` VALUES ('026', 'e', 'unparsed fingerprint', 'unparsed fingerprint', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9135 INSERT INTO `marc_subfield_structure` VALUES ('027', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9136 INSERT INTO `marc_subfield_structure` VALUES ('027', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9137 INSERT INTO `marc_subfield_structure` VALUES ('027', 'a', 'Standard technical report number', 'Standard technical report number', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9138 INSERT INTO `marc_subfield_structure` VALUES ('027', 'z', 'Canceled/invalid number', 'Canceled/invalid number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9139 INSERT INTO `marc_subfield_structure` VALUES ('028', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9140 INSERT INTO `marc_subfield_structure` VALUES ('028', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9141 INSERT INTO `marc_subfield_structure` VALUES ('028', 'a', 'Publisher number', 'Publisher number', 0, 0, '', 0, '', '', '', 0, 0, 'ASMP_SOUND_RECORDINGS', '', '');
9142 INSERT INTO `marc_subfield_structure` VALUES ('028', 'b', 'Source', 'Source', 0, 0, '', 0, '', '', '', 0, 0, 'ASMP_SOUND_RECORDINGS', '', '');
9143 INSERT INTO `marc_subfield_structure` VALUES ('030', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9144 INSERT INTO `marc_subfield_structure` VALUES ('030', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9145 INSERT INTO `marc_subfield_structure` VALUES ('030', 'a', 'CODEN', 'CODEN', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9146 INSERT INTO `marc_subfield_structure` VALUES ('030', 'z', 'Canceled/invalid CODEN', 'Canceled/invalid CODEN', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9147 INSERT INTO `marc_subfield_structure` VALUES ('031', '2', 'System code', 'System code', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9148 INSERT INTO `marc_subfield_structure` VALUES ('031', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9149 INSERT INTO `marc_subfield_structure` VALUES ('031', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9150 INSERT INTO `marc_subfield_structure` VALUES ('031', 'a', 'Number of work', 'Number of work', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9151 INSERT INTO `marc_subfield_structure` VALUES ('031', 'b', 'Number of movement', 'Number of movement', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9152 INSERT INTO `marc_subfield_structure` VALUES ('031', 'c', 'Number of excerpt', 'Number of excerpt', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9153 INSERT INTO `marc_subfield_structure` VALUES ('031', 'd', 'Caption or heading', 'Caption or heading', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9154 INSERT INTO `marc_subfield_structure` VALUES ('031', 'e', 'Role', 'Role', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9155 INSERT INTO `marc_subfield_structure` VALUES ('031', 'g', 'Clef', 'Clef', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9156 INSERT INTO `marc_subfield_structure` VALUES ('031', 'm', 'Voice/instrument', 'Voice/instrument', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9157 INSERT INTO `marc_subfield_structure` VALUES ('031', 'n', 'Key signature', 'Key signature', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9158 INSERT INTO `marc_subfield_structure` VALUES ('031', 'o', 'Time signature', 'Time signature', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9159 INSERT INTO `marc_subfield_structure` VALUES ('031', 'p', 'Musical notation', 'Musical notation', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9160 INSERT INTO `marc_subfield_structure` VALUES ('031', 'q', 'General note', 'General note', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9161 INSERT INTO `marc_subfield_structure` VALUES ('031', 'r', 'Key or mode', 'Key or mode', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9162 INSERT INTO `marc_subfield_structure` VALUES ('031', 's', 'Coded validity note', 'Coded validity note', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9163 INSERT INTO `marc_subfield_structure` VALUES ('031', 't', 'Text incipit', 'Text incipit', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9164 INSERT INTO `marc_subfield_structure` VALUES ('031', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 0, '', '', '', 1, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9165 INSERT INTO `marc_subfield_structure` VALUES ('031', 'y', 'Link text', 'Link text', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9166 INSERT INTO `marc_subfield_structure` VALUES ('031', 'z', 'Public note', 'Public note', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9167 INSERT INTO `marc_subfield_structure` VALUES ('032', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', NULL, 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9168 INSERT INTO `marc_subfield_structure` VALUES ('032', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9169 INSERT INTO `marc_subfield_structure` VALUES ('032', 'a', 'Postal registration number', 'Postal registration number', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9170 INSERT INTO `marc_subfield_structure` VALUES ('032', 'b', 'Source (agency assigning number)', 'Source (agency assigning number)', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9171 INSERT INTO `marc_subfield_structure` VALUES ('033', '3', 'Materials specified', 'Materials specified', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9172 INSERT INTO `marc_subfield_structure` VALUES ('033', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9173 INSERT INTO `marc_subfield_structure` VALUES ('033', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9174 INSERT INTO `marc_subfield_structure` VALUES ('033', 'a', 'Formatted date/time', 'Formatted date/time', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9175 INSERT INTO `marc_subfield_structure` VALUES ('033', 'b', 'Geographic classification area code', 'Geographic classification area code', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9176 INSERT INTO `marc_subfield_structure` VALUES ('033', 'c', 'Geographic classification subarea code', 'Geographic classification subarea code', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9177 INSERT INTO `marc_subfield_structure` VALUES ('034', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9178 INSERT INTO `marc_subfield_structure` VALUES ('034', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9179 INSERT INTO `marc_subfield_structure` VALUES ('034', 'a', 'Category of scale', 'Category of scale', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9180 INSERT INTO `marc_subfield_structure` VALUES ('034', 'b', 'Constant ratio linear horizontal scale', 'Constant ratio linear horizontal scale', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9181 INSERT INTO `marc_subfield_structure` VALUES ('034', 'c', 'Constant ratio linear vertical scale', 'Constant ratio linear vertical scale', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9182 INSERT INTO `marc_subfield_structure` VALUES ('034', 'd', 'Coordinates--westernmost longitude', 'Coordinates--westernmost longitude', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9183 INSERT INTO `marc_subfield_structure` VALUES ('034', 'e', 'Coordinates--easternmost longitude', 'Coordinates--easternmost longitude', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9184 INSERT INTO `marc_subfield_structure` VALUES ('034', 'f', 'Coordinates--northernmost latitude', 'Coordinates--northernmost latitude', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9185 INSERT INTO `marc_subfield_structure` VALUES ('034', 'g', 'Coordinates--southernmost latitude', 'Coordinates--southernmost latitude', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9186 INSERT INTO `marc_subfield_structure` VALUES ('034', 'h', 'Angular scale', 'Angular scale', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9187 INSERT INTO `marc_subfield_structure` VALUES ('034', 'j', 'Declination--northern limit', 'Declination--northern limit', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9188 INSERT INTO `marc_subfield_structure` VALUES ('034', 'k', 'Declination--southern limit', 'Declination--southern limit', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9189 INSERT INTO `marc_subfield_structure` VALUES ('034', 'm', 'Right ascension--eastern limit', 'Right ascension--eastern limit', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9190 INSERT INTO `marc_subfield_structure` VALUES ('034', 'n', 'Right ascension--western limit', 'Right ascension--western limit', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9191 INSERT INTO `marc_subfield_structure` VALUES ('034', 'p', 'Equinox', 'Equinox', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9192 INSERT INTO `marc_subfield_structure` VALUES ('034', 's', 'G-ring latitude', 'G-ring latitude', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9193 INSERT INTO `marc_subfield_structure` VALUES ('034', 't', 'G-ring longitude', 'G-ring longitude', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9194 INSERT INTO `marc_subfield_structure` VALUES ('035', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9195 INSERT INTO `marc_subfield_structure` VALUES ('035', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9196 INSERT INTO `marc_subfield_structure` VALUES ('035', 'a', 'System control number', 'System control number', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9197 INSERT INTO `marc_subfield_structure` VALUES ('035', 'z', 'Canceled/invalid control number', 'Canceled/invalid control number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9198 INSERT INTO `marc_subfield_structure` VALUES ('036', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9199 INSERT INTO `marc_subfield_structure` VALUES ('036', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9200 INSERT INTO `marc_subfield_structure` VALUES ('036', 'a', 'Original study number', 'Original study number', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9201 INSERT INTO `marc_subfield_structure` VALUES ('036', 'b', 'Source (agency assigning number)', 'Source (agency assigning number)', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9202 INSERT INTO `marc_subfield_structure` VALUES ('037', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9203 INSERT INTO `marc_subfield_structure` VALUES ('037', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9204 INSERT INTO `marc_subfield_structure` VALUES ('037', 'a', 'Stock number', 'Stock number', 0, 0, '', 9, '', '', '', 0, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9205 INSERT INTO `marc_subfield_structure` VALUES ('037', 'b', 'Source of stock number/acquisition', 'Source of stock number/acquisition', 0, 0, '', 0, '', '', '', 0, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9206 INSERT INTO `marc_subfield_structure` VALUES ('037', 'c', 'Terms of availability', 'Terms of availability', 1, 0, '', 9, '', '', '', 0, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9207 INSERT INTO `marc_subfield_structure` VALUES ('037', 'f', 'Form of issue', 'Form of issue', 1, 0, '', 9, '', '', '', 0, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9208 INSERT INTO `marc_subfield_structure` VALUES ('037', 'g', 'Additional format characteristics', 'Additional format characteristics', 1, 0, '', 9, '', '', '', 0, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9209 INSERT INTO `marc_subfield_structure` VALUES ('037', 'n', 'Note', 'Note', 1, 0, '', 9, '', '', '', 0, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9210 INSERT INTO `marc_subfield_structure` VALUES ('038', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9211 INSERT INTO `marc_subfield_structure` VALUES ('038', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9212 INSERT INTO `marc_subfield_structure` VALUES ('038', 'a', 'Record content licensor', 'Record content licensor', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9213 INSERT INTO `marc_subfield_structure` VALUES ('039', 'a', 'Level of rules in bibliographic description', 'Level of rules in bibliographic description', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9214 INSERT INTO `marc_subfield_structure` VALUES ('039', 'b', 'Level of effort used to assign nonsubject heading access points', 'Level of effort used to assign nonsubject heading access points', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9215 INSERT INTO `marc_subfield_structure` VALUES ('039', 'c', 'Level of effort used to assign subject headings', 'Level of effort used to assign subject headings', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9216 INSERT INTO `marc_subfield_structure` VALUES ('039', 'd', 'Level of effort used to assign classification', 'Level of effort used to assign classification', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9217 INSERT INTO `marc_subfield_structure` VALUES ('039', 'e', 'Number of fixed field character positions coded', 'Number of fixed field character positions coded', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9218 INSERT INTO `marc_subfield_structure` VALUES ('040', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9219 INSERT INTO `marc_subfield_structure` VALUES ('040', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9220 INSERT INTO `marc_subfield_structure` VALUES ('040', 'a', 'Original cataloging agency', 'Original cataloging agency', 0, 0, '', 0, '', '', '', 0, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9221 INSERT INTO `marc_subfield_structure` VALUES ('040', 'b', 'Language of cataloging', 'Language of cataloging', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9222 INSERT INTO `marc_subfield_structure` VALUES ('040', 'c', 'Transcribing agency', 'Transcribing agency', 0, 0, '', 0, '', '', '', 0, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9223 INSERT INTO `marc_subfield_structure` VALUES ('040', 'd', 'Modifying agency', 'Modifying agency', 1, 0, '', 0, '', '', '', 0, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9224 INSERT INTO `marc_subfield_structure` VALUES ('040', 'e', 'Description conventions', 'Description conventions', 0, 0, '', 0, '', '', '', 0, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9225 INSERT INTO `marc_subfield_structure` VALUES ('041', '2', 'Source of code', 'Source of code', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9226 INSERT INTO `marc_subfield_structure` VALUES ('041', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9227 INSERT INTO `marc_subfield_structure` VALUES ('041', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9228 INSERT INTO `marc_subfield_structure` VALUES ('041', 'a', 'Language code of text/sound track or separate title', 'Language code of text/sound track or separate title', 1, 0, '', 0, '', '', '', 0, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9229 INSERT INTO `marc_subfield_structure` VALUES ('041', 'b', 'Language code of summary or abstract/overprinted title or subtitle', 'Language code of summary or abstract/overprinted title or subtitle', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9230 INSERT INTO `marc_subfield_structure` VALUES ('041', 'c', 'Languages of separate titles (VM) [OBSOLETE] ; Languages of available translation  (SE) [OBSOLETE]', 'Languages of separate titles (VM) [OBSOLETE] ; Languages of available translation  (SE) [OBSOLETE]', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9231 INSERT INTO `marc_subfield_structure` VALUES ('041', 'd', 'Language code of sung or spoken text', 'Language code of sung or spoken text', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9232 INSERT INTO `marc_subfield_structure` VALUES ('041', 'e', 'Language code of librettos', 'Language code of librettos', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9233 INSERT INTO `marc_subfield_structure` VALUES ('041', 'f', 'Language code of table of contents', 'Language code of table of contents', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9234 INSERT INTO `marc_subfield_structure` VALUES ('041', 'g', 'Language code of accompanying material other than librettos', 'Language code of accompanying material other than librettos', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9235 INSERT INTO `marc_subfield_structure` VALUES ('041', 'h', 'Language code of original and/or intermediate translations of text', 'Language code of original and/or intermediate translations of text', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9236 INSERT INTO `marc_subfield_structure` VALUES ('042', 'a', 'Authentication code', 'Authentication code', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9237 INSERT INTO `marc_subfield_structure` VALUES ('043', '2', 'Source of local code', 'Source of local code', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9238 INSERT INTO `marc_subfield_structure` VALUES ('043', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9239 INSERT INTO `marc_subfield_structure` VALUES ('043', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9240 INSERT INTO `marc_subfield_structure` VALUES ('043', 'a', 'Geographic area code', 'Geographic area code', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9241 INSERT INTO `marc_subfield_structure` VALUES ('043', 'b', 'Local GAC code', 'Local GAC code', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9242 INSERT INTO `marc_subfield_structure` VALUES ('043', 'c', 'ISO code', 'ISO code', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9243 INSERT INTO `marc_subfield_structure` VALUES ('044', '2', 'Source of local subentity code', 'Source of local subentity code', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9244 INSERT INTO `marc_subfield_structure` VALUES ('044', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9245 INSERT INTO `marc_subfield_structure` VALUES ('044', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9246 INSERT INTO `marc_subfield_structure` VALUES ('044', 'a', 'MARC country code', 'MARC country code', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9247 INSERT INTO `marc_subfield_structure` VALUES ('044', 'b', 'Local subentity code', 'Local subentity code', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9248 INSERT INTO `marc_subfield_structure` VALUES ('044', 'c', 'ISO country code', 'ISO country code', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9249 INSERT INTO `marc_subfield_structure` VALUES ('045', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9250 INSERT INTO `marc_subfield_structure` VALUES ('045', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9251 INSERT INTO `marc_subfield_structure` VALUES ('045', 'a', 'Time period code', 'Time period code', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9252 INSERT INTO `marc_subfield_structure` VALUES ('045', 'b', 'Formatted 9999 B.C. through C.E. time period', 'Formatted 9999 B.C. through C.E. time period', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9253 INSERT INTO `marc_subfield_structure` VALUES ('045', 'c', 'Formatted pre-9999 B.C. time period', 'Formatted pre-9999 B.C. time period', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9254 INSERT INTO `marc_subfield_structure` VALUES ('046', '2', 'Source of date', 'Source of date', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9255 INSERT INTO `marc_subfield_structure` VALUES ('046', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9256 INSERT INTO `marc_subfield_structure` VALUES ('046', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9257 INSERT INTO `marc_subfield_structure` VALUES ('046', 'a', 'Type of date code', 'Type of date code', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9258 INSERT INTO `marc_subfield_structure` VALUES ('046', 'b', 'Date 1 (B.C. date)', 'Date 1 (B.C. date)', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9259 INSERT INTO `marc_subfield_structure` VALUES ('046', 'c', 'Date 1 (C.E. date)', 'Date 1 (C.E. date)', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9260 INSERT INTO `marc_subfield_structure` VALUES ('046', 'd', 'Date 2 (B.C. date)', 'Date 2 (B.C. date)', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9261 INSERT INTO `marc_subfield_structure` VALUES ('046', 'e', 'Date 2 (C.E. date)', 'Date 2 (C.E. date)', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9262 INSERT INTO `marc_subfield_structure` VALUES ('046', 'j', 'Date resource modified', 'Date resource modified', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9263 INSERT INTO `marc_subfield_structure` VALUES ('046', 'k', 'Beginning or single date created', 'Beginning or single date created', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9264 INSERT INTO `marc_subfield_structure` VALUES ('046', 'l', 'Ending date created', 'Ending date created', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9265 INSERT INTO `marc_subfield_structure` VALUES ('046', 'm', 'Beginning of date valid', 'Beginning of date valid', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9266 INSERT INTO `marc_subfield_structure` VALUES ('046', 'n', 'End of date valid', 'End of date valid', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9267 INSERT INTO `marc_subfield_structure` VALUES ('047', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9268 INSERT INTO `marc_subfield_structure` VALUES ('047', 'a', 'Form of musical composition code', 'Form of musical composition code', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9269 INSERT INTO `marc_subfield_structure` VALUES ('048', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9270 INSERT INTO `marc_subfield_structure` VALUES ('048', 'a', 'Performer or ensemble', 'Performer or ensemble', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9271 INSERT INTO `marc_subfield_structure` VALUES ('048', 'b', 'Soloist', 'Soloist', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9272 INSERT INTO `marc_subfield_structure` VALUES ('049', 'a', 'Holding library', 'Holding library', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9273 INSERT INTO `marc_subfield_structure` VALUES ('049', 'c', 'Copy statement', 'Copy statement', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9274 INSERT INTO `marc_subfield_structure` VALUES ('049', 'd', 'Definition of bibliographic subdivisions', 'Definition of bibliographic subdivisions', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9275 INSERT INTO `marc_subfield_structure` VALUES ('049', 'l', 'Local processing data', 'Local processing data', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9276 INSERT INTO `marc_subfield_structure` VALUES ('049', 'm', 'Missing elements', 'Missing elements', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9277 INSERT INTO `marc_subfield_structure` VALUES ('049', 'n', 'Notes about holdings', 'Notes about holdings', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9278 INSERT INTO `marc_subfield_structure` VALUES ('049', 'o', 'Local processing data', 'Local processing data', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9279 INSERT INTO `marc_subfield_structure` VALUES ('049', 'p', 'Secondary bibliographic subdivision', 'Secondary bibliographic subdivision', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9280 INSERT INTO `marc_subfield_structure` VALUES ('049', 'q', 'Third bibliographic subdivision', 'Third bibliographic subdivision', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9281 INSERT INTO `marc_subfield_structure` VALUES ('049', 'r', 'Fourth bibliographic subdivision', 'Fourth bibliographic subdivision', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9282 INSERT INTO `marc_subfield_structure` VALUES ('049', 's', 'Fifth bibliographic subdivision', 'Fifth bibliographic subdivision', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9283 INSERT INTO `marc_subfield_structure` VALUES ('049', 't', 'Sixth bibliographic subdivision', 'Sixth bibliographic subdivision', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9284 INSERT INTO `marc_subfield_structure` VALUES ('049', 'u', 'Seventh bibliographic subdivision', 'Seventh bibliographic subdivision', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9285 INSERT INTO `marc_subfield_structure` VALUES ('049', 'v', 'Primary bibliographic subdivision', 'Primary bibliographic subdivision', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9286 INSERT INTO `marc_subfield_structure` VALUES ('049', 'y', 'Inclusive dates of publication or coverage', 'Inclusive dates of publication or coverage', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9287 INSERT INTO `marc_subfield_structure` VALUES ('050', '3', 'Materials specified', 'Materials specified', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9288 INSERT INTO `marc_subfield_structure` VALUES ('050', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9289 INSERT INTO `marc_subfield_structure` VALUES ('050', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9290 INSERT INTO `marc_subfield_structure` VALUES ('050', 'a', 'Classification number', 'Classification number', 1, 0, '', 0, '', '', '', 0, 0, 'ASMP_SOUND_RECORDINGS', '', '');
9291 INSERT INTO `marc_subfield_structure` VALUES ('050', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', 0, 0, 'ASMP_SOUND_RECORDINGS', '', '');
9292 INSERT INTO `marc_subfield_structure` VALUES ('050', 'd', 'Supplementary class number (MU) [OBSOLETE]', 'Supplementary class number (MU) [OBSOLETE]', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9293 INSERT INTO `marc_subfield_structure` VALUES ('051', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9294 INSERT INTO `marc_subfield_structure` VALUES ('051', 'a', 'Classification number', 'Classification number', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9295 INSERT INTO `marc_subfield_structure` VALUES ('051', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9296 INSERT INTO `marc_subfield_structure` VALUES ('051', 'c', 'Copy information', 'Copy information', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9297 INSERT INTO `marc_subfield_structure` VALUES ('052', '2', 'Code Source', 'Code Source', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9298 INSERT INTO `marc_subfield_structure` VALUES ('052', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9299 INSERT INTO `marc_subfield_structure` VALUES ('052', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9300 INSERT INTO `marc_subfield_structure` VALUES ('052', 'a', 'Geographic classification area code', 'Geographic classification area code', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9301 INSERT INTO `marc_subfield_structure` VALUES ('052', 'b', 'Geographic classification subarea code', 'Geographic classification subarea code', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9302 INSERT INTO `marc_subfield_structure` VALUES ('052', 'c', 'Subject (MP) [OBSOLETE]', 'Subject (MP) [OBSOLETE]', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9303 INSERT INTO `marc_subfield_structure` VALUES ('052', 'd', 'Populated place name', 'Populated place name', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9304 INSERT INTO `marc_subfield_structure` VALUES ('055', '2', 'Source of call/class number', 'Source of call/class number', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9305 INSERT INTO `marc_subfield_structure` VALUES ('055', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9306 INSERT INTO `marc_subfield_structure` VALUES ('055', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9307 INSERT INTO `marc_subfield_structure` VALUES ('055', 'a', 'Classification number', 'Classification number', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9308 INSERT INTO `marc_subfield_structure` VALUES ('055', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9309 INSERT INTO `marc_subfield_structure` VALUES ('060', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9310 INSERT INTO `marc_subfield_structure` VALUES ('060', 'a', 'Classification number', 'Classification number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9311 INSERT INTO `marc_subfield_structure` VALUES ('060', 'b', 'Item number', 'Item number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9312 INSERT INTO `marc_subfield_structure` VALUES ('061', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9313 INSERT INTO `marc_subfield_structure` VALUES ('061', 'a', 'Classification number', 'Classification number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9314 INSERT INTO `marc_subfield_structure` VALUES ('061', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9315 INSERT INTO `marc_subfield_structure` VALUES ('061', 'c', 'Copy information', 'Copy information', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9316 INSERT INTO `marc_subfield_structure` VALUES ('066', 'a', 'Primary G0 character set', 'Primary G0 character set', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9317 INSERT INTO `marc_subfield_structure` VALUES ('066', 'b', 'Primary G1 character set', 'Primary G1 character set', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9318 INSERT INTO `marc_subfield_structure` VALUES ('066', 'c', 'Alternate G0 or G1 character set', 'Alternate G0 or G1 character set', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9319 INSERT INTO `marc_subfield_structure` VALUES ('070', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9320 INSERT INTO `marc_subfield_structure` VALUES ('070', 'a', 'Classification number', 'Classification number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9321 INSERT INTO `marc_subfield_structure` VALUES ('070', 'b', 'Item number', 'Item number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9322 INSERT INTO `marc_subfield_structure` VALUES ('071', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9323 INSERT INTO `marc_subfield_structure` VALUES ('071', 'a', 'Classification number', 'Classification number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9324 INSERT INTO `marc_subfield_structure` VALUES ('071', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9325 INSERT INTO `marc_subfield_structure` VALUES ('071', 'c', 'Copy information', 'Copy information', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9326 INSERT INTO `marc_subfield_structure` VALUES ('072', '2', 'Source', 'Source', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9327 INSERT INTO `marc_subfield_structure` VALUES ('072', '6', 'Linkage', 'Linkage', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9328 INSERT INTO `marc_subfield_structure` VALUES ('072', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9329 INSERT INTO `marc_subfield_structure` VALUES ('072', 'a', 'Subject category code', 'Subject category code', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9330 INSERT INTO `marc_subfield_structure` VALUES ('072', 'x', 'Subject category code subdivision', 'Subject category code subdivision', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9331 INSERT INTO `marc_subfield_structure` VALUES ('074', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9332 INSERT INTO `marc_subfield_structure` VALUES ('074', 'a', 'GPO item number', 'GPO item number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9333 INSERT INTO `marc_subfield_structure` VALUES ('074', 'z', 'Canceled/invalid GPO item number', 'Canceled/invalid GPO item number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9334 INSERT INTO `marc_subfield_structure` VALUES ('080', '2', 'Edition identifier', 'Edition identifier', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9335 INSERT INTO `marc_subfield_structure` VALUES ('080', '6', 'Linkage', 'Linkage', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9336 INSERT INTO `marc_subfield_structure` VALUES ('080', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9337 INSERT INTO `marc_subfield_structure` VALUES ('080', 'a', 'Universal Decimal Classification number', 'Universal Decimal Classification number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9338 INSERT INTO `marc_subfield_structure` VALUES ('080', 'b', 'Item number', 'Item number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9339 INSERT INTO `marc_subfield_structure` VALUES ('080', 'x', 'Common auxiliary subdivision', 'Common auxiliary subdivision', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9340 INSERT INTO `marc_subfield_structure` VALUES ('082', '2', 'Edition number', 'Edition number', 0, 0, '', 0, '', '', '', NULL, 0, 'ASMP_SOUND_RECORDINGS', '', '');
9341 INSERT INTO `marc_subfield_structure` VALUES ('082', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9342 INSERT INTO `marc_subfield_structure` VALUES ('082', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9343 INSERT INTO `marc_subfield_structure` VALUES ('082', 'a', 'Classification number', 'Classification number', 1, 0, '', 0, '', '', '', NULL, 0, 'ASMP_SOUND_RECORDINGS', '', '');
9344 INSERT INTO `marc_subfield_structure` VALUES ('082', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', NULL, 0, 'ASMP_SOUND_RECORDINGS', '', '');
9345 INSERT INTO `marc_subfield_structure` VALUES ('084', '2', 'Source of number', 'Source of number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9346 INSERT INTO `marc_subfield_structure` VALUES ('084', '6', 'Linkage', 'Linkage', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9347 INSERT INTO `marc_subfield_structure` VALUES ('084', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9348 INSERT INTO `marc_subfield_structure` VALUES ('084', 'a', 'Classification number', 'Classification number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9349 INSERT INTO `marc_subfield_structure` VALUES ('084', 'b', 'Item number', 'Item number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9350 INSERT INTO `marc_subfield_structure` VALUES ('086', '2', 'Number source', 'Number source', 0, 0, NULL, 0, NULL, NULL, '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9351 INSERT INTO `marc_subfield_structure` VALUES ('086', '6', 'Linkage', 'Linkage', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9352 INSERT INTO `marc_subfield_structure` VALUES ('086', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9353 INSERT INTO `marc_subfield_structure` VALUES ('086', 'a', 'Classification number', 'Classification number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9354 INSERT INTO `marc_subfield_structure` VALUES ('086', 'z', 'Canceled/invalid classification number', 'Canceled/invalid classification number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9355 INSERT INTO `marc_subfield_structure` VALUES ('087', 'a', 'Report number [OBSOLETE, CAN/MARC]', 'Report number [OBSOLETE, CAN/MARC]', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9356 INSERT INTO `marc_subfield_structure` VALUES ('087', 'z', 'Canceled/invalid report number [OBSOLETE, CAN/MARC]', 'Canceled/invalid report number [OBSOLETE, CAN/MARC]', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9357 INSERT INTO `marc_subfield_structure` VALUES ('088', '6', 'Linkage', 'Linkage', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9358 INSERT INTO `marc_subfield_structure` VALUES ('088', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9359 INSERT INTO `marc_subfield_structure` VALUES ('088', 'a', 'Report number', 'Report number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9360 INSERT INTO `marc_subfield_structure` VALUES ('088', 'z', 'Canceled/invalid report number', 'Canceled/invalid report number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9361 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'a', 'Classification number (OCLC) (R) ; Classification number, CALL (RLIN) (NR)', 'Classification number (OCLC) (R) ; Classification number, CALL (RLIN) (NR)', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9362 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'b', 'Local cutter number (OCLC) ; Book number/undivided call number, CALL (RLIN)', 'Local cutter number (OCLC) ; Book number/undivided call number, CALL (RLIN)', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9363 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'e', 'Feature heading (OCLC)', 'Feature heading (OCLC)', 0, 0, '', 0, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
9364 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'f', 'Filing suffix (OCLC); Footnote, FNT (RLIN)', 'Filing suffix (OCLC); Footnote, FNT (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
9365 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'h', 'Output transaction history, HST (RLIN)', 'Output transaction history, HST (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
9366 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'i', 'Output transaction instruction, INS (RLIN)', 'Output transaction instruction, INS (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
9367 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'l', 'Extra card control statement, EXT (RLIN)', 'Extra card control statement, EXT (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
9368 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'n', 'Additional local notes, ANT (RLIN)', 'Additional local notes, ANT (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
9369 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'p', 'Pathfinder code, PTH (RLIN)', 'Pathfinder code, PTH (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
9370 INSERT INTO `marc_subfield_structure` VALUES ('09o', 't', 'Field suppresion, FSP (RLIN)', 'Field suppresion, FSP (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
9371 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'v', 'Volumes, VOL (RLIN)', 'Volumes, VOL (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
9372 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'y', 'Date, VOL (RLIN)', 'Date, VOL (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
9373 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'z', 'Retention, VOL (RLIN)', 'Retention, VOL (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
9374 INSERT INTO `marc_subfield_structure` VALUES ('091', 'a', 'Microfilm shelf location', 'Microfilm shelf location', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9375 INSERT INTO `marc_subfield_structure` VALUES ('092', '2', 'Edition number', 'Edition number', 0, 0, '', 0, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9376 INSERT INTO `marc_subfield_structure` VALUES ('092', 'a', 'Classification number', 'Classification number', 0, 0, '', 0, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9377 INSERT INTO `marc_subfield_structure` VALUES ('092', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9378 INSERT INTO `marc_subfield_structure` VALUES ('092', 'e', 'Feature heading', 'Feature heading', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9379 INSERT INTO `marc_subfield_structure` VALUES ('092', 'f', 'Filing suffix', 'Filing suffix', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9380 INSERT INTO `marc_subfield_structure` VALUES ('096', 'a', 'Classification number', 'Classification number', 0, 0, '', 0, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9381 INSERT INTO `marc_subfield_structure` VALUES ('096', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9382 INSERT INTO `marc_subfield_structure` VALUES ('096', 'e', 'Feature heading', 'Feature heading', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9383 INSERT INTO `marc_subfield_structure` VALUES ('096', 'f', 'Filing suffix', 'Filing suffix', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9384 INSERT INTO `marc_subfield_structure` VALUES ('098', 'a', 'Call number based on other classification scheme', 'Call number based on other classification scheme', 0, 0, '', 0, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9385 INSERT INTO `marc_subfield_structure` VALUES ('098', 'e', 'Feature heading', 'Feature heading', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9386 INSERT INTO `marc_subfield_structure` VALUES ('098', 'f', 'Filing suffix', 'Filing suffix', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9387 INSERT INTO `marc_subfield_structure` VALUES ('099', 'a', 'Classification number', 'Classification number', 1, 0, '', 0, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9388 INSERT INTO `marc_subfield_structure` VALUES ('099', 'e', 'Feature heading', 'Feature heading', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9389 INSERT INTO `marc_subfield_structure` VALUES ('099', 'f', 'Filing suffix', 'Filing suffix', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9390 INSERT INTO `marc_subfield_structure` VALUES ('100', '4', 'Relator code', 'Relator code', 1, 0, '', 1, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9391 INSERT INTO `marc_subfield_structure` VALUES ('100', '6', 'Linkage', 'Linkage', 0, 0, '', 1, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9392 INSERT INTO `marc_subfield_structure` VALUES ('100', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 1, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9393 INSERT INTO `marc_subfield_structure` VALUES ('100', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'ASMP_SOUND_RECORDINGS', '', '');
9394 INSERT INTO `marc_subfield_structure` VALUES ('100', 'a', 'Personal name', 'Personal name', 0, 0, 'biblio.author', 1, '', '', '', 0, -1, 'ASMP_SOUND_RECORDINGS', '''100b'',''100c'',''100q'',''100d'',''100e'',''110a'',''110b'',''110c'',''110d'',''110e'',''700a'',''700b'',''700c'',''700q'',''700d'',''700e'',''710a'',''710b'',''710c'',''710d'',''710e'',''720a'',''720e'',''900a''', '');
9395 INSERT INTO `marc_subfield_structure` VALUES ('100', 'b', 'Numeration', 'Numeration', 0, 0, '', 1, '', '', '', 0, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9396 INSERT INTO `marc_subfield_structure` VALUES ('100', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 1, '', '', '', 0, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9397 INSERT INTO `marc_subfield_structure` VALUES ('100', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 1, '', '', '', 0, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9398 INSERT INTO `marc_subfield_structure` VALUES ('100', 'e', 'Relator term', 'Relator term', 1, 0, '', 1, '', '', '', 0, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9399 INSERT INTO `marc_subfield_structure` VALUES ('100', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 1, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9400 INSERT INTO `marc_subfield_structure` VALUES ('100', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 1, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9401 INSERT INTO `marc_subfield_structure` VALUES ('100', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 1, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9402 INSERT INTO `marc_subfield_structure` VALUES ('100', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 1, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9403 INSERT INTO `marc_subfield_structure` VALUES ('100', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 1, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9404 INSERT INTO `marc_subfield_structure` VALUES ('100', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 1, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9405 INSERT INTO `marc_subfield_structure` VALUES ('100', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 1, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9406 INSERT INTO `marc_subfield_structure` VALUES ('100', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 1, '', '', '', 0, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9407 INSERT INTO `marc_subfield_structure` VALUES ('100', 't', 'Title of a work', 'Title of a work', 0, 0, '', 1, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9408 INSERT INTO `marc_subfield_structure` VALUES ('100', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 1, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9409 INSERT INTO `marc_subfield_structure` VALUES ('110', '4', 'Relator code', 'Relator code', 1, 0, '', 1, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9410 INSERT INTO `marc_subfield_structure` VALUES ('110', '6', 'Linkage', 'Linkage', 0, 0, '', 1, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9411 INSERT INTO `marc_subfield_structure` VALUES ('110', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 1, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9412 INSERT INTO `marc_subfield_structure` VALUES ('110', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'ASMP_SOUND_RECORDINGS', '', '');
9413 INSERT INTO `marc_subfield_structure` VALUES ('110', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 1, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9414 INSERT INTO `marc_subfield_structure` VALUES ('110', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 1, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9415 INSERT INTO `marc_subfield_structure` VALUES ('110', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 1, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9416 INSERT INTO `marc_subfield_structure` VALUES ('110', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 1, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9417 INSERT INTO `marc_subfield_structure` VALUES ('110', 'e', 'Relator term', 'Relator term', 1, 0, '', 1, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9418 INSERT INTO `marc_subfield_structure` VALUES ('110', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 1, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9419 INSERT INTO `marc_subfield_structure` VALUES ('110', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 1, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9420 INSERT INTO `marc_subfield_structure` VALUES ('110', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 1, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9421 INSERT INTO `marc_subfield_structure` VALUES ('110', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 1, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9422 INSERT INTO `marc_subfield_structure` VALUES ('110', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 1, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9423 INSERT INTO `marc_subfield_structure` VALUES ('110', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 1, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9424 INSERT INTO `marc_subfield_structure` VALUES ('110', 't', 'Title of a work', 'Title of a work', 0, 0, '', 1, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9425 INSERT INTO `marc_subfield_structure` VALUES ('110', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 1, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9426 INSERT INTO `marc_subfield_structure` VALUES ('111', '4', 'Relator code', 'Relator code', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9427 INSERT INTO `marc_subfield_structure` VALUES ('111', '6', 'Linkage', 'Linkage', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9428 INSERT INTO `marc_subfield_structure` VALUES ('111', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9429 INSERT INTO `marc_subfield_structure` VALUES ('111', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'ASMP_SOUND_RECORDINGS', '', '');
9430 INSERT INTO `marc_subfield_structure` VALUES ('111', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 1, NULL, NULL, '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9431 INSERT INTO `marc_subfield_structure` VALUES ('111', 'b', 'Number [OBSOLETE]', 'Number [OBSOLETE]', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9432 INSERT INTO `marc_subfield_structure` VALUES ('111', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 1, NULL, NULL, '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9433 INSERT INTO `marc_subfield_structure` VALUES ('111', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 1, NULL, NULL, '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9434 INSERT INTO `marc_subfield_structure` VALUES ('111', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 1, NULL, NULL, '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9435 INSERT INTO `marc_subfield_structure` VALUES ('111', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9436 INSERT INTO `marc_subfield_structure` VALUES ('111', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9437 INSERT INTO `marc_subfield_structure` VALUES ('111', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9438 INSERT INTO `marc_subfield_structure` VALUES ('111', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9439 INSERT INTO `marc_subfield_structure` VALUES ('111', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9440 INSERT INTO `marc_subfield_structure` VALUES ('111', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9441 INSERT INTO `marc_subfield_structure` VALUES ('111', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9442 INSERT INTO `marc_subfield_structure` VALUES ('111', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9443 INSERT INTO `marc_subfield_structure` VALUES ('111', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9444 INSERT INTO `marc_subfield_structure` VALUES ('130', '6', 'Linkage', 'Linkage', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9445 INSERT INTO `marc_subfield_structure` VALUES ('130', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9446 INSERT INTO `marc_subfield_structure` VALUES ('130', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'ASMP_SOUND_RECORDINGS', '', '');
9447 INSERT INTO `marc_subfield_structure` VALUES ('130', 'a', 'Uniform title', 'Uniform title', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9448 INSERT INTO `marc_subfield_structure` VALUES ('130', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9449 INSERT INTO `marc_subfield_structure` VALUES ('130', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9450 INSERT INTO `marc_subfield_structure` VALUES ('130', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9451 INSERT INTO `marc_subfield_structure` VALUES ('130', 'h', 'Medium', 'Medium', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9452 INSERT INTO `marc_subfield_structure` VALUES ('130', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9453 INSERT INTO `marc_subfield_structure` VALUES ('130', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9454 INSERT INTO `marc_subfield_structure` VALUES ('130', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9455 INSERT INTO `marc_subfield_structure` VALUES ('130', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9456 INSERT INTO `marc_subfield_structure` VALUES ('130', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9457 INSERT INTO `marc_subfield_structure` VALUES ('130', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9458 INSERT INTO `marc_subfield_structure` VALUES ('130', 'r', 'Key for music', 'Key for music', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9459 INSERT INTO `marc_subfield_structure` VALUES ('130', 's', 'Version', 'Version', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9460 INSERT INTO `marc_subfield_structure` VALUES ('130', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9461 INSERT INTO `marc_subfield_structure` VALUES ('210', '2', 'Source', 'Source', 1, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9462 INSERT INTO `marc_subfield_structure` VALUES ('210', '6', 'Linkage', 'Linkage', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9463 INSERT INTO `marc_subfield_structure` VALUES ('210', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9464 INSERT INTO `marc_subfield_structure` VALUES ('210', 'a', 'Abbreviated title', 'Abbreviated title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9465 INSERT INTO `marc_subfield_structure` VALUES ('210', 'b', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9466 INSERT INTO `marc_subfield_structure` VALUES ('211', '6', 'Linkage', 'Linkage', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9467 INSERT INTO `marc_subfield_structure` VALUES ('211', 'a', 'Acronym or shortened title', 'Acronym or shortened title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9468 INSERT INTO `marc_subfield_structure` VALUES ('212', '6', 'Linkage', 'Linkage', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9469 INSERT INTO `marc_subfield_structure` VALUES ('212', 'a', 'Variant access title', 'Variant access title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9470 INSERT INTO `marc_subfield_structure` VALUES ('214', '6', 'Linkage', 'Linkage', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9471 INSERT INTO `marc_subfield_structure` VALUES ('214', 'a', 'Augmented title', 'Augmented title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9472 INSERT INTO `marc_subfield_structure` VALUES ('222', '6', 'Linkage', 'Linkage', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9473 INSERT INTO `marc_subfield_structure` VALUES ('222', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9474 INSERT INTO `marc_subfield_structure` VALUES ('222', 'a', 'Key title', 'Key title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9475 INSERT INTO `marc_subfield_structure` VALUES ('222', 'b', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9476 INSERT INTO `marc_subfield_structure` VALUES ('240', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9477 INSERT INTO `marc_subfield_structure` VALUES ('240', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9478 INSERT INTO `marc_subfield_structure` VALUES ('240', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'ASMP_SOUND_RECORDINGS', '', '');
9479 INSERT INTO `marc_subfield_structure` VALUES ('240', 'a', 'Uniform title', 'Uniform title', 0, 0, 'biblio.unititle', 2, '', '', '', 1, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9480 INSERT INTO `marc_subfield_structure` VALUES ('240', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 2, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9481 INSERT INTO `marc_subfield_structure` VALUES ('240', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 2, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9482 INSERT INTO `marc_subfield_structure` VALUES ('240', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 2, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9483 INSERT INTO `marc_subfield_structure` VALUES ('240', 'h', 'Medium', 'Medium', 0, 0, '', 2, '', '', '', 0, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9484 INSERT INTO `marc_subfield_structure` VALUES ('240', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 2, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9485 INSERT INTO `marc_subfield_structure` VALUES ('240', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 2, '', '', '', 0, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9486 INSERT INTO `marc_subfield_structure` VALUES ('240', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 2, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9487 INSERT INTO `marc_subfield_structure` VALUES ('240', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 2, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9488 INSERT INTO `marc_subfield_structure` VALUES ('240', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 2, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9489 INSERT INTO `marc_subfield_structure` VALUES ('240', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 2, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9490 INSERT INTO `marc_subfield_structure` VALUES ('240', 'r', 'Key for music', 'Key for music', 0, 0, '', 2, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9491 INSERT INTO `marc_subfield_structure` VALUES ('240', 's', 'Version', 'Version', 0, 0, '', 2, '', '', '', 0, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9492 INSERT INTO `marc_subfield_structure` VALUES ('241', 'a', 'Romanized title', 'Romanized title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9493 INSERT INTO `marc_subfield_structure` VALUES ('241', 'h', 'Medium', 'Medium', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9494 INSERT INTO `marc_subfield_structure` VALUES ('242', '6', 'Linkage', 'Linkage', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9495 INSERT INTO `marc_subfield_structure` VALUES ('242', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9496 INSERT INTO `marc_subfield_structure` VALUES ('242', 'a', 'Title', 'Title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9497 INSERT INTO `marc_subfield_structure` VALUES ('242', 'b', 'Remainder of title', 'Remainder of title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9498 INSERT INTO `marc_subfield_structure` VALUES ('242', 'c', 'Statement of responsibility, etc', 'Statement of responsibility, etc', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9499 INSERT INTO `marc_subfield_structure` VALUES ('242', 'd', 'Designation of section (BK AM MP MU VM SE) [OBSOLETE]', 'Designation of section (BK AM MP MU VM SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9500 INSERT INTO `marc_subfield_structure` VALUES ('242', 'e', 'Name of part/section (BK AM MP MU VM SE) [OBSOLETE]', 'Name of part/section (BK AM MP MU VM SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9501 INSERT INTO `marc_subfield_structure` VALUES ('242', 'h', 'Medium', 'Medium', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9502 INSERT INTO `marc_subfield_structure` VALUES ('242', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9503 INSERT INTO `marc_subfield_structure` VALUES ('242', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9504 INSERT INTO `marc_subfield_structure` VALUES ('242', 'y', 'Language code of translated title', 'Language code of translated title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9505 INSERT INTO `marc_subfield_structure` VALUES ('243', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9506 INSERT INTO `marc_subfield_structure` VALUES ('243', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9507 INSERT INTO `marc_subfield_structure` VALUES ('243', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'ASMP_SOUND_RECORDINGS', '', '');
9508 INSERT INTO `marc_subfield_structure` VALUES ('243', 'a', 'Uniform title', 'Unifor title', 0, 0, '', 2, '', '', '', 1, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9509 INSERT INTO `marc_subfield_structure` VALUES ('243', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 2, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9510 INSERT INTO `marc_subfield_structure` VALUES ('243', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 2, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9511 INSERT INTO `marc_subfield_structure` VALUES ('243', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 2, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9512 INSERT INTO `marc_subfield_structure` VALUES ('243', 'h', 'Medium', 'Medium', 0, 0, '', 2, '', '', '', 0, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9513 INSERT INTO `marc_subfield_structure` VALUES ('243', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 2, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9514 INSERT INTO `marc_subfield_structure` VALUES ('243', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 2, '', '', '', 0, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9515 INSERT INTO `marc_subfield_structure` VALUES ('243', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 2, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9516 INSERT INTO `marc_subfield_structure` VALUES ('243', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 2, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9517 INSERT INTO `marc_subfield_structure` VALUES ('243', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 2, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9518 INSERT INTO `marc_subfield_structure` VALUES ('243', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 2, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9519 INSERT INTO `marc_subfield_structure` VALUES ('243', 'r', 'Key for music', 'Key for music', 0, 0, '', 2, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9520 INSERT INTO `marc_subfield_structure` VALUES ('243', 's', 'Version', 'Version', 0, 0, '', 2, '', '', '', 0, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9521 INSERT INTO `marc_subfield_structure` VALUES ('245', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9522 INSERT INTO `marc_subfield_structure` VALUES ('245', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9523 INSERT INTO `marc_subfield_structure` VALUES ('245', 'a', 'Title', 'Title', 0, 1, 'biblio.title', 2, '', '', '', NULL, 0, 'ASMP_SOUND_RECORDINGS', '''245b'',''245f'',''245g'',''245k'',''245n'',''245p'',''245s'',''245h'',''246i'',''246a'',''246b'',''246f'',''246g'',''246n'',''246p'',''246h'',''242a'',''242b'',''242n'',''242p'',''242h''', '');
9524 INSERT INTO `marc_subfield_structure` VALUES ('245', 'b', 'Remainder of title', 'Remainder of title', 0, 0, 'bibliosubtitle.subtitle', 2, '', '', '', NULL, 0, 'ASMP_SOUND_RECORDINGS', '', '');
9525 INSERT INTO `marc_subfield_structure` VALUES ('245', 'c', 'Statement of responsibility, etc', 'Statement of responsibility, etc', 0, 0, '', 2, '', '', '', NULL, 0, 'ASMP_SOUND_RECORDINGS', '', '');
9526 INSERT INTO `marc_subfield_structure` VALUES ('245', 'd', 'Designation of section/part/series (SE) [OBSOLETE]', 'Designation of section section/part/series: (SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9527 INSERT INTO `marc_subfield_structure` VALUES ('245', 'e', 'Name of part/section/series (SE) [OBSOLETE]', 'Name of part/section/series (SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9528 INSERT INTO `marc_subfield_structure` VALUES ('245', 'f', 'Inclusive dates', 'Inclusive dates', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9529 INSERT INTO `marc_subfield_structure` VALUES ('245', 'g', 'Bulk dates', 'Bulk dates', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9530 INSERT INTO `marc_subfield_structure` VALUES ('245', 'h', 'Medium', 'Medium', 0, 0, '', 2, '', '', '', NULL, 0, 'ASMP_SOUND_RECORDINGS', '', '');
9531 INSERT INTO `marc_subfield_structure` VALUES ('245', 'k', 'Form', 'Form', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9532 INSERT INTO `marc_subfield_structure` VALUES ('245', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9533 INSERT INTO `marc_subfield_structure` VALUES ('245', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9534 INSERT INTO `marc_subfield_structure` VALUES ('245', 's', 'Version', 'Version', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9535 INSERT INTO `marc_subfield_structure` VALUES ('246', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9536 INSERT INTO `marc_subfield_structure` VALUES ('246', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9537 INSERT INTO `marc_subfield_structure` VALUES ('246', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9538 INSERT INTO `marc_subfield_structure` VALUES ('246', 'a', 'Title proper/short title', 'Title proper/short title', 0, 0, '', 2, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9539 INSERT INTO `marc_subfield_structure` VALUES ('246', 'b', 'Remainder of title', 'Remainder of title', 0, 0, '', 2, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9540 INSERT INTO `marc_subfield_structure` VALUES ('246', 'd', 'Designation of section/part/series (SE) [OBSOLETE]', 'Designation of section section/part/series (SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9541 INSERT INTO `marc_subfield_structure` VALUES ('246', 'e', 'Name of part/section/series (SE) [OBSOLETE]', 'Name of part/section/series (SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9542 INSERT INTO `marc_subfield_structure` VALUES ('246', 'f', 'Date or sequential designation', 'Date or sequential designation', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9543 INSERT INTO `marc_subfield_structure` VALUES ('246', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9544 INSERT INTO `marc_subfield_structure` VALUES ('246', 'h', 'Medium', 'Medium', 0, 0, '', 2, '', '', '', NULL, 0, 'ASMP_SOUND_RECORDINGS', '', '');
9545 INSERT INTO `marc_subfield_structure` VALUES ('246', 'i', 'Display text', 'Display text', 0, 0, '', 2, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9546 INSERT INTO `marc_subfield_structure` VALUES ('246', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9547 INSERT INTO `marc_subfield_structure` VALUES ('246', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9548 INSERT INTO `marc_subfield_structure` VALUES ('247', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9549 INSERT INTO `marc_subfield_structure` VALUES ('247', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9550 INSERT INTO `marc_subfield_structure` VALUES ('247', 'a', 'Title', 'Title', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9551 INSERT INTO `marc_subfield_structure` VALUES ('247', 'b', 'Remainder of title', 'Remainder of title', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9552 INSERT INTO `marc_subfield_structure` VALUES ('247', 'd', 'Designation of section (SE) [OBSOLETE]', 'Designation of section (SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9553 INSERT INTO `marc_subfield_structure` VALUES ('247', 'e', 'Name of part/section (SE) [OBSOLETE]', 'Name of part/section (SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9554 INSERT INTO `marc_subfield_structure` VALUES ('247', 'f', 'Date or sequential designation', 'Date or sequential designation', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9555 INSERT INTO `marc_subfield_structure` VALUES ('247', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9556 INSERT INTO `marc_subfield_structure` VALUES ('247', 'h', 'Medium', 'Medium', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9557 INSERT INTO `marc_subfield_structure` VALUES ('247', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9558 INSERT INTO `marc_subfield_structure` VALUES ('247', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9559 INSERT INTO `marc_subfield_structure` VALUES ('247', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9560 INSERT INTO `marc_subfield_structure` VALUES ('250', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9561 INSERT INTO `marc_subfield_structure` VALUES ('250', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9562 INSERT INTO `marc_subfield_structure` VALUES ('250', 'a', 'Edition statement', 'Edition statement', 0, 0, '', 2, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9563 INSERT INTO `marc_subfield_structure` VALUES ('250', 'b', 'Remainder of edition statement', 'Remainder of edition statement', 0, 0, '', 2, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9564 INSERT INTO `marc_subfield_structure` VALUES ('254', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9565 INSERT INTO `marc_subfield_structure` VALUES ('254', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9566 INSERT INTO `marc_subfield_structure` VALUES ('254', 'a', 'Musical presentation statement', 'Musical presentation statement', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9567 INSERT INTO `marc_subfield_structure` VALUES ('255', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9568 INSERT INTO `marc_subfield_structure` VALUES ('255', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9569 INSERT INTO `marc_subfield_structure` VALUES ('255', 'a', 'Statement of scale', 'Statement of scale', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9570 INSERT INTO `marc_subfield_structure` VALUES ('255', 'b', 'Statement of projection', 'Statement of projection', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9571 INSERT INTO `marc_subfield_structure` VALUES ('255', 'c', 'Statement of coordinates', 'Statement of coordinates', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9572 INSERT INTO `marc_subfield_structure` VALUES ('255', 'd', 'Statement of zone', 'Statement of zone', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9573 INSERT INTO `marc_subfield_structure` VALUES ('255', 'e', 'Statement of equinox', 'Statement of equinox', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9574 INSERT INTO `marc_subfield_structure` VALUES ('255', 'f', 'Outer G-ring coordinate pairs', 'Outer G-ring coordinate pairs', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9575 INSERT INTO `marc_subfield_structure` VALUES ('255', 'g', 'Exclusion G-ring coordinate pairs', 'Exclusion G-ring coordinate pairs', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9576 INSERT INTO `marc_subfield_structure` VALUES ('256', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9577 INSERT INTO `marc_subfield_structure` VALUES ('256', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9578 INSERT INTO `marc_subfield_structure` VALUES ('256', 'a', 'Computer file characteristics', 'Computer file characteristics', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9579 INSERT INTO `marc_subfield_structure` VALUES ('257', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9580 INSERT INTO `marc_subfield_structure` VALUES ('257', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9581 INSERT INTO `marc_subfield_structure` VALUES ('257', 'a', 'Country of producing entity', 'Country of producing entity', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9582 INSERT INTO `marc_subfield_structure` VALUES ('258', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9583 INSERT INTO `marc_subfield_structure` VALUES ('258', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9584 INSERT INTO `marc_subfield_structure` VALUES ('258', 'a', 'Issuing jurisdiction', 'Issuing jurisdiction', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9585 INSERT INTO `marc_subfield_structure` VALUES ('258', 'b', 'Denomination', 'Denomination', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9586 INSERT INTO `marc_subfield_structure` VALUES ('260', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9587 INSERT INTO `marc_subfield_structure` VALUES ('260', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9588 INSERT INTO `marc_subfield_structure` VALUES ('260', 'a', 'Place of publication, distribution, etc', 'Place of publication, distribution, etc', 1, 0, 'biblioitems.place', 2, '', '', '', NULL, 0, 'ASMP_SOUND_RECORDINGS', '', '');
9589 INSERT INTO `marc_subfield_structure` VALUES ('260', 'b', 'Name of publisher, distributor, etc', 'Name of publisher, distributor, etc', 1, 0, 'biblioitems.publishercode', 2, '', '', '', NULL, 0, 'ASMP_SOUND_RECORDINGS', '', '');
9590 INSERT INTO `marc_subfield_structure` VALUES ('260', 'c', 'Date of copyright, publication, distribution, release, etc', 'Date of publication, distribution, etc', 1, 0, 'biblio.copyrightdate', 2, '', '', '', NULL, 0, 'ASMP_SOUND_RECORDINGS', '', '');
9591 INSERT INTO `marc_subfield_structure` VALUES ('260', 'd', 'Plate or publisher\'s number for music (Pre-AACR 2) [OBSOLETE, CAN/MARC], [LOCAL, USA]', 'Plate or publisher\'s number for music (Pre-AACR 2) [OBSOLETE, CAN/MARC], [LOCAL, USA]', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9592 INSERT INTO `marc_subfield_structure` VALUES ('260', 'e', 'Place of manufacture', 'Place of manufacture', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9593 INSERT INTO `marc_subfield_structure` VALUES ('260', 'f', 'Manufacturer', 'Manufacturer', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9594 INSERT INTO `marc_subfield_structure` VALUES ('260', 'g', 'Date of manufacture', 'Date of manufacture', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9595 INSERT INTO `marc_subfield_structure` VALUES ('260', 'k', 'Identification/manufacturer number [OBSOLETE, CAN/MARC]', 'Identification/manufacturer number [OBSOLETE, CAN/MARC]', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9596 INSERT INTO `marc_subfield_structure` VALUES ('260', 'l', 'Matrix and/or take number [OBSOLETE, CAN/MARC]', 'Matrix and/or take number [OBSOLETE, CAN/MARC]', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9597 INSERT INTO `marc_subfield_structure` VALUES ('261', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9598 INSERT INTO `marc_subfield_structure` VALUES ('261', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9599 INSERT INTO `marc_subfield_structure` VALUES ('261', 'a', 'Producing company', 'Producing company', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9600 INSERT INTO `marc_subfield_structure` VALUES ('261', 'b', 'Releasing company (primary distributor)', 'Releasing company (primary distributor)', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9601 INSERT INTO `marc_subfield_structure` VALUES ('261', 'c', 'Date of production, release, etc.', 'Date of production, release, etc.', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9602 INSERT INTO `marc_subfield_structure` VALUES ('261', 'd', 'Date of production, release, etc.', 'Date of production, release, etc.', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9603 INSERT INTO `marc_subfield_structure` VALUES ('261', 'e', 'Contractual producer', 'Contractual producer', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9604 INSERT INTO `marc_subfield_structure` VALUES ('261', 'f', 'Place of production, release, etc.', 'Place of production, release, etc.', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9605 INSERT INTO `marc_subfield_structure` VALUES ('262', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9606 INSERT INTO `marc_subfield_structure` VALUES ('262', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9607 INSERT INTO `marc_subfield_structure` VALUES ('262', 'a', 'Place of production, release, etc.', 'Place of production, release, etc.', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9608 INSERT INTO `marc_subfield_structure` VALUES ('262', 'b', 'Publisher or trade name', 'Publisher or trade name', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9609 INSERT INTO `marc_subfield_structure` VALUES ('262', 'c', 'Date of production, release, etc.', 'Date of production, release, etc.', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9610 INSERT INTO `marc_subfield_structure` VALUES ('262', 'k', 'Serial identification', 'Serial identification', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9611 INSERT INTO `marc_subfield_structure` VALUES ('262', 'l', 'Matrix and/or take number', 'Matrix and/or take number', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9612 INSERT INTO `marc_subfield_structure` VALUES ('263', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9613 INSERT INTO `marc_subfield_structure` VALUES ('263', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9614 INSERT INTO `marc_subfield_structure` VALUES ('263', 'a', 'Projected publication date', 'Projected publication date', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9615 INSERT INTO `marc_subfield_structure` VALUES ('265', '6', 'Linkage [OBSOLETE]', 'Linkage [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9616 INSERT INTO `marc_subfield_structure` VALUES ('265', 'a', 'Source for acquisition/subscription address [OBSOLETE]', 'Source for acquisition/subscription address [OBSOLETE]', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9617 INSERT INTO `marc_subfield_structure` VALUES ('270', '4', 'Relator code', 'Relator code', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9618 INSERT INTO `marc_subfield_structure` VALUES ('270', '6', 'Linkage', 'Linkage', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9619 INSERT INTO `marc_subfield_structure` VALUES ('270', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9620 INSERT INTO `marc_subfield_structure` VALUES ('270', 'a', 'Address', 'Address', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9621 INSERT INTO `marc_subfield_structure` VALUES ('270', 'b', 'City', 'City', 0, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9622 INSERT INTO `marc_subfield_structure` VALUES ('270', 'c', 'State or province', 'State or province', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9623 INSERT INTO `marc_subfield_structure` VALUES ('270', 'd', 'Country', 'Country', 0, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9624 INSERT INTO `marc_subfield_structure` VALUES ('270', 'e', 'Postal code', 'Postal code', 0, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9625 INSERT INTO `marc_subfield_structure` VALUES ('270', 'f', 'Terms preceding attention name', 'Terms preceding attention name', 0, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9626 INSERT INTO `marc_subfield_structure` VALUES ('270', 'g', 'Attention name', 'Attention name', 0, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9627 INSERT INTO `marc_subfield_structure` VALUES ('270', 'h', 'Attention position', 'Attention position', 0, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9628 INSERT INTO `marc_subfield_structure` VALUES ('270', 'i', 'Type of address', 'Type of address', 0, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9629 INSERT INTO `marc_subfield_structure` VALUES ('270', 'j', 'Specialized telephone number', 'Specialized telephone number', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9630 INSERT INTO `marc_subfield_structure` VALUES ('270', 'k', 'Telephone number', 'Telephone number', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9631 INSERT INTO `marc_subfield_structure` VALUES ('270', 'l', 'Fax number', 'Fax number', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9632 INSERT INTO `marc_subfield_structure` VALUES ('270', 'm', 'Electronic mail address', 'Electronic mail address', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9633 INSERT INTO `marc_subfield_structure` VALUES ('270', 'n', 'TDD or TTY number', 'TDD or TTY number', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9634 INSERT INTO `marc_subfield_structure` VALUES ('270', 'p', 'Contact person', 'Contact person', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9635 INSERT INTO `marc_subfield_structure` VALUES ('270', 'q', 'Title of contact person', 'Title of contact person', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9636 INSERT INTO `marc_subfield_structure` VALUES ('270', 'r', 'Hours', 'Hours', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9637 INSERT INTO `marc_subfield_structure` VALUES ('270', 'z', 'Public note', 'Public note', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9638 INSERT INTO `marc_subfield_structure` VALUES ('300', '3', 'Materials specified', 'Materials specified', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9639 INSERT INTO `marc_subfield_structure` VALUES ('300', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9640 INSERT INTO `marc_subfield_structure` VALUES ('300', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9641 INSERT INTO `marc_subfield_structure` VALUES ('300', 'a', 'Extent (number of discs/tapes followed by format)', 'Extent', 1, 1, 'biblioitems.pages', 3, '', '', '', NULL, 0, 'ASMP_SOUND_RECORDINGS', '', '');
9642 INSERT INTO `marc_subfield_structure` VALUES ('300', 'b', 'Other physical details', 'Other physical details', 0, 0, 'biblioitems.illus', 3, '', '', '', 0, 0, 'ASMP_SOUND_RECORDINGS', '', '');
9643 INSERT INTO `marc_subfield_structure` VALUES ('300', 'c', 'Dimensions', 'Dimensions', 1, 0, 'biblioitems.size', 3, '', '', '', NULL, 0, 'ASMP_SOUND_RECORDINGS', '', '');
9644 INSERT INTO `marc_subfield_structure` VALUES ('300', 'd', 'Accompanying material [OBSOLETE, CAN/MARC]', 'Accompanying material [OBSOLETE, CAN/MARC]', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9645 INSERT INTO `marc_subfield_structure` VALUES ('300', 'e', 'Accompanying material', 'Accompanying material', 0, 0, '', 3, '', '', '', NULL, 0, 'ASMP_SOUND_RECORDINGS', '', '');
9646 INSERT INTO `marc_subfield_structure` VALUES ('300', 'f', 'Type of unit', 'Type of unit', 1, 0, '', 3, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9647 INSERT INTO `marc_subfield_structure` VALUES ('300', 'g', 'Size of unit', 'Size of unit', 1, 0, '', 3, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9648 INSERT INTO `marc_subfield_structure` VALUES ('300', 'k', 'Speed [Videodiscs, pre-AACR2 records only] [OBSOLETE, CAN/MARC]', 'Speed [Videodiscs, pre-AACR2 records only] [OBSOLETE, CAN/MARC]', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9649 INSERT INTO `marc_subfield_structure` VALUES ('300', 'm', 'Identification/manufacturer number [pre-AACR2 records only] [OBSOLETE, CAN/MARC]', 'Identification/manufacturer number [pre-AACR2 records only] [OBSOLETE, CAN/MARC]', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9650 INSERT INTO `marc_subfield_structure` VALUES ('300', 'n', 'Matrix and/or take number [Sound recordings, pre-AACR2 records only] [OBSOLETE, CAN/MARC]', 'Matrix and/or take number [Sound recordings, pre-AACR2 records only] [OBSOLETE, CAN/MARC]', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9651 INSERT INTO `marc_subfield_structure` VALUES ('301', 'a', 'Extent of item', 'Extent of item', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9652 INSERT INTO `marc_subfield_structure` VALUES ('301', 'b', 'Sound characteristics', 'Sound characteristics', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9653 INSERT INTO `marc_subfield_structure` VALUES ('301', 'c', 'Color characteristics', 'Color characteristics', 0, 0, '', 3, '', '', NULL, NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9654 INSERT INTO `marc_subfield_structure` VALUES ('301', 'd', 'Dimensions', 'Dimensions', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9655 INSERT INTO `marc_subfield_structure` VALUES ('301', 'e', 'Sound characteristics', 'Sound characteristics', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9656 INSERT INTO `marc_subfield_structure` VALUES ('301', 'f', 'Speed', 'Speed', 0, 0, '', 3, '', '', NULL, NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9657 INSERT INTO `marc_subfield_structure` VALUES ('302', 'a', 'Page count', 'Page count', 0, 0, '', 3, '', '', NULL, NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9658 INSERT INTO `marc_subfield_structure` VALUES ('303', 'a', 'Unit count', 'Unit count', 0, 0, '', 3, '', '', NULL, NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9659 INSERT INTO `marc_subfield_structure` VALUES ('304', 'a', 'Linear footage', 'Linear footage', 0, 0, '', 3, '', '', NULL, NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9660 INSERT INTO `marc_subfield_structure` VALUES ('305', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9661 INSERT INTO `marc_subfield_structure` VALUES ('305', 'a', 'Extent', 'Extent', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9662 INSERT INTO `marc_subfield_structure` VALUES ('305', 'b', 'Other physical details', 'Other physical details', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9663 INSERT INTO `marc_subfield_structure` VALUES ('305', 'c', 'Dimensions', 'Dimensions', 0, 0, '', 3, '', '', NULL, NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9664 INSERT INTO `marc_subfield_structure` VALUES ('305', 'd', 'Microgroove or standard', 'Microgroove or standard', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9665 INSERT INTO `marc_subfield_structure` VALUES ('305', 'e', 'Stereophonic, monaural', 'Stereophonic, monaural', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9666 INSERT INTO `marc_subfield_structure` VALUES ('305', 'f', 'Number of tracks', 'Number of tracks', 0, 0, '', 3, '', '', NULL, NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9667 INSERT INTO `marc_subfield_structure` VALUES ('305', 'm', 'Serial identification', 'Serial identification', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9668 INSERT INTO `marc_subfield_structure` VALUES ('305', 'n', 'Matrix and/or take number', 'Matrix and/or take number', 0, 0, '', 3, '', '', NULL, NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9669 INSERT INTO `marc_subfield_structure` VALUES ('306', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9670 INSERT INTO `marc_subfield_structure` VALUES ('306', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9671 INSERT INTO `marc_subfield_structure` VALUES ('306', 'a', 'Playing time', 'Playing time', 0, 0, '', 3, '', '', '', NULL, 0, 'ASMP_SOUND_RECORDINGS', '', '');
9672 INSERT INTO `marc_subfield_structure` VALUES ('307', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9673 INSERT INTO `marc_subfield_structure` VALUES ('307', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9674 INSERT INTO `marc_subfield_structure` VALUES ('307', 'a', 'Hours', 'Hours', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9675 INSERT INTO `marc_subfield_structure` VALUES ('307', 'b', 'Additional information', 'Additional information', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9676 INSERT INTO `marc_subfield_structure` VALUES ('308', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9677 INSERT INTO `marc_subfield_structure` VALUES ('308', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9678 INSERT INTO `marc_subfield_structure` VALUES ('308', 'a', 'Number of reels', 'Number of reels', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9679 INSERT INTO `marc_subfield_structure` VALUES ('308', 'b', 'Footage', 'Footage', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9680 INSERT INTO `marc_subfield_structure` VALUES ('308', 'c', 'Sound characteristics', 'Sound characteristics', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9681 INSERT INTO `marc_subfield_structure` VALUES ('308', 'd', 'Color characteristics', 'Color characteristics', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9682 INSERT INTO `marc_subfield_structure` VALUES ('308', 'e', 'Width', 'Width', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9683 INSERT INTO `marc_subfield_structure` VALUES ('308', 'f', 'Presentation format', 'Presentation format', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9684 INSERT INTO `marc_subfield_structure` VALUES ('310', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9685 INSERT INTO `marc_subfield_structure` VALUES ('310', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9686 INSERT INTO `marc_subfield_structure` VALUES ('310', 'a', 'Current publication frequency', 'Current publication frequency', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9687 INSERT INTO `marc_subfield_structure` VALUES ('310', 'b', 'Date of current publication frequency', 'Date of current publication frequency', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9688 INSERT INTO `marc_subfield_structure` VALUES ('315', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9689 INSERT INTO `marc_subfield_structure` VALUES ('315', 'a', 'Frequency', 'Frequency', 1, 0, '', 3, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9690 INSERT INTO `marc_subfield_structure` VALUES ('315', 'b', 'Dates of frequency', 'Dates of frequency', 1, 0, '', 3, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9691 INSERT INTO `marc_subfield_structure` VALUES ('321', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9692 INSERT INTO `marc_subfield_structure` VALUES ('321', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9693 INSERT INTO `marc_subfield_structure` VALUES ('321', 'a', 'Former publication frequency', 'Former publication frequency', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9694 INSERT INTO `marc_subfield_structure` VALUES ('321', 'b', 'Former publication frequency', 'Former publication frequency', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9695 INSERT INTO `marc_subfield_structure` VALUES ('340', '3', 'Materials specified', 'Materials specified', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9696 INSERT INTO `marc_subfield_structure` VALUES ('340', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9697 INSERT INTO `marc_subfield_structure` VALUES ('340', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9698 INSERT INTO `marc_subfield_structure` VALUES ('340', 'a', 'Material base and configuration', 'Material base and configuration', 1, 0, '', 3, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9699 INSERT INTO `marc_subfield_structure` VALUES ('340', 'b', 'Dimensions', 'Dimensions', 1, 0, '', 3, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9700 INSERT INTO `marc_subfield_structure` VALUES ('340', 'c', 'Materials applied to surface', 'Materials applied to surface', 1, 0, '', 3, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9701 INSERT INTO `marc_subfield_structure` VALUES ('340', 'd', 'Information recording technique', 'Information recording technique', 1, 0, '', 3, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9702 INSERT INTO `marc_subfield_structure` VALUES ('340', 'e', 'Support', 'Support', 1, 0, '', 3, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9703 INSERT INTO `marc_subfield_structure` VALUES ('340', 'f', 'Production rate/ratio', 'Production rate/ratio', 1, 0, '', 3, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9704 INSERT INTO `marc_subfield_structure` VALUES ('340', 'h', 'Location within medium', 'Location within medium', 1, 0, '', 3, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9705 INSERT INTO `marc_subfield_structure` VALUES ('340', 'i', 'Technical specifications of medium', 'Technical specifications of medium', 1, 0, '', 3, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9706 INSERT INTO `marc_subfield_structure` VALUES ('342', '2', 'Reference method used', 'Reference method used', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9707 INSERT INTO `marc_subfield_structure` VALUES ('342', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9708 INSERT INTO `marc_subfield_structure` VALUES ('342', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9709 INSERT INTO `marc_subfield_structure` VALUES ('342', 'a', 'Name', 'Name', 1, 0, '', 3, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9710 INSERT INTO `marc_subfield_structure` VALUES ('342', 'b', 'Coordinate or distance units', 'Coordinate or distance units', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9711 INSERT INTO `marc_subfield_structure` VALUES ('342', 'c', 'Latitude resolution', 'Latitude resolution', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9712 INSERT INTO `marc_subfield_structure` VALUES ('342', 'd', 'Longitude resolution', 'Longitude resolution', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9713 INSERT INTO `marc_subfield_structure` VALUES ('342', 'e', 'Standard parallel or oblique line latitude', 'Standard parallel or oblique line latitude', 1, 0, '', 3, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9714 INSERT INTO `marc_subfield_structure` VALUES ('342', 'f', 'Oblique line longitude', 'Oblique line longitude', 1, 0, '', 3, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9715 INSERT INTO `marc_subfield_structure` VALUES ('342', 'g', 'Longitude of central meridian or projection center', 'Longitude of central meridian or projection center', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9716 INSERT INTO `marc_subfield_structure` VALUES ('342', 'h', 'Latitude of projection origin or projection center', 'Latitude of projection origin or projection center', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9717 INSERT INTO `marc_subfield_structure` VALUES ('342', 'i', 'False easting', 'False easting', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9718 INSERT INTO `marc_subfield_structure` VALUES ('342', 'j', 'False northing', 'False northing', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9719 INSERT INTO `marc_subfield_structure` VALUES ('342', 'k', 'Scale factor', 'Scale factor', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9720 INSERT INTO `marc_subfield_structure` VALUES ('342', 'l', 'Height of perspective point above surface', 'Height of perspective point above surface', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9721 INSERT INTO `marc_subfield_structure` VALUES ('342', 'm', 'Azimuthal angle', 'Azimuthal angle', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9722 INSERT INTO `marc_subfield_structure` VALUES ('342', 'n', 'Azimuth measure point longitude or straight vertical longitude from pole', 'Azimuth measure point longitude or straight vertical longitude from pole', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9723 INSERT INTO `marc_subfield_structure` VALUES ('342', 'o', 'Landsat number and path number', 'Landsat number and path number', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9724 INSERT INTO `marc_subfield_structure` VALUES ('342', 'p', 'Zone identifier', 'Zone identifier', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9725 INSERT INTO `marc_subfield_structure` VALUES ('342', 'q', 'Ellipsoid name', 'Ellipsoid name', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9726 INSERT INTO `marc_subfield_structure` VALUES ('342', 'r', 'Semi-major axis', 'Semi-major axis', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9727 INSERT INTO `marc_subfield_structure` VALUES ('342', 's', 'Denominator of flattening ratio', 'Denominator of flattening ratio', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9728 INSERT INTO `marc_subfield_structure` VALUES ('342', 't', 'Vertical resolution', 'Vertical resolution', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9729 INSERT INTO `marc_subfield_structure` VALUES ('342', 'u', 'Vertical encoding method', 'Vertical encoding method', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9730 INSERT INTO `marc_subfield_structure` VALUES ('342', 'v', 'Local planar, local, or other projection or grid description', 'Local planar, local, or other projection or grid description', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9731 INSERT INTO `marc_subfield_structure` VALUES ('342', 'w', 'Local planar or local georeference information', 'Local planar or local georeference information', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9732 INSERT INTO `marc_subfield_structure` VALUES ('343', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9733 INSERT INTO `marc_subfield_structure` VALUES ('343', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9734 INSERT INTO `marc_subfield_structure` VALUES ('343', 'a', 'Planar coordinate encoding method', 'Planar coordinate encoding method', 1, 0, '', 3, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9735 INSERT INTO `marc_subfield_structure` VALUES ('343', 'b', 'Planar distance units', 'Planar distance units', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9736 INSERT INTO `marc_subfield_structure` VALUES ('343', 'c', 'Abscissa resolution', 'Abscissa resolution', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9737 INSERT INTO `marc_subfield_structure` VALUES ('343', 'd', 'Ordinate resolution', 'Ordinate resolution', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9738 INSERT INTO `marc_subfield_structure` VALUES ('343', 'e', 'Distance resolution', 'Distance resolution', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9739 INSERT INTO `marc_subfield_structure` VALUES ('343', 'f', 'Bearing resolution', 'Bearing resolution', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9740 INSERT INTO `marc_subfield_structure` VALUES ('343', 'g', 'Bearing unit', 'Bearing unit', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9741 INSERT INTO `marc_subfield_structure` VALUES ('343', 'h', 'Bearing reference direction', 'Bearing reference direction', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9742 INSERT INTO `marc_subfield_structure` VALUES ('343', 'i', 'Bearing reference meridian', 'Bearing reference meridian', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9743 INSERT INTO `marc_subfield_structure` VALUES ('350', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9744 INSERT INTO `marc_subfield_structure` VALUES ('350', 'a', 'Price', 'Price', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9745 INSERT INTO `marc_subfield_structure` VALUES ('350', 'b', 'Form of issue', 'Form of issue', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9746 INSERT INTO `marc_subfield_structure` VALUES ('351', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9747 INSERT INTO `marc_subfield_structure` VALUES ('351', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9748 INSERT INTO `marc_subfield_structure` VALUES ('351', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9749 INSERT INTO `marc_subfield_structure` VALUES ('351', 'a', 'Organization', 'Organization', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9750 INSERT INTO `marc_subfield_structure` VALUES ('351', 'b', 'Arrangement', 'Arrangement', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9751 INSERT INTO `marc_subfield_structure` VALUES ('351', 'c', 'Hierarchical level', 'Hierarchical level', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9752 INSERT INTO `marc_subfield_structure` VALUES ('352', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9753 INSERT INTO `marc_subfield_structure` VALUES ('352', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9754 INSERT INTO `marc_subfield_structure` VALUES ('352', 'a', 'Direct reference method', 'Direct reference method', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9755 INSERT INTO `marc_subfield_structure` VALUES ('352', 'b', 'Object type', 'Object type', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9756 INSERT INTO `marc_subfield_structure` VALUES ('352', 'c', 'Object count', 'Object count', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9757 INSERT INTO `marc_subfield_structure` VALUES ('352', 'd', 'Row count', 'Row count', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9758 INSERT INTO `marc_subfield_structure` VALUES ('352', 'e', 'Column count', 'Column count', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9759 INSERT INTO `marc_subfield_structure` VALUES ('352', 'f', 'Vertical count', 'Vertical count', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9760 INSERT INTO `marc_subfield_structure` VALUES ('352', 'g', 'VPF topology level', 'VPF topology level', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9761 INSERT INTO `marc_subfield_structure` VALUES ('352', 'i', 'Indirect reference description', 'Indirect reference description', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9762 INSERT INTO `marc_subfield_structure` VALUES ('355', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9763 INSERT INTO `marc_subfield_structure` VALUES ('355', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9764 INSERT INTO `marc_subfield_structure` VALUES ('355', 'a', 'Security classification', 'Security classification', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9765 INSERT INTO `marc_subfield_structure` VALUES ('355', 'b', 'Handling instructions', 'Handling instructions', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9766 INSERT INTO `marc_subfield_structure` VALUES ('355', 'c', 'External dissemination information', 'External dissemination information', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9767 INSERT INTO `marc_subfield_structure` VALUES ('355', 'd', 'Downgrading or declassification event', 'Downgrading or declassification event', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9768 INSERT INTO `marc_subfield_structure` VALUES ('355', 'e', 'Classification system', 'Classification system', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9769 INSERT INTO `marc_subfield_structure` VALUES ('355', 'f', 'Country of origin code', 'Country of origin code', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9770 INSERT INTO `marc_subfield_structure` VALUES ('355', 'g', 'Downgrading date', 'Downgrading date', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9771 INSERT INTO `marc_subfield_structure` VALUES ('355', 'h', 'Declassification date', 'Declassification date', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9772 INSERT INTO `marc_subfield_structure` VALUES ('355', 'j', 'Authorization', 'Authorization', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9773 INSERT INTO `marc_subfield_structure` VALUES ('357', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9774 INSERT INTO `marc_subfield_structure` VALUES ('357', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9775 INSERT INTO `marc_subfield_structure` VALUES ('357', 'a', 'Originator control term', 'Originator control term', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9776 INSERT INTO `marc_subfield_structure` VALUES ('357', 'b', 'Originating agency', 'Originating agency', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9777 INSERT INTO `marc_subfield_structure` VALUES ('357', 'c', 'Authorized recipients of material', 'Authorized recipients of material', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9778 INSERT INTO `marc_subfield_structure` VALUES ('357', 'g', 'Other restrictions', 'Other restrictions', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9779 INSERT INTO `marc_subfield_structure` VALUES ('359', 'a', 'Rental price', 'Rental price', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9780 INSERT INTO `marc_subfield_structure` VALUES ('362', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9781 INSERT INTO `marc_subfield_structure` VALUES ('362', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9782 INSERT INTO `marc_subfield_structure` VALUES ('362', 'a', 'Dates of publication and/or sequential designation', 'Dates of publication and/or sequential designation', 0, 0, 'biblioitems.volumedesc', 3, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9783 INSERT INTO `marc_subfield_structure` VALUES ('362', 'z', 'Source of information', 'Source of information', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9784 INSERT INTO `marc_subfield_structure` VALUES ('365', '2', 'Source of price type code', 'Source of price type code', 0, 0, '', 9, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9785 INSERT INTO `marc_subfield_structure` VALUES ('365', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9786 INSERT INTO `marc_subfield_structure` VALUES ('365', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9787 INSERT INTO `marc_subfield_structure` VALUES ('365', 'a', 'Price type code', 'Price type code', 0, 0, '', 9, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9788 INSERT INTO `marc_subfield_structure` VALUES ('365', 'b', 'Price amount', 'Price amount', 0, 0, '', 9, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9789 INSERT INTO `marc_subfield_structure` VALUES ('365', 'c', 'Price type code', 'Price type code', 0, 0, '', 9, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9790 INSERT INTO `marc_subfield_structure` VALUES ('365', 'd', 'Unit of pricing', 'Unit of pricing', 0, 0, '', 9, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9791 INSERT INTO `marc_subfield_structure` VALUES ('365', 'e', 'Price note', 'Price note', 0, 0, '', 9, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9792 INSERT INTO `marc_subfield_structure` VALUES ('365', 'f', 'Price effective from', 'Price effective from', 0, 0, '', 9, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9793 INSERT INTO `marc_subfield_structure` VALUES ('365', 'g', 'Price effective until', 'Price effective until', 0, 0, '', 9, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9794 INSERT INTO `marc_subfield_structure` VALUES ('365', 'h', 'Tax rate 1', 'Tax rate 1', 0, 0, '', 9, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9795 INSERT INTO `marc_subfield_structure` VALUES ('365', 'i', 'Tax rate 2', 'Tax rate 2', 0, 0, '', 9, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9796 INSERT INTO `marc_subfield_structure` VALUES ('365', 'j', 'ISO country code', 'ISO country code', 0, 0, '', 9, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9797 INSERT INTO `marc_subfield_structure` VALUES ('365', 'k', 'MARC country code', 'MARC country code', 0, 0, '', 9, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9798 INSERT INTO `marc_subfield_structure` VALUES ('365', 'm', 'Identification of pricing entity', 'Identification of pricing entity', 0, 0, '', 9, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9799 INSERT INTO `marc_subfield_structure` VALUES ('366', '2', 'Source of availability status code', 'Source of availability status code', 0, 0, '', 9, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9800 INSERT INTO `marc_subfield_structure` VALUES ('366', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9801 INSERT INTO `marc_subfield_structure` VALUES ('366', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9802 INSERT INTO `marc_subfield_structure` VALUES ('366', 'a', 'Publishers\' compressed title identification', 'Publishers\' compressed title identification', 0, 0, '', 9, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9803 INSERT INTO `marc_subfield_structure` VALUES ('366', 'b', 'Detailed date of publication', 'Detailed date of publication', 0, 0, '', 9, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9804 INSERT INTO `marc_subfield_structure` VALUES ('366', 'c', 'Availability status code', 'Availability status code', 0, 0, '', 9, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9805 INSERT INTO `marc_subfield_structure` VALUES ('366', 'd', 'Expected next availability date', 'Expected next availability date', 0, 0, '', 9, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9806 INSERT INTO `marc_subfield_structure` VALUES ('366', 'e', 'Note', 'Note', 0, 0, '', 9, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9807 INSERT INTO `marc_subfield_structure` VALUES ('366', 'f', 'Publishers\' discount category', 'Publishers\' discount category', 0, 0, '', 9, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9808 INSERT INTO `marc_subfield_structure` VALUES ('366', 'g', 'Date made out of print', 'Date made out of print', 0, 0, '', 9, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9809 INSERT INTO `marc_subfield_structure` VALUES ('366', 'j', 'ISO country code', 'ISO country code', 0, 0, '', 9, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9810 INSERT INTO `marc_subfield_structure` VALUES ('366', 'k', 'MARC country code', 'MARC country code', 0, 0, '', 9, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9811 INSERT INTO `marc_subfield_structure` VALUES ('366', 'm', 'Identification of agency', 'Identification of agency', 0, 0, '', 9, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9812 INSERT INTO `marc_subfield_structure` VALUES ('400', '4', 'Relator code', 'Relator code', 1, 0, '', 4, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9813 INSERT INTO `marc_subfield_structure` VALUES ('400', '6', 'Linkage', 'Linkage', 0, 0, '', 4, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9814 INSERT INTO `marc_subfield_structure` VALUES ('400', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 4, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9815 INSERT INTO `marc_subfield_structure` VALUES ('400', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'ASMP_SOUND_RECORDINGS', '', '');
9816 INSERT INTO `marc_subfield_structure` VALUES ('400', 'a', 'Personal name', 'Personal name', 0, 0, '', 4, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9817 INSERT INTO `marc_subfield_structure` VALUES ('400', 'b', 'Numeration', 'Numeration', 0, 0, '', 4, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9818 INSERT INTO `marc_subfield_structure` VALUES ('400', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 4, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9819 INSERT INTO `marc_subfield_structure` VALUES ('400', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 4, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9820 INSERT INTO `marc_subfield_structure` VALUES ('400', 'e', 'Relator term', 'Relator term', 1, 0, '', 4, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9821 INSERT INTO `marc_subfield_structure` VALUES ('400', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 4, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9822 INSERT INTO `marc_subfield_structure` VALUES ('400', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 4, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9823 INSERT INTO `marc_subfield_structure` VALUES ('400', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 4, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9824 INSERT INTO `marc_subfield_structure` VALUES ('400', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 4, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9825 INSERT INTO `marc_subfield_structure` VALUES ('400', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 4, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9826 INSERT INTO `marc_subfield_structure` VALUES ('400', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 4, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9827 INSERT INTO `marc_subfield_structure` VALUES ('400', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 4, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9828 INSERT INTO `marc_subfield_structure` VALUES ('400', 't', 'Title of a work', 'Title of a work', 0, 0, '', 4, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9829 INSERT INTO `marc_subfield_structure` VALUES ('400', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 4, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9830 INSERT INTO `marc_subfield_structure` VALUES ('400', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 4, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9831 INSERT INTO `marc_subfield_structure` VALUES ('400', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 4, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9832 INSERT INTO `marc_subfield_structure` VALUES ('410', '4', 'Relator code', 'Relator code', 1, 0, '', 4, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9833 INSERT INTO `marc_subfield_structure` VALUES ('410', '6', 'Linkage', 'Linkage', 0, 0, '', 4, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9834 INSERT INTO `marc_subfield_structure` VALUES ('410', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 4, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9835 INSERT INTO `marc_subfield_structure` VALUES ('410', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9836 INSERT INTO `marc_subfield_structure` VALUES ('410', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 4, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9837 INSERT INTO `marc_subfield_structure` VALUES ('410', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 4, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9838 INSERT INTO `marc_subfield_structure` VALUES ('410', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 4, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9839 INSERT INTO `marc_subfield_structure` VALUES ('410', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 4, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9840 INSERT INTO `marc_subfield_structure` VALUES ('410', 'e', 'Relator term', 'Relator term', 1, 0, '', 4, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9841 INSERT INTO `marc_subfield_structure` VALUES ('410', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 4, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9842 INSERT INTO `marc_subfield_structure` VALUES ('410', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 4, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9843 INSERT INTO `marc_subfield_structure` VALUES ('410', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 4, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9844 INSERT INTO `marc_subfield_structure` VALUES ('410', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 4, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9845 INSERT INTO `marc_subfield_structure` VALUES ('410', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 4, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9846 INSERT INTO `marc_subfield_structure` VALUES ('410', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 4, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9847 INSERT INTO `marc_subfield_structure` VALUES ('410', 't', 'Title of a work', 'Title of a work', 0, 0, '', 4, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9848 INSERT INTO `marc_subfield_structure` VALUES ('410', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 4, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9849 INSERT INTO `marc_subfield_structure` VALUES ('410', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 4, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9850 INSERT INTO `marc_subfield_structure` VALUES ('410', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 4, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9851 INSERT INTO `marc_subfield_structure` VALUES ('411', '4', 'Relator code', 'Relator code', 1, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9852 INSERT INTO `marc_subfield_structure` VALUES ('411', '6', 'Linkage', 'Linkage', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9853 INSERT INTO `marc_subfield_structure` VALUES ('411', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9854 INSERT INTO `marc_subfield_structure` VALUES ('411', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'ASMP_SOUND_RECORDINGS', '', '');
9855 INSERT INTO `marc_subfield_structure` VALUES ('411', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9856 INSERT INTO `marc_subfield_structure` VALUES ('411', 'b', 'Number [OBSOLETE]', 'Number [OBSOLETE]', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9857 INSERT INTO `marc_subfield_structure` VALUES ('411', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9858 INSERT INTO `marc_subfield_structure` VALUES ('411', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9859 INSERT INTO `marc_subfield_structure` VALUES ('411', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9860 INSERT INTO `marc_subfield_structure` VALUES ('411', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9861 INSERT INTO `marc_subfield_structure` VALUES ('411', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9862 INSERT INTO `marc_subfield_structure` VALUES ('411', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9863 INSERT INTO `marc_subfield_structure` VALUES ('411', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9864 INSERT INTO `marc_subfield_structure` VALUES ('411', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9865 INSERT INTO `marc_subfield_structure` VALUES ('411', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9866 INSERT INTO `marc_subfield_structure` VALUES ('411', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9867 INSERT INTO `marc_subfield_structure` VALUES ('411', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9868 INSERT INTO `marc_subfield_structure` VALUES ('411', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9869 INSERT INTO `marc_subfield_structure` VALUES ('411', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 4, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9870 INSERT INTO `marc_subfield_structure` VALUES ('411', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 4, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9871 INSERT INTO `marc_subfield_structure` VALUES ('440', '6', 'Linkage', 'Linkage', 0, 0, '', 4, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9872 INSERT INTO `marc_subfield_structure` VALUES ('440', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 4, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9873 INSERT INTO `marc_subfield_structure` VALUES ('440', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'ASMP_SOUND_RECORDINGS', '', '');
9874 INSERT INTO `marc_subfield_structure` VALUES ('440', 'a', 'Title', 'Title', 0, 0, 'biblio.seriestitle', 4, '', '', '', NULL, 0, 'ASMP_SOUND_RECORDINGS', '', '');
9875 INSERT INTO `marc_subfield_structure` VALUES ('440', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, 'biblioitems.number', 4, '', '', '', NULL, 0, 'ASMP_SOUND_RECORDINGS', '', '');
9876 INSERT INTO `marc_subfield_structure` VALUES ('440', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 4, '', '', '', NULL, 0, 'ASMP_SOUND_RECORDINGS', '', '');
9877 INSERT INTO `marc_subfield_structure` VALUES ('440', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, 'biblioitems.volume', 4, '', '', '', NULL, 0, 'ASMP_SOUND_RECORDINGS', '', '');
9878 INSERT INTO `marc_subfield_structure` VALUES ('440', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 4, '', '', '', NULL, 0, 'ASMP_SOUND_RECORDINGS', '', '');
9879 INSERT INTO `marc_subfield_structure` VALUES ('490', '6', 'Linkage', 'Linkage', 0, 0, '', 4, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9880 INSERT INTO `marc_subfield_structure` VALUES ('490', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 4, '', '', NULL, NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9881 INSERT INTO `marc_subfield_structure` VALUES ('490', 'a', 'Series statement', 'Series statement', 1, 0, '', 4, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9882 INSERT INTO `marc_subfield_structure` VALUES ('490', 'l', 'Library of Congress call number', 'Library of Congress call number', 0, 0, '', 4, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9883 INSERT INTO `marc_subfield_structure` VALUES ('490', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 1, 0, '', 4, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9884 INSERT INTO `marc_subfield_structure` VALUES ('490', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 4, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9885 INSERT INTO `marc_subfield_structure` VALUES ('500', '3', 'Materials specified', 'Materials specified', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9886 INSERT INTO `marc_subfield_structure` VALUES ('500', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9887 INSERT INTO `marc_subfield_structure` VALUES ('500', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9888 INSERT INTO `marc_subfield_structure` VALUES ('500', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9889 INSERT INTO `marc_subfield_structure` VALUES ('500', 'a', 'General note', 'General note', 0, 0, 'biblio.notes', 5, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9890 INSERT INTO `marc_subfield_structure` VALUES ('500', 'l', 'Library of Congress call number (SE) [OBSOLETE]', 'Library of Congress call number (SE) [OBSOLETE]', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9891 INSERT INTO `marc_subfield_structure` VALUES ('500', 'n', 'n (RLIN) [OBSOLETE]', 'n (RLIN) [OBSOLETE]', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9892 INSERT INTO `marc_subfield_structure` VALUES ('500', 'x', 'International Standard Serial Number (SE) [OBSOLETE]', 'International Standard Serial Number (SE) [OBSOLETE]', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9893 INSERT INTO `marc_subfield_structure` VALUES ('500', 'z', 'Source of note information (AM SE) [OBSOLETE]', 'Source of note information (AM SE) [OBSOLETE]', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9894 INSERT INTO `marc_subfield_structure` VALUES ('501', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9895 INSERT INTO `marc_subfield_structure` VALUES ('501', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9896 INSERT INTO `marc_subfield_structure` VALUES ('501', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9897 INSERT INTO `marc_subfield_structure` VALUES ('501', 'a', 'With note', 'With note', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9898 INSERT INTO `marc_subfield_structure` VALUES ('502', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9899 INSERT INTO `marc_subfield_structure` VALUES ('502', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9900 INSERT INTO `marc_subfield_structure` VALUES ('502', 'a', 'Dissertation note', 'Dissertation note', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9901 INSERT INTO `marc_subfield_structure` VALUES ('503', '8', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9902 INSERT INTO `marc_subfield_structure` VALUES ('503', 'a', 'Bibliographic history note', 'Bibliographic history note', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9903 INSERT INTO `marc_subfield_structure` VALUES ('504', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9904 INSERT INTO `marc_subfield_structure` VALUES ('504', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9905 INSERT INTO `marc_subfield_structure` VALUES ('504', 'a', 'Bibliography, etc', 'Bibliography, etc', 0, 0, '', 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9906 INSERT INTO `marc_subfield_structure` VALUES ('504', 'b', 'Number of references', 'Number of references', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9907 INSERT INTO `marc_subfield_structure` VALUES ('505', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9908 INSERT INTO `marc_subfield_structure` VALUES ('505', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9909 INSERT INTO `marc_subfield_structure` VALUES ('505', 'a', 'Formatted contents note', 'Formatted contents note', 0, 0, '', 5, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9910 INSERT INTO `marc_subfield_structure` VALUES ('505', 'g', 'Miscellaneous information', 'Miscellaneous information', 1, 0, '', 5, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9911 INSERT INTO `marc_subfield_structure` VALUES ('505', 'r', 'Statement of responsibility', 'Statement of responsibility', 1, 0, '', 5, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9912 INSERT INTO `marc_subfield_structure` VALUES ('505', 't', 'Title', 'Title', 1, 0, '', 5, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9913 INSERT INTO `marc_subfield_structure` VALUES ('505', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9914 INSERT INTO `marc_subfield_structure` VALUES ('506', '3', 'Materials specified', 'Materials specified', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9915 INSERT INTO `marc_subfield_structure` VALUES ('506', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9916 INSERT INTO `marc_subfield_structure` VALUES ('506', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9917 INSERT INTO `marc_subfield_structure` VALUES ('506', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9918 INSERT INTO `marc_subfield_structure` VALUES ('506', 'a', 'Terms governing access', 'Terms governing access', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9919 INSERT INTO `marc_subfield_structure` VALUES ('506', 'b', 'Jurisdiction', 'Jurisdiction', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9920 INSERT INTO `marc_subfield_structure` VALUES ('506', 'c', 'Physical access provisions', 'Physical access provisions', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9921 INSERT INTO `marc_subfield_structure` VALUES ('506', 'd', 'Authorized users', 'Authorized users', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9922 INSERT INTO `marc_subfield_structure` VALUES ('506', 'e', 'Authorization', 'Authorization', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9923 INSERT INTO `marc_subfield_structure` VALUES ('506', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9924 INSERT INTO `marc_subfield_structure` VALUES ('507', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9925 INSERT INTO `marc_subfield_structure` VALUES ('507', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9926 INSERT INTO `marc_subfield_structure` VALUES ('507', 'a', 'Representative fraction of scale note', 'Representative fraction of scale note', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9927 INSERT INTO `marc_subfield_structure` VALUES ('507', 'b', 'Remainder of scale note', 'Remainder of scale note', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9928 INSERT INTO `marc_subfield_structure` VALUES ('508', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9929 INSERT INTO `marc_subfield_structure` VALUES ('508', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9930 INSERT INTO `marc_subfield_structure` VALUES ('508', 'a', 'Creation/production credits note', 'Creation/production credits note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9931 INSERT INTO `marc_subfield_structure` VALUES ('509', 'a', 'Informal Notes', 'Informal Notes', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9932 INSERT INTO `marc_subfield_structure` VALUES ('510', '3', 'Materials specified', 'Materials specified', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9933 INSERT INTO `marc_subfield_structure` VALUES ('510', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9934 INSERT INTO `marc_subfield_structure` VALUES ('510', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9935 INSERT INTO `marc_subfield_structure` VALUES ('510', 'a', 'Name of source', 'Name of source', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9936 INSERT INTO `marc_subfield_structure` VALUES ('510', 'b', 'Coverage of source', 'Coverage of source', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9937 INSERT INTO `marc_subfield_structure` VALUES ('510', 'c', 'Location within source', 'Location within source', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9938 INSERT INTO `marc_subfield_structure` VALUES ('510', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9939 INSERT INTO `marc_subfield_structure` VALUES ('511', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9940 INSERT INTO `marc_subfield_structure` VALUES ('511', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9941 INSERT INTO `marc_subfield_structure` VALUES ('511', 'a', 'Participant or performer note', 'Participant or performer note', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9942 INSERT INTO `marc_subfield_structure` VALUES ('512', '6', 'Linkage', 'Linkage', 0, 0, '', -1, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9943 INSERT INTO `marc_subfield_structure` VALUES ('512', 'a', 'Earlier or later volumes separately cataloged note', 'Earlier or later volumes separately cataloged note', 0, 0, '', -1, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9944 INSERT INTO `marc_subfield_structure` VALUES ('513', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9945 INSERT INTO `marc_subfield_structure` VALUES ('513', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9946 INSERT INTO `marc_subfield_structure` VALUES ('513', 'a', 'Type of report', 'Type of report', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9947 INSERT INTO `marc_subfield_structure` VALUES ('513', 'b', 'Period covered', 'Period covered', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9948 INSERT INTO `marc_subfield_structure` VALUES ('514', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9949 INSERT INTO `marc_subfield_structure` VALUES ('514', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9950 INSERT INTO `marc_subfield_structure` VALUES ('514', 'a', 'Attribute accuracy report', 'Attribute accuracy report', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9951 INSERT INTO `marc_subfield_structure` VALUES ('514', 'b', 'Attribute accuracy value', 'Attribute accuracy value', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9952 INSERT INTO `marc_subfield_structure` VALUES ('514', 'c', 'Attribute accuracy explanation', 'Attribute accuracy explanation', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9953 INSERT INTO `marc_subfield_structure` VALUES ('514', 'd', 'Logical consistency report', 'Logical consistency report', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9954 INSERT INTO `marc_subfield_structure` VALUES ('514', 'e', 'Completeness report', 'Completeness report', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9955 INSERT INTO `marc_subfield_structure` VALUES ('514', 'f', 'Horizontal position accuracy report', 'Horizontal position accuracy report', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9956 INSERT INTO `marc_subfield_structure` VALUES ('514', 'g', 'Horizontal position accuracy value', 'Horizontal position accuracy value', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9957 INSERT INTO `marc_subfield_structure` VALUES ('514', 'h', 'Horizontal position accuracy explanation', 'Horizontal position accuracy explanation', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9958 INSERT INTO `marc_subfield_structure` VALUES ('514', 'i', 'Vertical positional accuracy report', 'Vertical positional accuracy report', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9959 INSERT INTO `marc_subfield_structure` VALUES ('514', 'j', 'Vertical positional accuracy value', 'Vertical positional accuracy value', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9960 INSERT INTO `marc_subfield_structure` VALUES ('514', 'k', 'Vertical positional accuracy explanation', 'Vertical positional accuracy explanation', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9961 INSERT INTO `marc_subfield_structure` VALUES ('514', 'm', 'Cloud cover', 'Cloud cover', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9962 INSERT INTO `marc_subfield_structure` VALUES ('514', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9963 INSERT INTO `marc_subfield_structure` VALUES ('514', 'z', 'Display note', 'Display note', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9964 INSERT INTO `marc_subfield_structure` VALUES ('515', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9965 INSERT INTO `marc_subfield_structure` VALUES ('515', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9966 INSERT INTO `marc_subfield_structure` VALUES ('515', 'a', 'Numbering peculiarities note', 'Numbering peculiarities note', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9967 INSERT INTO `marc_subfield_structure` VALUES ('515', 'z', 'Source of note information (SE) [OBSOLETE]', 'Source of note information (SE) [OBSOLETE]', 0, 0, '', -1, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9968 INSERT INTO `marc_subfield_structure` VALUES ('516', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9969 INSERT INTO `marc_subfield_structure` VALUES ('516', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9970 INSERT INTO `marc_subfield_structure` VALUES ('516', 'a', 'Type of computer file or data note', 'Type of computer file or data note', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9971 INSERT INTO `marc_subfield_structure` VALUES ('517', 'a', 'Different formats', 'Different formats', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9972 INSERT INTO `marc_subfield_structure` VALUES ('517', 'b', 'Content descriptors', 'Content descriptors', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9973 INSERT INTO `marc_subfield_structure` VALUES ('517', 'c', 'Additional animation techniques', 'Additional animation techniques', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9974 INSERT INTO `marc_subfield_structure` VALUES ('518', '3', 'Materials specified', 'Materials specified', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9975 INSERT INTO `marc_subfield_structure` VALUES ('518', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9976 INSERT INTO `marc_subfield_structure` VALUES ('518', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9977 INSERT INTO `marc_subfield_structure` VALUES ('518', 'a', 'Date/time and place of an event note', 'Date/time and place of an event note', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9978 INSERT INTO `marc_subfield_structure` VALUES ('520', '3', 'Materials specified', 'Materials specified', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9979 INSERT INTO `marc_subfield_structure` VALUES ('520', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9980 INSERT INTO `marc_subfield_structure` VALUES ('520', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9981 INSERT INTO `marc_subfield_structure` VALUES ('520', 'a', 'Summary, etc', 'Summary, etc', 0, 0, 'biblio.abstract', 5, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9982 INSERT INTO `marc_subfield_structure` VALUES ('520', 'b', 'Expansion of summary note', 'Expansion of summary note', 0, 0, '', 5, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9983 INSERT INTO `marc_subfield_structure` VALUES ('520', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9984 INSERT INTO `marc_subfield_structure` VALUES ('520', 'z', 'Source of note information [OBSOLETE]', 'Source of note information [OBSOLETE]', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9985 INSERT INTO `marc_subfield_structure` VALUES ('521', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9986 INSERT INTO `marc_subfield_structure` VALUES ('521', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9987 INSERT INTO `marc_subfield_structure` VALUES ('521', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9988 INSERT INTO `marc_subfield_structure` VALUES ('521', 'a', 'Target audience note', 'Target audience note', 1, 0, NULL, 5, NULL, NULL, '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9989 INSERT INTO `marc_subfield_structure` VALUES ('521', 'b', 'Source', 'Source', 0, 0, NULL, 5, NULL, NULL, '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9990 INSERT INTO `marc_subfield_structure` VALUES ('522', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9991 INSERT INTO `marc_subfield_structure` VALUES ('522', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9992 INSERT INTO `marc_subfield_structure` VALUES ('522', 'a', 'Geographic coverage note', 'Geographic coverage note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
9993 INSERT INTO `marc_subfield_structure` VALUES ('523', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9994 INSERT INTO `marc_subfield_structure` VALUES ('523', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9995 INSERT INTO `marc_subfield_structure` VALUES ('523', 'a', 'Time period of content note', 'Time period of content note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9996 INSERT INTO `marc_subfield_structure` VALUES ('524', '2', 'Source of schema used', 'Source of schema used', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9997 INSERT INTO `marc_subfield_structure` VALUES ('524', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9998 INSERT INTO `marc_subfield_structure` VALUES ('524', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
9999 INSERT INTO `marc_subfield_structure` VALUES ('524', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10000 INSERT INTO `marc_subfield_structure` VALUES ('524', 'a', 'Preferred citation of described materials note', 'Preferred citation of described materials note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10001 INSERT INTO `marc_subfield_structure` VALUES ('525', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10002 INSERT INTO `marc_subfield_structure` VALUES ('525', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10003 INSERT INTO `marc_subfield_structure` VALUES ('525', 'a', 'Supplement note', 'Supplement note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10004 INSERT INTO `marc_subfield_structure` VALUES ('525', 'z', 'Source of note information (SE) [OBSOLETE]', 'Source of note information (SE) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10005 INSERT INTO `marc_subfield_structure` VALUES ('526', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10006 INSERT INTO `marc_subfield_structure` VALUES ('526', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10007 INSERT INTO `marc_subfield_structure` VALUES ('526', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10008 INSERT INTO `marc_subfield_structure` VALUES ('526', 'a', 'Program name', 'Program name', 0, 0, '', 5, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10009 INSERT INTO `marc_subfield_structure` VALUES ('526', 'b', 'Interest level', 'Interest level', 0, 0, '', 5, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10010 INSERT INTO `marc_subfield_structure` VALUES ('526', 'c', 'Reading level', 'Reading level', 0, 0, '', 5, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10011 INSERT INTO `marc_subfield_structure` VALUES ('526', 'd', 'Title point value', 'Title point value', 0, 0, '', 5, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10012 INSERT INTO `marc_subfield_structure` VALUES ('526', 'i', 'Display text', 'Display text', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10013 INSERT INTO `marc_subfield_structure` VALUES ('526', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 5, '', '', '', NULL, 6, 'ASMP_SOUND_RECORDINGS', '', '');
10014 INSERT INTO `marc_subfield_structure` VALUES ('526', 'z', 'Public note', 'Public note', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10015 INSERT INTO `marc_subfield_structure` VALUES ('527', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10016 INSERT INTO `marc_subfield_structure` VALUES ('527', 'a', 'Censorship note', 'Censorship note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10017 INSERT INTO `marc_subfield_structure` VALUES ('530', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10018 INSERT INTO `marc_subfield_structure` VALUES ('530', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10019 INSERT INTO `marc_subfield_structure` VALUES ('530', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10020 INSERT INTO `marc_subfield_structure` VALUES ('530', 'a', 'Additional physical form available note', 'Additional physical form available note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10021 INSERT INTO `marc_subfield_structure` VALUES ('530', 'b', 'Availability source', 'Availability source', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10022 INSERT INTO `marc_subfield_structure` VALUES ('530', 'c', 'Availability conditions', 'Availability conditions', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10023 INSERT INTO `marc_subfield_structure` VALUES ('530', 'd', 'Order number', 'Order number', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10024 INSERT INTO `marc_subfield_structure` VALUES ('530', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, NULL, 5, NULL, NULL, '', 1, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10025 INSERT INTO `marc_subfield_structure` VALUES ('530', 'z', 'Source of note information (AM CF VM SE) [OBSOLETE]', 'Source of note information (AM CF VM SE) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10026 INSERT INTO `marc_subfield_structure` VALUES ('533', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10027 INSERT INTO `marc_subfield_structure` VALUES ('533', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10028 INSERT INTO `marc_subfield_structure` VALUES ('533', '7', 'Fixed-length data elements of reproduction', 'Fixed-length data elements of reproduction', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10029 INSERT INTO `marc_subfield_structure` VALUES ('533', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10030 INSERT INTO `marc_subfield_structure` VALUES ('533', 'a', 'Type of reproduction', 'Type of reproduction', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10031 INSERT INTO `marc_subfield_structure` VALUES ('533', 'b', 'Place of reproduction', 'Place of reproduction', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10032 INSERT INTO `marc_subfield_structure` VALUES ('533', 'c', 'Agency responsible for reproduction', 'Agency responsible for reproduction', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10033 INSERT INTO `marc_subfield_structure` VALUES ('533', 'd', 'Date of reproduction', 'Date of reproduction', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10034 INSERT INTO `marc_subfield_structure` VALUES ('533', 'e', 'Physical description of reproduction', 'Physical description of reproduction', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10035 INSERT INTO `marc_subfield_structure` VALUES ('533', 'f', 'Series statement of reproduction', 'Series statement of reproduction', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10036 INSERT INTO `marc_subfield_structure` VALUES ('533', 'm', 'Dates and/or sequential designation of issues reproduced', 'Dates and/or sequential designation of issues reproduced', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10037 INSERT INTO `marc_subfield_structure` VALUES ('533', 'n', 'Note about reproduction', 'Note about reproduction', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10038 INSERT INTO `marc_subfield_structure` VALUES ('534', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10039 INSERT INTO `marc_subfield_structure` VALUES ('534', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10040 INSERT INTO `marc_subfield_structure` VALUES ('534', 'a', 'Main entry of original', 'Main entry of original', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10041 INSERT INTO `marc_subfield_structure` VALUES ('534', 'b', 'Edition statement of original', 'Edition statement of original', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10042 INSERT INTO `marc_subfield_structure` VALUES ('534', 'c', 'Publication, distribution, etc', 'Publication, distribution, etc', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10043 INSERT INTO `marc_subfield_structure` VALUES ('534', 'e', 'Physical description, etc', 'Physical description, etc', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10044 INSERT INTO `marc_subfield_structure` VALUES ('534', 'f', 'Series statement of original', 'Series statement of original', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10045 INSERT INTO `marc_subfield_structure` VALUES ('534', 'k', 'Key title of original', 'Key title of original', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10046 INSERT INTO `marc_subfield_structure` VALUES ('534', 'l', 'Location of original', 'Location of original', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10047 INSERT INTO `marc_subfield_structure` VALUES ('534', 'm', 'Material specific details', 'Material specific details', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10048 INSERT INTO `marc_subfield_structure` VALUES ('534', 'n', 'Note about original', 'Note about original', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10049 INSERT INTO `marc_subfield_structure` VALUES ('534', 'p', 'Introductory phrase', 'Introductory phrase', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10050 INSERT INTO `marc_subfield_structure` VALUES ('534', 't', 'Title statement of original', 'Title statement of original', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10051 INSERT INTO `marc_subfield_structure` VALUES ('534', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10052 INSERT INTO `marc_subfield_structure` VALUES ('534', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10053 INSERT INTO `marc_subfield_structure` VALUES ('535', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10054 INSERT INTO `marc_subfield_structure` VALUES ('535', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10055 INSERT INTO `marc_subfield_structure` VALUES ('535', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10056 INSERT INTO `marc_subfield_structure` VALUES ('535', 'a', 'Custodian', 'Custodian', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10057 INSERT INTO `marc_subfield_structure` VALUES ('535', 'b', 'Postal address', 'Postal address', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10058 INSERT INTO `marc_subfield_structure` VALUES ('535', 'c', 'Country', 'Country', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10059 INSERT INTO `marc_subfield_structure` VALUES ('535', 'd', 'Telecommunications address', 'Telecommunications address', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10060 INSERT INTO `marc_subfield_structure` VALUES ('535', 'g', 'Repository location code', 'Repository location code', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10061 INSERT INTO `marc_subfield_structure` VALUES ('536', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10062 INSERT INTO `marc_subfield_structure` VALUES ('536', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10063 INSERT INTO `marc_subfield_structure` VALUES ('536', 'a', 'Text of note', 'Text of note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10064 INSERT INTO `marc_subfield_structure` VALUES ('536', 'b', 'Contract number', 'Contract number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10065 INSERT INTO `marc_subfield_structure` VALUES ('536', 'c', 'Grant number', 'Grant number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10066 INSERT INTO `marc_subfield_structure` VALUES ('536', 'd', 'Undifferentiated number', 'Undifferentiated number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10067 INSERT INTO `marc_subfield_structure` VALUES ('536', 'e', 'Program element number', 'Program element number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10068 INSERT INTO `marc_subfield_structure` VALUES ('536', 'f', 'Project number', 'Project number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10069 INSERT INTO `marc_subfield_structure` VALUES ('536', 'g', 'Task number', 'Task number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10070 INSERT INTO `marc_subfield_structure` VALUES ('536', 'h', 'Work unit number', 'Work unit number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10071 INSERT INTO `marc_subfield_structure` VALUES ('537', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10072 INSERT INTO `marc_subfield_structure` VALUES ('537', 'a', 'Source of data note', 'Source of data note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10073 INSERT INTO `marc_subfield_structure` VALUES ('538', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10074 INSERT INTO `marc_subfield_structure` VALUES ('538', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10075 INSERT INTO `marc_subfield_structure` VALUES ('538', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10076 INSERT INTO `marc_subfield_structure` VALUES ('538', 'a', 'System details note', 'System details note', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10077 INSERT INTO `marc_subfield_structure` VALUES ('538', 'i', 'Display text', 'Display text', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10078 INSERT INTO `marc_subfield_structure` VALUES ('538', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10079 INSERT INTO `marc_subfield_structure` VALUES ('540', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10080 INSERT INTO `marc_subfield_structure` VALUES ('540', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10081 INSERT INTO `marc_subfield_structure` VALUES ('540', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10082 INSERT INTO `marc_subfield_structure` VALUES ('540', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10083 INSERT INTO `marc_subfield_structure` VALUES ('540', 'a', 'Terms governing use and reproduction', 'Terms governing use and reproduction', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10084 INSERT INTO `marc_subfield_structure` VALUES ('540', 'b', 'Jurisdiction', 'Jurisdiction', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10085 INSERT INTO `marc_subfield_structure` VALUES ('540', 'c', 'Authorization', 'Authorization', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10086 INSERT INTO `marc_subfield_structure` VALUES ('540', 'd', 'Authorized users', 'Authorized users', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10087 INSERT INTO `marc_subfield_structure` VALUES ('540', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10088 INSERT INTO `marc_subfield_structure` VALUES ('541', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10089 INSERT INTO `marc_subfield_structure` VALUES ('541', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10090 INSERT INTO `marc_subfield_structure` VALUES ('541', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10091 INSERT INTO `marc_subfield_structure` VALUES ('541', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10092 INSERT INTO `marc_subfield_structure` VALUES ('541', 'a', 'Source of acquisition', 'Source of acquisition', 0, 0, '', 9, '', '', '', NULL, 1, 'ASMP_SOUND_RECORDINGS', '', '');
10093 INSERT INTO `marc_subfield_structure` VALUES ('541', 'b', 'Address', 'Address', 0, 0, '', 9, '', '', '', NULL, 1, 'ASMP_SOUND_RECORDINGS', '', '');
10094 INSERT INTO `marc_subfield_structure` VALUES ('541', 'c', 'Method of acquisition', 'Method of acquisition', 0, 0, '', 9, '', '', '', NULL, 1, 'ASMP_SOUND_RECORDINGS', '', '');
10095 INSERT INTO `marc_subfield_structure` VALUES ('541', 'd', 'Date of acquisition', 'Date of acquisition', 0, 0, '', 9, '', '', '', NULL, 1, 'ASMP_SOUND_RECORDINGS', '', '');
10096 INSERT INTO `marc_subfield_structure` VALUES ('541', 'e', 'Accession number', 'Accession number', 0, 0, '', 9, '', '', '', NULL, 1, 'ASMP_SOUND_RECORDINGS', '', '');
10097 INSERT INTO `marc_subfield_structure` VALUES ('541', 'f', 'Owner', 'Owner', 0, 0, '', 9, '', '', '', NULL, 1, 'ASMP_SOUND_RECORDINGS', '', '');
10098 INSERT INTO `marc_subfield_structure` VALUES ('541', 'h', 'Purchase price', 'Purchase price', 0, 0, '', 9, '', '', '', NULL, 1, 'ASMP_SOUND_RECORDINGS', '', '');
10099 INSERT INTO `marc_subfield_structure` VALUES ('541', 'n', 'Extent', 'Extent', 0, 0, '', 9, '', '', '', NULL, 1, 'ASMP_SOUND_RECORDINGS', '', '');
10100 INSERT INTO `marc_subfield_structure` VALUES ('541', 'o', 'Type of unit', 'Type of unit', 1, 0, '', 9, '', '', '', NULL, 1, 'ASMP_SOUND_RECORDINGS', '', '');
10101 INSERT INTO `marc_subfield_structure` VALUES ('543', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10102 INSERT INTO `marc_subfield_structure` VALUES ('543', 'a', 'Solicitation information note', 'Solicitation information note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10103 INSERT INTO `marc_subfield_structure` VALUES ('544', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10104 INSERT INTO `marc_subfield_structure` VALUES ('544', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10105 INSERT INTO `marc_subfield_structure` VALUES ('544', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10106 INSERT INTO `marc_subfield_structure` VALUES ('544', 'a', 'Custodian', 'Custodian', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10107 INSERT INTO `marc_subfield_structure` VALUES ('544', 'b', 'Address', 'Address', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10108 INSERT INTO `marc_subfield_structure` VALUES ('544', 'c', 'Country', 'Country', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10109 INSERT INTO `marc_subfield_structure` VALUES ('544', 'd', 'Title', 'Title', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10110 INSERT INTO `marc_subfield_structure` VALUES ('544', 'e', 'Provenance', 'Provenance', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10111 INSERT INTO `marc_subfield_structure` VALUES ('544', 'n', 'Note', 'Note', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10112 INSERT INTO `marc_subfield_structure` VALUES ('545', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10113 INSERT INTO `marc_subfield_structure` VALUES ('545', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10114 INSERT INTO `marc_subfield_structure` VALUES ('545', 'a', 'Biographical or historical note', 'Biographical or historical note', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10115 INSERT INTO `marc_subfield_structure` VALUES ('545', 'b', 'Expansion', 'Expansion', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10116 INSERT INTO `marc_subfield_structure` VALUES ('545', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10117 INSERT INTO `marc_subfield_structure` VALUES ('546', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10118 INSERT INTO `marc_subfield_structure` VALUES ('546', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10119 INSERT INTO `marc_subfield_structure` VALUES ('546', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10120 INSERT INTO `marc_subfield_structure` VALUES ('546', 'a', 'Language note', 'Language note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10121 INSERT INTO `marc_subfield_structure` VALUES ('546', 'b', 'Information code or alphabet', 'Information code or alphabet', 1, 0, NULL, 5, NULL, NULL, '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10122 INSERT INTO `marc_subfield_structure` VALUES ('546', 'z', 'Source of note information (SE) [OBSOLETE]', 'Source of note information (SE) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10123 INSERT INTO `marc_subfield_structure` VALUES ('547', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10124 INSERT INTO `marc_subfield_structure` VALUES ('547', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10125 INSERT INTO `marc_subfield_structure` VALUES ('547', 'a', 'Former title complexity note', 'Former title complexity note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10126 INSERT INTO `marc_subfield_structure` VALUES ('547', 'z', 'Source of note information (SE) [OBSOLETE]', 'Source of note information (SE) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10127 INSERT INTO `marc_subfield_structure` VALUES ('550', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10128 INSERT INTO `marc_subfield_structure` VALUES ('550', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10129 INSERT INTO `marc_subfield_structure` VALUES ('550', 'a', 'Issuing body note', 'Issuing body note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10130 INSERT INTO `marc_subfield_structure` VALUES ('550', 'z', 'Source of note information (SE) [OBSOLETE]', 'Source of note information (SE) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10131 INSERT INTO `marc_subfield_structure` VALUES ('552', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10132 INSERT INTO `marc_subfield_structure` VALUES ('552', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10133 INSERT INTO `marc_subfield_structure` VALUES ('552', 'a', 'Entity type label', 'Entity type label', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10134 INSERT INTO `marc_subfield_structure` VALUES ('552', 'b', 'Entity type definition and source', 'Entity type definition and source', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10135 INSERT INTO `marc_subfield_structure` VALUES ('552', 'c', 'Attribute label', 'Attribute label', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10136 INSERT INTO `marc_subfield_structure` VALUES ('552', 'd', 'Attribute definition and source', 'Attribute definition and source', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10137 INSERT INTO `marc_subfield_structure` VALUES ('552', 'e', 'Enumerated domain value', 'Enumerated domain value', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10138 INSERT INTO `marc_subfield_structure` VALUES ('552', 'f', 'Enumerated domain value definition and source', 'Enumerated domain value definition and source', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10139 INSERT INTO `marc_subfield_structure` VALUES ('552', 'g', 'Range domain minimum and maximum', 'Range domain minimum and maximum', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10140 INSERT INTO `marc_subfield_structure` VALUES ('552', 'h', 'Codeset name and source', 'Codeset name and source', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10141 INSERT INTO `marc_subfield_structure` VALUES ('552', 'i', 'Unrepresentable domain', 'Unrepresentable domain', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10142 INSERT INTO `marc_subfield_structure` VALUES ('552', 'j', 'Attribute units of measurement and resolution', 'Attribute units of measurement and resolution', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10143 INSERT INTO `marc_subfield_structure` VALUES ('552', 'k', 'Beginning date and ending date of attribute values', 'Beginning date and ending date of attribute values', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10144 INSERT INTO `marc_subfield_structure` VALUES ('552', 'l', 'Attribute value accuracy', 'Attribute value accuracy', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10145 INSERT INTO `marc_subfield_structure` VALUES ('552', 'm', 'Attribute value accuracy explanation', 'Attribute value accuracy explanation', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10146 INSERT INTO `marc_subfield_structure` VALUES ('552', 'n', 'Attribute measurement frequency', 'Attribute measurement frequency', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10147 INSERT INTO `marc_subfield_structure` VALUES ('552', 'o', 'Entity and attribute overview', 'Entity and attribute overview', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10148 INSERT INTO `marc_subfield_structure` VALUES ('552', 'p', 'Entity and attribute detail citation', 'Entity and attribute detail citation', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10149 INSERT INTO `marc_subfield_structure` VALUES ('552', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10150 INSERT INTO `marc_subfield_structure` VALUES ('552', 'z', 'Display note', 'Display note', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10151 INSERT INTO `marc_subfield_structure` VALUES ('555', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10152 INSERT INTO `marc_subfield_structure` VALUES ('555', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10153 INSERT INTO `marc_subfield_structure` VALUES ('555', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10154 INSERT INTO `marc_subfield_structure` VALUES ('555', 'a', 'Cumulative index/finding aids note', 'Cumulative index/finding aids note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10155 INSERT INTO `marc_subfield_structure` VALUES ('555', 'b', 'Availability source', 'Availability source', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10156 INSERT INTO `marc_subfield_structure` VALUES ('555', 'c', 'Degree of control', 'Degree of control', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10157 INSERT INTO `marc_subfield_structure` VALUES ('555', 'd', 'Bibliographic reference', 'Bibliographic reference', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10158 INSERT INTO `marc_subfield_structure` VALUES ('555', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, NULL, 5, NULL, NULL, '', 1, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10159 INSERT INTO `marc_subfield_structure` VALUES ('556', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10160 INSERT INTO `marc_subfield_structure` VALUES ('556', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10161 INSERT INTO `marc_subfield_structure` VALUES ('556', 'a', 'Information about documentation note', 'Information about documentation note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10162 INSERT INTO `marc_subfield_structure` VALUES ('556', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10163 INSERT INTO `marc_subfield_structure` VALUES ('561', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10164 INSERT INTO `marc_subfield_structure` VALUES ('561', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10165 INSERT INTO `marc_subfield_structure` VALUES ('561', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10166 INSERT INTO `marc_subfield_structure` VALUES ('561', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10167 INSERT INTO `marc_subfield_structure` VALUES ('561', 'a', 'History', 'History', 0, 0, '', 5, '', '', '', NULL, 6, 'ASMP_SOUND_RECORDINGS', '', '');
10168 INSERT INTO `marc_subfield_structure` VALUES ('561', 'b', 'Time of collation [OBSOLETE]', 'Time of collation [OBSOLETE]', 0, 0, '', 5, '', '', '', NULL, 6, 'ASMP_SOUND_RECORDINGS', '', '');
10169 INSERT INTO `marc_subfield_structure` VALUES ('562', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10170 INSERT INTO `marc_subfield_structure` VALUES ('562', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, NULL, -1, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10171 INSERT INTO `marc_subfield_structure` VALUES ('562', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10172 INSERT INTO `marc_subfield_structure` VALUES ('562', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10173 INSERT INTO `marc_subfield_structure` VALUES ('562', 'a', 'Identifying markings', 'Identifying markings', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10174 INSERT INTO `marc_subfield_structure` VALUES ('562', 'b', 'Copy identification', 'Copy identification', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10175 INSERT INTO `marc_subfield_structure` VALUES ('562', 'c', 'Version identification', 'Version identification', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10176 INSERT INTO `marc_subfield_structure` VALUES ('562', 'd', 'Presentation format', 'Presentation format', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10177 INSERT INTO `marc_subfield_structure` VALUES ('562', 'e', 'Number of copies', 'Number of copies', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10178 INSERT INTO `marc_subfield_structure` VALUES ('563', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10179 INSERT INTO `marc_subfield_structure` VALUES ('563', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, NULL, -1, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10180 INSERT INTO `marc_subfield_structure` VALUES ('563', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10181 INSERT INTO `marc_subfield_structure` VALUES ('563', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10182 INSERT INTO `marc_subfield_structure` VALUES ('563', 'a', 'Binding note', 'Binding note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10183 INSERT INTO `marc_subfield_structure` VALUES ('563', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, NULL, 5, NULL, NULL, '', 1, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10184 INSERT INTO `marc_subfield_structure` VALUES ('565', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10185 INSERT INTO `marc_subfield_structure` VALUES ('565', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10186 INSERT INTO `marc_subfield_structure` VALUES ('565', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10187 INSERT INTO `marc_subfield_structure` VALUES ('565', 'a', 'Number of cases/variables', 'Number of cases/variables', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10188 INSERT INTO `marc_subfield_structure` VALUES ('565', 'b', 'Name of variable', 'Name of variable', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10189 INSERT INTO `marc_subfield_structure` VALUES ('565', 'c', 'Unit of analysis', 'Unit of analysis', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10190 INSERT INTO `marc_subfield_structure` VALUES ('565', 'd', 'Universe of data', 'Universe of data', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10191 INSERT INTO `marc_subfield_structure` VALUES ('565', 'e', 'Filing scheme or code', 'Filing scheme or code', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10192 INSERT INTO `marc_subfield_structure` VALUES ('567', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10193 INSERT INTO `marc_subfield_structure` VALUES ('567', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10194 INSERT INTO `marc_subfield_structure` VALUES ('567', 'a', 'Methodology note', 'Methodology note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10195 INSERT INTO `marc_subfield_structure` VALUES ('570', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10196 INSERT INTO `marc_subfield_structure` VALUES ('570', 'a', 'Editor note', 'Editor note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10197 INSERT INTO `marc_subfield_structure` VALUES ('570', 'z', 'Source of note information', 'Source of note information', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10198 INSERT INTO `marc_subfield_structure` VALUES ('580', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10199 INSERT INTO `marc_subfield_structure` VALUES ('580', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10200 INSERT INTO `marc_subfield_structure` VALUES ('580', 'a', 'Linking entry complexity note', 'Linking entry complexity note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10201 INSERT INTO `marc_subfield_structure` VALUES ('580', 'z', 'Source of note information [OBSOLETE]', 'Source of note information [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10202 INSERT INTO `marc_subfield_structure` VALUES ('581', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10203 INSERT INTO `marc_subfield_structure` VALUES ('581', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10204 INSERT INTO `marc_subfield_structure` VALUES ('581', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10205 INSERT INTO `marc_subfield_structure` VALUES ('581', 'a', 'Publications about described materials note', 'Publications about described materials note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10206 INSERT INTO `marc_subfield_structure` VALUES ('581', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10207 INSERT INTO `marc_subfield_structure` VALUES ('582', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10208 INSERT INTO `marc_subfield_structure` VALUES ('582', 'a', 'Related computer files note', 'Related computer files note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10209 INSERT INTO `marc_subfield_structure` VALUES ('583', '2', 'Source of term', 'Source of term', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10210 INSERT INTO `marc_subfield_structure` VALUES ('583', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10211 INSERT INTO `marc_subfield_structure` VALUES ('583', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10212 INSERT INTO `marc_subfield_structure` VALUES ('583', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10213 INSERT INTO `marc_subfield_structure` VALUES ('583', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10214 INSERT INTO `marc_subfield_structure` VALUES ('583', 'a', 'Action', 'Action', 0, 0, '', 9, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10215 INSERT INTO `marc_subfield_structure` VALUES ('583', 'b', 'Action identification', 'Action identification', 1, 0, '', 9, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10216 INSERT INTO `marc_subfield_structure` VALUES ('583', 'c', 'Time/date of action', 'Time/date of action', 1, 0, '', 9, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10217 INSERT INTO `marc_subfield_structure` VALUES ('583', 'd', 'Action interval', 'Action interval', 1, 0, '', 9, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10218 INSERT INTO `marc_subfield_structure` VALUES ('583', 'e', 'Contingency for action', 'Contingency for action', 1, 0, '', 9, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10219 INSERT INTO `marc_subfield_structure` VALUES ('583', 'f', 'Authorization', 'Authorization', 1, 0, '', 9, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10220 INSERT INTO `marc_subfield_structure` VALUES ('583', 'h', 'Jurisdiction', 'Jurisdiction', 0, 0, '', 9, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10221 INSERT INTO `marc_subfield_structure` VALUES ('583', 'i', 'Method of action', 'Method of action', 1, 0, '', 9, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10222 INSERT INTO `marc_subfield_structure` VALUES ('583', 'j', 'Site of action', 'Site of action', 1, 0, '', 9, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10223 INSERT INTO `marc_subfield_structure` VALUES ('583', 'k', 'Action agent', 'Action agent', 1, 0, '', 9, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10224 INSERT INTO `marc_subfield_structure` VALUES ('583', 'l', 'Status', 'Status', 1, 0, '', 9, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10225 INSERT INTO `marc_subfield_structure` VALUES ('583', 'n', 'Extent', 'Extent', 1, 0, '', 9, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10226 INSERT INTO `marc_subfield_structure` VALUES ('583', 'o', 'Type of unit', 'Type of unit', 1, 0, '', 9, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10227 INSERT INTO `marc_subfield_structure` VALUES ('583', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 9, '', '', '', 1, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10228 INSERT INTO `marc_subfield_structure` VALUES ('583', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 9, '', '', '', NULL, 4, 'ASMP_SOUND_RECORDINGS', '', '');
10229 INSERT INTO `marc_subfield_structure` VALUES ('583', 'z', 'Public note', 'Public note', 1, 0, '', 9, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10230 INSERT INTO `marc_subfield_structure` VALUES ('584', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10231 INSERT INTO `marc_subfield_structure` VALUES ('584', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10232 INSERT INTO `marc_subfield_structure` VALUES ('584', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10233 INSERT INTO `marc_subfield_structure` VALUES ('584', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10234 INSERT INTO `marc_subfield_structure` VALUES ('584', 'a', 'Accumulation', 'Accumulation', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10235 INSERT INTO `marc_subfield_structure` VALUES ('584', 'b', 'Frequency of use', 'Frequency of use', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10236 INSERT INTO `marc_subfield_structure` VALUES ('585', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10237 INSERT INTO `marc_subfield_structure` VALUES ('585', '5', 'Institution to which field applies', 'Institution to which field applies', 0, -6, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10238 INSERT INTO `marc_subfield_structure` VALUES ('585', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10239 INSERT INTO `marc_subfield_structure` VALUES ('585', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10240 INSERT INTO `marc_subfield_structure` VALUES ('585', 'a', 'Exhibitions note', 'Exhibitions note', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10241 INSERT INTO `marc_subfield_structure` VALUES ('586', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10242 INSERT INTO `marc_subfield_structure` VALUES ('586', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10243 INSERT INTO `marc_subfield_structure` VALUES ('586', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10244 INSERT INTO `marc_subfield_structure` VALUES ('586', 'a', 'Awards note', 'Awards note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10245 INSERT INTO `marc_subfield_structure` VALUES ('590', '6', 'Linkage (RLIN)', 'Linkage (RLIN)', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10246 INSERT INTO `marc_subfield_structure` VALUES ('590', '8', 'Field link and sequence number (RLIN)', 'Field link and sequence number (RLIN)', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10247 INSERT INTO `marc_subfield_structure` VALUES ('590', 'a', 'Local note', 'Local note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10248 INSERT INTO `marc_subfield_structure` VALUES ('590', 'b', 'Provenance (VM) [OBSOLETE]', 'Provenance (VM) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10249 INSERT INTO `marc_subfield_structure` VALUES ('590', 'c', 'Condition of individual reels (VM) [OBSOLETE]', 'Condition of individual reels (VM) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10250 INSERT INTO `marc_subfield_structure` VALUES ('590', 'd', 'Origin of safety copy (VM) [OBSOLETE]', 'Origin of safety copy (VM) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10251 INSERT INTO `marc_subfield_structure` VALUES ('600', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10252 INSERT INTO `marc_subfield_structure` VALUES ('600', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10253 INSERT INTO `marc_subfield_structure` VALUES ('600', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10254 INSERT INTO `marc_subfield_structure` VALUES ('600', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10255 INSERT INTO `marc_subfield_structure` VALUES ('600', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10256 INSERT INTO `marc_subfield_structure` VALUES ('600', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'ASMP_SOUND_RECORDINGS', '', '');
10257 INSERT INTO `marc_subfield_structure` VALUES ('600', 'a', 'Personal name', 'Personal name', 0, 0, '', 6, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10258 INSERT INTO `marc_subfield_structure` VALUES ('600', 'b', 'Numeration', 'Numeration', 0, 0, '', 6, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10259 INSERT INTO `marc_subfield_structure` VALUES ('600', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10260 INSERT INTO `marc_subfield_structure` VALUES ('600', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 6, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10261 INSERT INTO `marc_subfield_structure` VALUES ('600', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10262 INSERT INTO `marc_subfield_structure` VALUES ('600', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10263 INSERT INTO `marc_subfield_structure` VALUES ('600', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10264 INSERT INTO `marc_subfield_structure` VALUES ('600', 'h', 'Medium', 'Medium', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10265 INSERT INTO `marc_subfield_structure` VALUES ('600', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10266 INSERT INTO `marc_subfield_structure` VALUES ('600', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10267 INSERT INTO `marc_subfield_structure` VALUES ('600', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10268 INSERT INTO `marc_subfield_structure` VALUES ('600', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10269 INSERT INTO `marc_subfield_structure` VALUES ('600', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10270 INSERT INTO `marc_subfield_structure` VALUES ('600', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10271 INSERT INTO `marc_subfield_structure` VALUES ('600', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10272 INSERT INTO `marc_subfield_structure` VALUES ('600', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 6, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10273 INSERT INTO `marc_subfield_structure` VALUES ('600', 'r', 'Key for music', 'Key for music', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10274 INSERT INTO `marc_subfield_structure` VALUES ('600', 's', 'Version', 'Version', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10275 INSERT INTO `marc_subfield_structure` VALUES ('600', 't', 'Title of a work', 'Title of a work', 0, 0, '', 6, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10276 INSERT INTO `marc_subfield_structure` VALUES ('600', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10277 INSERT INTO `marc_subfield_structure` VALUES ('600', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10278 INSERT INTO `marc_subfield_structure` VALUES ('600', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10279 INSERT INTO `marc_subfield_structure` VALUES ('600', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10280 INSERT INTO `marc_subfield_structure` VALUES ('600', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10281 INSERT INTO `marc_subfield_structure` VALUES ('610', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10282 INSERT INTO `marc_subfield_structure` VALUES ('610', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10283 INSERT INTO `marc_subfield_structure` VALUES ('610', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10284 INSERT INTO `marc_subfield_structure` VALUES ('610', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10285 INSERT INTO `marc_subfield_structure` VALUES ('610', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10286 INSERT INTO `marc_subfield_structure` VALUES ('610', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'ASMP_SOUND_RECORDINGS', '', '');
10287 INSERT INTO `marc_subfield_structure` VALUES ('610', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 6, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10288 INSERT INTO `marc_subfield_structure` VALUES ('610', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10289 INSERT INTO `marc_subfield_structure` VALUES ('610', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 6, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10290 INSERT INTO `marc_subfield_structure` VALUES ('610', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10291 INSERT INTO `marc_subfield_structure` VALUES ('610', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10292 INSERT INTO `marc_subfield_structure` VALUES ('610', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10293 INSERT INTO `marc_subfield_structure` VALUES ('610', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10294 INSERT INTO `marc_subfield_structure` VALUES ('610', 'h', 'Medium', 'Medium', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10295 INSERT INTO `marc_subfield_structure` VALUES ('610', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10296 INSERT INTO `marc_subfield_structure` VALUES ('610', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10297 INSERT INTO `marc_subfield_structure` VALUES ('610', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10298 INSERT INTO `marc_subfield_structure` VALUES ('610', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10299 INSERT INTO `marc_subfield_structure` VALUES ('610', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10300 INSERT INTO `marc_subfield_structure` VALUES ('610', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10301 INSERT INTO `marc_subfield_structure` VALUES ('610', 'r', 'Key for music', 'Key for music', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10302 INSERT INTO `marc_subfield_structure` VALUES ('610', 's', 'Version', 'Version', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10303 INSERT INTO `marc_subfield_structure` VALUES ('610', 't', 'Title of a work', 'Title of a work', 0, 0, '', 6, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10304 INSERT INTO `marc_subfield_structure` VALUES ('610', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10305 INSERT INTO `marc_subfield_structure` VALUES ('610', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10306 INSERT INTO `marc_subfield_structure` VALUES ('610', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10307 INSERT INTO `marc_subfield_structure` VALUES ('610', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10308 INSERT INTO `marc_subfield_structure` VALUES ('610', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10309 INSERT INTO `marc_subfield_structure` VALUES ('611', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10310 INSERT INTO `marc_subfield_structure` VALUES ('611', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10311 INSERT INTO `marc_subfield_structure` VALUES ('611', '4', 'Relator code', 'Relator code', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10312 INSERT INTO `marc_subfield_structure` VALUES ('611', '6', 'Linkage', 'Linkage', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10313 INSERT INTO `marc_subfield_structure` VALUES ('611', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10314 INSERT INTO `marc_subfield_structure` VALUES ('611', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'ASMP_SOUND_RECORDINGS', '', '');
10315 INSERT INTO `marc_subfield_structure` VALUES ('611', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10316 INSERT INTO `marc_subfield_structure` VALUES ('611', 'b', 'Number  (BK CF MP MU SE VM MX)  [OBSOLETE]', 'Number  (BK CF MP MU SE VM MX)  [OBSOLETE]', 1, 0, NULL, -1, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10317 INSERT INTO `marc_subfield_structure` VALUES ('611', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10318 INSERT INTO `marc_subfield_structure` VALUES ('611', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10319 INSERT INTO `marc_subfield_structure` VALUES ('611', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10320 INSERT INTO `marc_subfield_structure` VALUES ('611', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10321 INSERT INTO `marc_subfield_structure` VALUES ('611', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10322 INSERT INTO `marc_subfield_structure` VALUES ('611', 'h', 'Medium', 'Medium', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10323 INSERT INTO `marc_subfield_structure` VALUES ('611', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10324 INSERT INTO `marc_subfield_structure` VALUES ('611', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10325 INSERT INTO `marc_subfield_structure` VALUES ('611', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10326 INSERT INTO `marc_subfield_structure` VALUES ('611', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10327 INSERT INTO `marc_subfield_structure` VALUES ('611', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10328 INSERT INTO `marc_subfield_structure` VALUES ('611', 's', 'Version', 'Version', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10329 INSERT INTO `marc_subfield_structure` VALUES ('611', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10330 INSERT INTO `marc_subfield_structure` VALUES ('611', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10331 INSERT INTO `marc_subfield_structure` VALUES ('611', 'v', 'Form subdivision', 'Form subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10332 INSERT INTO `marc_subfield_structure` VALUES ('611', 'x', 'General subdivision', 'General subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10333 INSERT INTO `marc_subfield_structure` VALUES ('611', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10334 INSERT INTO `marc_subfield_structure` VALUES ('611', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10335 INSERT INTO `marc_subfield_structure` VALUES ('630', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10336 INSERT INTO `marc_subfield_structure` VALUES ('630', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10337 INSERT INTO `marc_subfield_structure` VALUES ('630', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10338 INSERT INTO `marc_subfield_structure` VALUES ('630', '6', 'Linkage', 'Linkage', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10339 INSERT INTO `marc_subfield_structure` VALUES ('630', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10340 INSERT INTO `marc_subfield_structure` VALUES ('630', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'ASMP_SOUND_RECORDINGS', '', '');
10341 INSERT INTO `marc_subfield_structure` VALUES ('630', 'a', 'Uniform title', 'Uniform title', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10342 INSERT INTO `marc_subfield_structure` VALUES ('630', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10343 INSERT INTO `marc_subfield_structure` VALUES ('630', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10344 INSERT INTO `marc_subfield_structure` VALUES ('630', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10345 INSERT INTO `marc_subfield_structure` VALUES ('630', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10346 INSERT INTO `marc_subfield_structure` VALUES ('630', 'h', 'Medium', 'Medium', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10347 INSERT INTO `marc_subfield_structure` VALUES ('630', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10348 INSERT INTO `marc_subfield_structure` VALUES ('630', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10349 INSERT INTO `marc_subfield_structure` VALUES ('630', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10350 INSERT INTO `marc_subfield_structure` VALUES ('630', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10351 INSERT INTO `marc_subfield_structure` VALUES ('630', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10352 INSERT INTO `marc_subfield_structure` VALUES ('630', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10353 INSERT INTO `marc_subfield_structure` VALUES ('630', 'r', 'Key for music', 'Key for music', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10354 INSERT INTO `marc_subfield_structure` VALUES ('630', 's', 'Version', 'Version', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10355 INSERT INTO `marc_subfield_structure` VALUES ('630', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10356 INSERT INTO `marc_subfield_structure` VALUES ('630', 'v', 'Form subdivision', 'Form subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10357 INSERT INTO `marc_subfield_structure` VALUES ('630', 'x', 'General subdivision', 'General subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10358 INSERT INTO `marc_subfield_structure` VALUES ('630', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10359 INSERT INTO `marc_subfield_structure` VALUES ('630', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10360 INSERT INTO `marc_subfield_structure` VALUES ('648', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10361 INSERT INTO `marc_subfield_structure` VALUES ('648', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10362 INSERT INTO `marc_subfield_structure` VALUES ('648', '6', 'Linkage', 'Linkage', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10363 INSERT INTO `marc_subfield_structure` VALUES ('648', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10364 INSERT INTO `marc_subfield_structure` VALUES ('648', 'a', 'Chronological term', 'Chronological term', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10365 INSERT INTO `marc_subfield_structure` VALUES ('648', 'v', 'Form subdivision', 'Form subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10366 INSERT INTO `marc_subfield_structure` VALUES ('648', 'x', 'General subdivision', 'General subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10367 INSERT INTO `marc_subfield_structure` VALUES ('648', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10368 INSERT INTO `marc_subfield_structure` VALUES ('648', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10369 INSERT INTO `marc_subfield_structure` VALUES ('650', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', 0, 0, 'ASMP_SOUND_RECORDINGS', '', '');
10370 INSERT INTO `marc_subfield_structure` VALUES ('650', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10371 INSERT INTO `marc_subfield_structure` VALUES ('650', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10372 INSERT INTO `marc_subfield_structure` VALUES ('650', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10373 INSERT INTO `marc_subfield_structure` VALUES ('650', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10374 INSERT INTO `marc_subfield_structure` VALUES ('650', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'ASMP_SOUND_RECORDINGS', '', '');
10375 INSERT INTO `marc_subfield_structure` VALUES ('650', 'a', 'Topical term or geographic name as entry element', 'Topical term or geographic name as entry element', 0, 0, 'bibliosubject.subject', 6, '', '', '', 0, 0, 'ASMP_SOUND_RECORDINGS', '''6003'',''600a'',''600b'',''600c'',''600d'',''600e'',''600f'',''600g'',''600h'',''600k'',''600l'',''600m'',''600n'',''600o'',''600p'',''600r'',''600s'',''600t'',''600u'',''600x'',''600z'',''600y'',''600v'',''6103'',''610a'',''610b'',''610c'',''610d'',''610e'',''610f'',''610g'',''610h'',''610k'',''610l'',''610m'',''610n'',''610o'',''610p'',''610r'',''610s'',''610t'',''610u'',''610x'',''610z'',''610y'',''610v'',''6113'',''611a'',''611b'',''611c'',''611d'',''611e'',''611f'',''611g'',''611h'',''611k'',''611l'',''611m'',''611n'',''611o'',''611p'',''611r'',''611s'',''611t'',''611u'',''611x'',''611z'',''611y'',''611v'',''630a'',''630b'',''630c'',''630d'',''630e'',''630f'',''630g'',''630h'',''630k'',''630l'',''630m'',''630n'',''630o'',''630p'',''630r'',''630s'',''630t'',''630x'',''630z'',''630y'',''630v'',''6483'',''648a'',''648x'',''648z'',''648y'',''648v'',''6503'',''650b'',''650c'',''650d'',''650e'',''650x'',''650z'',''650y'',''650v'',''6513'',''651a'',''651b'',''651c'',''651d'',''651e'',''651x'',''651z'',''651y'',''651v'',''653a'',''6543'',''654a'',''654b'',''654x'',''654z'',''654y'',''654v'',''6553'',''655a'',''655b'',''655x'',''655z'',''655y'',''655v'',''6563'',''656a'',''656k'',''656x'',''656z'',''656y'',''656v'',''6573'',''657a'',''657x'',''657z'',''657y'',''657v'',''658a'',''658b'',''658c'',''658d'',''658v''', '');
10376 INSERT INTO `marc_subfield_structure` VALUES ('650', 'b', 'Topical term following geographic name as entry element', 'Topical term following geographic name as entry element', 0, 0, '', 6, '', '', '', 0, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10377 INSERT INTO `marc_subfield_structure` VALUES ('650', 'c', 'Location of event', 'Location of event', 0, 0, '', 6, '', '', '', 0, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10378 INSERT INTO `marc_subfield_structure` VALUES ('650', 'd', 'Active dates', 'Active dates', 0, 0, '', 6, '', '', '', 0, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10379 INSERT INTO `marc_subfield_structure` VALUES ('650', 'e', 'Relator term', 'Relator term', 0, 0, '', 6, '', '', '', 0, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10380 INSERT INTO `marc_subfield_structure` VALUES ('650', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', 0, 0, 'ASMP_SOUND_RECORDINGS', '', '');
10381 INSERT INTO `marc_subfield_structure` VALUES ('650', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', 0, 0, 'ASMP_SOUND_RECORDINGS', '', '');
10382 INSERT INTO `marc_subfield_structure` VALUES ('650', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', 0, 0, 'ASMP_SOUND_RECORDINGS', '', '');
10383 INSERT INTO `marc_subfield_structure` VALUES ('650', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', 0, 0, 'ASMP_SOUND_RECORDINGS', '', '');
10384 INSERT INTO `marc_subfield_structure` VALUES ('651', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10385 INSERT INTO `marc_subfield_structure` VALUES ('651', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10386 INSERT INTO `marc_subfield_structure` VALUES ('651', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10387 INSERT INTO `marc_subfield_structure` VALUES ('651', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10388 INSERT INTO `marc_subfield_structure` VALUES ('651', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10389 INSERT INTO `marc_subfield_structure` VALUES ('651', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'ASMP_SOUND_RECORDINGS', '', '');
10390 INSERT INTO `marc_subfield_structure` VALUES ('651', 'a', 'Geographic name', 'Geographic name', 0, 0, '', 6, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10391 INSERT INTO `marc_subfield_structure` VALUES ('651', 'b', 'Geographic name following place entry element [OBSOLETE]', 'Geographic name following place entry element [OBSOLETE]', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10392 INSERT INTO `marc_subfield_structure` VALUES ('651', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10393 INSERT INTO `marc_subfield_structure` VALUES ('651', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10394 INSERT INTO `marc_subfield_structure` VALUES ('651', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10395 INSERT INTO `marc_subfield_structure` VALUES ('651', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10396 INSERT INTO `marc_subfield_structure` VALUES ('651', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10397 INSERT INTO `marc_subfield_structure` VALUES ('652', 'a', 'Geographic name of place element', 'Geographic name of place element', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10398 INSERT INTO `marc_subfield_structure` VALUES ('652', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10399 INSERT INTO `marc_subfield_structure` VALUES ('652', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10400 INSERT INTO `marc_subfield_structure` VALUES ('652', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10401 INSERT INTO `marc_subfield_structure` VALUES ('653', '6', 'Linkage', 'Linkage', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10402 INSERT INTO `marc_subfield_structure` VALUES ('653', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10403 INSERT INTO `marc_subfield_structure` VALUES ('653', 'a', 'Uncontrolled term', 'Uncontrolled term', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10404 INSERT INTO `marc_subfield_structure` VALUES ('654', '2', 'Source of term', 'Source of term', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10405 INSERT INTO `marc_subfield_structure` VALUES ('654', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10406 INSERT INTO `marc_subfield_structure` VALUES ('654', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10407 INSERT INTO `marc_subfield_structure` VALUES ('654', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10408 INSERT INTO `marc_subfield_structure` VALUES ('654', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10409 INSERT INTO `marc_subfield_structure` VALUES ('654', 'a', 'Focus term', 'Focus term', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10410 INSERT INTO `marc_subfield_structure` VALUES ('654', 'b', 'Non-focus term', 'Non-focus term', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10411 INSERT INTO `marc_subfield_structure` VALUES ('654', 'c', 'Facet/hierarchy designation', 'Facet/hierarchy designation', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10412 INSERT INTO `marc_subfield_structure` VALUES ('654', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10413 INSERT INTO `marc_subfield_structure` VALUES ('654', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10414 INSERT INTO `marc_subfield_structure` VALUES ('654', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10415 INSERT INTO `marc_subfield_structure` VALUES ('654', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10416 INSERT INTO `marc_subfield_structure` VALUES ('654', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10417 INSERT INTO `marc_subfield_structure` VALUES ('655', '2', 'Source of term', 'Source of term', 0, 0, '', 6, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10418 INSERT INTO `marc_subfield_structure` VALUES ('655', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10419 INSERT INTO `marc_subfield_structure` VALUES ('655', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10420 INSERT INTO `marc_subfield_structure` VALUES ('655', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10421 INSERT INTO `marc_subfield_structure` VALUES ('655', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10422 INSERT INTO `marc_subfield_structure` VALUES ('655', 'a', 'Genre/form data or focus term', 'Genre/form data or focus term', 0, 0, '', 6, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10423 INSERT INTO `marc_subfield_structure` VALUES ('655', 'b', 'Non-focus term', 'Non-focus term', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10424 INSERT INTO `marc_subfield_structure` VALUES ('655', 'c', 'Facet/hierarchy designation', 'Facet/hierarchy designation', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10425 INSERT INTO `marc_subfield_structure` VALUES ('655', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10426 INSERT INTO `marc_subfield_structure` VALUES ('655', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10427 INSERT INTO `marc_subfield_structure` VALUES ('655', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10428 INSERT INTO `marc_subfield_structure` VALUES ('655', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10429 INSERT INTO `marc_subfield_structure` VALUES ('656', '2', 'Source of term', 'Source of term', 0, 0, '', 6, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10430 INSERT INTO `marc_subfield_structure` VALUES ('656', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10431 INSERT INTO `marc_subfield_structure` VALUES ('656', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10432 INSERT INTO `marc_subfield_structure` VALUES ('656', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10433 INSERT INTO `marc_subfield_structure` VALUES ('656', 'a', 'Occupation', 'Occupation', 0, 0, '', 6, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10434 INSERT INTO `marc_subfield_structure` VALUES ('656', 'k', 'Form', 'Form', 0, 0, '', 6, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10435 INSERT INTO `marc_subfield_structure` VALUES ('656', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10436 INSERT INTO `marc_subfield_structure` VALUES ('656', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10437 INSERT INTO `marc_subfield_structure` VALUES ('656', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10438 INSERT INTO `marc_subfield_structure` VALUES ('656', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10439 INSERT INTO `marc_subfield_structure` VALUES ('657', '2', 'Source of term', 'Source of term', 0, 0, '', 6, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10440 INSERT INTO `marc_subfield_structure` VALUES ('657', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10441 INSERT INTO `marc_subfield_structure` VALUES ('657', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10442 INSERT INTO `marc_subfield_structure` VALUES ('657', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10443 INSERT INTO `marc_subfield_structure` VALUES ('657', 'a', 'Function', 'Function', 0, 0, '', 6, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10444 INSERT INTO `marc_subfield_structure` VALUES ('657', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10445 INSERT INTO `marc_subfield_structure` VALUES ('657', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10446 INSERT INTO `marc_subfield_structure` VALUES ('657', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10447 INSERT INTO `marc_subfield_structure` VALUES ('657', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10448 INSERT INTO `marc_subfield_structure` VALUES ('658', '2', 'Source of term', 'Source of term', 0, 0, '', 6, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10449 INSERT INTO `marc_subfield_structure` VALUES ('658', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10450 INSERT INTO `marc_subfield_structure` VALUES ('658', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10451 INSERT INTO `marc_subfield_structure` VALUES ('658', 'a', 'Main curriculum objective', 'Main curriculum objective', 0, 0, '', 6, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10452 INSERT INTO `marc_subfield_structure` VALUES ('658', 'b', 'Subordinate curriculum objective', 'Subordinate curriculum objective', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10453 INSERT INTO `marc_subfield_structure` VALUES ('658', 'c', 'Curriculum code', 'Curriculum code', 0, 0, '', 6, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10454 INSERT INTO `marc_subfield_structure` VALUES ('658', 'd', 'Correlation factor', 'Correlation factor', 0, 0, '', 6, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10455 INSERT INTO `marc_subfield_structure` VALUES ('662', '2', 'Source of term', 'Source of term', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10456 INSERT INTO `marc_subfield_structure` VALUES ('662', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10457 INSERT INTO `marc_subfield_structure` VALUES ('662', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10458 INSERT INTO `marc_subfield_structure` VALUES ('662', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10459 INSERT INTO `marc_subfield_structure` VALUES ('662', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10460 INSERT INTO `marc_subfield_structure` VALUES ('662', 'a', 'Country or larger entity', 'Country or larger entity', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10461 INSERT INTO `marc_subfield_structure` VALUES ('662', 'b', 'First-order political jurisdiction', 'First-order political jurisdiction', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10462 INSERT INTO `marc_subfield_structure` VALUES ('662', 'c', 'Intermediate political jurisdiction', 'Intermediate political jurisdiction', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10463 INSERT INTO `marc_subfield_structure` VALUES ('662', 'd', 'City', 'City', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10464 INSERT INTO `marc_subfield_structure` VALUES ('662', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10465 INSERT INTO `marc_subfield_structure` VALUES ('662', 'f', 'City subsection', 'City subsection', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10466 INSERT INTO `marc_subfield_structure` VALUES ('662', 'g', 'Other nonjurisdictional geographic region and feature', 'Other nonjurisdictional geographic region and feature', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10467 INSERT INTO `marc_subfield_structure` VALUES ('662', 'h', 'Extraterrestrial area', 'Extraterrestrial area', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10468 INSERT INTO `marc_subfield_structure` VALUES ('690', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10469 INSERT INTO `marc_subfield_structure` VALUES ('690', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10470 INSERT INTO `marc_subfield_structure` VALUES ('690', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10471 INSERT INTO `marc_subfield_structure` VALUES ('690', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10472 INSERT INTO `marc_subfield_structure` VALUES ('690', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10473 INSERT INTO `marc_subfield_structure` VALUES ('690', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'ASMP_SOUND_RECORDINGS', '', '');
10474 INSERT INTO `marc_subfield_structure` VALUES ('690', 'a', 'Topical term or geographic name as entry element', 'Topical term or geographic name as entry element', 0, 0, '', 6, '', '', '', 0, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10475 INSERT INTO `marc_subfield_structure` VALUES ('690', 'b', 'Topical term following geographic name as entry element', 'Topical term following geographic name as entry element', 0, 0, '', 6, '', '', '', 0, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10476 INSERT INTO `marc_subfield_structure` VALUES ('690', 'c', 'Location of event', 'Location of event', 0, 0, '', 6, '', '', '', 0, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10477 INSERT INTO `marc_subfield_structure` VALUES ('690', 'd', 'Active dates', 'Active dates', 0, 0, '', 6, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10478 INSERT INTO `marc_subfield_structure` VALUES ('690', 'e', 'Relator term', 'Relator term', 0, 0, '', 6, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10479 INSERT INTO `marc_subfield_structure` VALUES ('690', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', 0, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10480 INSERT INTO `marc_subfield_structure` VALUES ('690', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', 0, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10481 INSERT INTO `marc_subfield_structure` VALUES ('690', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', 0, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10482 INSERT INTO `marc_subfield_structure` VALUES ('690', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', 0, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10483 INSERT INTO `marc_subfield_structure` VALUES ('691', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10484 INSERT INTO `marc_subfield_structure` VALUES ('691', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10485 INSERT INTO `marc_subfield_structure` VALUES ('691', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10486 INSERT INTO `marc_subfield_structure` VALUES ('691', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10487 INSERT INTO `marc_subfield_structure` VALUES ('691', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10488 INSERT INTO `marc_subfield_structure` VALUES ('691', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'ASMP_SOUND_RECORDINGS', '', '');
10489 INSERT INTO `marc_subfield_structure` VALUES ('691', 'a', 'Geographic name', 'Geographic name', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10490 INSERT INTO `marc_subfield_structure` VALUES ('691', 'b', 'Geographic name following place entry element [OBSOLETE]', 'Geographic name following place entry element [OBSOLETE]', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10491 INSERT INTO `marc_subfield_structure` VALUES ('691', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10492 INSERT INTO `marc_subfield_structure` VALUES ('691', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10493 INSERT INTO `marc_subfield_structure` VALUES ('691', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10494 INSERT INTO `marc_subfield_structure` VALUES ('691', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10495 INSERT INTO `marc_subfield_structure` VALUES ('696', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10496 INSERT INTO `marc_subfield_structure` VALUES ('696', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10497 INSERT INTO `marc_subfield_structure` VALUES ('696', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10498 INSERT INTO `marc_subfield_structure` VALUES ('696', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10499 INSERT INTO `marc_subfield_structure` VALUES ('696', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10500 INSERT INTO `marc_subfield_structure` VALUES ('696', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10501 INSERT INTO `marc_subfield_structure` VALUES ('696', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'ASMP_SOUND_RECORDINGS', '', '');
10502 INSERT INTO `marc_subfield_structure` VALUES ('696', 'a', 'Personal name', 'Personal name', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10503 INSERT INTO `marc_subfield_structure` VALUES ('696', 'b', 'Numeration', 'Numeration', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10504 INSERT INTO `marc_subfield_structure` VALUES ('696', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10505 INSERT INTO `marc_subfield_structure` VALUES ('696', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10506 INSERT INTO `marc_subfield_structure` VALUES ('696', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10507 INSERT INTO `marc_subfield_structure` VALUES ('696', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10508 INSERT INTO `marc_subfield_structure` VALUES ('696', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10509 INSERT INTO `marc_subfield_structure` VALUES ('696', 'h', 'Medium', 'Medium', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10510 INSERT INTO `marc_subfield_structure` VALUES ('696', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10511 INSERT INTO `marc_subfield_structure` VALUES ('696', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10512 INSERT INTO `marc_subfield_structure` VALUES ('696', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10513 INSERT INTO `marc_subfield_structure` VALUES ('696', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10514 INSERT INTO `marc_subfield_structure` VALUES ('696', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10515 INSERT INTO `marc_subfield_structure` VALUES ('696', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10516 INSERT INTO `marc_subfield_structure` VALUES ('696', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10517 INSERT INTO `marc_subfield_structure` VALUES ('696', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10518 INSERT INTO `marc_subfield_structure` VALUES ('696', 'r', 'Key for music', 'Key for music', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10519 INSERT INTO `marc_subfield_structure` VALUES ('696', 's', 'Version', 'Version', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10520 INSERT INTO `marc_subfield_structure` VALUES ('696', 't', 'Title of a work', 'Title of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10521 INSERT INTO `marc_subfield_structure` VALUES ('696', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10522 INSERT INTO `marc_subfield_structure` VALUES ('696', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10523 INSERT INTO `marc_subfield_structure` VALUES ('696', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10524 INSERT INTO `marc_subfield_structure` VALUES ('696', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10525 INSERT INTO `marc_subfield_structure` VALUES ('696', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10526 INSERT INTO `marc_subfield_structure` VALUES ('697', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10527 INSERT INTO `marc_subfield_structure` VALUES ('697', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10528 INSERT INTO `marc_subfield_structure` VALUES ('697', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10529 INSERT INTO `marc_subfield_structure` VALUES ('697', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10530 INSERT INTO `marc_subfield_structure` VALUES ('697', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10531 INSERT INTO `marc_subfield_structure` VALUES ('697', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10532 INSERT INTO `marc_subfield_structure` VALUES ('697', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'ASMP_SOUND_RECORDINGS', '', '');
10533 INSERT INTO `marc_subfield_structure` VALUES ('697', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10534 INSERT INTO `marc_subfield_structure` VALUES ('697', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10535 INSERT INTO `marc_subfield_structure` VALUES ('697', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10536 INSERT INTO `marc_subfield_structure` VALUES ('697', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10537 INSERT INTO `marc_subfield_structure` VALUES ('697', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10538 INSERT INTO `marc_subfield_structure` VALUES ('697', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10539 INSERT INTO `marc_subfield_structure` VALUES ('697', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10540 INSERT INTO `marc_subfield_structure` VALUES ('697', 'h', 'Medium', 'Medium', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10541 INSERT INTO `marc_subfield_structure` VALUES ('697', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10542 INSERT INTO `marc_subfield_structure` VALUES ('697', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10543 INSERT INTO `marc_subfield_structure` VALUES ('697', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10544 INSERT INTO `marc_subfield_structure` VALUES ('697', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10545 INSERT INTO `marc_subfield_structure` VALUES ('697', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10546 INSERT INTO `marc_subfield_structure` VALUES ('697', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10547 INSERT INTO `marc_subfield_structure` VALUES ('697', 'r', 'Key for music', 'Key for music', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10548 INSERT INTO `marc_subfield_structure` VALUES ('697', 's', 'Version', 'Version', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10549 INSERT INTO `marc_subfield_structure` VALUES ('697', 't', 'Title of a work', 'Title of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10550 INSERT INTO `marc_subfield_structure` VALUES ('697', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10551 INSERT INTO `marc_subfield_structure` VALUES ('697', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10552 INSERT INTO `marc_subfield_structure` VALUES ('697', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10553 INSERT INTO `marc_subfield_structure` VALUES ('697', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10554 INSERT INTO `marc_subfield_structure` VALUES ('697', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10555 INSERT INTO `marc_subfield_structure` VALUES ('698', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10556 INSERT INTO `marc_subfield_structure` VALUES ('698', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10557 INSERT INTO `marc_subfield_structure` VALUES ('698', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10558 INSERT INTO `marc_subfield_structure` VALUES ('698', '4', 'Relator code', 'Relator code', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10559 INSERT INTO `marc_subfield_structure` VALUES ('698', '6', 'Linkage', 'Linkage', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10560 INSERT INTO `marc_subfield_structure` VALUES ('698', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10561 INSERT INTO `marc_subfield_structure` VALUES ('698', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'ASMP_SOUND_RECORDINGS', '', '');
10562 INSERT INTO `marc_subfield_structure` VALUES ('698', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10563 INSERT INTO `marc_subfield_structure` VALUES ('698', 'b', 'Number  (BK CF MP MU SE VM MX)  [OBSOLETE]', 'Number  (BK CF MP MU SE VM MX)  [OBSOLETE]', 1, 0, NULL, -1, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10564 INSERT INTO `marc_subfield_structure` VALUES ('698', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10565 INSERT INTO `marc_subfield_structure` VALUES ('698', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10566 INSERT INTO `marc_subfield_structure` VALUES ('698', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10567 INSERT INTO `marc_subfield_structure` VALUES ('698', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10568 INSERT INTO `marc_subfield_structure` VALUES ('698', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10569 INSERT INTO `marc_subfield_structure` VALUES ('698', 'h', 'Medium', 'Medium', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10570 INSERT INTO `marc_subfield_structure` VALUES ('698', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10571 INSERT INTO `marc_subfield_structure` VALUES ('698', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10572 INSERT INTO `marc_subfield_structure` VALUES ('698', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10573 INSERT INTO `marc_subfield_structure` VALUES ('698', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10574 INSERT INTO `marc_subfield_structure` VALUES ('698', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10575 INSERT INTO `marc_subfield_structure` VALUES ('698', 's', 'Version', 'Version', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10576 INSERT INTO `marc_subfield_structure` VALUES ('698', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10577 INSERT INTO `marc_subfield_structure` VALUES ('698', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10578 INSERT INTO `marc_subfield_structure` VALUES ('698', 'v', 'Form subdivision', 'Form subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10579 INSERT INTO `marc_subfield_structure` VALUES ('698', 'x', 'General subdivision', 'General subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10580 INSERT INTO `marc_subfield_structure` VALUES ('698', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10581 INSERT INTO `marc_subfield_structure` VALUES ('698', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10582 INSERT INTO `marc_subfield_structure` VALUES ('699', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10583 INSERT INTO `marc_subfield_structure` VALUES ('699', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10584 INSERT INTO `marc_subfield_structure` VALUES ('699', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10585 INSERT INTO `marc_subfield_structure` VALUES ('699', '6', 'Linkage', 'Linkage', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10586 INSERT INTO `marc_subfield_structure` VALUES ('699', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10587 INSERT INTO `marc_subfield_structure` VALUES ('699', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'ASMP_SOUND_RECORDINGS', '', '');
10588 INSERT INTO `marc_subfield_structure` VALUES ('699', 'a', 'Uniform title', 'Uniform title', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10589 INSERT INTO `marc_subfield_structure` VALUES ('699', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10590 INSERT INTO `marc_subfield_structure` VALUES ('699', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10591 INSERT INTO `marc_subfield_structure` VALUES ('699', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10592 INSERT INTO `marc_subfield_structure` VALUES ('699', 'h', 'Medium', 'Medium', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10593 INSERT INTO `marc_subfield_structure` VALUES ('699', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10594 INSERT INTO `marc_subfield_structure` VALUES ('699', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10595 INSERT INTO `marc_subfield_structure` VALUES ('699', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10596 INSERT INTO `marc_subfield_structure` VALUES ('699', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10597 INSERT INTO `marc_subfield_structure` VALUES ('699', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10598 INSERT INTO `marc_subfield_structure` VALUES ('699', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10599 INSERT INTO `marc_subfield_structure` VALUES ('699', 'r', 'Key for music', 'Key for music', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10600 INSERT INTO `marc_subfield_structure` VALUES ('699', 's', 'Version', 'Version', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10601 INSERT INTO `marc_subfield_structure` VALUES ('699', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10602 INSERT INTO `marc_subfield_structure` VALUES ('699', 'v', 'Form subdivision', 'Form subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10603 INSERT INTO `marc_subfield_structure` VALUES ('699', 'x', 'General subdivision', 'General subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10604 INSERT INTO `marc_subfield_structure` VALUES ('699', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10605 INSERT INTO `marc_subfield_structure` VALUES ('700', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10606 INSERT INTO `marc_subfield_structure` VALUES ('700', '4', 'Relator code', 'Relator code', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10607 INSERT INTO `marc_subfield_structure` VALUES ('700', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10608 INSERT INTO `marc_subfield_structure` VALUES ('700', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10609 INSERT INTO `marc_subfield_structure` VALUES ('700', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10610 INSERT INTO `marc_subfield_structure` VALUES ('700', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'ASMP_SOUND_RECORDINGS', '', '');
10611 INSERT INTO `marc_subfield_structure` VALUES ('700', 'a', 'Personal name', 'Personal name', 0, 0, 'additionalauthors.author', 7, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10612 INSERT INTO `marc_subfield_structure` VALUES ('700', 'b', 'Numeration', 'Numeration', 0, 0, '', 7, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10613 INSERT INTO `marc_subfield_structure` VALUES ('700', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 7, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10614 INSERT INTO `marc_subfield_structure` VALUES ('700', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 7, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10615 INSERT INTO `marc_subfield_structure` VALUES ('700', 'e', 'Relator term', 'Relator term', 1, 0, '', 7, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10616 INSERT INTO `marc_subfield_structure` VALUES ('700', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10617 INSERT INTO `marc_subfield_structure` VALUES ('700', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10618 INSERT INTO `marc_subfield_structure` VALUES ('700', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10619 INSERT INTO `marc_subfield_structure` VALUES ('700', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10620 INSERT INTO `marc_subfield_structure` VALUES ('700', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10621 INSERT INTO `marc_subfield_structure` VALUES ('700', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10622 INSERT INTO `marc_subfield_structure` VALUES ('700', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10623 INSERT INTO `marc_subfield_structure` VALUES ('700', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10624 INSERT INTO `marc_subfield_structure` VALUES ('700', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10625 INSERT INTO `marc_subfield_structure` VALUES ('700', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10626 INSERT INTO `marc_subfield_structure` VALUES ('700', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 7, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10627 INSERT INTO `marc_subfield_structure` VALUES ('700', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10628 INSERT INTO `marc_subfield_structure` VALUES ('700', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10629 INSERT INTO `marc_subfield_structure` VALUES ('700', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10630 INSERT INTO `marc_subfield_structure` VALUES ('700', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10631 INSERT INTO `marc_subfield_structure` VALUES ('700', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10632 INSERT INTO `marc_subfield_structure` VALUES ('705', 'a', 'Personal name', 'Personal name', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10633 INSERT INTO `marc_subfield_structure` VALUES ('705', 'b', 'Numeration', 'Numeration', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10634 INSERT INTO `marc_subfield_structure` VALUES ('705', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10635 INSERT INTO `marc_subfield_structure` VALUES ('705', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10636 INSERT INTO `marc_subfield_structure` VALUES ('705', 'e', 'Relator term', 'Relator term', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10637 INSERT INTO `marc_subfield_structure` VALUES ('705', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10638 INSERT INTO `marc_subfield_structure` VALUES ('705', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10639 INSERT INTO `marc_subfield_structure` VALUES ('705', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10640 INSERT INTO `marc_subfield_structure` VALUES ('705', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10641 INSERT INTO `marc_subfield_structure` VALUES ('705', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10642 INSERT INTO `marc_subfield_structure` VALUES ('705', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10643 INSERT INTO `marc_subfield_structure` VALUES ('705', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10644 INSERT INTO `marc_subfield_structure` VALUES ('705', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10645 INSERT INTO `marc_subfield_structure` VALUES ('705', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10646 INSERT INTO `marc_subfield_structure` VALUES ('705', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10647 INSERT INTO `marc_subfield_structure` VALUES ('705', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10648 INSERT INTO `marc_subfield_structure` VALUES ('705', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10649 INSERT INTO `marc_subfield_structure` VALUES ('710', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10650 INSERT INTO `marc_subfield_structure` VALUES ('710', '4', 'Relator code', 'Relator code', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10651 INSERT INTO `marc_subfield_structure` VALUES ('710', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10652 INSERT INTO `marc_subfield_structure` VALUES ('710', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10653 INSERT INTO `marc_subfield_structure` VALUES ('710', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10654 INSERT INTO `marc_subfield_structure` VALUES ('710', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'ASMP_SOUND_RECORDINGS', '', '');
10655 INSERT INTO `marc_subfield_structure` VALUES ('710', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 7, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10656 INSERT INTO `marc_subfield_structure` VALUES ('710', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 7, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10657 INSERT INTO `marc_subfield_structure` VALUES ('710', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 7, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10658 INSERT INTO `marc_subfield_structure` VALUES ('710', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 7, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10659 INSERT INTO `marc_subfield_structure` VALUES ('710', 'e', 'Relator term', 'Relator term', 1, 0, '', 7, '', '', '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10660 INSERT INTO `marc_subfield_structure` VALUES ('710', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10661 INSERT INTO `marc_subfield_structure` VALUES ('710', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10662 INSERT INTO `marc_subfield_structure` VALUES ('710', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10663 INSERT INTO `marc_subfield_structure` VALUES ('710', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10664 INSERT INTO `marc_subfield_structure` VALUES ('710', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10665 INSERT INTO `marc_subfield_structure` VALUES ('710', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10666 INSERT INTO `marc_subfield_structure` VALUES ('710', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10667 INSERT INTO `marc_subfield_structure` VALUES ('710', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10668 INSERT INTO `marc_subfield_structure` VALUES ('710', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10669 INSERT INTO `marc_subfield_structure` VALUES ('710', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10670 INSERT INTO `marc_subfield_structure` VALUES ('710', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10671 INSERT INTO `marc_subfield_structure` VALUES ('710', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10672 INSERT INTO `marc_subfield_structure` VALUES ('710', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10673 INSERT INTO `marc_subfield_structure` VALUES ('710', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10674 INSERT INTO `marc_subfield_structure` VALUES ('711', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10675 INSERT INTO `marc_subfield_structure` VALUES ('711', '4', 'Relator code', 'Relator code', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10676 INSERT INTO `marc_subfield_structure` VALUES ('711', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10677 INSERT INTO `marc_subfield_structure` VALUES ('711', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10678 INSERT INTO `marc_subfield_structure` VALUES ('711', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10679 INSERT INTO `marc_subfield_structure` VALUES ('711', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'ASMP_SOUND_RECORDINGS', '', '');
10680 INSERT INTO `marc_subfield_structure` VALUES ('711', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 7, NULL, NULL, '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10681 INSERT INTO `marc_subfield_structure` VALUES ('711', 'b', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10682 INSERT INTO `marc_subfield_structure` VALUES ('711', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 7, NULL, NULL, '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10683 INSERT INTO `marc_subfield_structure` VALUES ('711', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 7, NULL, NULL, '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10684 INSERT INTO `marc_subfield_structure` VALUES ('711', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 7, NULL, NULL, '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10685 INSERT INTO `marc_subfield_structure` VALUES ('711', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10686 INSERT INTO `marc_subfield_structure` VALUES ('711', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10687 INSERT INTO `marc_subfield_structure` VALUES ('711', 'h', 'Medium', 'Medium', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10688 INSERT INTO `marc_subfield_structure` VALUES ('711', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10689 INSERT INTO `marc_subfield_structure` VALUES ('711', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10690 INSERT INTO `marc_subfield_structure` VALUES ('711', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10691 INSERT INTO `marc_subfield_structure` VALUES ('711', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10692 INSERT INTO `marc_subfield_structure` VALUES ('711', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10693 INSERT INTO `marc_subfield_structure` VALUES ('711', 's', 'Version', 'Version', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10694 INSERT INTO `marc_subfield_structure` VALUES ('711', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10695 INSERT INTO `marc_subfield_structure` VALUES ('711', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10696 INSERT INTO `marc_subfield_structure` VALUES ('711', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10697 INSERT INTO `marc_subfield_structure` VALUES ('715', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 7, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10698 INSERT INTO `marc_subfield_structure` VALUES ('715', 'a', 'Corporate name or jurisdiction name', 'Corporate name or jurisdiction name', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10699 INSERT INTO `marc_subfield_structure` VALUES ('715', 'b', 'Subordinate unit', 'Subordinate unit', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10700 INSERT INTO `marc_subfield_structure` VALUES ('715', 'e', 'Relator term', 'Relator term', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10701 INSERT INTO `marc_subfield_structure` VALUES ('715', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10702 INSERT INTO `marc_subfield_structure` VALUES ('715', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10703 INSERT INTO `marc_subfield_structure` VALUES ('715', 'h', 'Medium', 'Medium', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10704 INSERT INTO `marc_subfield_structure` VALUES ('715', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10705 INSERT INTO `marc_subfield_structure` VALUES ('715', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10706 INSERT INTO `marc_subfield_structure` VALUES ('715', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10707 INSERT INTO `marc_subfield_structure` VALUES ('715', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10708 INSERT INTO `marc_subfield_structure` VALUES ('715', 'r', 'Key for music', 'Key for music', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10709 INSERT INTO `marc_subfield_structure` VALUES ('715', 's', 'Version', 'Version', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10710 INSERT INTO `marc_subfield_structure` VALUES ('715', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10711 INSERT INTO `marc_subfield_structure` VALUES ('715', 'u', 'Nonprinting information', 'Nonprinting information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10712 INSERT INTO `marc_subfield_structure` VALUES ('720', '4', 'Relator code', 'Relator code', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10713 INSERT INTO `marc_subfield_structure` VALUES ('720', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10714 INSERT INTO `marc_subfield_structure` VALUES ('720', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10715 INSERT INTO `marc_subfield_structure` VALUES ('720', 'a', 'Name', 'Name', 0, 0, '', 7, NULL, NULL, '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10716 INSERT INTO `marc_subfield_structure` VALUES ('720', 'e', 'Relator term', 'Relator term', 1, 0, NULL, 7, NULL, NULL, '', NULL, -1, 'ASMP_SOUND_RECORDINGS', '', '');
10717 INSERT INTO `marc_subfield_structure` VALUES ('730', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10718 INSERT INTO `marc_subfield_structure` VALUES ('730', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10719 INSERT INTO `marc_subfield_structure` VALUES ('730', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10720 INSERT INTO `marc_subfield_structure` VALUES ('730', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10721 INSERT INTO `marc_subfield_structure` VALUES ('730', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'ASMP_SOUND_RECORDINGS', '', '');
10722 INSERT INTO `marc_subfield_structure` VALUES ('730', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10723 INSERT INTO `marc_subfield_structure` VALUES ('730', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10724 INSERT INTO `marc_subfield_structure` VALUES ('730', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10725 INSERT INTO `marc_subfield_structure` VALUES ('730', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10726 INSERT INTO `marc_subfield_structure` VALUES ('730', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10727 INSERT INTO `marc_subfield_structure` VALUES ('730', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10728 INSERT INTO `marc_subfield_structure` VALUES ('730', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10729 INSERT INTO `marc_subfield_structure` VALUES ('730', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10730 INSERT INTO `marc_subfield_structure` VALUES ('730', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10731 INSERT INTO `marc_subfield_structure` VALUES ('730', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10732 INSERT INTO `marc_subfield_structure` VALUES ('730', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10733 INSERT INTO `marc_subfield_structure` VALUES ('730', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10734 INSERT INTO `marc_subfield_structure` VALUES ('730', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10735 INSERT INTO `marc_subfield_structure` VALUES ('730', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10736 INSERT INTO `marc_subfield_structure` VALUES ('730', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10737 INSERT INTO `marc_subfield_structure` VALUES ('740', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10738 INSERT INTO `marc_subfield_structure` VALUES ('740', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10739 INSERT INTO `marc_subfield_structure` VALUES ('740', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10740 INSERT INTO `marc_subfield_structure` VALUES ('740', 'a', 'Uncontrolled related/analytical title', 'Uncontrolled related/analytical title', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10741 INSERT INTO `marc_subfield_structure` VALUES ('740', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10742 INSERT INTO `marc_subfield_structure` VALUES ('740', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10743 INSERT INTO `marc_subfield_structure` VALUES ('740', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10744 INSERT INTO `marc_subfield_structure` VALUES ('752', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10745 INSERT INTO `marc_subfield_structure` VALUES ('752', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10746 INSERT INTO `marc_subfield_structure` VALUES ('752', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10747 INSERT INTO `marc_subfield_structure` VALUES ('752', 'a', 'Country or larger entity', 'Country or larger entity', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10748 INSERT INTO `marc_subfield_structure` VALUES ('752', 'b', 'First-order political jurisdiction', 'First-order political jurisdiction', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10749 INSERT INTO `marc_subfield_structure` VALUES ('752', 'c', 'Intermediate political jurisdiction', 'Intermediate political jurisdiction', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10750 INSERT INTO `marc_subfield_structure` VALUES ('752', 'd', 'City', 'City', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10751 INSERT INTO `marc_subfield_structure` VALUES ('752', 'f', 'City subsection', 'City subsection', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10752 INSERT INTO `marc_subfield_structure` VALUES ('752', 'g', 'Other nonjurisdictional geographic region and feature', 'Other nonjurisdictional geographic region and feature', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10753 INSERT INTO `marc_subfield_structure` VALUES ('752', 'h', 'Extraterrestrial area', 'Extraterrestrial area', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10754 INSERT INTO `marc_subfield_structure` VALUES ('753', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10755 INSERT INTO `marc_subfield_structure` VALUES ('753', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10756 INSERT INTO `marc_subfield_structure` VALUES ('753', 'a', 'Make and model of machine', 'Make and model of machine', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10757 INSERT INTO `marc_subfield_structure` VALUES ('753', 'b', 'Programming language', 'Programming language', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10758 INSERT INTO `marc_subfield_structure` VALUES ('753', 'c', 'Operating system', 'Operating system', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10759 INSERT INTO `marc_subfield_structure` VALUES ('754', '2', 'Source of taxonomic identification', 'Source of taxonomic identification', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10760 INSERT INTO `marc_subfield_structure` VALUES ('754', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10761 INSERT INTO `marc_subfield_structure` VALUES ('754', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10762 INSERT INTO `marc_subfield_structure` VALUES ('754', 'a', 'Taxonomic name', 'Taxonomic name', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10763 INSERT INTO `marc_subfield_structure` VALUES ('754', 'c', 'Taxonomic category', 'Taxonomic category', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10764 INSERT INTO `marc_subfield_structure` VALUES ('754', 'd', 'Common or alternative name', 'Common or alternative name', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10765 INSERT INTO `marc_subfield_structure` VALUES ('754', 'x', 'Non-public note', 'Non-public note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10766 INSERT INTO `marc_subfield_structure` VALUES ('754', 'z', 'Public note', 'Public note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10767 INSERT INTO `marc_subfield_structure` VALUES ('755', '2', 'Source of taxonomic identification', 'Source of taxonomic identification', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10768 INSERT INTO `marc_subfield_structure` VALUES ('755', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10769 INSERT INTO `marc_subfield_structure` VALUES ('755', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10770 INSERT INTO `marc_subfield_structure` VALUES ('755', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10771 INSERT INTO `marc_subfield_structure` VALUES ('755', 'a', 'Access term', 'Access term', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10772 INSERT INTO `marc_subfield_structure` VALUES ('755', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10773 INSERT INTO `marc_subfield_structure` VALUES ('755', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10774 INSERT INTO `marc_subfield_structure` VALUES ('755', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10775 INSERT INTO `marc_subfield_structure` VALUES ('760', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10776 INSERT INTO `marc_subfield_structure` VALUES ('760', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10777 INSERT INTO `marc_subfield_structure` VALUES ('760', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10778 INSERT INTO `marc_subfield_structure` VALUES ('760', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10779 INSERT INTO `marc_subfield_structure` VALUES ('760', 'b', 'Edition', 'Edition', 0, 0, NULL, -6, NULL, NULL, '', NULL, 0, 'ASMP_SOUND_RECORDINGS', '', '');
10780 INSERT INTO `marc_subfield_structure` VALUES ('760', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10781 INSERT INTO `marc_subfield_structure` VALUES ('760', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10782 INSERT INTO `marc_subfield_structure` VALUES ('760', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10783 INSERT INTO `marc_subfield_structure` VALUES ('760', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10784 INSERT INTO `marc_subfield_structure` VALUES ('760', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10785 INSERT INTO `marc_subfield_structure` VALUES ('760', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10786 INSERT INTO `marc_subfield_structure` VALUES ('760', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10787 INSERT INTO `marc_subfield_structure` VALUES ('760', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10788 INSERT INTO `marc_subfield_structure` VALUES ('760', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10789 INSERT INTO `marc_subfield_structure` VALUES ('760', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10790 INSERT INTO `marc_subfield_structure` VALUES ('760', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10791 INSERT INTO `marc_subfield_structure` VALUES ('760', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10792 INSERT INTO `marc_subfield_structure` VALUES ('760', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10793 INSERT INTO `marc_subfield_structure` VALUES ('760', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10794 INSERT INTO `marc_subfield_structure` VALUES ('762', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10795 INSERT INTO `marc_subfield_structure` VALUES ('762', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10796 INSERT INTO `marc_subfield_structure` VALUES ('762', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10797 INSERT INTO `marc_subfield_structure` VALUES ('762', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10798 INSERT INTO `marc_subfield_structure` VALUES ('762', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10799 INSERT INTO `marc_subfield_structure` VALUES ('762', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10800 INSERT INTO `marc_subfield_structure` VALUES ('762', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10801 INSERT INTO `marc_subfield_structure` VALUES ('762', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10802 INSERT INTO `marc_subfield_structure` VALUES ('762', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10803 INSERT INTO `marc_subfield_structure` VALUES ('762', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10804 INSERT INTO `marc_subfield_structure` VALUES ('762', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10805 INSERT INTO `marc_subfield_structure` VALUES ('762', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10806 INSERT INTO `marc_subfield_structure` VALUES ('762', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10807 INSERT INTO `marc_subfield_structure` VALUES ('762', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10808 INSERT INTO `marc_subfield_structure` VALUES ('762', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10809 INSERT INTO `marc_subfield_structure` VALUES ('762', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10810 INSERT INTO `marc_subfield_structure` VALUES ('762', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10811 INSERT INTO `marc_subfield_structure` VALUES ('762', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10812 INSERT INTO `marc_subfield_structure` VALUES ('762', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10813 INSERT INTO `marc_subfield_structure` VALUES ('765', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10814 INSERT INTO `marc_subfield_structure` VALUES ('765', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10815 INSERT INTO `marc_subfield_structure` VALUES ('765', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10816 INSERT INTO `marc_subfield_structure` VALUES ('765', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10817 INSERT INTO `marc_subfield_structure` VALUES ('765', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10818 INSERT INTO `marc_subfield_structure` VALUES ('765', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10819 INSERT INTO `marc_subfield_structure` VALUES ('765', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10820 INSERT INTO `marc_subfield_structure` VALUES ('765', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10821 INSERT INTO `marc_subfield_structure` VALUES ('765', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10822 INSERT INTO `marc_subfield_structure` VALUES ('765', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10823 INSERT INTO `marc_subfield_structure` VALUES ('765', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10824 INSERT INTO `marc_subfield_structure` VALUES ('765', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10825 INSERT INTO `marc_subfield_structure` VALUES ('765', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10826 INSERT INTO `marc_subfield_structure` VALUES ('765', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10827 INSERT INTO `marc_subfield_structure` VALUES ('765', 'q', 'Parallel title (BK SE)  [OBSOLETE]', 'Parallel title (BK SE)  [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10828 INSERT INTO `marc_subfield_structure` VALUES ('765', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10829 INSERT INTO `marc_subfield_structure` VALUES ('765', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10830 INSERT INTO `marc_subfield_structure` VALUES ('765', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10831 INSERT INTO `marc_subfield_structure` VALUES ('765', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10832 INSERT INTO `marc_subfield_structure` VALUES ('765', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10833 INSERT INTO `marc_subfield_structure` VALUES ('765', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10834 INSERT INTO `marc_subfield_structure` VALUES ('765', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10835 INSERT INTO `marc_subfield_structure` VALUES ('765', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10836 INSERT INTO `marc_subfield_structure` VALUES ('767', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10837 INSERT INTO `marc_subfield_structure` VALUES ('767', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10838 INSERT INTO `marc_subfield_structure` VALUES ('767', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10839 INSERT INTO `marc_subfield_structure` VALUES ('767', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10840 INSERT INTO `marc_subfield_structure` VALUES ('767', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10841 INSERT INTO `marc_subfield_structure` VALUES ('767', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10842 INSERT INTO `marc_subfield_structure` VALUES ('767', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10843 INSERT INTO `marc_subfield_structure` VALUES ('767', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10844 INSERT INTO `marc_subfield_structure` VALUES ('767', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10845 INSERT INTO `marc_subfield_structure` VALUES ('767', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10846 INSERT INTO `marc_subfield_structure` VALUES ('767', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10847 INSERT INTO `marc_subfield_structure` VALUES ('767', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10848 INSERT INTO `marc_subfield_structure` VALUES ('767', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10849 INSERT INTO `marc_subfield_structure` VALUES ('767', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10850 INSERT INTO `marc_subfield_structure` VALUES ('767', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10851 INSERT INTO `marc_subfield_structure` VALUES ('767', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10852 INSERT INTO `marc_subfield_structure` VALUES ('767', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10853 INSERT INTO `marc_subfield_structure` VALUES ('767', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10854 INSERT INTO `marc_subfield_structure` VALUES ('767', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10855 INSERT INTO `marc_subfield_structure` VALUES ('767', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10856 INSERT INTO `marc_subfield_structure` VALUES ('767', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10857 INSERT INTO `marc_subfield_structure` VALUES ('767', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10858 INSERT INTO `marc_subfield_structure` VALUES ('767', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10859 INSERT INTO `marc_subfield_structure` VALUES ('770', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10860 INSERT INTO `marc_subfield_structure` VALUES ('770', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10861 INSERT INTO `marc_subfield_structure` VALUES ('770', '8', 'Field link and sequence number', 'Field link and sequence number ', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10862 INSERT INTO `marc_subfield_structure` VALUES ('770', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10863 INSERT INTO `marc_subfield_structure` VALUES ('770', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10864 INSERT INTO `marc_subfield_structure` VALUES ('770', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10865 INSERT INTO `marc_subfield_structure` VALUES ('770', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10866 INSERT INTO `marc_subfield_structure` VALUES ('770', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10867 INSERT INTO `marc_subfield_structure` VALUES ('770', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10868 INSERT INTO `marc_subfield_structure` VALUES ('770', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10869 INSERT INTO `marc_subfield_structure` VALUES ('770', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10870 INSERT INTO `marc_subfield_structure` VALUES ('770', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10871 INSERT INTO `marc_subfield_structure` VALUES ('770', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10872 INSERT INTO `marc_subfield_structure` VALUES ('770', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10873 INSERT INTO `marc_subfield_structure` VALUES ('770', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10874 INSERT INTO `marc_subfield_structure` VALUES ('770', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10875 INSERT INTO `marc_subfield_structure` VALUES ('770', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10876 INSERT INTO `marc_subfield_structure` VALUES ('770', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10877 INSERT INTO `marc_subfield_structure` VALUES ('770', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10878 INSERT INTO `marc_subfield_structure` VALUES ('770', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10879 INSERT INTO `marc_subfield_structure` VALUES ('770', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10880 INSERT INTO `marc_subfield_structure` VALUES ('770', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10881 INSERT INTO `marc_subfield_structure` VALUES ('770', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10882 INSERT INTO `marc_subfield_structure` VALUES ('772', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10883 INSERT INTO `marc_subfield_structure` VALUES ('772', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10884 INSERT INTO `marc_subfield_structure` VALUES ('772', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10885 INSERT INTO `marc_subfield_structure` VALUES ('772', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10886 INSERT INTO `marc_subfield_structure` VALUES ('772', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10887 INSERT INTO `marc_subfield_structure` VALUES ('772', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10888 INSERT INTO `marc_subfield_structure` VALUES ('772', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10889 INSERT INTO `marc_subfield_structure` VALUES ('772', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10890 INSERT INTO `marc_subfield_structure` VALUES ('772', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10891 INSERT INTO `marc_subfield_structure` VALUES ('772', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10892 INSERT INTO `marc_subfield_structure` VALUES ('772', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10893 INSERT INTO `marc_subfield_structure` VALUES ('772', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10894 INSERT INTO `marc_subfield_structure` VALUES ('772', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10895 INSERT INTO `marc_subfield_structure` VALUES ('772', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10896 INSERT INTO `marc_subfield_structure` VALUES ('772', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10897 INSERT INTO `marc_subfield_structure` VALUES ('772', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10898 INSERT INTO `marc_subfield_structure` VALUES ('772', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10899 INSERT INTO `marc_subfield_structure` VALUES ('772', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10900 INSERT INTO `marc_subfield_structure` VALUES ('772', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10901 INSERT INTO `marc_subfield_structure` VALUES ('772', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10902 INSERT INTO `marc_subfield_structure` VALUES ('772', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10903 INSERT INTO `marc_subfield_structure` VALUES ('772', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10904 INSERT INTO `marc_subfield_structure` VALUES ('772', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10905 INSERT INTO `marc_subfield_structure` VALUES ('773', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10906 INSERT INTO `marc_subfield_structure` VALUES ('773', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10907 INSERT INTO `marc_subfield_structure` VALUES ('773', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10908 INSERT INTO `marc_subfield_structure` VALUES ('773', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10909 INSERT INTO `marc_subfield_structure` VALUES ('773', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10910 INSERT INTO `marc_subfield_structure` VALUES ('773', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10911 INSERT INTO `marc_subfield_structure` VALUES ('773', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10912 INSERT INTO `marc_subfield_structure` VALUES ('773', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10913 INSERT INTO `marc_subfield_structure` VALUES ('773', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10914 INSERT INTO `marc_subfield_structure` VALUES ('773', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10915 INSERT INTO `marc_subfield_structure` VALUES ('773', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10916 INSERT INTO `marc_subfield_structure` VALUES ('773', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10917 INSERT INTO `marc_subfield_structure` VALUES ('773', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10918 INSERT INTO `marc_subfield_structure` VALUES ('773', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10919 INSERT INTO `marc_subfield_structure` VALUES ('773', 'p', 'Abbreviated title', 'Abbreviated title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10920 INSERT INTO `marc_subfield_structure` VALUES ('773', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10921 INSERT INTO `marc_subfield_structure` VALUES ('773', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10922 INSERT INTO `marc_subfield_structure` VALUES ('773', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10923 INSERT INTO `marc_subfield_structure` VALUES ('773', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10924 INSERT INTO `marc_subfield_structure` VALUES ('773', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10925 INSERT INTO `marc_subfield_structure` VALUES ('773', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10926 INSERT INTO `marc_subfield_structure` VALUES ('773', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10927 INSERT INTO `marc_subfield_structure` VALUES ('773', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10928 INSERT INTO `marc_subfield_structure` VALUES ('774', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10929 INSERT INTO `marc_subfield_structure` VALUES ('774', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10930 INSERT INTO `marc_subfield_structure` VALUES ('774', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10931 INSERT INTO `marc_subfield_structure` VALUES ('774', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10932 INSERT INTO `marc_subfield_structure` VALUES ('774', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10933 INSERT INTO `marc_subfield_structure` VALUES ('774', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10934 INSERT INTO `marc_subfield_structure` VALUES ('774', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10935 INSERT INTO `marc_subfield_structure` VALUES ('774', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10936 INSERT INTO `marc_subfield_structure` VALUES ('774', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10937 INSERT INTO `marc_subfield_structure` VALUES ('774', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10938 INSERT INTO `marc_subfield_structure` VALUES ('774', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10939 INSERT INTO `marc_subfield_structure` VALUES ('774', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10940 INSERT INTO `marc_subfield_structure` VALUES ('774', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10941 INSERT INTO `marc_subfield_structure` VALUES ('774', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10942 INSERT INTO `marc_subfield_structure` VALUES ('774', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10943 INSERT INTO `marc_subfield_structure` VALUES ('774', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10944 INSERT INTO `marc_subfield_structure` VALUES ('774', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10945 INSERT INTO `marc_subfield_structure` VALUES ('774', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10946 INSERT INTO `marc_subfield_structure` VALUES ('774', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10947 INSERT INTO `marc_subfield_structure` VALUES ('774', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10948 INSERT INTO `marc_subfield_structure` VALUES ('774', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10949 INSERT INTO `marc_subfield_structure` VALUES ('774', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10950 INSERT INTO `marc_subfield_structure` VALUES ('775', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10951 INSERT INTO `marc_subfield_structure` VALUES ('775', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10952 INSERT INTO `marc_subfield_structure` VALUES ('775', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10953 INSERT INTO `marc_subfield_structure` VALUES ('775', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10954 INSERT INTO `marc_subfield_structure` VALUES ('775', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10955 INSERT INTO `marc_subfield_structure` VALUES ('775', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10956 INSERT INTO `marc_subfield_structure` VALUES ('775', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10957 INSERT INTO `marc_subfield_structure` VALUES ('775', 'e', 'Language code', 'Language code', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10958 INSERT INTO `marc_subfield_structure` VALUES ('775', 'f', 'Country code', 'Country code', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10959 INSERT INTO `marc_subfield_structure` VALUES ('775', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10960 INSERT INTO `marc_subfield_structure` VALUES ('775', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10961 INSERT INTO `marc_subfield_structure` VALUES ('775', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10962 INSERT INTO `marc_subfield_structure` VALUES ('775', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10963 INSERT INTO `marc_subfield_structure` VALUES ('775', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10964 INSERT INTO `marc_subfield_structure` VALUES ('775', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10965 INSERT INTO `marc_subfield_structure` VALUES ('775', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10966 INSERT INTO `marc_subfield_structure` VALUES ('775', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10967 INSERT INTO `marc_subfield_structure` VALUES ('775', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10968 INSERT INTO `marc_subfield_structure` VALUES ('775', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10969 INSERT INTO `marc_subfield_structure` VALUES ('775', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10970 INSERT INTO `marc_subfield_structure` VALUES ('775', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10971 INSERT INTO `marc_subfield_structure` VALUES ('775', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10972 INSERT INTO `marc_subfield_structure` VALUES ('775', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10973 INSERT INTO `marc_subfield_structure` VALUES ('775', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10974 INSERT INTO `marc_subfield_structure` VALUES ('775', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10975 INSERT INTO `marc_subfield_structure` VALUES ('776', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10976 INSERT INTO `marc_subfield_structure` VALUES ('776', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10977 INSERT INTO `marc_subfield_structure` VALUES ('776', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10978 INSERT INTO `marc_subfield_structure` VALUES ('776', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10979 INSERT INTO `marc_subfield_structure` VALUES ('776', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10980 INSERT INTO `marc_subfield_structure` VALUES ('776', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10981 INSERT INTO `marc_subfield_structure` VALUES ('776', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10982 INSERT INTO `marc_subfield_structure` VALUES ('776', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10983 INSERT INTO `marc_subfield_structure` VALUES ('776', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10984 INSERT INTO `marc_subfield_structure` VALUES ('776', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10985 INSERT INTO `marc_subfield_structure` VALUES ('776', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10986 INSERT INTO `marc_subfield_structure` VALUES ('776', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10987 INSERT INTO `marc_subfield_structure` VALUES ('776', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10988 INSERT INTO `marc_subfield_structure` VALUES ('776', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10989 INSERT INTO `marc_subfield_structure` VALUES ('776', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10990 INSERT INTO `marc_subfield_structure` VALUES ('776', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10991 INSERT INTO `marc_subfield_structure` VALUES ('776', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10992 INSERT INTO `marc_subfield_structure` VALUES ('776', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10993 INSERT INTO `marc_subfield_structure` VALUES ('776', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10994 INSERT INTO `marc_subfield_structure` VALUES ('776', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10995 INSERT INTO `marc_subfield_structure` VALUES ('776', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10996 INSERT INTO `marc_subfield_structure` VALUES ('776', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10997 INSERT INTO `marc_subfield_structure` VALUES ('776', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10998 INSERT INTO `marc_subfield_structure` VALUES ('777', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
10999 INSERT INTO `marc_subfield_structure` VALUES ('777', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11000 INSERT INTO `marc_subfield_structure` VALUES ('777', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11001 INSERT INTO `marc_subfield_structure` VALUES ('777', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11002 INSERT INTO `marc_subfield_structure` VALUES ('777', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11003 INSERT INTO `marc_subfield_structure` VALUES ('777', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11004 INSERT INTO `marc_subfield_structure` VALUES ('777', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11005 INSERT INTO `marc_subfield_structure` VALUES ('777', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11006 INSERT INTO `marc_subfield_structure` VALUES ('777', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11007 INSERT INTO `marc_subfield_structure` VALUES ('777', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11008 INSERT INTO `marc_subfield_structure` VALUES ('777', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11009 INSERT INTO `marc_subfield_structure` VALUES ('777', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11010 INSERT INTO `marc_subfield_structure` VALUES ('777', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11011 INSERT INTO `marc_subfield_structure` VALUES ('777', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11012 INSERT INTO `marc_subfield_structure` VALUES ('777', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11013 INSERT INTO `marc_subfield_structure` VALUES ('777', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11014 INSERT INTO `marc_subfield_structure` VALUES ('777', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11015 INSERT INTO `marc_subfield_structure` VALUES ('777', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11016 INSERT INTO `marc_subfield_structure` VALUES ('777', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11017 INSERT INTO `marc_subfield_structure` VALUES ('777', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11018 INSERT INTO `marc_subfield_structure` VALUES ('780', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11019 INSERT INTO `marc_subfield_structure` VALUES ('780', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11020 INSERT INTO `marc_subfield_structure` VALUES ('780', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11021 INSERT INTO `marc_subfield_structure` VALUES ('780', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11022 INSERT INTO `marc_subfield_structure` VALUES ('780', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11023 INSERT INTO `marc_subfield_structure` VALUES ('780', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11024 INSERT INTO `marc_subfield_structure` VALUES ('780', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11025 INSERT INTO `marc_subfield_structure` VALUES ('780', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11026 INSERT INTO `marc_subfield_structure` VALUES ('780', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11027 INSERT INTO `marc_subfield_structure` VALUES ('780', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11028 INSERT INTO `marc_subfield_structure` VALUES ('780', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11029 INSERT INTO `marc_subfield_structure` VALUES ('780', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11030 INSERT INTO `marc_subfield_structure` VALUES ('780', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11031 INSERT INTO `marc_subfield_structure` VALUES ('780', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11032 INSERT INTO `marc_subfield_structure` VALUES ('780', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11033 INSERT INTO `marc_subfield_structure` VALUES ('780', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11034 INSERT INTO `marc_subfield_structure` VALUES ('780', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11035 INSERT INTO `marc_subfield_structure` VALUES ('780', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11036 INSERT INTO `marc_subfield_structure` VALUES ('780', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11037 INSERT INTO `marc_subfield_structure` VALUES ('780', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11038 INSERT INTO `marc_subfield_structure` VALUES ('780', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11039 INSERT INTO `marc_subfield_structure` VALUES ('780', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11040 INSERT INTO `marc_subfield_structure` VALUES ('780', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11041 INSERT INTO `marc_subfield_structure` VALUES ('785', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11042 INSERT INTO `marc_subfield_structure` VALUES ('785', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11043 INSERT INTO `marc_subfield_structure` VALUES ('785', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11044 INSERT INTO `marc_subfield_structure` VALUES ('785', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11045 INSERT INTO `marc_subfield_structure` VALUES ('785', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11046 INSERT INTO `marc_subfield_structure` VALUES ('785', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11047 INSERT INTO `marc_subfield_structure` VALUES ('785', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11048 INSERT INTO `marc_subfield_structure` VALUES ('785', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11049 INSERT INTO `marc_subfield_structure` VALUES ('785', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11050 INSERT INTO `marc_subfield_structure` VALUES ('785', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11051 INSERT INTO `marc_subfield_structure` VALUES ('785', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11052 INSERT INTO `marc_subfield_structure` VALUES ('785', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11053 INSERT INTO `marc_subfield_structure` VALUES ('785', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11054 INSERT INTO `marc_subfield_structure` VALUES ('785', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11055 INSERT INTO `marc_subfield_structure` VALUES ('785', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11056 INSERT INTO `marc_subfield_structure` VALUES ('785', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11057 INSERT INTO `marc_subfield_structure` VALUES ('785', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11058 INSERT INTO `marc_subfield_structure` VALUES ('785', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11059 INSERT INTO `marc_subfield_structure` VALUES ('785', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11060 INSERT INTO `marc_subfield_structure` VALUES ('785', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11061 INSERT INTO `marc_subfield_structure` VALUES ('785', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11062 INSERT INTO `marc_subfield_structure` VALUES ('785', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11063 INSERT INTO `marc_subfield_structure` VALUES ('785', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11064 INSERT INTO `marc_subfield_structure` VALUES ('786', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11065 INSERT INTO `marc_subfield_structure` VALUES ('786', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11066 INSERT INTO `marc_subfield_structure` VALUES ('786', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11067 INSERT INTO `marc_subfield_structure` VALUES ('786', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11068 INSERT INTO `marc_subfield_structure` VALUES ('786', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11069 INSERT INTO `marc_subfield_structure` VALUES ('786', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11070 INSERT INTO `marc_subfield_structure` VALUES ('786', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11071 INSERT INTO `marc_subfield_structure` VALUES ('786', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11072 INSERT INTO `marc_subfield_structure` VALUES ('786', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11073 INSERT INTO `marc_subfield_structure` VALUES ('786', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11074 INSERT INTO `marc_subfield_structure` VALUES ('786', 'j', 'Period of content', 'Period of content', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11075 INSERT INTO `marc_subfield_structure` VALUES ('786', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11076 INSERT INTO `marc_subfield_structure` VALUES ('786', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11077 INSERT INTO `marc_subfield_structure` VALUES ('786', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11078 INSERT INTO `marc_subfield_structure` VALUES ('786', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11079 INSERT INTO `marc_subfield_structure` VALUES ('786', 'p', 'Abbreviated title', 'Abbreviated title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11080 INSERT INTO `marc_subfield_structure` VALUES ('786', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11081 INSERT INTO `marc_subfield_structure` VALUES ('786', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11082 INSERT INTO `marc_subfield_structure` VALUES ('786', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11083 INSERT INTO `marc_subfield_structure` VALUES ('786', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11084 INSERT INTO `marc_subfield_structure` VALUES ('786', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11085 INSERT INTO `marc_subfield_structure` VALUES ('786', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11086 INSERT INTO `marc_subfield_structure` VALUES ('786', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11087 INSERT INTO `marc_subfield_structure` VALUES ('786', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11088 INSERT INTO `marc_subfield_structure` VALUES ('787', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11089 INSERT INTO `marc_subfield_structure` VALUES ('787', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11090 INSERT INTO `marc_subfield_structure` VALUES ('787', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11091 INSERT INTO `marc_subfield_structure` VALUES ('787', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11092 INSERT INTO `marc_subfield_structure` VALUES ('787', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11093 INSERT INTO `marc_subfield_structure` VALUES ('787', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11094 INSERT INTO `marc_subfield_structure` VALUES ('787', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11095 INSERT INTO `marc_subfield_structure` VALUES ('787', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11096 INSERT INTO `marc_subfield_structure` VALUES ('787', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11097 INSERT INTO `marc_subfield_structure` VALUES ('787', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11098 INSERT INTO `marc_subfield_structure` VALUES ('787', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11099 INSERT INTO `marc_subfield_structure` VALUES ('787', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11100 INSERT INTO `marc_subfield_structure` VALUES ('787', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11101 INSERT INTO `marc_subfield_structure` VALUES ('787', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11102 INSERT INTO `marc_subfield_structure` VALUES ('787', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11103 INSERT INTO `marc_subfield_structure` VALUES ('787', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11104 INSERT INTO `marc_subfield_structure` VALUES ('787', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11105 INSERT INTO `marc_subfield_structure` VALUES ('787', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11106 INSERT INTO `marc_subfield_structure` VALUES ('787', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11107 INSERT INTO `marc_subfield_structure` VALUES ('787', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11108 INSERT INTO `marc_subfield_structure` VALUES ('787', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11109 INSERT INTO `marc_subfield_structure` VALUES ('787', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11110 INSERT INTO `marc_subfield_structure` VALUES ('787', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11111 INSERT INTO `marc_subfield_structure` VALUES ('789', '%', '%', '%', 0, 0, '', 7, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11112 INSERT INTO `marc_subfield_structure` VALUES ('789', '2', '2', '2', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11113 INSERT INTO `marc_subfield_structure` VALUES ('789', '3', '3', '3', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11114 INSERT INTO `marc_subfield_structure` VALUES ('789', '4', '4', '4', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11115 INSERT INTO `marc_subfield_structure` VALUES ('789', '5', '5', '5', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11116 INSERT INTO `marc_subfield_structure` VALUES ('789', '6', '6', '6', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11117 INSERT INTO `marc_subfield_structure` VALUES ('789', '7', '7', '7', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11118 INSERT INTO `marc_subfield_structure` VALUES ('789', '8', '8', '8', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11119 INSERT INTO `marc_subfield_structure` VALUES ('789', '9', '9', '9', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11120 INSERT INTO `marc_subfield_structure` VALUES ('789', 'a', 'a', 'a', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11121 INSERT INTO `marc_subfield_structure` VALUES ('789', 'b', 'b', 'b', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11122 INSERT INTO `marc_subfield_structure` VALUES ('789', 'c', 'c', 'c', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11123 INSERT INTO `marc_subfield_structure` VALUES ('789', 'd', 'd', 'd', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11124 INSERT INTO `marc_subfield_structure` VALUES ('789', 'e', 'e', 'e', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11125 INSERT INTO `marc_subfield_structure` VALUES ('789', 'f', 'f', 'f', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11126 INSERT INTO `marc_subfield_structure` VALUES ('789', 'g', 'g', 'g', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11127 INSERT INTO `marc_subfield_structure` VALUES ('789', 'h', 'h', 'h', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11128 INSERT INTO `marc_subfield_structure` VALUES ('789', 'i', 'i', 'i', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11129 INSERT INTO `marc_subfield_structure` VALUES ('789', 'j', 'j', 'j', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11130 INSERT INTO `marc_subfield_structure` VALUES ('789', 'k', 'k', 'k', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11131 INSERT INTO `marc_subfield_structure` VALUES ('789', 'l', 'l', 'l', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11132 INSERT INTO `marc_subfield_structure` VALUES ('789', 'm', 'm', 'm', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11133 INSERT INTO `marc_subfield_structure` VALUES ('789', 'n', 'n', 'n', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11134 INSERT INTO `marc_subfield_structure` VALUES ('789', 'o', 'o', 'o', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11135 INSERT INTO `marc_subfield_structure` VALUES ('789', 'p', 'p', 'p', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11136 INSERT INTO `marc_subfield_structure` VALUES ('789', 'q', 'q', 'q', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11137 INSERT INTO `marc_subfield_structure` VALUES ('789', 'r', 'r', 'r', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11138 INSERT INTO `marc_subfield_structure` VALUES ('789', 's', 's', 's', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11139 INSERT INTO `marc_subfield_structure` VALUES ('789', 't', 't', 't', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11140 INSERT INTO `marc_subfield_structure` VALUES ('789', 'u', 'u', 'u', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11141 INSERT INTO `marc_subfield_structure` VALUES ('789', 'v', 'v', 'v', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11142 INSERT INTO `marc_subfield_structure` VALUES ('789', 'w', 'w', 'w', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11143 INSERT INTO `marc_subfield_structure` VALUES ('789', 'x', 'x', 'x', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11144 INSERT INTO `marc_subfield_structure` VALUES ('789', 'y', 'y', 'y', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11145 INSERT INTO `marc_subfield_structure` VALUES ('789', 'z', 'z', 'z', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11146 INSERT INTO `marc_subfield_structure` VALUES ('796', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 7, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11147 INSERT INTO `marc_subfield_structure` VALUES ('796', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11148 INSERT INTO `marc_subfield_structure` VALUES ('796', '4', 'Relator code', 'Relator code', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11149 INSERT INTO `marc_subfield_structure` VALUES ('796', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11150 INSERT INTO `marc_subfield_structure` VALUES ('796', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11151 INSERT INTO `marc_subfield_structure` VALUES ('796', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11152 INSERT INTO `marc_subfield_structure` VALUES ('796', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'ASMP_SOUND_RECORDINGS', '', '');
11153 INSERT INTO `marc_subfield_structure` VALUES ('796', 'a', 'Personal name', 'Personal name', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11154 INSERT INTO `marc_subfield_structure` VALUES ('796', 'b', 'Numeration', 'Numeration', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11155 INSERT INTO `marc_subfield_structure` VALUES ('796', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11156 INSERT INTO `marc_subfield_structure` VALUES ('796', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11157 INSERT INTO `marc_subfield_structure` VALUES ('796', 'e', 'Relator term', 'Relator term', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11158 INSERT INTO `marc_subfield_structure` VALUES ('796', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11159 INSERT INTO `marc_subfield_structure` VALUES ('796', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11160 INSERT INTO `marc_subfield_structure` VALUES ('796', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11161 INSERT INTO `marc_subfield_structure` VALUES ('796', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11162 INSERT INTO `marc_subfield_structure` VALUES ('796', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11163 INSERT INTO `marc_subfield_structure` VALUES ('796', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11164 INSERT INTO `marc_subfield_structure` VALUES ('796', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11165 INSERT INTO `marc_subfield_structure` VALUES ('796', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11166 INSERT INTO `marc_subfield_structure` VALUES ('796', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11167 INSERT INTO `marc_subfield_structure` VALUES ('796', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11168 INSERT INTO `marc_subfield_structure` VALUES ('796', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11169 INSERT INTO `marc_subfield_structure` VALUES ('796', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11170 INSERT INTO `marc_subfield_structure` VALUES ('796', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11171 INSERT INTO `marc_subfield_structure` VALUES ('796', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11172 INSERT INTO `marc_subfield_structure` VALUES ('796', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11173 INSERT INTO `marc_subfield_structure` VALUES ('796', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11174 INSERT INTO `marc_subfield_structure` VALUES ('797', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 7, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11175 INSERT INTO `marc_subfield_structure` VALUES ('797', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11176 INSERT INTO `marc_subfield_structure` VALUES ('797', '4', 'Relator code', 'Relator code', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11177 INSERT INTO `marc_subfield_structure` VALUES ('797', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11178 INSERT INTO `marc_subfield_structure` VALUES ('797', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11179 INSERT INTO `marc_subfield_structure` VALUES ('797', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11180 INSERT INTO `marc_subfield_structure` VALUES ('797', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'ASMP_SOUND_RECORDINGS', '', '');
11181 INSERT INTO `marc_subfield_structure` VALUES ('797', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11182 INSERT INTO `marc_subfield_structure` VALUES ('797', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11183 INSERT INTO `marc_subfield_structure` VALUES ('797', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11184 INSERT INTO `marc_subfield_structure` VALUES ('797', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11185 INSERT INTO `marc_subfield_structure` VALUES ('797', 'e', 'Relator term', 'Relator term', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11186 INSERT INTO `marc_subfield_structure` VALUES ('797', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11187 INSERT INTO `marc_subfield_structure` VALUES ('797', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11188 INSERT INTO `marc_subfield_structure` VALUES ('797', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11189 INSERT INTO `marc_subfield_structure` VALUES ('797', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11190 INSERT INTO `marc_subfield_structure` VALUES ('797', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11191 INSERT INTO `marc_subfield_structure` VALUES ('797', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11192 INSERT INTO `marc_subfield_structure` VALUES ('797', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11193 INSERT INTO `marc_subfield_structure` VALUES ('797', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11194 INSERT INTO `marc_subfield_structure` VALUES ('797', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11195 INSERT INTO `marc_subfield_structure` VALUES ('797', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11196 INSERT INTO `marc_subfield_structure` VALUES ('797', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11197 INSERT INTO `marc_subfield_structure` VALUES ('797', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11198 INSERT INTO `marc_subfield_structure` VALUES ('797', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11199 INSERT INTO `marc_subfield_structure` VALUES ('797', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11200 INSERT INTO `marc_subfield_structure` VALUES ('798', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'ASMP_SOUND_RECORDINGS', '', '');
11201 INSERT INTO `marc_subfield_structure` VALUES ('798', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11202 INSERT INTO `marc_subfield_structure` VALUES ('798', '4', 'Relator code', 'Relator code', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11203 INSERT INTO `marc_subfield_structure` VALUES ('798', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11204 INSERT INTO `marc_subfield_structure` VALUES ('798', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11205 INSERT INTO `marc_subfield_structure` VALUES ('798', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11206 INSERT INTO `marc_subfield_structure` VALUES ('798', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'ASMP_SOUND_RECORDINGS', '', '');
11207 INSERT INTO `marc_subfield_structure` VALUES ('798', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11208 INSERT INTO `marc_subfield_structure` VALUES ('798', 'b', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11209 INSERT INTO `marc_subfield_structure` VALUES ('798', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11210 INSERT INTO `marc_subfield_structure` VALUES ('798', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11211 INSERT INTO `marc_subfield_structure` VALUES ('798', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11212 INSERT INTO `marc_subfield_structure` VALUES ('798', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11213 INSERT INTO `marc_subfield_structure` VALUES ('798', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11214 INSERT INTO `marc_subfield_structure` VALUES ('798', 'h', 'Medium', 'Medium', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11215 INSERT INTO `marc_subfield_structure` VALUES ('798', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11216 INSERT INTO `marc_subfield_structure` VALUES ('798', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11217 INSERT INTO `marc_subfield_structure` VALUES ('798', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11218 INSERT INTO `marc_subfield_structure` VALUES ('798', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11219 INSERT INTO `marc_subfield_structure` VALUES ('798', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11220 INSERT INTO `marc_subfield_structure` VALUES ('798', 's', 'Version', 'Version', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11221 INSERT INTO `marc_subfield_structure` VALUES ('798', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11222 INSERT INTO `marc_subfield_structure` VALUES ('798', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11223 INSERT INTO `marc_subfield_structure` VALUES ('798', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11224 INSERT INTO `marc_subfield_structure` VALUES ('799', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 7, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11225 INSERT INTO `marc_subfield_structure` VALUES ('799', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11226 INSERT INTO `marc_subfield_structure` VALUES ('799', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11227 INSERT INTO `marc_subfield_structure` VALUES ('799', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11228 INSERT INTO `marc_subfield_structure` VALUES ('799', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11229 INSERT INTO `marc_subfield_structure` VALUES ('799', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'ASMP_SOUND_RECORDINGS', '', '');
11230 INSERT INTO `marc_subfield_structure` VALUES ('799', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11231 INSERT INTO `marc_subfield_structure` VALUES ('799', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11232 INSERT INTO `marc_subfield_structure` VALUES ('799', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11233 INSERT INTO `marc_subfield_structure` VALUES ('799', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11234 INSERT INTO `marc_subfield_structure` VALUES ('799', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11235 INSERT INTO `marc_subfield_structure` VALUES ('799', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11236 INSERT INTO `marc_subfield_structure` VALUES ('799', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11237 INSERT INTO `marc_subfield_structure` VALUES ('799', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11238 INSERT INTO `marc_subfield_structure` VALUES ('799', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11239 INSERT INTO `marc_subfield_structure` VALUES ('799', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11240 INSERT INTO `marc_subfield_structure` VALUES ('799', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11241 INSERT INTO `marc_subfield_structure` VALUES ('799', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11242 INSERT INTO `marc_subfield_structure` VALUES ('799', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11243 INSERT INTO `marc_subfield_structure` VALUES ('799', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11244 INSERT INTO `marc_subfield_structure` VALUES ('799', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11245 INSERT INTO `marc_subfield_structure` VALUES ('800', '4', 'Relator code', 'Relator code', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11246 INSERT INTO `marc_subfield_structure` VALUES ('800', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11247 INSERT INTO `marc_subfield_structure` VALUES ('800', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11248 INSERT INTO `marc_subfield_structure` VALUES ('800', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, 'ASMP_SOUND_RECORDINGS', '', '');
11249 INSERT INTO `marc_subfield_structure` VALUES ('800', 'a', 'Personal name', 'Personal name', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11250 INSERT INTO `marc_subfield_structure` VALUES ('800', 'b', 'Numeration', 'Numeration', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11251 INSERT INTO `marc_subfield_structure` VALUES ('800', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11252 INSERT INTO `marc_subfield_structure` VALUES ('800', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11253 INSERT INTO `marc_subfield_structure` VALUES ('800', 'e', 'Relator term', 'Relator term', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11254 INSERT INTO `marc_subfield_structure` VALUES ('800', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11255 INSERT INTO `marc_subfield_structure` VALUES ('800', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11256 INSERT INTO `marc_subfield_structure` VALUES ('800', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11257 INSERT INTO `marc_subfield_structure` VALUES ('800', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11258 INSERT INTO `marc_subfield_structure` VALUES ('800', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11259 INSERT INTO `marc_subfield_structure` VALUES ('800', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11260 INSERT INTO `marc_subfield_structure` VALUES ('800', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11261 INSERT INTO `marc_subfield_structure` VALUES ('800', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11262 INSERT INTO `marc_subfield_structure` VALUES ('800', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11263 INSERT INTO `marc_subfield_structure` VALUES ('800', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11264 INSERT INTO `marc_subfield_structure` VALUES ('800', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11265 INSERT INTO `marc_subfield_structure` VALUES ('800', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11266 INSERT INTO `marc_subfield_structure` VALUES ('800', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11267 INSERT INTO `marc_subfield_structure` VALUES ('800', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11268 INSERT INTO `marc_subfield_structure` VALUES ('800', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11269 INSERT INTO `marc_subfield_structure` VALUES ('800', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11270 INSERT INTO `marc_subfield_structure` VALUES ('810', '4', 'Relator code', 'Relator code', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11271 INSERT INTO `marc_subfield_structure` VALUES ('810', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11272 INSERT INTO `marc_subfield_structure` VALUES ('810', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11273 INSERT INTO `marc_subfield_structure` VALUES ('810', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, 'ASMP_SOUND_RECORDINGS', '', '');
11274 INSERT INTO `marc_subfield_structure` VALUES ('810', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11275 INSERT INTO `marc_subfield_structure` VALUES ('810', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11276 INSERT INTO `marc_subfield_structure` VALUES ('810', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11277 INSERT INTO `marc_subfield_structure` VALUES ('810', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11278 INSERT INTO `marc_subfield_structure` VALUES ('810', 'e', 'Relator term', 'Relator term', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11279 INSERT INTO `marc_subfield_structure` VALUES ('810', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11280 INSERT INTO `marc_subfield_structure` VALUES ('810', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11281 INSERT INTO `marc_subfield_structure` VALUES ('810', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11282 INSERT INTO `marc_subfield_structure` VALUES ('810', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11283 INSERT INTO `marc_subfield_structure` VALUES ('810', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11284 INSERT INTO `marc_subfield_structure` VALUES ('810', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11285 INSERT INTO `marc_subfield_structure` VALUES ('810', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11286 INSERT INTO `marc_subfield_structure` VALUES ('810', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11287 INSERT INTO `marc_subfield_structure` VALUES ('810', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11288 INSERT INTO `marc_subfield_structure` VALUES ('810', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11289 INSERT INTO `marc_subfield_structure` VALUES ('810', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11290 INSERT INTO `marc_subfield_structure` VALUES ('810', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11291 INSERT INTO `marc_subfield_structure` VALUES ('810', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11292 INSERT INTO `marc_subfield_structure` VALUES ('810', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11293 INSERT INTO `marc_subfield_structure` VALUES ('811', '4', 'Relator code', 'Relator code', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11294 INSERT INTO `marc_subfield_structure` VALUES ('811', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11295 INSERT INTO `marc_subfield_structure` VALUES ('811', '8', 'Field link and sequence number ', 'Field link and sequence number ', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11296 INSERT INTO `marc_subfield_structure` VALUES ('811', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, 'ASMP_SOUND_RECORDINGS', '', '');
11297 INSERT INTO `marc_subfield_structure` VALUES ('811', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11298 INSERT INTO `marc_subfield_structure` VALUES ('811', 'b', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11299 INSERT INTO `marc_subfield_structure` VALUES ('811', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11300 INSERT INTO `marc_subfield_structure` VALUES ('811', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11301 INSERT INTO `marc_subfield_structure` VALUES ('811', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11302 INSERT INTO `marc_subfield_structure` VALUES ('811', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11303 INSERT INTO `marc_subfield_structure` VALUES ('811', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11304 INSERT INTO `marc_subfield_structure` VALUES ('811', 'h', 'Medium', 'Medium', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11305 INSERT INTO `marc_subfield_structure` VALUES ('811', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11306 INSERT INTO `marc_subfield_structure` VALUES ('811', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11307 INSERT INTO `marc_subfield_structure` VALUES ('811', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11308 INSERT INTO `marc_subfield_structure` VALUES ('811', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11309 INSERT INTO `marc_subfield_structure` VALUES ('811', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11310 INSERT INTO `marc_subfield_structure` VALUES ('811', 's', 'Version', 'Version', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11311 INSERT INTO `marc_subfield_structure` VALUES ('811', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11312 INSERT INTO `marc_subfield_structure` VALUES ('811', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11313 INSERT INTO `marc_subfield_structure` VALUES ('811', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11314 INSERT INTO `marc_subfield_structure` VALUES ('830', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11315 INSERT INTO `marc_subfield_structure` VALUES ('830', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11316 INSERT INTO `marc_subfield_structure` VALUES ('830', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, 'ASMP_SOUND_RECORDINGS', '', '');
11317 INSERT INTO `marc_subfield_structure` VALUES ('830', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11318 INSERT INTO `marc_subfield_structure` VALUES ('830', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11319 INSERT INTO `marc_subfield_structure` VALUES ('830', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11320 INSERT INTO `marc_subfield_structure` VALUES ('830', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11321 INSERT INTO `marc_subfield_structure` VALUES ('830', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11322 INSERT INTO `marc_subfield_structure` VALUES ('830', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11323 INSERT INTO `marc_subfield_structure` VALUES ('830', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11324 INSERT INTO `marc_subfield_structure` VALUES ('830', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11325 INSERT INTO `marc_subfield_structure` VALUES ('830', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11326 INSERT INTO `marc_subfield_structure` VALUES ('830', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11327 INSERT INTO `marc_subfield_structure` VALUES ('830', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11328 INSERT INTO `marc_subfield_structure` VALUES ('830', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11329 INSERT INTO `marc_subfield_structure` VALUES ('830', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11330 INSERT INTO `marc_subfield_structure` VALUES ('830', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11331 INSERT INTO `marc_subfield_structure` VALUES ('830', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11332 INSERT INTO `marc_subfield_structure` VALUES ('840', 'a', 'Title', 'Title', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11333 INSERT INTO `marc_subfield_structure` VALUES ('840', 'h', 'Medium', 'Medium', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11334 INSERT INTO `marc_subfield_structure` VALUES ('840', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11335 INSERT INTO `marc_subfield_structure` VALUES ('841', 'a', 'Type of record', 'Type of record', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11336 INSERT INTO `marc_subfield_structure` VALUES ('841', 'b', 'Fixed-length data elements', 'Fixed-length data elements', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11337 INSERT INTO `marc_subfield_structure` VALUES ('841', 'e', 'Encoding level', 'Encoding level', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11338 INSERT INTO `marc_subfield_structure` VALUES ('842', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11339 INSERT INTO `marc_subfield_structure` VALUES ('842', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11340 INSERT INTO `marc_subfield_structure` VALUES ('842', 'a', 'Textual physical form designator', 'Textual physical form designator', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11341 INSERT INTO `marc_subfield_structure` VALUES ('843', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11342 INSERT INTO `marc_subfield_structure` VALUES ('843', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11343 INSERT INTO `marc_subfield_structure` VALUES ('843', '7', 'Fixed-length data elements of reproduction', 'Fixed-length data elements of reproduction', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11344 INSERT INTO `marc_subfield_structure` VALUES ('843', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11345 INSERT INTO `marc_subfield_structure` VALUES ('843', 'a', 'Type of reproduction', 'Type of reproduction', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11346 INSERT INTO `marc_subfield_structure` VALUES ('843', 'b', 'Place of reproduction', 'Place of reproduction', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11347 INSERT INTO `marc_subfield_structure` VALUES ('843', 'c', 'Agency responsible for reproduction', 'Agency responsible for reproduction', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11348 INSERT INTO `marc_subfield_structure` VALUES ('843', 'd', 'Date of reproduction', 'Date of reproduction', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11349 INSERT INTO `marc_subfield_structure` VALUES ('843', 'e', 'Physical description of reproduction', 'Physical description of reproduction', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11350 INSERT INTO `marc_subfield_structure` VALUES ('843', 'f', 'Series statement of reproduction', 'Series statement of reproduction', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11351 INSERT INTO `marc_subfield_structure` VALUES ('843', 'm', 'Dates of publication and/or sequential designation of issues reproduced', 'Dates of publication and/or sequential designation of issues reproduced', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11352 INSERT INTO `marc_subfield_structure` VALUES ('843', 'n', 'Note about reproduction', 'Note about reproduction', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11353 INSERT INTO `marc_subfield_structure` VALUES ('844', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11354 INSERT INTO `marc_subfield_structure` VALUES ('844', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11355 INSERT INTO `marc_subfield_structure` VALUES ('844', 'a', 'Name of unit', 'Name of unit', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11356 INSERT INTO `marc_subfield_structure` VALUES ('845', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11357 INSERT INTO `marc_subfield_structure` VALUES ('845', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11358 INSERT INTO `marc_subfield_structure` VALUES ('845', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11359 INSERT INTO `marc_subfield_structure` VALUES ('845', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11360 INSERT INTO `marc_subfield_structure` VALUES ('845', 'a', 'Terms governing use and reproduction', 'Terms governing use and reproduction', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11361 INSERT INTO `marc_subfield_structure` VALUES ('845', 'b', 'Jurisdiction', 'Jurisdiction', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11362 INSERT INTO `marc_subfield_structure` VALUES ('845', 'c', 'Authorization', 'Authorization', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11363 INSERT INTO `marc_subfield_structure` VALUES ('845', 'd', 'Authorized users', 'Authorized users', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11364 INSERT INTO `marc_subfield_structure` VALUES ('850', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11365 INSERT INTO `marc_subfield_structure` VALUES ('850', 'a', 'Holding institution', 'Holding institution', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11366 INSERT INTO `marc_subfield_structure` VALUES ('850', 'b', 'Holdings (NR) (MU VM SE) [OBSOLETE]', 'Holdings (NR) (MU VM SE) [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11367 INSERT INTO `marc_subfield_structure` VALUES ('850', 'd', 'Inclusive dates (NR) (MU VM SE) [OBSOLETE]', 'Inclusive dates (NR) (MU VM SE) [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11368 INSERT INTO `marc_subfield_structure` VALUES ('850', 'e', 'Retention statement (NR) (CF MU VM SE) [OBSOLETE]', 'Retention statement (NR) (CF MU VM SE) [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11369 INSERT INTO `marc_subfield_structure` VALUES ('851', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11370 INSERT INTO `marc_subfield_structure` VALUES ('851', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11371 INSERT INTO `marc_subfield_structure` VALUES ('851', 'a', 'Name (custodian or owner)', 'Name (custodian or owner)', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11372 INSERT INTO `marc_subfield_structure` VALUES ('851', 'b', 'Institutional division', 'Institutional division', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11373 INSERT INTO `marc_subfield_structure` VALUES ('851', 'c', 'Street address', 'Street address', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11374 INSERT INTO `marc_subfield_structure` VALUES ('851', 'd', 'Country', 'Country', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11375 INSERT INTO `marc_subfield_structure` VALUES ('851', 'e', 'Location of units', 'Location of units', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11376 INSERT INTO `marc_subfield_structure` VALUES ('851', 'f', 'Item number', 'Item number', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11377 INSERT INTO `marc_subfield_structure` VALUES ('851', 'g', 'Repository location code', 'Repository location code', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11378 INSERT INTO `marc_subfield_structure` VALUES ('852', '2', 'Source of classification or shelving scheme', 'Source of classification or shelving scheme', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11379 INSERT INTO `marc_subfield_structure` VALUES ('852', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11380 INSERT INTO `marc_subfield_structure` VALUES ('852', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11381 INSERT INTO `marc_subfield_structure` VALUES ('852', '8', 'Sequence number', 'Sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11382 INSERT INTO `marc_subfield_structure` VALUES ('852', 'a', 'Location', 'Location', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11383 INSERT INTO `marc_subfield_structure` VALUES ('852', 'b', 'Sublocation or collection', 'Sublocation or collection', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11384 INSERT INTO `marc_subfield_structure` VALUES ('852', 'c', 'Shelving location', 'Shelving location', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11385 INSERT INTO `marc_subfield_structure` VALUES ('852', 'e', 'Address', 'Address', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11386 INSERT INTO `marc_subfield_structure` VALUES ('852', 'f', 'Coded location qualifier', 'Coded location qualifier', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11387 INSERT INTO `marc_subfield_structure` VALUES ('852', 'g', 'Non-coded location qualifier', 'Non-coded location qualifier', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11388 INSERT INTO `marc_subfield_structure` VALUES ('852', 'h', 'Classification part', 'Classification part', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11389 INSERT INTO `marc_subfield_structure` VALUES ('852', 'i', 'Item part', 'Item part', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11390 INSERT INTO `marc_subfield_structure` VALUES ('852', 'j', 'Shelving control number', 'Shelving control number', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11391 INSERT INTO `marc_subfield_structure` VALUES ('852', 'k', 'Call number prefix', 'Call number prefix', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11392 INSERT INTO `marc_subfield_structure` VALUES ('852', 'l', 'Shelving form of title', 'Shelving form of title', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11393 INSERT INTO `marc_subfield_structure` VALUES ('852', 'm', 'Call number suffix', 'Call number suffix', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11394 INSERT INTO `marc_subfield_structure` VALUES ('852', 'n', 'Country code', 'Country code', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11395 INSERT INTO `marc_subfield_structure` VALUES ('852', 'p', 'Piece designation', 'Piece designation', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11396 INSERT INTO `marc_subfield_structure` VALUES ('852', 'q', 'Piece physical condition', 'Piece physical condition', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11397 INSERT INTO `marc_subfield_structure` VALUES ('852', 's', 'Copyright article-fee code', 'Copyright article-fee code', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11398 INSERT INTO `marc_subfield_structure` VALUES ('852', 't', 'Copy number', 'Copy number', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11399 INSERT INTO `marc_subfield_structure` VALUES ('852', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11400 INSERT INTO `marc_subfield_structure` VALUES ('852', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11401 INSERT INTO `marc_subfield_structure` VALUES ('853', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11402 INSERT INTO `marc_subfield_structure` VALUES ('853', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11403 INSERT INTO `marc_subfield_structure` VALUES ('853', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11404 INSERT INTO `marc_subfield_structure` VALUES ('853', 'a', 'First level of enumeration', 'First level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11405 INSERT INTO `marc_subfield_structure` VALUES ('853', 'b', 'Second level of enumeration', 'Second level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11406 INSERT INTO `marc_subfield_structure` VALUES ('853', 'c', 'Third level of enumeration', 'Third level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11407 INSERT INTO `marc_subfield_structure` VALUES ('853', 'd', 'Fourth level of enumeration', 'Fourth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11408 INSERT INTO `marc_subfield_structure` VALUES ('853', 'e', 'Fifth level of enumeration', 'Fifth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11409 INSERT INTO `marc_subfield_structure` VALUES ('853', 'f', 'Sixth level of enumeration', 'Sixth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11410 INSERT INTO `marc_subfield_structure` VALUES ('853', 'g', 'Alternative numbering scheme, first level of enumeration', 'Alternative numbering scheme, first level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11411 INSERT INTO `marc_subfield_structure` VALUES ('853', 'h', 'Alternative numbering scheme, second level of enumeration', 'Alternative numbering scheme, second level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11412 INSERT INTO `marc_subfield_structure` VALUES ('853', 'i', 'First level of chronology', 'First level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11413 INSERT INTO `marc_subfield_structure` VALUES ('853', 'j', 'Second level of chronology', 'Second level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11414 INSERT INTO `marc_subfield_structure` VALUES ('853', 'k', 'Third level of chronology', 'Third level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11415 INSERT INTO `marc_subfield_structure` VALUES ('853', 'l', 'Fourth level of chronology', 'Fourth level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11416 INSERT INTO `marc_subfield_structure` VALUES ('853', 'm', 'Alternative numbering scheme, chronology', 'Alternative numbering scheme, chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11417 INSERT INTO `marc_subfield_structure` VALUES ('853', 'n', 'Pattern note', 'Pattern note', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11418 INSERT INTO `marc_subfield_structure` VALUES ('853', 'p', 'Number of pieces per issuance', 'Number of pieces per issuance', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11419 INSERT INTO `marc_subfield_structure` VALUES ('853', 't', 'Copy', 'Copy', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11420 INSERT INTO `marc_subfield_structure` VALUES ('853', 'u', 'Bibliographic units per next higher level', 'Bibliographic units per next higher level', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11421 INSERT INTO `marc_subfield_structure` VALUES ('853', 'v', 'Numbering continuity', 'Numbering continuity', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11422 INSERT INTO `marc_subfield_structure` VALUES ('853', 'w', 'Frequency', 'Frequency', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11423 INSERT INTO `marc_subfield_structure` VALUES ('853', 'x', 'Calendar change', 'Calendar change', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11424 INSERT INTO `marc_subfield_structure` VALUES ('853', 'y', 'Regularity pattern', 'Regularity pattern', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11425 INSERT INTO `marc_subfield_structure` VALUES ('853', 'z', 'Numbering scheme', 'Numbering scheme', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11426 INSERT INTO `marc_subfield_structure` VALUES ('854', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11427 INSERT INTO `marc_subfield_structure` VALUES ('854', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11428 INSERT INTO `marc_subfield_structure` VALUES ('854', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11429 INSERT INTO `marc_subfield_structure` VALUES ('854', 'a', 'First level of enumeration', 'First level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11430 INSERT INTO `marc_subfield_structure` VALUES ('854', 'b', 'Second level of enumeration', 'Second level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11431 INSERT INTO `marc_subfield_structure` VALUES ('854', 'c', 'Third level of enumeration', 'Third level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11432 INSERT INTO `marc_subfield_structure` VALUES ('854', 'd', 'Fourth level of enumeration', 'Fourth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11433 INSERT INTO `marc_subfield_structure` VALUES ('854', 'e', 'Fifth level of enumeration', 'Fifth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11434 INSERT INTO `marc_subfield_structure` VALUES ('854', 'f', 'Sixth level of enumeration', 'Sixth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11435 INSERT INTO `marc_subfield_structure` VALUES ('854', 'g', 'Alternative numbering scheme, first level of enumeration', 'Alternative numbering scheme, first level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11436 INSERT INTO `marc_subfield_structure` VALUES ('854', 'h', 'Alternative numbering scheme, second level of enumeration', 'Alternative numbering scheme, second level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11437 INSERT INTO `marc_subfield_structure` VALUES ('854', 'i', 'First level of chronology', 'First level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11438 INSERT INTO `marc_subfield_structure` VALUES ('854', 'j', 'Second level of chronology', 'Second level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11439 INSERT INTO `marc_subfield_structure` VALUES ('854', 'k', 'Third level of chronology', 'Third level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11440 INSERT INTO `marc_subfield_structure` VALUES ('854', 'l', 'Fourth level of chronology', 'Fourth level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11441 INSERT INTO `marc_subfield_structure` VALUES ('854', 'm', 'Alternative numbering scheme, chronology', 'Alternative numbering scheme, chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11442 INSERT INTO `marc_subfield_structure` VALUES ('854', 'n', 'Pattern note', 'Pattern note', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11443 INSERT INTO `marc_subfield_structure` VALUES ('854', 'p', 'Number of pieces per issuance', 'Number of pieces per issuance', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11444 INSERT INTO `marc_subfield_structure` VALUES ('854', 't', 'Copy', 'Copy', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11445 INSERT INTO `marc_subfield_structure` VALUES ('854', 'u', 'Bibliographic units per next higher level', 'Bibliographic units per next higher level', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11446 INSERT INTO `marc_subfield_structure` VALUES ('854', 'v', 'Numbering continuity', 'Numbering continuity', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11447 INSERT INTO `marc_subfield_structure` VALUES ('854', 'w', 'Frequency', 'Frequency', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11448 INSERT INTO `marc_subfield_structure` VALUES ('854', 'x', 'Calendar change', 'Calendar change', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11449 INSERT INTO `marc_subfield_structure` VALUES ('854', 'y', 'Regularity pattern', 'Regularity pattern', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11450 INSERT INTO `marc_subfield_structure` VALUES ('854', 'z', 'Numbering scheme', 'Numbering scheme', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11451 INSERT INTO `marc_subfield_structure` VALUES ('855', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11452 INSERT INTO `marc_subfield_structure` VALUES ('855', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11453 INSERT INTO `marc_subfield_structure` VALUES ('855', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11454 INSERT INTO `marc_subfield_structure` VALUES ('855', 'a', 'First level of enumeration', 'First level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11455 INSERT INTO `marc_subfield_structure` VALUES ('855', 'b', 'Second level of enumeration', 'Second level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11456 INSERT INTO `marc_subfield_structure` VALUES ('855', 'c', 'Third level of enumeration', 'Third level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11457 INSERT INTO `marc_subfield_structure` VALUES ('855', 'd', 'Fourth level of enumeration', 'Fourth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11458 INSERT INTO `marc_subfield_structure` VALUES ('855', 'e', 'Fifth level of enumeration', 'Fifth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11459 INSERT INTO `marc_subfield_structure` VALUES ('855', 'f', 'Sixth level of enumeration', 'Sixth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11460 INSERT INTO `marc_subfield_structure` VALUES ('855', 'g', 'Alternative numbering scheme, first level of enumeration', 'Alternative numbering scheme, first level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11461 INSERT INTO `marc_subfield_structure` VALUES ('855', 'h', 'Alternative numbering scheme, second level of enumeration', 'Alternative numbering scheme, second level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11462 INSERT INTO `marc_subfield_structure` VALUES ('855', 'i', 'First level of chronology', 'First level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11463 INSERT INTO `marc_subfield_structure` VALUES ('855', 'j', 'Second level of chronology', 'Second level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11464 INSERT INTO `marc_subfield_structure` VALUES ('855', 'k', 'Third level of chronology', 'Third level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11465 INSERT INTO `marc_subfield_structure` VALUES ('855', 'l', 'Fourth level of chronology', 'Fourth level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11466 INSERT INTO `marc_subfield_structure` VALUES ('855', 'm', 'Alternative numbering scheme, chronology', 'Alternative numbering scheme, chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11467 INSERT INTO `marc_subfield_structure` VALUES ('855', 'n', 'Pattern note', 'Pattern note', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11468 INSERT INTO `marc_subfield_structure` VALUES ('855', 'p', 'Number of pieces per issuance', 'Number of pieces per issuance', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11469 INSERT INTO `marc_subfield_structure` VALUES ('855', 't', 'Copy', 'Copy', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11470 INSERT INTO `marc_subfield_structure` VALUES ('855', 'u', 'Bibliographic units per next higher level', 'Bibliographic units per next higher level', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11471 INSERT INTO `marc_subfield_structure` VALUES ('855', 'v', 'Numbering continuity', 'Numbering continuity', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11472 INSERT INTO `marc_subfield_structure` VALUES ('855', 'w', 'Frequency', 'Frequency', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11473 INSERT INTO `marc_subfield_structure` VALUES ('855', 'x', 'Calendar change', 'Calendar change', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11474 INSERT INTO `marc_subfield_structure` VALUES ('855', 'y', 'Regularity pattern', 'Regularity pattern', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11475 INSERT INTO `marc_subfield_structure` VALUES ('855', 'z', 'Numbering scheme', 'Numbering scheme', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11476 INSERT INTO `marc_subfield_structure` VALUES ('856', '2', 'Access method', 'Access method', 0, 0, '', 8, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11477 INSERT INTO `marc_subfield_structure` VALUES ('856', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11478 INSERT INTO `marc_subfield_structure` VALUES ('856', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11479 INSERT INTO `marc_subfield_structure` VALUES ('856', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11480 INSERT INTO `marc_subfield_structure` VALUES ('856', 'a', 'Host name', 'Host name', 1, 0, '', 8, '', '', '', 0, -1, 'ASMP_SOUND_RECORDINGS', '', '');
11481 INSERT INTO `marc_subfield_structure` VALUES ('856', 'b', 'Access number', 'Access number', 1, 0, '', 8, '', '', '', 0, -1, 'ASMP_SOUND_RECORDINGS', '', '');
11482 INSERT INTO `marc_subfield_structure` VALUES ('856', 'c', 'Compression information', 'Compression information', 1, 0, '', 8, '', '', '', 0, -1, 'ASMP_SOUND_RECORDINGS', '', '');
11483 INSERT INTO `marc_subfield_structure` VALUES ('856', 'd', 'Path', 'Path', 1, 0, '', 8, '', '', '', 0, -1, 'ASMP_SOUND_RECORDINGS', '', '');
11484 INSERT INTO `marc_subfield_structure` VALUES ('856', 'f', 'Electronic name', 'Electronic name', 1, 0, '', 8, '', '', '', 0, -1, 'ASMP_SOUND_RECORDINGS', '', '');
11485 INSERT INTO `marc_subfield_structure` VALUES ('856', 'h', 'Processor of request', 'Processor of request', 0, 0, '', 8, '', '', '', 0, -1, 'ASMP_SOUND_RECORDINGS', '', '');
11486 INSERT INTO `marc_subfield_structure` VALUES ('856', 'i', 'Instruction', 'Instruction', 1, 0, '', 8, '', '', '', 0, -1, 'ASMP_SOUND_RECORDINGS', '', '');
11487 INSERT INTO `marc_subfield_structure` VALUES ('856', 'j', 'Bits per second', 'Bits per second', 0, 0, '', 8, '', '', '', 0, -1, 'ASMP_SOUND_RECORDINGS', '', '');
11488 INSERT INTO `marc_subfield_structure` VALUES ('856', 'k', 'Password', 'Password', 0, 0, '', 8, '', '', '', 0, -1, 'ASMP_SOUND_RECORDINGS', '', '');
11489 INSERT INTO `marc_subfield_structure` VALUES ('856', 'l', 'Logon', 'Logon', 0, 0, '', 8, '', '', '', 0, -1, 'ASMP_SOUND_RECORDINGS', '', '');
11490 INSERT INTO `marc_subfield_structure` VALUES ('856', 'm', 'Contact for access assistance', 'Contact for access assistance', 1, 0, '', 8, '', '', '', 0, -1, 'ASMP_SOUND_RECORDINGS', '', '');
11491 INSERT INTO `marc_subfield_structure` VALUES ('856', 'n', 'Name of location of host in subfield', 'Name of location of host in subfield', 0, 0, '', 8, '', '', '', 0, -1, 'ASMP_SOUND_RECORDINGS', '', '');
11492 INSERT INTO `marc_subfield_structure` VALUES ('856', 'o', 'Operating system', 'Operating system', 0, 0, '', 8, '', '', '', 0, -1, 'ASMP_SOUND_RECORDINGS', '', '');
11493 INSERT INTO `marc_subfield_structure` VALUES ('856', 'p', 'Port', 'Port', 0, 0, '', 8, '', '', '', 0, -1, 'ASMP_SOUND_RECORDINGS', '', '');
11494 INSERT INTO `marc_subfield_structure` VALUES ('856', 'q', 'Electronic format type', 'Electronic format type', 0, 0, '', 8, '', '', '', 0, -1, 'ASMP_SOUND_RECORDINGS', '', '');
11495 INSERT INTO `marc_subfield_structure` VALUES ('856', 'r', 'Settings', 'Settings', 0, 0, '', 8, '', '', '', 0, -1, 'ASMP_SOUND_RECORDINGS', '', '');
11496 INSERT INTO `marc_subfield_structure` VALUES ('856', 's', 'File size', 'File size', 1, 0, '', 8, '', '', '', 0, -1, 'ASMP_SOUND_RECORDINGS', '', '');
11497 INSERT INTO `marc_subfield_structure` VALUES ('856', 't', 'Terminal emulation', 'Terminal emulation', 1, 0, '', 8, '', '', '', 0, -1, 'ASMP_SOUND_RECORDINGS', '', '');
11498 INSERT INTO `marc_subfield_structure` VALUES ('856', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, 'biblioitems.url', 8, '', '', '', 1, -1, 'ASMP_SOUND_RECORDINGS', '', '');
11499 INSERT INTO `marc_subfield_structure` VALUES ('856', 'v', 'Hours access method available', 'Hours access method available', 1, 0, '', 8, '', '', '', 0, -1, 'ASMP_SOUND_RECORDINGS', '', '');
11500 INSERT INTO `marc_subfield_structure` VALUES ('856', 'w', 'Record control number', 'Record control number', 1, 0, '', 8, '', '', '', 0, -1, 'ASMP_SOUND_RECORDINGS', '', '');
11501 INSERT INTO `marc_subfield_structure` VALUES ('856', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', 0, 1, 'ASMP_SOUND_RECORDINGS', '', '');
11502 INSERT INTO `marc_subfield_structure` VALUES ('856', 'y', 'Link text', 'Link text', 1, 0, '', 8, '', '', '', 0, -1, 'ASMP_SOUND_RECORDINGS', '', '');
11503 INSERT INTO `marc_subfield_structure` VALUES ('856', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', 0, -1, 'ASMP_SOUND_RECORDINGS', '', '');
11504 INSERT INTO `marc_subfield_structure` VALUES ('859', 'b', 'Operator\'s initials, OID (RLIN)', 'Operator\'s initials, OID (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11505 INSERT INTO `marc_subfield_structure` VALUES ('859', 'c', 'Cataloger\'s initials, CIN (RLIN)', 'Cataloger\'s initials, CIN (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11506 INSERT INTO `marc_subfield_structure` VALUES ('859', 'd', 'TDC (RLIN)', 'TDC (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11507 INSERT INTO `marc_subfield_structure` VALUES ('859', 'l', 'LIB (RLIN)', 'LIB (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11508 INSERT INTO `marc_subfield_structure` VALUES ('859', 'p', 'PRI (RLIN)', 'PRI (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11509 INSERT INTO `marc_subfield_structure` VALUES ('859', 'r', 'REG (RLIN)', 'REG (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11510 INSERT INTO `marc_subfield_structure` VALUES ('859', 'v', 'VER (RLIN)', 'VER (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11511 INSERT INTO `marc_subfield_structure` VALUES ('859', 'x', 'LDEL (RLIN)', 'LDEL (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11512 INSERT INTO `marc_subfield_structure` VALUES ('866', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11513 INSERT INTO `marc_subfield_structure` VALUES ('866', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11514 INSERT INTO `marc_subfield_structure` VALUES ('866', 'a', 'Textual string', 'Textual string', 0, 0, '', 8, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11515 INSERT INTO `marc_subfield_structure` VALUES ('866', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11516 INSERT INTO `marc_subfield_structure` VALUES ('866', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11517 INSERT INTO `marc_subfield_structure` VALUES ('867', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11518 INSERT INTO `marc_subfield_structure` VALUES ('867', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11519 INSERT INTO `marc_subfield_structure` VALUES ('867', 'a', 'Textual string', 'Textual string', 0, 0, '', 8, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11520 INSERT INTO `marc_subfield_structure` VALUES ('867', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11521 INSERT INTO `marc_subfield_structure` VALUES ('867', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11522 INSERT INTO `marc_subfield_structure` VALUES ('868', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11523 INSERT INTO `marc_subfield_structure` VALUES ('868', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11524 INSERT INTO `marc_subfield_structure` VALUES ('868', 'a', 'Textual string', 'Textual string', 0, 0, '', 8, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11525 INSERT INTO `marc_subfield_structure` VALUES ('868', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11526 INSERT INTO `marc_subfield_structure` VALUES ('868', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11527 INSERT INTO `marc_subfield_structure` VALUES ('870', '4', 'Relator code', 'Relator code', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11528 INSERT INTO `marc_subfield_structure` VALUES ('870', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11529 INSERT INTO `marc_subfield_structure` VALUES ('870', 'a', 'Personal name', 'Personal name', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11530 INSERT INTO `marc_subfield_structure` VALUES ('870', 'b', 'Numeration', 'Numeration', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11531 INSERT INTO `marc_subfield_structure` VALUES ('870', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11532 INSERT INTO `marc_subfield_structure` VALUES ('870', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11533 INSERT INTO `marc_subfield_structure` VALUES ('870', 'e', 'Relator term', 'Relator term', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11534 INSERT INTO `marc_subfield_structure` VALUES ('870', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11535 INSERT INTO `marc_subfield_structure` VALUES ('870', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11536 INSERT INTO `marc_subfield_structure` VALUES ('870', 'j', 'Tag and sequence number', 'Tag and sequence number', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11537 INSERT INTO `marc_subfield_structure` VALUES ('870', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11538 INSERT INTO `marc_subfield_structure` VALUES ('870', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11539 INSERT INTO `marc_subfield_structure` VALUES ('870', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11540 INSERT INTO `marc_subfield_structure` VALUES ('870', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11541 INSERT INTO `marc_subfield_structure` VALUES ('870', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11542 INSERT INTO `marc_subfield_structure` VALUES ('870', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11543 INSERT INTO `marc_subfield_structure` VALUES ('870', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11544 INSERT INTO `marc_subfield_structure` VALUES ('871', '4', 'Relator code', 'Relator code', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11545 INSERT INTO `marc_subfield_structure` VALUES ('871', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11546 INSERT INTO `marc_subfield_structure` VALUES ('871', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11547 INSERT INTO `marc_subfield_structure` VALUES ('871', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11548 INSERT INTO `marc_subfield_structure` VALUES ('871', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11549 INSERT INTO `marc_subfield_structure` VALUES ('871', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11550 INSERT INTO `marc_subfield_structure` VALUES ('871', 'e', 'Relator term', 'Relator term', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11551 INSERT INTO `marc_subfield_structure` VALUES ('871', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11552 INSERT INTO `marc_subfield_structure` VALUES ('871', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11553 INSERT INTO `marc_subfield_structure` VALUES ('871', 'j', 'Tag and sequence number', 'Tag and sequence number', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11554 INSERT INTO `marc_subfield_structure` VALUES ('871', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11555 INSERT INTO `marc_subfield_structure` VALUES ('871', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11556 INSERT INTO `marc_subfield_structure` VALUES ('871', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11557 INSERT INTO `marc_subfield_structure` VALUES ('871', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11558 INSERT INTO `marc_subfield_structure` VALUES ('871', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11559 INSERT INTO `marc_subfield_structure` VALUES ('871', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11560 INSERT INTO `marc_subfield_structure` VALUES ('872', '4', 'Relator code', 'Relator code', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11561 INSERT INTO `marc_subfield_structure` VALUES ('872', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11562 INSERT INTO `marc_subfield_structure` VALUES ('872', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11563 INSERT INTO `marc_subfield_structure` VALUES ('872', 'b', 'Number [OBSOLETE]', 'Number [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11564 INSERT INTO `marc_subfield_structure` VALUES ('872', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11565 INSERT INTO `marc_subfield_structure` VALUES ('872', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11566 INSERT INTO `marc_subfield_structure` VALUES ('872', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11567 INSERT INTO `marc_subfield_structure` VALUES ('872', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11568 INSERT INTO `marc_subfield_structure` VALUES ('872', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11569 INSERT INTO `marc_subfield_structure` VALUES ('872', 'j', 'Tag and sequence number', 'Tag and sequence number', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11570 INSERT INTO `marc_subfield_structure` VALUES ('872', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11571 INSERT INTO `marc_subfield_structure` VALUES ('872', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11572 INSERT INTO `marc_subfield_structure` VALUES ('872', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11573 INSERT INTO `marc_subfield_structure` VALUES ('872', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11574 INSERT INTO `marc_subfield_structure` VALUES ('872', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11575 INSERT INTO `marc_subfield_structure` VALUES ('872', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11576 INSERT INTO `marc_subfield_structure` VALUES ('872', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11577 INSERT INTO `marc_subfield_structure` VALUES ('873', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11578 INSERT INTO `marc_subfield_structure` VALUES ('873', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11579 INSERT INTO `marc_subfield_structure` VALUES ('873', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11580 INSERT INTO `marc_subfield_structure` VALUES ('873', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11581 INSERT INTO `marc_subfield_structure` VALUES ('873', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11582 INSERT INTO `marc_subfield_structure` VALUES ('873', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11583 INSERT INTO `marc_subfield_structure` VALUES ('873', 'j', 'Tag and sequence number', 'Tag and sequence number', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11584 INSERT INTO `marc_subfield_structure` VALUES ('873', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11585 INSERT INTO `marc_subfield_structure` VALUES ('873', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11586 INSERT INTO `marc_subfield_structure` VALUES ('873', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11587 INSERT INTO `marc_subfield_structure` VALUES ('873', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11588 INSERT INTO `marc_subfield_structure` VALUES ('873', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11589 INSERT INTO `marc_subfield_structure` VALUES ('873', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11590 INSERT INTO `marc_subfield_structure` VALUES ('873', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11591 INSERT INTO `marc_subfield_structure` VALUES ('873', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11592 INSERT INTO `marc_subfield_structure` VALUES ('873', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11593 INSERT INTO `marc_subfield_structure` VALUES ('876', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11594 INSERT INTO `marc_subfield_structure` VALUES ('876', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11595 INSERT INTO `marc_subfield_structure` VALUES ('876', '8', 'Sequence number', 'Sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11596 INSERT INTO `marc_subfield_structure` VALUES ('876', 'a', 'Internal item number', 'Internal item number', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11597 INSERT INTO `marc_subfield_structure` VALUES ('876', 'b', 'Invalid or canceled internal item number', 'Invalid or canceled internal item number', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11598 INSERT INTO `marc_subfield_structure` VALUES ('876', 'c', 'Cost', 'Cost', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11599 INSERT INTO `marc_subfield_structure` VALUES ('876', 'd', 'Date acquired', 'Date acquired', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11600 INSERT INTO `marc_subfield_structure` VALUES ('876', 'e', 'Source of acquisition', 'Source of acquisition', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11601 INSERT INTO `marc_subfield_structure` VALUES ('876', 'h', 'Use restrictions', 'Use restrictions', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11602 INSERT INTO `marc_subfield_structure` VALUES ('876', 'j', 'Item status', 'Item status', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11603 INSERT INTO `marc_subfield_structure` VALUES ('876', 'l', 'Temporary location', 'Temporary location', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11604 INSERT INTO `marc_subfield_structure` VALUES ('876', 'p', 'Piece designation', 'Piece designation', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11605 INSERT INTO `marc_subfield_structure` VALUES ('876', 'r', 'Invalid or canceled piece designation', 'Invalid or canceled piece designation', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11606 INSERT INTO `marc_subfield_structure` VALUES ('876', 't', 'Copy number', 'Copy number', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11607 INSERT INTO `marc_subfield_structure` VALUES ('876', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11608 INSERT INTO `marc_subfield_structure` VALUES ('876', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11609 INSERT INTO `marc_subfield_structure` VALUES ('877', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11610 INSERT INTO `marc_subfield_structure` VALUES ('877', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11611 INSERT INTO `marc_subfield_structure` VALUES ('877', '8', 'Sequence number', 'Sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11612 INSERT INTO `marc_subfield_structure` VALUES ('877', 'a', 'Internal item number', 'Internal item number', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11613 INSERT INTO `marc_subfield_structure` VALUES ('877', 'b', 'Invalid or canceled internal item number', 'Invalid or canceled internal item number', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11614 INSERT INTO `marc_subfield_structure` VALUES ('877', 'c', 'Cost', 'Cost', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11615 INSERT INTO `marc_subfield_structure` VALUES ('877', 'd', 'Date acquired', 'Date acquired', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11616 INSERT INTO `marc_subfield_structure` VALUES ('877', 'e', 'Source of acquisition', 'Source of acquisition', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11617 INSERT INTO `marc_subfield_structure` VALUES ('877', 'h', 'Use restrictions', 'Use restrictions', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11618 INSERT INTO `marc_subfield_structure` VALUES ('877', 'j', 'Item status', 'Item status', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11619 INSERT INTO `marc_subfield_structure` VALUES ('877', 'l', 'Temporary location', 'Temporary location', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11620 INSERT INTO `marc_subfield_structure` VALUES ('877', 'p', 'Piece designation', 'Piece designation', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11621 INSERT INTO `marc_subfield_structure` VALUES ('877', 'r', 'Invalid or canceled piece designation', 'Invalid or canceled piece designation', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11622 INSERT INTO `marc_subfield_structure` VALUES ('877', 't', 'Copy number', 'Copy number', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11623 INSERT INTO `marc_subfield_structure` VALUES ('877', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11624 INSERT INTO `marc_subfield_structure` VALUES ('877', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11625 INSERT INTO `marc_subfield_structure` VALUES ('878', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11626 INSERT INTO `marc_subfield_structure` VALUES ('878', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11627 INSERT INTO `marc_subfield_structure` VALUES ('878', '8', 'Sequence number', 'Sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11628 INSERT INTO `marc_subfield_structure` VALUES ('878', 'a', 'Internal item number', 'Internal item number', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11629 INSERT INTO `marc_subfield_structure` VALUES ('878', 'b', 'Invalid or canceled internal item number', 'Invalid or canceled internal item number', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11630 INSERT INTO `marc_subfield_structure` VALUES ('878', 'c', 'Cost', 'Cost', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11631 INSERT INTO `marc_subfield_structure` VALUES ('878', 'd', 'Date acquired', 'Date acquired', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11632 INSERT INTO `marc_subfield_structure` VALUES ('878', 'e', 'Source of acquisition', 'Source of acquisition', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11633 INSERT INTO `marc_subfield_structure` VALUES ('878', 'h', 'Use restrictions', 'Use restrictions', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11634 INSERT INTO `marc_subfield_structure` VALUES ('878', 'j', 'Item status', 'Item status', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11635 INSERT INTO `marc_subfield_structure` VALUES ('878', 'l', 'Temporary location', 'Temporary location', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11636 INSERT INTO `marc_subfield_structure` VALUES ('878', 'p', 'Piece designation', 'Piece designation', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11637 INSERT INTO `marc_subfield_structure` VALUES ('878', 'r', 'Invalid or canceled piece designation', 'Invalid or canceled piece designation', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11638 INSERT INTO `marc_subfield_structure` VALUES ('878', 't', 'Copy number', 'Copy number', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11639 INSERT INTO `marc_subfield_structure` VALUES ('878', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11640 INSERT INTO `marc_subfield_structure` VALUES ('878', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11641 INSERT INTO `marc_subfield_structure` VALUES ('880', '2', '2', '2', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11642 INSERT INTO `marc_subfield_structure` VALUES ('880', '3', '3', '3', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11643 INSERT INTO `marc_subfield_structure` VALUES ('880', '4', '4', '4', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11644 INSERT INTO `marc_subfield_structure` VALUES ('880', '5', '5', '5', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11645 INSERT INTO `marc_subfield_structure` VALUES ('880', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11646 INSERT INTO `marc_subfield_structure` VALUES ('880', '7', '7', '7', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11647 INSERT INTO `marc_subfield_structure` VALUES ('880', '8', '8', '8', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11648 INSERT INTO `marc_subfield_structure` VALUES ('880', '9', '9', '9', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11649 INSERT INTO `marc_subfield_structure` VALUES ('880', 'a', 'a', 'a', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11650 INSERT INTO `marc_subfield_structure` VALUES ('880', 'b', 'b', 'b', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11651 INSERT INTO `marc_subfield_structure` VALUES ('880', 'c', 'c', 'c', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11652 INSERT INTO `marc_subfield_structure` VALUES ('880', 'd', 'd', 'd', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11653 INSERT INTO `marc_subfield_structure` VALUES ('880', 'e', 'e', 'e', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11654 INSERT INTO `marc_subfield_structure` VALUES ('880', 'f', 'f', 'f', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11655 INSERT INTO `marc_subfield_structure` VALUES ('880', 'g', 'g', 'g', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11656 INSERT INTO `marc_subfield_structure` VALUES ('880', 'h', 'h', 'h', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11657 INSERT INTO `marc_subfield_structure` VALUES ('880', 'i', 'i', 'i', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11658 INSERT INTO `marc_subfield_structure` VALUES ('880', 'j', 'j', 'j', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11659 INSERT INTO `marc_subfield_structure` VALUES ('880', 'k', 'k', 'k', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11660 INSERT INTO `marc_subfield_structure` VALUES ('880', 'l', 'l', 'l', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11661 INSERT INTO `marc_subfield_structure` VALUES ('880', 'm', 'm', 'm', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11662 INSERT INTO `marc_subfield_structure` VALUES ('880', 'n', 'n', 'n', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11663 INSERT INTO `marc_subfield_structure` VALUES ('880', 'o', 'o', 'o', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11664 INSERT INTO `marc_subfield_structure` VALUES ('880', 'p', 'p', 'p', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11665 INSERT INTO `marc_subfield_structure` VALUES ('880', 'q', 'q', 'q', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11666 INSERT INTO `marc_subfield_structure` VALUES ('880', 'r', 'r', 'r', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11667 INSERT INTO `marc_subfield_structure` VALUES ('880', 's', 's', 's', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11668 INSERT INTO `marc_subfield_structure` VALUES ('880', 't', 't', 't', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11669 INSERT INTO `marc_subfield_structure` VALUES ('880', 'u', 'u', 'u', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11670 INSERT INTO `marc_subfield_structure` VALUES ('880', 'v', 'v', 'v', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11671 INSERT INTO `marc_subfield_structure` VALUES ('880', 'w', 'w', 'w', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11672 INSERT INTO `marc_subfield_structure` VALUES ('880', 'x', 'x', 'x', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11673 INSERT INTO `marc_subfield_structure` VALUES ('880', 'y', 'y', 'y', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11674 INSERT INTO `marc_subfield_structure` VALUES ('880', 'z', 'z', 'z', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11675 INSERT INTO `marc_subfield_structure` VALUES ('886', '0', '0', '0', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11676 INSERT INTO `marc_subfield_structure` VALUES ('886', '1', '1', '1', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11677 INSERT INTO `marc_subfield_structure` VALUES ('886', '2', '2', '2', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11678 INSERT INTO `marc_subfield_structure` VALUES ('886', '3', '3', '3', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11679 INSERT INTO `marc_subfield_structure` VALUES ('886', '4', '4', '4', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11680 INSERT INTO `marc_subfield_structure` VALUES ('886', '5', '5', '5', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11681 INSERT INTO `marc_subfield_structure` VALUES ('886', '6', '6', '6', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11682 INSERT INTO `marc_subfield_structure` VALUES ('886', '7', '7', '7', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11683 INSERT INTO `marc_subfield_structure` VALUES ('886', '8', '8', '8', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11684 INSERT INTO `marc_subfield_structure` VALUES ('886', '9', '9', '9', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11685 INSERT INTO `marc_subfield_structure` VALUES ('886', 'a', 'a', 'a', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11686 INSERT INTO `marc_subfield_structure` VALUES ('886', 'b', 'b', 'b', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11687 INSERT INTO `marc_subfield_structure` VALUES ('886', 'c', 'c', 'c', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11688 INSERT INTO `marc_subfield_structure` VALUES ('886', 'd', 'd', 'd', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11689 INSERT INTO `marc_subfield_structure` VALUES ('886', 'e', 'e', 'e', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11690 INSERT INTO `marc_subfield_structure` VALUES ('886', 'f', 'f', 'f', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11691 INSERT INTO `marc_subfield_structure` VALUES ('886', 'g', 'g', 'g', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11692 INSERT INTO `marc_subfield_structure` VALUES ('886', 'h', 'h', 'h', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11693 INSERT INTO `marc_subfield_structure` VALUES ('886', 'i', 'i', 'i', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11694 INSERT INTO `marc_subfield_structure` VALUES ('886', 'j', 'j', 'j', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11695 INSERT INTO `marc_subfield_structure` VALUES ('886', 'k', 'k', 'k', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11696 INSERT INTO `marc_subfield_structure` VALUES ('886', 'l', 'l', 'l', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11697 INSERT INTO `marc_subfield_structure` VALUES ('886', 'm', 'm', 'm', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11698 INSERT INTO `marc_subfield_structure` VALUES ('886', 'n', 'n', 'n', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11699 INSERT INTO `marc_subfield_structure` VALUES ('886', 'o', 'o', 'o', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11700 INSERT INTO `marc_subfield_structure` VALUES ('886', 'p', 'p', 'p', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11701 INSERT INTO `marc_subfield_structure` VALUES ('886', 'q', 'q', 'q', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11702 INSERT INTO `marc_subfield_structure` VALUES ('886', 'r', 'r', 'r', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11703 INSERT INTO `marc_subfield_structure` VALUES ('886', 's', 's', 's', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11704 INSERT INTO `marc_subfield_structure` VALUES ('886', 't', 't', 't', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11705 INSERT INTO `marc_subfield_structure` VALUES ('886', 'u', 'u', 'u', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11706 INSERT INTO `marc_subfield_structure` VALUES ('886', 'v', 'v', 'v', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11707 INSERT INTO `marc_subfield_structure` VALUES ('886', 'w', 'w', 'w', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11708 INSERT INTO `marc_subfield_structure` VALUES ('886', 'x', 'x', 'x', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11709 INSERT INTO `marc_subfield_structure` VALUES ('886', 'y', 'y', 'y', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11710 INSERT INTO `marc_subfield_structure` VALUES ('886', 'z', 'z', 'z', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11711 INSERT INTO `marc_subfield_structure` VALUES ('887', '2', 'Source of data', 'Source of data', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11712 INSERT INTO `marc_subfield_structure` VALUES ('887', 'a', 'Content of non-MARC field', 'Content of non-MARC field', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11713 INSERT INTO `marc_subfield_structure` VALUES ('896', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 8, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11714 INSERT INTO `marc_subfield_structure` VALUES ('896', '4', 'Relator code', 'Relator code', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11715 INSERT INTO `marc_subfield_structure` VALUES ('896', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11716 INSERT INTO `marc_subfield_structure` VALUES ('896', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11717 INSERT INTO `marc_subfield_structure` VALUES ('896', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, 'ASMP_SOUND_RECORDINGS', '', '');
11718 INSERT INTO `marc_subfield_structure` VALUES ('896', 'a', 'Personal name', 'Personal name', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11719 INSERT INTO `marc_subfield_structure` VALUES ('896', 'b', 'Numeration', 'Numeration', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11720 INSERT INTO `marc_subfield_structure` VALUES ('896', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11721 INSERT INTO `marc_subfield_structure` VALUES ('896', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11722 INSERT INTO `marc_subfield_structure` VALUES ('896', 'e', 'Relator term', 'Relator term', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11723 INSERT INTO `marc_subfield_structure` VALUES ('896', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11724 INSERT INTO `marc_subfield_structure` VALUES ('896', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11725 INSERT INTO `marc_subfield_structure` VALUES ('896', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11726 INSERT INTO `marc_subfield_structure` VALUES ('896', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11727 INSERT INTO `marc_subfield_structure` VALUES ('896', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11728 INSERT INTO `marc_subfield_structure` VALUES ('896', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11729 INSERT INTO `marc_subfield_structure` VALUES ('896', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11730 INSERT INTO `marc_subfield_structure` VALUES ('896', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11731 INSERT INTO `marc_subfield_structure` VALUES ('896', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11732 INSERT INTO `marc_subfield_structure` VALUES ('896', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11733 INSERT INTO `marc_subfield_structure` VALUES ('896', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11734 INSERT INTO `marc_subfield_structure` VALUES ('896', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11735 INSERT INTO `marc_subfield_structure` VALUES ('896', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11736 INSERT INTO `marc_subfield_structure` VALUES ('896', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11737 INSERT INTO `marc_subfield_structure` VALUES ('896', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11738 INSERT INTO `marc_subfield_structure` VALUES ('896', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11739 INSERT INTO `marc_subfield_structure` VALUES ('897', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 8, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11740 INSERT INTO `marc_subfield_structure` VALUES ('897', '4', 'Relator code', 'Relator code', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11741 INSERT INTO `marc_subfield_structure` VALUES ('897', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11742 INSERT INTO `marc_subfield_structure` VALUES ('897', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11743 INSERT INTO `marc_subfield_structure` VALUES ('897', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, 'ASMP_SOUND_RECORDINGS', '', '');
11744 INSERT INTO `marc_subfield_structure` VALUES ('897', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11745 INSERT INTO `marc_subfield_structure` VALUES ('897', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11746 INSERT INTO `marc_subfield_structure` VALUES ('897', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11747 INSERT INTO `marc_subfield_structure` VALUES ('897', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11748 INSERT INTO `marc_subfield_structure` VALUES ('897', 'e', 'Relator term', 'Relator term', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11749 INSERT INTO `marc_subfield_structure` VALUES ('897', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11750 INSERT INTO `marc_subfield_structure` VALUES ('897', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11751 INSERT INTO `marc_subfield_structure` VALUES ('897', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11752 INSERT INTO `marc_subfield_structure` VALUES ('897', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11753 INSERT INTO `marc_subfield_structure` VALUES ('897', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11754 INSERT INTO `marc_subfield_structure` VALUES ('897', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11755 INSERT INTO `marc_subfield_structure` VALUES ('897', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11756 INSERT INTO `marc_subfield_structure` VALUES ('897', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11757 INSERT INTO `marc_subfield_structure` VALUES ('897', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11758 INSERT INTO `marc_subfield_structure` VALUES ('897', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11759 INSERT INTO `marc_subfield_structure` VALUES ('897', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11760 INSERT INTO `marc_subfield_structure` VALUES ('897', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11761 INSERT INTO `marc_subfield_structure` VALUES ('897', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11762 INSERT INTO `marc_subfield_structure` VALUES ('897', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11763 INSERT INTO `marc_subfield_structure` VALUES ('898', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 8, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11764 INSERT INTO `marc_subfield_structure` VALUES ('898', '4', 'Relator code', 'Relator code', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11765 INSERT INTO `marc_subfield_structure` VALUES ('898', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11766 INSERT INTO `marc_subfield_structure` VALUES ('898', '8', 'Field link and sequence number ', 'Field link and sequence number ', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11767 INSERT INTO `marc_subfield_structure` VALUES ('898', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, 'ASMP_SOUND_RECORDINGS', '', '');
11768 INSERT INTO `marc_subfield_structure` VALUES ('898', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11769 INSERT INTO `marc_subfield_structure` VALUES ('898', 'b', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11770 INSERT INTO `marc_subfield_structure` VALUES ('898', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11771 INSERT INTO `marc_subfield_structure` VALUES ('898', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11772 INSERT INTO `marc_subfield_structure` VALUES ('898', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11773 INSERT INTO `marc_subfield_structure` VALUES ('898', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11774 INSERT INTO `marc_subfield_structure` VALUES ('898', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11775 INSERT INTO `marc_subfield_structure` VALUES ('898', 'h', 'Medium', 'Medium', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11776 INSERT INTO `marc_subfield_structure` VALUES ('898', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11777 INSERT INTO `marc_subfield_structure` VALUES ('898', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11778 INSERT INTO `marc_subfield_structure` VALUES ('898', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11779 INSERT INTO `marc_subfield_structure` VALUES ('898', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11780 INSERT INTO `marc_subfield_structure` VALUES ('898', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11781 INSERT INTO `marc_subfield_structure` VALUES ('898', 's', 'Version', 'Version', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11782 INSERT INTO `marc_subfield_structure` VALUES ('898', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11783 INSERT INTO `marc_subfield_structure` VALUES ('898', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11784 INSERT INTO `marc_subfield_structure` VALUES ('898', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11785 INSERT INTO `marc_subfield_structure` VALUES ('899', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 8, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11786 INSERT INTO `marc_subfield_structure` VALUES ('899', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11787 INSERT INTO `marc_subfield_structure` VALUES ('899', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11788 INSERT INTO `marc_subfield_structure` VALUES ('899', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, 'ASMP_SOUND_RECORDINGS', '', '');
11789 INSERT INTO `marc_subfield_structure` VALUES ('899', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11790 INSERT INTO `marc_subfield_structure` VALUES ('899', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11791 INSERT INTO `marc_subfield_structure` VALUES ('899', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11792 INSERT INTO `marc_subfield_structure` VALUES ('899', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11793 INSERT INTO `marc_subfield_structure` VALUES ('899', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11794 INSERT INTO `marc_subfield_structure` VALUES ('899', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11795 INSERT INTO `marc_subfield_structure` VALUES ('899', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11796 INSERT INTO `marc_subfield_structure` VALUES ('899', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11797 INSERT INTO `marc_subfield_structure` VALUES ('899', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11798 INSERT INTO `marc_subfield_structure` VALUES ('899', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11799 INSERT INTO `marc_subfield_structure` VALUES ('899', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11800 INSERT INTO `marc_subfield_structure` VALUES ('899', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11801 INSERT INTO `marc_subfield_structure` VALUES ('899', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11802 INSERT INTO `marc_subfield_structure` VALUES ('899', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11803 INSERT INTO `marc_subfield_structure` VALUES ('899', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11804 INSERT INTO `marc_subfield_structure` VALUES ('89e', '0', '0', '0', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11805 INSERT INTO `marc_subfield_structure` VALUES ('89e', '1', '1', '1', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11806 INSERT INTO `marc_subfield_structure` VALUES ('89e', '2', '2', '2', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11807 INSERT INTO `marc_subfield_structure` VALUES ('89e', '3', '3', '3', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11808 INSERT INTO `marc_subfield_structure` VALUES ('89e', '4', '4', '4', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11809 INSERT INTO `marc_subfield_structure` VALUES ('89e', '5', '5', '5', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11810 INSERT INTO `marc_subfield_structure` VALUES ('89e', '6', '6', '6', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11811 INSERT INTO `marc_subfield_structure` VALUES ('89e', '7', '7', '7', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11812 INSERT INTO `marc_subfield_structure` VALUES ('89e', '8', '8', '8', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11813 INSERT INTO `marc_subfield_structure` VALUES ('89e', '9', '9', '9', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11814 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'a', 'a', 'a', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11815 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'b', 'b', 'b', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11816 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'c', 'c', 'c', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11817 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'd', 'd', 'd', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11818 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'e', 'e', 'e', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11819 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'f', 'f', 'f', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11820 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'g', 'g', 'g', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11821 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'h', 'h', 'h', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11822 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'i', 'i', 'i', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11823 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'j', 'j', 'j', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11824 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'k', 'k', 'k', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11825 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'l', 'l', 'l', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11826 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'm', 'm', 'm', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11827 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'n', 'n', 'n', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11828 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'o', 'o', 'o', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11829 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'p', 'p', 'p', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11830 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'q', 'q', 'q', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11831 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'r', 'r', 'r', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11832 INSERT INTO `marc_subfield_structure` VALUES ('89e', 's', 's', 's', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11833 INSERT INTO `marc_subfield_structure` VALUES ('89e', 't', 't', 't', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11834 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'u', 'u', 'u', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11835 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'v', 'v', 'v', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11836 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'w', 'w', 'w', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11837 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'x', 'x', 'x', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11838 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'y', 'y', 'y', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11839 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'z', 'z', 'z', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11840 INSERT INTO `marc_subfield_structure` VALUES ('900', '4', 'Relator code', 'Relator code', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11841 INSERT INTO `marc_subfield_structure` VALUES ('900', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11842 INSERT INTO `marc_subfield_structure` VALUES ('900', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11843 INSERT INTO `marc_subfield_structure` VALUES ('900', 'a', 'Personal name', 'Personal name', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
11844 INSERT INTO `marc_subfield_structure` VALUES ('900', 'b', 'Numeration', 'Numeration', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11845 INSERT INTO `marc_subfield_structure` VALUES ('900', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11846 INSERT INTO `marc_subfield_structure` VALUES ('900', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11847 INSERT INTO `marc_subfield_structure` VALUES ('900', 'e', 'Relator term', 'Relator term', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11848 INSERT INTO `marc_subfield_structure` VALUES ('900', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11849 INSERT INTO `marc_subfield_structure` VALUES ('900', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11850 INSERT INTO `marc_subfield_structure` VALUES ('900', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11851 INSERT INTO `marc_subfield_structure` VALUES ('900', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11852 INSERT INTO `marc_subfield_structure` VALUES ('900', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11853 INSERT INTO `marc_subfield_structure` VALUES ('900', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11854 INSERT INTO `marc_subfield_structure` VALUES ('900', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11855 INSERT INTO `marc_subfield_structure` VALUES ('900', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11856 INSERT INTO `marc_subfield_structure` VALUES ('900', 't', 'Title of a work', 'Title of a work', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11857 INSERT INTO `marc_subfield_structure` VALUES ('900', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11858 INSERT INTO `marc_subfield_structure` VALUES ('901', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11859 INSERT INTO `marc_subfield_structure` VALUES ('901', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11860 INSERT INTO `marc_subfield_structure` VALUES ('901', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11861 INSERT INTO `marc_subfield_structure` VALUES ('901', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11862 INSERT INTO `marc_subfield_structure` VALUES ('901', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11863 INSERT INTO `marc_subfield_structure` VALUES ('901', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11864 INSERT INTO `marc_subfield_structure` VALUES ('901', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11865 INSERT INTO `marc_subfield_structure` VALUES ('901', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11866 INSERT INTO `marc_subfield_structure` VALUES ('901', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11867 INSERT INTO `marc_subfield_structure` VALUES ('901', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11868 INSERT INTO `marc_subfield_structure` VALUES ('901', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11869 INSERT INTO `marc_subfield_structure` VALUES ('901', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11870 INSERT INTO `marc_subfield_structure` VALUES ('901', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11871 INSERT INTO `marc_subfield_structure` VALUES ('901', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11872 INSERT INTO `marc_subfield_structure` VALUES ('901', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11873 INSERT INTO `marc_subfield_structure` VALUES ('901', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11874 INSERT INTO `marc_subfield_structure` VALUES ('901', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11875 INSERT INTO `marc_subfield_structure` VALUES ('901', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11876 INSERT INTO `marc_subfield_structure` VALUES ('901', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11877 INSERT INTO `marc_subfield_structure` VALUES ('901', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11878 INSERT INTO `marc_subfield_structure` VALUES ('901', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11879 INSERT INTO `marc_subfield_structure` VALUES ('901', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11880 INSERT INTO `marc_subfield_structure` VALUES ('901', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11881 INSERT INTO `marc_subfield_structure` VALUES ('901', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11882 INSERT INTO `marc_subfield_structure` VALUES ('901', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11883 INSERT INTO `marc_subfield_structure` VALUES ('901', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11884 INSERT INTO `marc_subfield_structure` VALUES ('901', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11885 INSERT INTO `marc_subfield_structure` VALUES ('901', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11886 INSERT INTO `marc_subfield_structure` VALUES ('901', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11887 INSERT INTO `marc_subfield_structure` VALUES ('901', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11888 INSERT INTO `marc_subfield_structure` VALUES ('901', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11889 INSERT INTO `marc_subfield_structure` VALUES ('901', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11890 INSERT INTO `marc_subfield_structure` VALUES ('901', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11891 INSERT INTO `marc_subfield_structure` VALUES ('901', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11892 INSERT INTO `marc_subfield_structure` VALUES ('901', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11893 INSERT INTO `marc_subfield_structure` VALUES ('901', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11894 INSERT INTO `marc_subfield_structure` VALUES ('902', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11895 INSERT INTO `marc_subfield_structure` VALUES ('902', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11896 INSERT INTO `marc_subfield_structure` VALUES ('902', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11897 INSERT INTO `marc_subfield_structure` VALUES ('902', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11898 INSERT INTO `marc_subfield_structure` VALUES ('902', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11899 INSERT INTO `marc_subfield_structure` VALUES ('902', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11900 INSERT INTO `marc_subfield_structure` VALUES ('902', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11901 INSERT INTO `marc_subfield_structure` VALUES ('902', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11902 INSERT INTO `marc_subfield_structure` VALUES ('902', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11903 INSERT INTO `marc_subfield_structure` VALUES ('902', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11904 INSERT INTO `marc_subfield_structure` VALUES ('902', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11905 INSERT INTO `marc_subfield_structure` VALUES ('902', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11906 INSERT INTO `marc_subfield_structure` VALUES ('902', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11907 INSERT INTO `marc_subfield_structure` VALUES ('902', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11908 INSERT INTO `marc_subfield_structure` VALUES ('902', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11909 INSERT INTO `marc_subfield_structure` VALUES ('902', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11910 INSERT INTO `marc_subfield_structure` VALUES ('902', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11911 INSERT INTO `marc_subfield_structure` VALUES ('902', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11912 INSERT INTO `marc_subfield_structure` VALUES ('902', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11913 INSERT INTO `marc_subfield_structure` VALUES ('902', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11914 INSERT INTO `marc_subfield_structure` VALUES ('902', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11915 INSERT INTO `marc_subfield_structure` VALUES ('902', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11916 INSERT INTO `marc_subfield_structure` VALUES ('902', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11917 INSERT INTO `marc_subfield_structure` VALUES ('902', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11918 INSERT INTO `marc_subfield_structure` VALUES ('902', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11919 INSERT INTO `marc_subfield_structure` VALUES ('902', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11920 INSERT INTO `marc_subfield_structure` VALUES ('902', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11921 INSERT INTO `marc_subfield_structure` VALUES ('902', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11922 INSERT INTO `marc_subfield_structure` VALUES ('902', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11923 INSERT INTO `marc_subfield_structure` VALUES ('902', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11924 INSERT INTO `marc_subfield_structure` VALUES ('902', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11925 INSERT INTO `marc_subfield_structure` VALUES ('902', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11926 INSERT INTO `marc_subfield_structure` VALUES ('902', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11927 INSERT INTO `marc_subfield_structure` VALUES ('902', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11928 INSERT INTO `marc_subfield_structure` VALUES ('902', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11929 INSERT INTO `marc_subfield_structure` VALUES ('902', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11930 INSERT INTO `marc_subfield_structure` VALUES ('903', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11931 INSERT INTO `marc_subfield_structure` VALUES ('903', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11932 INSERT INTO `marc_subfield_structure` VALUES ('903', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11933 INSERT INTO `marc_subfield_structure` VALUES ('903', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11934 INSERT INTO `marc_subfield_structure` VALUES ('903', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11935 INSERT INTO `marc_subfield_structure` VALUES ('903', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11936 INSERT INTO `marc_subfield_structure` VALUES ('903', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11937 INSERT INTO `marc_subfield_structure` VALUES ('903', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11938 INSERT INTO `marc_subfield_structure` VALUES ('903', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11939 INSERT INTO `marc_subfield_structure` VALUES ('903', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11940 INSERT INTO `marc_subfield_structure` VALUES ('903', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11941 INSERT INTO `marc_subfield_structure` VALUES ('903', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11942 INSERT INTO `marc_subfield_structure` VALUES ('903', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11943 INSERT INTO `marc_subfield_structure` VALUES ('903', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11944 INSERT INTO `marc_subfield_structure` VALUES ('903', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11945 INSERT INTO `marc_subfield_structure` VALUES ('903', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11946 INSERT INTO `marc_subfield_structure` VALUES ('903', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11947 INSERT INTO `marc_subfield_structure` VALUES ('903', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11948 INSERT INTO `marc_subfield_structure` VALUES ('903', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11949 INSERT INTO `marc_subfield_structure` VALUES ('903', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11950 INSERT INTO `marc_subfield_structure` VALUES ('903', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11951 INSERT INTO `marc_subfield_structure` VALUES ('903', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11952 INSERT INTO `marc_subfield_structure` VALUES ('903', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11953 INSERT INTO `marc_subfield_structure` VALUES ('903', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11954 INSERT INTO `marc_subfield_structure` VALUES ('903', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11955 INSERT INTO `marc_subfield_structure` VALUES ('903', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11956 INSERT INTO `marc_subfield_structure` VALUES ('903', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11957 INSERT INTO `marc_subfield_structure` VALUES ('903', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11958 INSERT INTO `marc_subfield_structure` VALUES ('903', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11959 INSERT INTO `marc_subfield_structure` VALUES ('903', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11960 INSERT INTO `marc_subfield_structure` VALUES ('903', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11961 INSERT INTO `marc_subfield_structure` VALUES ('903', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11962 INSERT INTO `marc_subfield_structure` VALUES ('903', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11963 INSERT INTO `marc_subfield_structure` VALUES ('903', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11964 INSERT INTO `marc_subfield_structure` VALUES ('903', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11965 INSERT INTO `marc_subfield_structure` VALUES ('903', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11966 INSERT INTO `marc_subfield_structure` VALUES ('904', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11967 INSERT INTO `marc_subfield_structure` VALUES ('904', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11968 INSERT INTO `marc_subfield_structure` VALUES ('904', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11969 INSERT INTO `marc_subfield_structure` VALUES ('904', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11970 INSERT INTO `marc_subfield_structure` VALUES ('904', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11971 INSERT INTO `marc_subfield_structure` VALUES ('904', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11972 INSERT INTO `marc_subfield_structure` VALUES ('904', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11973 INSERT INTO `marc_subfield_structure` VALUES ('904', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11974 INSERT INTO `marc_subfield_structure` VALUES ('904', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11975 INSERT INTO `marc_subfield_structure` VALUES ('904', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11976 INSERT INTO `marc_subfield_structure` VALUES ('904', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11977 INSERT INTO `marc_subfield_structure` VALUES ('904', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11978 INSERT INTO `marc_subfield_structure` VALUES ('904', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11979 INSERT INTO `marc_subfield_structure` VALUES ('904', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11980 INSERT INTO `marc_subfield_structure` VALUES ('904', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11981 INSERT INTO `marc_subfield_structure` VALUES ('904', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11982 INSERT INTO `marc_subfield_structure` VALUES ('904', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11983 INSERT INTO `marc_subfield_structure` VALUES ('904', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11984 INSERT INTO `marc_subfield_structure` VALUES ('904', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11985 INSERT INTO `marc_subfield_structure` VALUES ('904', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11986 INSERT INTO `marc_subfield_structure` VALUES ('904', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11987 INSERT INTO `marc_subfield_structure` VALUES ('904', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11988 INSERT INTO `marc_subfield_structure` VALUES ('904', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11989 INSERT INTO `marc_subfield_structure` VALUES ('904', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11990 INSERT INTO `marc_subfield_structure` VALUES ('904', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11991 INSERT INTO `marc_subfield_structure` VALUES ('904', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11992 INSERT INTO `marc_subfield_structure` VALUES ('904', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11993 INSERT INTO `marc_subfield_structure` VALUES ('904', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11994 INSERT INTO `marc_subfield_structure` VALUES ('904', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11995 INSERT INTO `marc_subfield_structure` VALUES ('904', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11996 INSERT INTO `marc_subfield_structure` VALUES ('904', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11997 INSERT INTO `marc_subfield_structure` VALUES ('904', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11998 INSERT INTO `marc_subfield_structure` VALUES ('904', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
11999 INSERT INTO `marc_subfield_structure` VALUES ('904', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12000 INSERT INTO `marc_subfield_structure` VALUES ('904', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12001 INSERT INTO `marc_subfield_structure` VALUES ('904', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12002 INSERT INTO `marc_subfield_structure` VALUES ('905', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12003 INSERT INTO `marc_subfield_structure` VALUES ('905', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12004 INSERT INTO `marc_subfield_structure` VALUES ('905', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12005 INSERT INTO `marc_subfield_structure` VALUES ('905', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12006 INSERT INTO `marc_subfield_structure` VALUES ('905', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12007 INSERT INTO `marc_subfield_structure` VALUES ('905', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12008 INSERT INTO `marc_subfield_structure` VALUES ('905', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12009 INSERT INTO `marc_subfield_structure` VALUES ('905', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12010 INSERT INTO `marc_subfield_structure` VALUES ('905', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12011 INSERT INTO `marc_subfield_structure` VALUES ('905', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12012 INSERT INTO `marc_subfield_structure` VALUES ('905', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12013 INSERT INTO `marc_subfield_structure` VALUES ('905', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12014 INSERT INTO `marc_subfield_structure` VALUES ('905', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12015 INSERT INTO `marc_subfield_structure` VALUES ('905', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12016 INSERT INTO `marc_subfield_structure` VALUES ('905', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12017 INSERT INTO `marc_subfield_structure` VALUES ('905', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12018 INSERT INTO `marc_subfield_structure` VALUES ('905', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12019 INSERT INTO `marc_subfield_structure` VALUES ('905', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12020 INSERT INTO `marc_subfield_structure` VALUES ('905', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12021 INSERT INTO `marc_subfield_structure` VALUES ('905', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12022 INSERT INTO `marc_subfield_structure` VALUES ('905', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12023 INSERT INTO `marc_subfield_structure` VALUES ('905', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12024 INSERT INTO `marc_subfield_structure` VALUES ('905', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12025 INSERT INTO `marc_subfield_structure` VALUES ('905', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12026 INSERT INTO `marc_subfield_structure` VALUES ('905', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12027 INSERT INTO `marc_subfield_structure` VALUES ('905', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12028 INSERT INTO `marc_subfield_structure` VALUES ('905', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12029 INSERT INTO `marc_subfield_structure` VALUES ('905', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12030 INSERT INTO `marc_subfield_structure` VALUES ('905', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12031 INSERT INTO `marc_subfield_structure` VALUES ('905', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12032 INSERT INTO `marc_subfield_structure` VALUES ('905', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12033 INSERT INTO `marc_subfield_structure` VALUES ('905', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12034 INSERT INTO `marc_subfield_structure` VALUES ('905', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12035 INSERT INTO `marc_subfield_structure` VALUES ('905', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12036 INSERT INTO `marc_subfield_structure` VALUES ('905', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12037 INSERT INTO `marc_subfield_structure` VALUES ('905', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12038 INSERT INTO `marc_subfield_structure` VALUES ('906', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12039 INSERT INTO `marc_subfield_structure` VALUES ('906', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12040 INSERT INTO `marc_subfield_structure` VALUES ('906', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12041 INSERT INTO `marc_subfield_structure` VALUES ('906', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12042 INSERT INTO `marc_subfield_structure` VALUES ('906', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12043 INSERT INTO `marc_subfield_structure` VALUES ('906', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12044 INSERT INTO `marc_subfield_structure` VALUES ('906', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12045 INSERT INTO `marc_subfield_structure` VALUES ('906', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12046 INSERT INTO `marc_subfield_structure` VALUES ('906', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12047 INSERT INTO `marc_subfield_structure` VALUES ('906', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12048 INSERT INTO `marc_subfield_structure` VALUES ('906', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12049 INSERT INTO `marc_subfield_structure` VALUES ('906', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12050 INSERT INTO `marc_subfield_structure` VALUES ('906', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12051 INSERT INTO `marc_subfield_structure` VALUES ('906', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12052 INSERT INTO `marc_subfield_structure` VALUES ('906', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12053 INSERT INTO `marc_subfield_structure` VALUES ('906', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12054 INSERT INTO `marc_subfield_structure` VALUES ('906', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12055 INSERT INTO `marc_subfield_structure` VALUES ('906', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12056 INSERT INTO `marc_subfield_structure` VALUES ('906', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12057 INSERT INTO `marc_subfield_structure` VALUES ('906', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12058 INSERT INTO `marc_subfield_structure` VALUES ('906', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12059 INSERT INTO `marc_subfield_structure` VALUES ('906', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12060 INSERT INTO `marc_subfield_structure` VALUES ('906', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12061 INSERT INTO `marc_subfield_structure` VALUES ('906', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12062 INSERT INTO `marc_subfield_structure` VALUES ('906', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12063 INSERT INTO `marc_subfield_structure` VALUES ('906', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12064 INSERT INTO `marc_subfield_structure` VALUES ('906', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12065 INSERT INTO `marc_subfield_structure` VALUES ('906', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12066 INSERT INTO `marc_subfield_structure` VALUES ('906', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12067 INSERT INTO `marc_subfield_structure` VALUES ('906', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12068 INSERT INTO `marc_subfield_structure` VALUES ('906', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12069 INSERT INTO `marc_subfield_structure` VALUES ('906', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12070 INSERT INTO `marc_subfield_structure` VALUES ('906', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12071 INSERT INTO `marc_subfield_structure` VALUES ('906', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12072 INSERT INTO `marc_subfield_structure` VALUES ('906', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12073 INSERT INTO `marc_subfield_structure` VALUES ('906', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12074 INSERT INTO `marc_subfield_structure` VALUES ('907', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12075 INSERT INTO `marc_subfield_structure` VALUES ('907', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12076 INSERT INTO `marc_subfield_structure` VALUES ('907', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12077 INSERT INTO `marc_subfield_structure` VALUES ('907', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12078 INSERT INTO `marc_subfield_structure` VALUES ('907', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12079 INSERT INTO `marc_subfield_structure` VALUES ('907', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12080 INSERT INTO `marc_subfield_structure` VALUES ('907', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12081 INSERT INTO `marc_subfield_structure` VALUES ('907', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12082 INSERT INTO `marc_subfield_structure` VALUES ('907', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12083 INSERT INTO `marc_subfield_structure` VALUES ('907', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12084 INSERT INTO `marc_subfield_structure` VALUES ('907', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12085 INSERT INTO `marc_subfield_structure` VALUES ('907', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12086 INSERT INTO `marc_subfield_structure` VALUES ('907', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12087 INSERT INTO `marc_subfield_structure` VALUES ('907', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12088 INSERT INTO `marc_subfield_structure` VALUES ('907', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12089 INSERT INTO `marc_subfield_structure` VALUES ('907', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12090 INSERT INTO `marc_subfield_structure` VALUES ('907', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12091 INSERT INTO `marc_subfield_structure` VALUES ('907', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12092 INSERT INTO `marc_subfield_structure` VALUES ('907', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12093 INSERT INTO `marc_subfield_structure` VALUES ('907', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12094 INSERT INTO `marc_subfield_structure` VALUES ('907', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12095 INSERT INTO `marc_subfield_structure` VALUES ('907', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12096 INSERT INTO `marc_subfield_structure` VALUES ('907', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12097 INSERT INTO `marc_subfield_structure` VALUES ('907', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12098 INSERT INTO `marc_subfield_structure` VALUES ('907', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12099 INSERT INTO `marc_subfield_structure` VALUES ('907', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12100 INSERT INTO `marc_subfield_structure` VALUES ('907', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12101 INSERT INTO `marc_subfield_structure` VALUES ('907', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12102 INSERT INTO `marc_subfield_structure` VALUES ('907', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12103 INSERT INTO `marc_subfield_structure` VALUES ('907', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12104 INSERT INTO `marc_subfield_structure` VALUES ('907', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12105 INSERT INTO `marc_subfield_structure` VALUES ('907', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12106 INSERT INTO `marc_subfield_structure` VALUES ('907', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12107 INSERT INTO `marc_subfield_structure` VALUES ('907', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12108 INSERT INTO `marc_subfield_structure` VALUES ('907', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12109 INSERT INTO `marc_subfield_structure` VALUES ('907', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12110 INSERT INTO `marc_subfield_structure` VALUES ('908', 'a', 'Put command parameter', 'Put command parameter', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12111 INSERT INTO `marc_subfield_structure` VALUES ('910', '4', 'Relator code', 'Relator code', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12112 INSERT INTO `marc_subfield_structure` VALUES ('910', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12113 INSERT INTO `marc_subfield_structure` VALUES ('910', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12114 INSERT INTO `marc_subfield_structure` VALUES ('910', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12115 INSERT INTO `marc_subfield_structure` VALUES ('910', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12116 INSERT INTO `marc_subfield_structure` VALUES ('910', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12117 INSERT INTO `marc_subfield_structure` VALUES ('910', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12118 INSERT INTO `marc_subfield_structure` VALUES ('910', 'e', 'Relator term', 'Relator term', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12119 INSERT INTO `marc_subfield_structure` VALUES ('910', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12120 INSERT INTO `marc_subfield_structure` VALUES ('910', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12121 INSERT INTO `marc_subfield_structure` VALUES ('910', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12122 INSERT INTO `marc_subfield_structure` VALUES ('910', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12123 INSERT INTO `marc_subfield_structure` VALUES ('910', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12124 INSERT INTO `marc_subfield_structure` VALUES ('910', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12125 INSERT INTO `marc_subfield_structure` VALUES ('910', 't', 'Title of a work', 'Title of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12126 INSERT INTO `marc_subfield_structure` VALUES ('910', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12127 INSERT INTO `marc_subfield_structure` VALUES ('91o', 'a', 'User-option data', 'User-option data', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12128 INSERT INTO `marc_subfield_structure` VALUES ('91r', 'a', 'RLG standards note', 'RLG standards note', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12129 INSERT INTO `marc_subfield_structure` VALUES ('911', '4', 'Relator code', 'Relator code', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12130 INSERT INTO `marc_subfield_structure` VALUES ('911', '6', 'Linkage', 'Linkage', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12131 INSERT INTO `marc_subfield_structure` VALUES ('911', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12132 INSERT INTO `marc_subfield_structure` VALUES ('911', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12133 INSERT INTO `marc_subfield_structure` VALUES ('911', 'b', 'Number [OBSOLETE]', 'Number [OBSOLETE]', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12134 INSERT INTO `marc_subfield_structure` VALUES ('911', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12135 INSERT INTO `marc_subfield_structure` VALUES ('911', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12136 INSERT INTO `marc_subfield_structure` VALUES ('911', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12137 INSERT INTO `marc_subfield_structure` VALUES ('911', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12138 INSERT INTO `marc_subfield_structure` VALUES ('911', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12139 INSERT INTO `marc_subfield_structure` VALUES ('911', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12140 INSERT INTO `marc_subfield_structure` VALUES ('911', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12141 INSERT INTO `marc_subfield_structure` VALUES ('911', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12142 INSERT INTO `marc_subfield_structure` VALUES ('911', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12143 INSERT INTO `marc_subfield_structure` VALUES ('911', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12144 INSERT INTO `marc_subfield_structure` VALUES ('911', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12145 INSERT INTO `marc_subfield_structure` VALUES ('911', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12146 INSERT INTO `marc_subfield_structure` VALUES ('930', '6', 'Linkage', 'Linkage', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12147 INSERT INTO `marc_subfield_structure` VALUES ('930', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12148 INSERT INTO `marc_subfield_structure` VALUES ('930', 'a', 'Uniform title', 'Uniform title', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12149 INSERT INTO `marc_subfield_structure` VALUES ('930', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12150 INSERT INTO `marc_subfield_structure` VALUES ('930', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12151 INSERT INTO `marc_subfield_structure` VALUES ('930', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12152 INSERT INTO `marc_subfield_structure` VALUES ('930', 'h', 'Medium', 'Medium', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12153 INSERT INTO `marc_subfield_structure` VALUES ('930', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12154 INSERT INTO `marc_subfield_structure` VALUES ('930', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12155 INSERT INTO `marc_subfield_structure` VALUES ('930', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12156 INSERT INTO `marc_subfield_structure` VALUES ('930', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12157 INSERT INTO `marc_subfield_structure` VALUES ('930', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12158 INSERT INTO `marc_subfield_structure` VALUES ('930', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12159 INSERT INTO `marc_subfield_structure` VALUES ('930', 'r', 'Key for music', 'Key for music', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12160 INSERT INTO `marc_subfield_structure` VALUES ('930', 's', 'Version', 'Version', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12161 INSERT INTO `marc_subfield_structure` VALUES ('930', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12162 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'a', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12163 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'b', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12164 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'c', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12165 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'd', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12166 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'e', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12167 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'f', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12168 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'g', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12169 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'h', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12170 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'i', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12171 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'k', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12172 INSERT INTO `marc_subfield_structure` VALUES ('936', 'a', 'OCLC control number(s) of parallel record(s) (OCLC); Piece used for cataloging, PUC (RLIN)', 'OCLC control number(s) of parallel record(s) (OCLC); Piece used for cataloging, PUC (RLIN)', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12173 INSERT INTO `marc_subfield_structure` VALUES ('940', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12174 INSERT INTO `marc_subfield_structure` VALUES ('940', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12175 INSERT INTO `marc_subfield_structure` VALUES ('940', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 9, '', '', '', 1, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12176 INSERT INTO `marc_subfield_structure` VALUES ('940', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12177 INSERT INTO `marc_subfield_structure` VALUES ('940', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12178 INSERT INTO `marc_subfield_structure` VALUES ('940', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12179 INSERT INTO `marc_subfield_structure` VALUES ('940', 'h', 'Medium', 'Medium', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12180 INSERT INTO `marc_subfield_structure` VALUES ('940', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12181 INSERT INTO `marc_subfield_structure` VALUES ('940', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12182 INSERT INTO `marc_subfield_structure` VALUES ('940', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12183 INSERT INTO `marc_subfield_structure` VALUES ('940', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12184 INSERT INTO `marc_subfield_structure` VALUES ('940', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12185 INSERT INTO `marc_subfield_structure` VALUES ('940', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12186 INSERT INTO `marc_subfield_structure` VALUES ('940', 'r', 'Key for music', 'Key for music', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12187 INSERT INTO `marc_subfield_structure` VALUES ('940', 's', 'Version', 'Version', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12188 INSERT INTO `marc_subfield_structure` VALUES ('941', 'a', 'Romanized title', 'Romanized title', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12189 INSERT INTO `marc_subfield_structure` VALUES ('941', 'h', 'Medium', 'Medium', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12190 INSERT INTO `marc_subfield_structure` VALUES ('943', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12191 INSERT INTO `marc_subfield_structure` VALUES ('943', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12192 INSERT INTO `marc_subfield_structure` VALUES ('943', 'a', 'Uniform title', 'Unifor title', 0, 0, '', 9, '', '', '', 1, 5, 'ASMP_SOUND_RECORDINGS', '', '130');
12193 INSERT INTO `marc_subfield_structure` VALUES ('943', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12194 INSERT INTO `marc_subfield_structure` VALUES ('943', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12195 INSERT INTO `marc_subfield_structure` VALUES ('943', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12196 INSERT INTO `marc_subfield_structure` VALUES ('943', 'h', 'Medium', 'Medium', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12197 INSERT INTO `marc_subfield_structure` VALUES ('943', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12198 INSERT INTO `marc_subfield_structure` VALUES ('943', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12199 INSERT INTO `marc_subfield_structure` VALUES ('943', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12200 INSERT INTO `marc_subfield_structure` VALUES ('943', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12201 INSERT INTO `marc_subfield_structure` VALUES ('943', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12202 INSERT INTO `marc_subfield_structure` VALUES ('943', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12203 INSERT INTO `marc_subfield_structure` VALUES ('943', 'r', 'Key for music', 'Key for music', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12204 INSERT INTO `marc_subfield_structure` VALUES ('943', 's', 'Version', 'Version', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12205 INSERT INTO `marc_subfield_structure` VALUES ('945', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12206 INSERT INTO `marc_subfield_structure` VALUES ('945', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12207 INSERT INTO `marc_subfield_structure` VALUES ('945', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12208 INSERT INTO `marc_subfield_structure` VALUES ('945', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12209 INSERT INTO `marc_subfield_structure` VALUES ('945', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12210 INSERT INTO `marc_subfield_structure` VALUES ('945', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12211 INSERT INTO `marc_subfield_structure` VALUES ('945', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12212 INSERT INTO `marc_subfield_structure` VALUES ('945', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12213 INSERT INTO `marc_subfield_structure` VALUES ('945', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12214 INSERT INTO `marc_subfield_structure` VALUES ('945', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12215 INSERT INTO `marc_subfield_structure` VALUES ('945', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12216 INSERT INTO `marc_subfield_structure` VALUES ('945', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12217 INSERT INTO `marc_subfield_structure` VALUES ('945', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12218 INSERT INTO `marc_subfield_structure` VALUES ('945', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12219 INSERT INTO `marc_subfield_structure` VALUES ('945', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12220 INSERT INTO `marc_subfield_structure` VALUES ('945', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12221 INSERT INTO `marc_subfield_structure` VALUES ('945', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12222 INSERT INTO `marc_subfield_structure` VALUES ('945', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12223 INSERT INTO `marc_subfield_structure` VALUES ('945', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12224 INSERT INTO `marc_subfield_structure` VALUES ('945', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12225 INSERT INTO `marc_subfield_structure` VALUES ('945', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12226 INSERT INTO `marc_subfield_structure` VALUES ('945', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12227 INSERT INTO `marc_subfield_structure` VALUES ('945', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12228 INSERT INTO `marc_subfield_structure` VALUES ('945', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12229 INSERT INTO `marc_subfield_structure` VALUES ('945', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12230 INSERT INTO `marc_subfield_structure` VALUES ('945', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12231 INSERT INTO `marc_subfield_structure` VALUES ('945', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12232 INSERT INTO `marc_subfield_structure` VALUES ('945', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12233 INSERT INTO `marc_subfield_structure` VALUES ('945', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12234 INSERT INTO `marc_subfield_structure` VALUES ('945', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12235 INSERT INTO `marc_subfield_structure` VALUES ('945', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12236 INSERT INTO `marc_subfield_structure` VALUES ('945', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12237 INSERT INTO `marc_subfield_structure` VALUES ('945', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12238 INSERT INTO `marc_subfield_structure` VALUES ('945', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12239 INSERT INTO `marc_subfield_structure` VALUES ('945', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12240 INSERT INTO `marc_subfield_structure` VALUES ('945', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12241 INSERT INTO `marc_subfield_structure` VALUES ('94c', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12242 INSERT INTO `marc_subfield_structure` VALUES ('94c', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12243 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'a', 'Title', 'Title', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12244 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'b', 'Remainder of title', 'Remainder of title', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12245 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'c', 'Statement of responsibility, etc', 'Statement of responsibility, etc', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12246 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'd', 'Designation of section/part/series (SE) [OBSOLETE]', 'Designation of section section/part/series (SE) [OBSOLETE]', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12247 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'e', 'Name of part/section/series (SE) [OBSOLETE]', 'Name of part/section/series (SE) [OBSOLETE]', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12248 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'f', 'Inclusive dates', 'Inclusive dates', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12249 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'g', 'Bulk dates', 'Bulk dates', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12250 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'h', 'Medium', 'Medium', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12251 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'k', 'Form', 'Form', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12252 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12253 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12254 INSERT INTO `marc_subfield_structure` VALUES ('94c', 's', 'Version', 'Version', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12255 INSERT INTO `marc_subfield_structure` VALUES ('946', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12256 INSERT INTO `marc_subfield_structure` VALUES ('946', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12257 INSERT INTO `marc_subfield_structure` VALUES ('946', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12258 INSERT INTO `marc_subfield_structure` VALUES ('946', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12259 INSERT INTO `marc_subfield_structure` VALUES ('946', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12260 INSERT INTO `marc_subfield_structure` VALUES ('946', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12261 INSERT INTO `marc_subfield_structure` VALUES ('946', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12262 INSERT INTO `marc_subfield_structure` VALUES ('946', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12263 INSERT INTO `marc_subfield_structure` VALUES ('946', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12264 INSERT INTO `marc_subfield_structure` VALUES ('946', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12265 INSERT INTO `marc_subfield_structure` VALUES ('946', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12266 INSERT INTO `marc_subfield_structure` VALUES ('946', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12267 INSERT INTO `marc_subfield_structure` VALUES ('946', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12268 INSERT INTO `marc_subfield_structure` VALUES ('946', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12269 INSERT INTO `marc_subfield_structure` VALUES ('946', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12270 INSERT INTO `marc_subfield_structure` VALUES ('946', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12271 INSERT INTO `marc_subfield_structure` VALUES ('946', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12272 INSERT INTO `marc_subfield_structure` VALUES ('946', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12273 INSERT INTO `marc_subfield_structure` VALUES ('946', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12274 INSERT INTO `marc_subfield_structure` VALUES ('946', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12275 INSERT INTO `marc_subfield_structure` VALUES ('946', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12276 INSERT INTO `marc_subfield_structure` VALUES ('946', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12277 INSERT INTO `marc_subfield_structure` VALUES ('946', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12278 INSERT INTO `marc_subfield_structure` VALUES ('946', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12279 INSERT INTO `marc_subfield_structure` VALUES ('946', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12280 INSERT INTO `marc_subfield_structure` VALUES ('946', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12281 INSERT INTO `marc_subfield_structure` VALUES ('946', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12282 INSERT INTO `marc_subfield_structure` VALUES ('946', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12283 INSERT INTO `marc_subfield_structure` VALUES ('946', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12284 INSERT INTO `marc_subfield_structure` VALUES ('946', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12285 INSERT INTO `marc_subfield_structure` VALUES ('946', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12286 INSERT INTO `marc_subfield_structure` VALUES ('946', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12287 INSERT INTO `marc_subfield_structure` VALUES ('946', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12288 INSERT INTO `marc_subfield_structure` VALUES ('946', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12289 INSERT INTO `marc_subfield_structure` VALUES ('946', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12290 INSERT INTO `marc_subfield_structure` VALUES ('946', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12291 INSERT INTO `marc_subfield_structure` VALUES ('947', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12292 INSERT INTO `marc_subfield_structure` VALUES ('947', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12293 INSERT INTO `marc_subfield_structure` VALUES ('947', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12294 INSERT INTO `marc_subfield_structure` VALUES ('947', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12295 INSERT INTO `marc_subfield_structure` VALUES ('947', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12296 INSERT INTO `marc_subfield_structure` VALUES ('947', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12297 INSERT INTO `marc_subfield_structure` VALUES ('947', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12298 INSERT INTO `marc_subfield_structure` VALUES ('947', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12299 INSERT INTO `marc_subfield_structure` VALUES ('947', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12300 INSERT INTO `marc_subfield_structure` VALUES ('947', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12301 INSERT INTO `marc_subfield_structure` VALUES ('947', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12302 INSERT INTO `marc_subfield_structure` VALUES ('947', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12303 INSERT INTO `marc_subfield_structure` VALUES ('947', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12304 INSERT INTO `marc_subfield_structure` VALUES ('947', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12305 INSERT INTO `marc_subfield_structure` VALUES ('947', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12306 INSERT INTO `marc_subfield_structure` VALUES ('947', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12307 INSERT INTO `marc_subfield_structure` VALUES ('947', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12308 INSERT INTO `marc_subfield_structure` VALUES ('947', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12309 INSERT INTO `marc_subfield_structure` VALUES ('947', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12310 INSERT INTO `marc_subfield_structure` VALUES ('947', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12311 INSERT INTO `marc_subfield_structure` VALUES ('947', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12312 INSERT INTO `marc_subfield_structure` VALUES ('947', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12313 INSERT INTO `marc_subfield_structure` VALUES ('947', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12314 INSERT INTO `marc_subfield_structure` VALUES ('947', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12315 INSERT INTO `marc_subfield_structure` VALUES ('947', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12316 INSERT INTO `marc_subfield_structure` VALUES ('947', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12317 INSERT INTO `marc_subfield_structure` VALUES ('947', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12318 INSERT INTO `marc_subfield_structure` VALUES ('947', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12319 INSERT INTO `marc_subfield_structure` VALUES ('947', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12320 INSERT INTO `marc_subfield_structure` VALUES ('947', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12321 INSERT INTO `marc_subfield_structure` VALUES ('947', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12322 INSERT INTO `marc_subfield_structure` VALUES ('947', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12323 INSERT INTO `marc_subfield_structure` VALUES ('947', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12324 INSERT INTO `marc_subfield_structure` VALUES ('947', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12325 INSERT INTO `marc_subfield_structure` VALUES ('947', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12326 INSERT INTO `marc_subfield_structure` VALUES ('947', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12327 INSERT INTO `marc_subfield_structure` VALUES ('948', '0', '0 (OCLC)', '0 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12328 INSERT INTO `marc_subfield_structure` VALUES ('948', '1', '1 (OCLC)', '1 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12329 INSERT INTO `marc_subfield_structure` VALUES ('948', '2', '2 (OCLC)', '2 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12330 INSERT INTO `marc_subfield_structure` VALUES ('948', '3', '3 (OCLC)', '3 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12331 INSERT INTO `marc_subfield_structure` VALUES ('948', '4', '4 (OCLC)', '4 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12332 INSERT INTO `marc_subfield_structure` VALUES ('948', '5', '5 (OCLC)', '5 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12333 INSERT INTO `marc_subfield_structure` VALUES ('948', '6', '6 (OCLC)', '6 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12334 INSERT INTO `marc_subfield_structure` VALUES ('948', '7', '7 (OCLC)', '7 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12335 INSERT INTO `marc_subfield_structure` VALUES ('948', '8', '8 (OCLC)', '8 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12336 INSERT INTO `marc_subfield_structure` VALUES ('948', '9', '9 (OCLC)', '9 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12337 INSERT INTO `marc_subfield_structure` VALUES ('948', 'a', 'Series part designator, SPT (RLIN)', 'Series part designator, SPT (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12338 INSERT INTO `marc_subfield_structure` VALUES ('948', 'b', 'b (OCLC)', 'b (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12339 INSERT INTO `marc_subfield_structure` VALUES ('948', 'c', 'c (OCLC)', 'c (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12340 INSERT INTO `marc_subfield_structure` VALUES ('948', 'd', 'd (OCLC)', 'd (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12341 INSERT INTO `marc_subfield_structure` VALUES ('948', 'e', 'e (OCLC)', 'e (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12342 INSERT INTO `marc_subfield_structure` VALUES ('948', 'f', 'f (OCLC)', 'f (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12343 INSERT INTO `marc_subfield_structure` VALUES ('948', 'g', 'g (OCLC)', 'g (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12344 INSERT INTO `marc_subfield_structure` VALUES ('948', 'h', 'h (OCLC)', 'h (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12345 INSERT INTO `marc_subfield_structure` VALUES ('948', 'i', 'i (OCLC)', 'i (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12346 INSERT INTO `marc_subfield_structure` VALUES ('948', 'j', 'j (OCLC)', 'j (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12347 INSERT INTO `marc_subfield_structure` VALUES ('948', 'k', 'k (OCLC)', 'k (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12348 INSERT INTO `marc_subfield_structure` VALUES ('948', 'l', 'l (OCLC)', 'l (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12349 INSERT INTO `marc_subfield_structure` VALUES ('948', 'm', 'm (OCLC)', 'm (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12350 INSERT INTO `marc_subfield_structure` VALUES ('948', 'n', 'n (OCLC)', 'n (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12351 INSERT INTO `marc_subfield_structure` VALUES ('948', 'o', 'o (OCLC)', 'o (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12352 INSERT INTO `marc_subfield_structure` VALUES ('948', 'p', 'p (OCLC)', 'p (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12353 INSERT INTO `marc_subfield_structure` VALUES ('948', 'q', 'q (OCLC)', 'q (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12354 INSERT INTO `marc_subfield_structure` VALUES ('948', 'r', 'r (OCLC)', 'r (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12355 INSERT INTO `marc_subfield_structure` VALUES ('948', 's', 's (OCLC)', 's (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12356 INSERT INTO `marc_subfield_structure` VALUES ('948', 't', 't (OCLC)', 't (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12357 INSERT INTO `marc_subfield_structure` VALUES ('948', 'u', 'u (OCLC)', 'u (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12358 INSERT INTO `marc_subfield_structure` VALUES ('948', 'v', 'v (OCLC)', 'v (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12359 INSERT INTO `marc_subfield_structure` VALUES ('948', 'w', 'w (OCLC)', 'w (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12360 INSERT INTO `marc_subfield_structure` VALUES ('948', 'x', 'x (OCLC)', 'x (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12361 INSERT INTO `marc_subfield_structure` VALUES ('948', 'y', 'y (OCLC)', 'y (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12362 INSERT INTO `marc_subfield_structure` VALUES ('948', 'z', 'z (OCLC)', 'z (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12363 INSERT INTO `marc_subfield_structure` VALUES ('949', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12364 INSERT INTO `marc_subfield_structure` VALUES ('949', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12365 INSERT INTO `marc_subfield_structure` VALUES ('949', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12366 INSERT INTO `marc_subfield_structure` VALUES ('949', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12367 INSERT INTO `marc_subfield_structure` VALUES ('949', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12368 INSERT INTO `marc_subfield_structure` VALUES ('949', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12369 INSERT INTO `marc_subfield_structure` VALUES ('949', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12370 INSERT INTO `marc_subfield_structure` VALUES ('949', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12371 INSERT INTO `marc_subfield_structure` VALUES ('949', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12372 INSERT INTO `marc_subfield_structure` VALUES ('949', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12373 INSERT INTO `marc_subfield_structure` VALUES ('949', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12374 INSERT INTO `marc_subfield_structure` VALUES ('949', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12375 INSERT INTO `marc_subfield_structure` VALUES ('949', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12376 INSERT INTO `marc_subfield_structure` VALUES ('949', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12377 INSERT INTO `marc_subfield_structure` VALUES ('949', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12378 INSERT INTO `marc_subfield_structure` VALUES ('949', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12379 INSERT INTO `marc_subfield_structure` VALUES ('949', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12380 INSERT INTO `marc_subfield_structure` VALUES ('949', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12381 INSERT INTO `marc_subfield_structure` VALUES ('949', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12382 INSERT INTO `marc_subfield_structure` VALUES ('949', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12383 INSERT INTO `marc_subfield_structure` VALUES ('949', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12384 INSERT INTO `marc_subfield_structure` VALUES ('949', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12385 INSERT INTO `marc_subfield_structure` VALUES ('949', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12386 INSERT INTO `marc_subfield_structure` VALUES ('949', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12387 INSERT INTO `marc_subfield_structure` VALUES ('949', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12388 INSERT INTO `marc_subfield_structure` VALUES ('949', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12389 INSERT INTO `marc_subfield_structure` VALUES ('949', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12390 INSERT INTO `marc_subfield_structure` VALUES ('949', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12391 INSERT INTO `marc_subfield_structure` VALUES ('949', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12392 INSERT INTO `marc_subfield_structure` VALUES ('949', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12393 INSERT INTO `marc_subfield_structure` VALUES ('949', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12394 INSERT INTO `marc_subfield_structure` VALUES ('949', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12395 INSERT INTO `marc_subfield_structure` VALUES ('949', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12396 INSERT INTO `marc_subfield_structure` VALUES ('949', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12397 INSERT INTO `marc_subfield_structure` VALUES ('949', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12398 INSERT INTO `marc_subfield_structure` VALUES ('949', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12399 INSERT INTO `marc_subfield_structure` VALUES ('94a', 'a', 'ATN', 'ATN', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12400 INSERT INTO `marc_subfield_structure` VALUES ('94a', 'b', 'ATN', 'ATN', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12401 INSERT INTO `marc_subfield_structure` VALUES ('94a', 'c', 'ATN', 'ATN', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12402 INSERT INTO `marc_subfield_structure` VALUES ('94a', 'd', 'ATN', 'ATN', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12403 INSERT INTO `marc_subfield_structure` VALUES ('94a', 'e', 'ATN', 'ATN', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12404 INSERT INTO `marc_subfield_structure` VALUES ('94b', 'a', 'ATC', 'ATC', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12405 INSERT INTO `marc_subfield_structure` VALUES ('94b', 'b', 'SNR', 'SNR', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12406 INSERT INTO `marc_subfield_structure` VALUES ('950', 'a', 'Classification number, LCAL (RLIN)', 'Classification number, LCAL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12407 INSERT INTO `marc_subfield_structure` VALUES ('950', 'b', 'Book number/undivided call number, LCAL (RLIN)', 'Book number/undivided call number, LCAL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12408 INSERT INTO `marc_subfield_structure` VALUES ('950', 'd', 'Additional free-text stamp above the call number, LCAL (RLIN)', 'Additional free-text stamp above the call number, LCAL (RLIN)', 1, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12409 INSERT INTO `marc_subfield_structure` VALUES ('950', 'e', 'Additional free-text or profiled stamp below the call number, LCAL (RLIN)', 'Additional free-text or profiled stamp below the call number, LCAL (RLIN)', 1, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12410 INSERT INTO `marc_subfield_structure` VALUES ('950', 'f', 'Location-level footnote, LFNT (RLIN)', 'Location-level footnote, LFNT (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12411 INSERT INTO `marc_subfield_structure` VALUES ('950', 'h', 'Location-level output transaction history, LHST (RLIN)', 'Location-level output transaction history, LHST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12412 INSERT INTO `marc_subfield_structure` VALUES ('950', 'i', 'Location-level extra card request, LEXT (RLIN)', 'Location-level extra card request, LEXT (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12413 INSERT INTO `marc_subfield_structure` VALUES ('950', 'l', 'Permanent shelving location, LOC (RLIN)', 'Permanent shelving location, LOC (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12414 INSERT INTO `marc_subfield_structure` VALUES ('950', 'n', 'Location-level additional note, LANT (RLIN)', 'Location-level additional note, LANT (RLIN)', 1, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12415 INSERT INTO `marc_subfield_structure` VALUES ('950', 'p', 'Location-level pathfinder, LPTH (RLIN)', 'Location-level pathfinder, LPTH (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12416 INSERT INTO `marc_subfield_structure` VALUES ('950', 't', 'Location-level field suppression, LFSP (RLIN)', 'Location-level field suppression, LFSP (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12417 INSERT INTO `marc_subfield_structure` VALUES ('950', 'u', 'Non-printing notes, LANT (RLIN)', 'Non-printing notes, LANT (RLIN)', 1, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12418 INSERT INTO `marc_subfield_structure` VALUES ('950', 'v', 'Volumes, LVOL (RLIN)', 'Volumes, LVOL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12419 INSERT INTO `marc_subfield_structure` VALUES ('950', 'w', 'Subscription status code, LANT (RLIN)', 'Subscription status code, LANT (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12420 INSERT INTO `marc_subfield_structure` VALUES ('950', 'y', 'Date, LVOL (RLIN)', 'Date, LVOL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12421 INSERT INTO `marc_subfield_structure` VALUES ('950', 'z', 'Retention, LVOL (RLIN)', 'Retention, LVOL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12422 INSERT INTO `marc_subfield_structure` VALUES ('951', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12423 INSERT INTO `marc_subfield_structure` VALUES ('951', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12424 INSERT INTO `marc_subfield_structure` VALUES ('951', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12425 INSERT INTO `marc_subfield_structure` VALUES ('951', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12426 INSERT INTO `marc_subfield_structure` VALUES ('951', 'a', 'Geographic name', 'Geographic name', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12427 INSERT INTO `marc_subfield_structure` VALUES ('951', 'b', 'Geographic name following place entry element [OBSOLETE]', 'Geographic name following place entry element [OBSOLETE]', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12428 INSERT INTO `marc_subfield_structure` VALUES ('951', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12429 INSERT INTO `marc_subfield_structure` VALUES ('951', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12430 INSERT INTO `marc_subfield_structure` VALUES ('951', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12431 INSERT INTO `marc_subfield_structure` VALUES ('951', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12432 INSERT INTO `marc_subfield_structure` VALUES ('95c', 'a', 'Record ID (RLIN)', 'Record ID (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12433 INSERT INTO `marc_subfield_structure` VALUES ('95c', 'b', 'Institution name (RLIN)', 'Institution name (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12434 INSERT INTO `marc_subfield_structure` VALUES ('95r', '6', 'Linkage', 'Linkage', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12435 INSERT INTO `marc_subfield_structure` VALUES ('95r', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12436 INSERT INTO `marc_subfield_structure` VALUES ('95r', 'a', 'Country', 'Country', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12437 INSERT INTO `marc_subfield_structure` VALUES ('95r', 'b', 'State, province, territory', 'State, province, territory', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12438 INSERT INTO `marc_subfield_structure` VALUES ('95r', 'c', 'County, region, islands area', 'County, region, islands area', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12439 INSERT INTO `marc_subfield_structure` VALUES ('95r', 'd', 'City', 'City', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12440 INSERT INTO `marc_subfield_structure` VALUES ('955', 'a', 'Classification number, CCAL (RLIN)', 'Classification number, CCAL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12441 INSERT INTO `marc_subfield_structure` VALUES ('955', 'b', 'Book number/undivided call number, CCAL (RLIN)', 'Book number/undivided call number, CCAL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12442 INSERT INTO `marc_subfield_structure` VALUES ('955', 'c', 'Copy information and material description, CCAL + MDES (RLIN)', 'Copy information and material description, CCAL + MDES (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12443 INSERT INTO `marc_subfield_structure` VALUES ('955', 'h', 'Copy status--for earlier dates, CST (RLIN)', 'Copy status--for earlier dates, CST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12444 INSERT INTO `marc_subfield_structure` VALUES ('955', 'i', 'Copy status, CST (RLIN)', 'Copy status, CST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12445 INSERT INTO `marc_subfield_structure` VALUES ('955', 'l', 'Permanent shelving location, LOC (RLIN)', 'Permanent shelving location, LOC (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12446 INSERT INTO `marc_subfield_structure` VALUES ('955', 'q', 'Aquisitions control number, HNT (RLIN)', 'Aquisitions control number, HNT (RLIN)', 1, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12447 INSERT INTO `marc_subfield_structure` VALUES ('955', 'r', 'Circulation control number, HNT (RLIN)', 'Circulation control number, HNT (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12448 INSERT INTO `marc_subfield_structure` VALUES ('955', 's', 'Shelflist note, HNT (RLIN)', 'Shelflist note, HNT (RLIN)', 1, 0, '', 9, '', '', '', 1, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12449 INSERT INTO `marc_subfield_structure` VALUES ('955', 'u', 'Non-printing notes, HNT (RLIN)', 'Non-printing notes, HNT (RLIN)', 1, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12450 INSERT INTO `marc_subfield_structure` VALUES ('956', '2', 'Access method', 'Access method', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12451 INSERT INTO `marc_subfield_structure` VALUES ('956', '3', 'Materials specified', 'Materials specified', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12452 INSERT INTO `marc_subfield_structure` VALUES ('956', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12453 INSERT INTO `marc_subfield_structure` VALUES ('956', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12454 INSERT INTO `marc_subfield_structure` VALUES ('956', 'a', 'Host name', 'Host name', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12455 INSERT INTO `marc_subfield_structure` VALUES ('956', 'b', 'Access number', 'Access number', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12456 INSERT INTO `marc_subfield_structure` VALUES ('956', 'c', 'Compression information', 'Compression information', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12457 INSERT INTO `marc_subfield_structure` VALUES ('956', 'd', 'Path', 'Path', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12458 INSERT INTO `marc_subfield_structure` VALUES ('956', 'f', 'Electronic name', 'Electronic name', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12459 INSERT INTO `marc_subfield_structure` VALUES ('956', 'h', 'Processor of request', 'Processor of request', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12460 INSERT INTO `marc_subfield_structure` VALUES ('956', 'i', 'Instruction', 'Instruction', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12461 INSERT INTO `marc_subfield_structure` VALUES ('956', 'j', 'Bits per second', 'Bits per second', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12462 INSERT INTO `marc_subfield_structure` VALUES ('956', 'k', 'Password', 'Password', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12463 INSERT INTO `marc_subfield_structure` VALUES ('956', 'l', 'Logon', 'Logon', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12464 INSERT INTO `marc_subfield_structure` VALUES ('956', 'm', 'Contact for access assistance', 'Contact for access assistance', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12465 INSERT INTO `marc_subfield_structure` VALUES ('956', 'n', 'Name of location of host in subfield', 'Name of location of host in subfield', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12466 INSERT INTO `marc_subfield_structure` VALUES ('956', 'o', 'Operating system', 'Operating system', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12467 INSERT INTO `marc_subfield_structure` VALUES ('956', 'p', 'Port', 'Port', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12468 INSERT INTO `marc_subfield_structure` VALUES ('956', 'q', 'Electronic format type', 'Electronic format type', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12469 INSERT INTO `marc_subfield_structure` VALUES ('956', 'r', 'Settings', 'Settings', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12470 INSERT INTO `marc_subfield_structure` VALUES ('956', 's', 'File size', 'File size', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12471 INSERT INTO `marc_subfield_structure` VALUES ('956', 't', 'Terminal emulation', 'Terminal emulation', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12472 INSERT INTO `marc_subfield_structure` VALUES ('956', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 9, '', '', '', 1, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12473 INSERT INTO `marc_subfield_structure` VALUES ('956', 'v', 'Hours access method available', 'Hours access method available', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12474 INSERT INTO `marc_subfield_structure` VALUES ('956', 'w', 'Record control number', 'Record control number', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12475 INSERT INTO `marc_subfield_structure` VALUES ('956', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 9, '', '', '', 0, 6, 'ASMP_SOUND_RECORDINGS', '', '');
12476 INSERT INTO `marc_subfield_structure` VALUES ('956', 'y', 'Link text', 'Link text', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12477 INSERT INTO `marc_subfield_structure` VALUES ('956', 'z', 'Public note', 'Public note', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12478 INSERT INTO `marc_subfield_structure` VALUES ('960', '3', 'Materials specified, MATL', 'Materials specified, MATL', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12479 INSERT INTO `marc_subfield_structure` VALUES ('960', 'a', 'Physical location, PLOC (RLIN)', 'Physical location, PLOC (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12480 INSERT INTO `marc_subfield_structure` VALUES ('967', 'a', 'GNR (RLIN)', 'GNR (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12481 INSERT INTO `marc_subfield_structure` VALUES ('967', 'c', 'PSI (RLIN)', 'PSI (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12482 INSERT INTO `marc_subfield_structure` VALUES ('980', '4', 'Relator code', 'Relator code', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12483 INSERT INTO `marc_subfield_structure` VALUES ('980', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12484 INSERT INTO `marc_subfield_structure` VALUES ('980', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12485 INSERT INTO `marc_subfield_structure` VALUES ('980', 'a', 'Personal name', 'Personal name', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12486 INSERT INTO `marc_subfield_structure` VALUES ('980', 'b', 'Numeration', 'Numeration', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12487 INSERT INTO `marc_subfield_structure` VALUES ('980', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12488 INSERT INTO `marc_subfield_structure` VALUES ('980', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12489 INSERT INTO `marc_subfield_structure` VALUES ('980', 'e', 'Relator term', 'Relator term', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12490 INSERT INTO `marc_subfield_structure` VALUES ('980', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12491 INSERT INTO `marc_subfield_structure` VALUES ('980', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12492 INSERT INTO `marc_subfield_structure` VALUES ('980', 'h', 'Medium', 'Medium', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12493 INSERT INTO `marc_subfield_structure` VALUES ('980', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12494 INSERT INTO `marc_subfield_structure` VALUES ('980', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12495 INSERT INTO `marc_subfield_structure` VALUES ('980', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12496 INSERT INTO `marc_subfield_structure` VALUES ('980', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12497 INSERT INTO `marc_subfield_structure` VALUES ('980', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12498 INSERT INTO `marc_subfield_structure` VALUES ('980', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12499 INSERT INTO `marc_subfield_structure` VALUES ('980', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12500 INSERT INTO `marc_subfield_structure` VALUES ('980', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12501 INSERT INTO `marc_subfield_structure` VALUES ('980', 'r', 'Key for music', 'Key for music', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12502 INSERT INTO `marc_subfield_structure` VALUES ('980', 's', 'Version', 'Version', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12503 INSERT INTO `marc_subfield_structure` VALUES ('980', 't', 'Title of a work', 'Title of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12504 INSERT INTO `marc_subfield_structure` VALUES ('980', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12505 INSERT INTO `marc_subfield_structure` VALUES ('980', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12506 INSERT INTO `marc_subfield_structure` VALUES ('981', '4', 'Relator code', 'Relator code', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12507 INSERT INTO `marc_subfield_structure` VALUES ('981', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12508 INSERT INTO `marc_subfield_structure` VALUES ('981', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12509 INSERT INTO `marc_subfield_structure` VALUES ('981', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12510 INSERT INTO `marc_subfield_structure` VALUES ('981', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12511 INSERT INTO `marc_subfield_structure` VALUES ('981', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12512 INSERT INTO `marc_subfield_structure` VALUES ('981', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12513 INSERT INTO `marc_subfield_structure` VALUES ('981', 'e', 'Relator term', 'Relator term', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12514 INSERT INTO `marc_subfield_structure` VALUES ('981', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12515 INSERT INTO `marc_subfield_structure` VALUES ('981', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12516 INSERT INTO `marc_subfield_structure` VALUES ('981', 'h', 'Medium', 'Medium', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12517 INSERT INTO `marc_subfield_structure` VALUES ('981', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12518 INSERT INTO `marc_subfield_structure` VALUES ('981', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12519 INSERT INTO `marc_subfield_structure` VALUES ('981', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12520 INSERT INTO `marc_subfield_structure` VALUES ('981', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12521 INSERT INTO `marc_subfield_structure` VALUES ('981', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12522 INSERT INTO `marc_subfield_structure` VALUES ('981', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12523 INSERT INTO `marc_subfield_structure` VALUES ('981', 'r', 'Key for music', 'Key for music', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12524 INSERT INTO `marc_subfield_structure` VALUES ('981', 's', 'Version', 'Version', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12525 INSERT INTO `marc_subfield_structure` VALUES ('981', 't', 'Title of a work', 'Title of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12526 INSERT INTO `marc_subfield_structure` VALUES ('981', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12527 INSERT INTO `marc_subfield_structure` VALUES ('981', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12528 INSERT INTO `marc_subfield_structure` VALUES ('982', '4', 'Relator code', 'Relator code', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12529 INSERT INTO `marc_subfield_structure` VALUES ('982', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12530 INSERT INTO `marc_subfield_structure` VALUES ('982', '8', 'Field link and sequence number ', 'Field link and sequence number ', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12531 INSERT INTO `marc_subfield_structure` VALUES ('982', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12532 INSERT INTO `marc_subfield_structure` VALUES ('982', 'b', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12533 INSERT INTO `marc_subfield_structure` VALUES ('982', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12534 INSERT INTO `marc_subfield_structure` VALUES ('982', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12535 INSERT INTO `marc_subfield_structure` VALUES ('982', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12536 INSERT INTO `marc_subfield_structure` VALUES ('982', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12537 INSERT INTO `marc_subfield_structure` VALUES ('982', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12538 INSERT INTO `marc_subfield_structure` VALUES ('982', 'h', 'Medium', 'Medium', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12539 INSERT INTO `marc_subfield_structure` VALUES ('982', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12540 INSERT INTO `marc_subfield_structure` VALUES ('982', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12541 INSERT INTO `marc_subfield_structure` VALUES ('982', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12542 INSERT INTO `marc_subfield_structure` VALUES ('982', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12543 INSERT INTO `marc_subfield_structure` VALUES ('982', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12544 INSERT INTO `marc_subfield_structure` VALUES ('982', 's', 'Version', 'Version', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12545 INSERT INTO `marc_subfield_structure` VALUES ('982', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12546 INSERT INTO `marc_subfield_structure` VALUES ('982', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12547 INSERT INTO `marc_subfield_structure` VALUES ('982', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12548 INSERT INTO `marc_subfield_structure` VALUES ('983', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12549 INSERT INTO `marc_subfield_structure` VALUES ('983', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12550 INSERT INTO `marc_subfield_structure` VALUES ('983', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12551 INSERT INTO `marc_subfield_structure` VALUES ('983', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12552 INSERT INTO `marc_subfield_structure` VALUES ('983', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12553 INSERT INTO `marc_subfield_structure` VALUES ('983', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12554 INSERT INTO `marc_subfield_structure` VALUES ('983', 'h', 'Medium', 'Medium', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12555 INSERT INTO `marc_subfield_structure` VALUES ('983', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12556 INSERT INTO `marc_subfield_structure` VALUES ('983', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12557 INSERT INTO `marc_subfield_structure` VALUES ('983', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12558 INSERT INTO `marc_subfield_structure` VALUES ('983', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12559 INSERT INTO `marc_subfield_structure` VALUES ('983', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12560 INSERT INTO `marc_subfield_structure` VALUES ('983', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12561 INSERT INTO `marc_subfield_structure` VALUES ('983', 'r', 'Key for music', 'Key for music', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12562 INSERT INTO `marc_subfield_structure` VALUES ('983', 's', 'Version', 'Version', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12563 INSERT INTO `marc_subfield_structure` VALUES ('983', 't', 'Title of a work', 'Title of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12564 INSERT INTO `marc_subfield_structure` VALUES ('983', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12565 INSERT INTO `marc_subfield_structure` VALUES ('984', 'a', 'Holding library identification number', 'Holding library identification number', 0, 0, '', 9, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12566 INSERT INTO `marc_subfield_structure` VALUES ('984', 'b', 'Physical description codes', 'Physical description codes', 1, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12567 INSERT INTO `marc_subfield_structure` VALUES ('984', 'c', 'Call number', 'Call number', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12568 INSERT INTO `marc_subfield_structure` VALUES ('984', 'd', 'Volume or other numbering', 'Volume or other numbering', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12569 INSERT INTO `marc_subfield_structure` VALUES ('984', 'e', 'Dates', 'Dates', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12570 INSERT INTO `marc_subfield_structure` VALUES ('984', 'f', 'Completeness note', 'Completeness note', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12571 INSERT INTO `marc_subfield_structure` VALUES ('984', 'g', 'Referral note', 'Referral note', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12572 INSERT INTO `marc_subfield_structure` VALUES ('984', 'h', 'Retention note', 'Retention note', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12573 INSERT INTO `marc_subfield_structure` VALUES ('987', 'a', 'Romanization/conversion identifier', 'Romanization/conversion identifier', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12574 INSERT INTO `marc_subfield_structure` VALUES ('987', 'b', 'Agency that converted, created or reviewed', 'Agency that converted, created or reviewed', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12575 INSERT INTO `marc_subfield_structure` VALUES ('987', 'c', 'Date of conversion or review', 'Date of conversion or review', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12576 INSERT INTO `marc_subfield_structure` VALUES ('987', 'd', 'Status code', 'Status code ', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12577 INSERT INTO `marc_subfield_structure` VALUES ('987', 'e', 'Version of conversion program used', 'Version of conversion program used', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12578 INSERT INTO `marc_subfield_structure` VALUES ('987', 'f', 'Note', 'Note', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12579 INSERT INTO `marc_subfield_structure` VALUES ('990', 'a', 'Link information for 9XX fields', 'Link information for 9XX fields', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12580 INSERT INTO `marc_subfield_structure` VALUES ('990', 'b', 'Link information for field corresponding to 9XX field', 'Link information for field corresponding to 9XX field', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12581 INSERT INTO `marc_subfield_structure` VALUES ('995', 'a', 'Origine du document, texte libre', 'Origine du document, texte libre', 0, 0, '', 9, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12582 INSERT INTO `marc_subfield_structure` VALUES ('995', 'b', 'Origine du document, donn&eacute;e cod&eacute;e', '', 0, 0, '', 9, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12583 INSERT INTO `marc_subfield_structure` VALUES ('995', 'c', '&Eacute;tablissement pr&ecirc;teur ou d&eacute;posant, texte libre', '&Eacute;tablissement pr&ecirc;teur ou d&eacute;posant, texte libre', 0, 0, '', 9, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12584 INSERT INTO `marc_subfield_structure` VALUES ('995', 'd', '&Eacute;tablissement pr&ecirc;teur ou d&eacute;posant, donn&eacute;e cod&eacute;e', '&Eacute;tablissement pr&ecirc;teur ou d&eacute;posant, donn&eacute;e cod&eacute;e', 0, 0, '', 9, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12585 INSERT INTO `marc_subfield_structure` VALUES ('995', 'e', 'Genre d&eacute;taill&eacute;', 'Genre d&eacute;taill&eacute;', 0, 0, '', 9, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12586 INSERT INTO `marc_subfield_structure` VALUES ('995', 'f', 'Code &agrave; barres, suite alphanum&eacute;rique int&eacute;grale', 'Code &agrave; barres, suite alphanum&eacute;rique int&eacute;grale', 0, 0, '', 9, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12587 INSERT INTO `marc_subfield_structure` VALUES ('995', 'g', 'Code &agrave; barres, pr&eacute;fixe', 'Code &agrave; barres, pr&eacute;fixe', 0, 0, '', 9, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12588 INSERT INTO `marc_subfield_structure` VALUES ('995', 'h', 'Code &agrave; barres, incr&eacute;mentation', 'Code &agrave; barres, incr&eacute;mentation', 0, 0, '', 9, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12589 INSERT INTO `marc_subfield_structure` VALUES ('995', 'i', 'Code &agrave; barres, suffixe', 'Code &agrave; barres, suffixe', 0, 0, '', 9, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12590 INSERT INTO `marc_subfield_structure` VALUES ('995', 'j', '&Eacute;tablissement pr&ecirc;teur ou d&eacute;posant, donn&eacute;e cod&eacute;e', '&Eacute;tablissement pr&ecirc;teur ou d&eacute;posant, donn&eacute;e cod&eacute;e', 0, 0, '', 9, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12591 INSERT INTO `marc_subfield_structure` VALUES ('995', 'k', 'Cote', 'Cote', 0, 0, '', 9, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12592 INSERT INTO `marc_subfield_structure` VALUES ('995', 'l', 'Volumaison', 'Volumaison', 0, 0, '', 9, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12593 INSERT INTO `marc_subfield_structure` VALUES ('995', 'm', 'Date de pr&ecirc;t ou de d&eacute;p&ocirc;t', 'Date de pr&ecirc;t ou de d&eacute;p&ocirc;t', 0, 0, '', 9, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12594 INSERT INTO `marc_subfield_structure` VALUES ('995', 'n', 'Date de restitution pr&eacute;vue', 'Date de restitution pr&eacute;vue', 0, 0, '', 9, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12595 INSERT INTO `marc_subfield_structure` VALUES ('995', 'o', 'Cat&eacute;gorie de circulation', 'Cat&eacute;gorie de circulation', 0, 0, '', 9, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12596 INSERT INTO `marc_subfield_structure` VALUES ('995', 'p', 'P&eacute;riodique', 'P&eacute;riodique', 0, 0, '', 9, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12597 INSERT INTO `marc_subfield_structure` VALUES ('995', 'q', 'Public vis&eacute; (selon l\'&acirc;ge)', 'Public vis&eacute; (selon l\'&acirc;ge)', 0, 0, '', 9, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12598 INSERT INTO `marc_subfield_structure` VALUES ('995', 'r', 'Type de document et support mat&eacute;riel', 'Type de document et support mat&eacute;riel', 0, 0, '', 9, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12599 INSERT INTO `marc_subfield_structure` VALUES ('995', 's', '�&eacute;ment de tri', '�&eacute;ment de tri', 0, 0, '', 9, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12600 INSERT INTO `marc_subfield_structure` VALUES ('995', 't', 'Genre', 'Genre', 0, 0, '', 9, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12601 INSERT INTO `marc_subfield_structure` VALUES ('995', 'u', 'Note sur l\'exemplaire', 'Note sur l\'exemplaire', 0, 0, '', 9, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12602 INSERT INTO `marc_subfield_structure` VALUES ('995', 'v', 'Note sur le num&eacute;ro de p&eacute;riodique', 'Note sur le num&eacute;ro de p&eacute;riodique', 0, 0, '', 9, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12603 INSERT INTO `marc_subfield_structure` VALUES ('995', 'w', '�ablissement cible du document, texte libre', '�ablissement cible du document, texte libre', 0, 0, '', 9, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12604 INSERT INTO `marc_subfield_structure` VALUES ('995', 'x', '&Eacute;tablissement cible du document, donn&eacute;e cod&eacute;e', '&Eacute;tablissement cible du document, donn&eacute;e cod&eacute;e', 0, 0, '', 9, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12605 INSERT INTO `marc_subfield_structure` VALUES ('995', 'y', 'Ensemble cible du document , texte libre', 'Ensemble cible du document, texte libre', 0, 0, '', 9, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12606 INSERT INTO `marc_subfield_structure` VALUES ('995', 'z', 'Ensemble cible du document, donn&eacute;e cod&eacute;e', 'Ensemble cible du document, donn&eacute;e cod&eacute;e', 0, 0, '', 9, '', '', '', NULL, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12607 INSERT INTO `marc_subfield_structure` VALUES ('998', 'b', 'Operator\'s initials, OID (RLIN)', 'Operator\'s initials, OID (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12608 INSERT INTO `marc_subfield_structure` VALUES ('998', 'c', 'Cataloger\'s initials, CIN (RLIN)', 'Cataloger\'s initials, CIN (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12609 INSERT INTO `marc_subfield_structure` VALUES ('998', 'd', 'First date, FD (RLIN)', 'First Date, FD (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12610 INSERT INTO `marc_subfield_structure` VALUES ('998', 'i', 'RINS (RLIN)', 'RINS (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12611 INSERT INTO `marc_subfield_structure` VALUES ('998', 'l', 'LI (RLIN)', 'LI (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12612 INSERT INTO `marc_subfield_structure` VALUES ('998', 'n', 'NUC (RLIN)', 'NUC (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12613 INSERT INTO `marc_subfield_structure` VALUES ('998', 'p', 'PROC (RLIN)', 'PROC (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12614 INSERT INTO `marc_subfield_structure` VALUES ('998', 's', 'CC (RLIN)', 'CC (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12615 INSERT INTO `marc_subfield_structure` VALUES ('998', 't', 'RTYP (RLIN)', 'RTYP (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12616 INSERT INTO `marc_subfield_structure` VALUES ('998', 'w', 'PLINK (RLIN)', 'PLINK (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12617 INSERT INTO `marc_subfield_structure` VALUES ('999', 'a', 'Classification number (OCLC) (R) ; Classification number, CALL (RLIN) (NR)', 'Classification number (OCLC) (R) ; Classification number, CALL (RLIN) (NR)', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12618 INSERT INTO `marc_subfield_structure` VALUES ('999', 'b', 'Local cutter number (OCLC) ; Book number/undivided call number, CALL (RLIN)', 'Local cutter number (OCLC) ; Book number/undivided call number, CALL (RLIN)', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_SOUND_RECORDINGS', '', '');
12619 INSERT INTO `marc_subfield_structure` VALUES ('999', 'e', 'Feature heading (OCLC)', 'Feature heading (OCLC)', 0, 0, '', 0, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12620 INSERT INTO `marc_subfield_structure` VALUES ('999', 'f', 'Filing suffix (OCLC); Footnote, FNT (RLIN)', 'Filing suffix (OCLC); Footnote, FNT (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12621 INSERT INTO `marc_subfield_structure` VALUES ('999', 'h', 'Output transaction history, HST (RLIN)', 'Output transaction history, HST (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12622 INSERT INTO `marc_subfield_structure` VALUES ('999', 'i', 'Output transaction instruction, INS (RLIN)', 'Output transaction instruction, INS (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12623 INSERT INTO `marc_subfield_structure` VALUES ('999', 'l', 'Extra card control statement, EXT (RLIN)', 'Extra card control statement, EXT (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12624 INSERT INTO `marc_subfield_structure` VALUES ('999', 'n', 'Additional local notes, ANT (RLIN)', 'Additional local notes, ANT (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12625 INSERT INTO `marc_subfield_structure` VALUES ('999', 'p', 'Pathfinder code, PTH (RLIN)', 'Pathfinder code, PTH (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12626 INSERT INTO `marc_subfield_structure` VALUES ('999', 't', 'Field suppresion, FSP (RLIN)', 'Field suppresion, FSP (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12627 INSERT INTO `marc_subfield_structure` VALUES ('999', 'v', 'Volumes, VOL (RLIN)', 'Volumes, VOL (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12628 INSERT INTO `marc_subfield_structure` VALUES ('999', 'y', 'Date, VOL (RLIN)', 'Date, VOL (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12629 INSERT INTO `marc_subfield_structure` VALUES ('999', 'z', 'Retention, VOL (RLIN)', 'Retention, VOL (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12630 INSERT INTO `marc_subfield_structure` VALUES ('u01', 'a', 'Operator\'s initials, OID (RLIN)', 'Operator\'s initials, OID (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12631 INSERT INTO `marc_subfield_structure` VALUES ('u01', 'd', 'UAD (RLIN)', 'UAD (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12632 INSERT INTO `marc_subfield_structure` VALUES ('u01', 'f', 'FPST (RLIN)', 'FPST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12633 INSERT INTO `marc_subfield_structure` VALUES ('u01', 'h', 'CPST (RLIN)', 'FPST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12634 INSERT INTO `marc_subfield_structure` VALUES ('u01', 'i', 'CPST (RLIN)', 'FPST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12635 INSERT INTO `marc_subfield_structure` VALUES ('u01', 's', 'UST (RLIN)', 'UST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12636 INSERT INTO `marc_subfield_structure` VALUES ('u01', 't', 'UTYP (RLIN)', 'UTYP (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12637 INSERT INTO `marc_subfield_structure` VALUES ('u02', '2', 'Source of number or code', 'Source of number or code', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12638 INSERT INTO `marc_subfield_structure` VALUES ('u02', 'a', 'Standard number or code', 'Standard number or code', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12639 INSERT INTO `marc_subfield_structure` VALUES ('u02', 'b', 'Additional codes following the standard number', 'Additional codes following the standard number', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12640 INSERT INTO `marc_subfield_structure` VALUES ('u02', 'c', 'Terms of availability', 'Terms of availability', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12641 INSERT INTO `marc_subfield_structure` VALUES ('u02', 'z', 'Canceled/invalid standard number or code', 'Canceled/invalid standard number or code', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12642 INSERT INTO `marc_subfield_structure` VALUES ('u08', 'n', 'LSI', 'LSI', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12643 INSERT INTO `marc_subfield_structure` VALUES ('u08', 'o', 'SID', 'SID', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12644 INSERT INTO `marc_subfield_structure` VALUES ('u08', 'p', 'DP', 'DP', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12645 INSERT INTO `marc_subfield_structure` VALUES ('u08', 'r', 'RUSH', 'RUSH', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12646 INSERT INTO `marc_subfield_structure` VALUES ('u10', 'a', 'REQ', 'REQ', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12647 INSERT INTO `marc_subfield_structure` VALUES ('u10', 'b', 'SID', 'REQ', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12648 INSERT INTO `marc_subfield_structure` VALUES ('u10', 'c', 'REQ', 'REQ', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12649 INSERT INTO `marc_subfield_structure` VALUES ('u10', 'd', 'REQ', 'REQ', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12650 INSERT INTO `marc_subfield_structure` VALUES ('u10', 'e', 'REQ', 'REQ', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12651 INSERT INTO `marc_subfield_structure` VALUES ('u10', 's', 'REQ', 'REQ', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12652 INSERT INTO `marc_subfield_structure` VALUES ('u11', 'a', 'Department report request, DRR (DRRH for earlier occurrences)', 'DRR (DRRH for earlier occurrences)', 1, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12653 INSERT INTO `marc_subfield_structure` VALUES ('u20', 'a', 'SUPN', 'SUPN', 1, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12654 INSERT INTO `marc_subfield_structure` VALUES ('u20', 'b', 'SUPN', 'SUPN', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12655 INSERT INTO `marc_subfield_structure` VALUES ('u20', 'c', 'SUPN', 'SUPN', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12656 INSERT INTO `marc_subfield_structure` VALUES ('u20', 'd', 'SUPN', 'SUPN', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12657 INSERT INTO `marc_subfield_structure` VALUES ('u20', 'e', 'SUPN', 'SUPN', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12658 INSERT INTO `marc_subfield_structure` VALUES ('u20', 'x', 'SUPN', 'SUPN', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12659 INSERT INTO `marc_subfield_structure` VALUES ('u21', 'a', 'SHIP', 'SHIP', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12660 INSERT INTO `marc_subfield_structure` VALUES ('u21', 'b', 'BILL', 'BILL', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12661 INSERT INTO `marc_subfield_structure` VALUES ('u21', 'c', 'DAC', 'DAC', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12662 INSERT INTO `marc_subfield_structure` VALUES ('u21', 'n', 'LSAC', 'LSAC', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12663 INSERT INTO `marc_subfield_structure` VALUES ('u22', 'a', 'SICO', 'SICO', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12664 INSERT INTO `marc_subfield_structure` VALUES ('u22', 'b', 'SICO', 'SICO', 1, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12665 INSERT INTO `marc_subfield_structure` VALUES ('u22', 'c', 'SCAT', 'SCAT', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12666 INSERT INTO `marc_subfield_structure` VALUES ('u25', 'a', 'Supplier report(s), SRPT', 'Supplier report(s), SRPT', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12667 INSERT INTO `marc_subfield_structure` VALUES ('u30', 'a', 'NCC [OBSOLETE]', 'NCC [OBSOLETE]', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12668 INSERT INTO `marc_subfield_structure` VALUES ('u30', 'i', 'ICI', 'ICI', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12669 INSERT INTO `marc_subfield_structure` VALUES ('u30', 'm', 'MCI', 'MCI', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12670 INSERT INTO `marc_subfield_structure` VALUES ('u31', 'a', 'NCC', 'NCC', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12671 INSERT INTO `marc_subfield_structure` VALUES ('u31', 'b', 'NCS', 'NCS', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12672 INSERT INTO `marc_subfield_structure` VALUES ('u33', 'a', 'ICL', 'ICL', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12673 INSERT INTO `marc_subfield_structure` VALUES ('u33', 'd', 'ICAD', 'ICAD', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12674 INSERT INTO `marc_subfield_structure` VALUES ('u34', 'a', 'EPCL', 'EPCL', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12675 INSERT INTO `marc_subfield_structure` VALUES ('u34', 'r', 'ERI', 'ERI', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12676 INSERT INTO `marc_subfield_structure` VALUES ('u40', 'd', 'EPDT [OBSOLETE]', 'EPDT [OBSOLETE]', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12677 INSERT INTO `marc_subfield_structure` VALUES ('u40', 'f', 'EFRQ', 'EFRQ', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12678 INSERT INTO `marc_subfield_structure` VALUES ('u40', 's', 'EPST', 'EPST', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12679 INSERT INTO `marc_subfield_structure` VALUES ('u40', 't', 'ETYP', 'ETYP', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12680 INSERT INTO `marc_subfield_structure` VALUES ('u50', 'a', 'Acquisitions notes, AQNT', 'Acquisitions notes, AQNT', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12681 INSERT INTO `marc_subfield_structure` VALUES ('u51', 'a', 'Selection notes, SLNT', 'Selection notes, SLNT', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12682 INSERT INTO `marc_subfield_structure` VALUES ('u52', 'a', 'INT', 'INT', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12683 INSERT INTO `marc_subfield_structure` VALUES ('u52', 'b', 'INT', 'NT', 1, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12684 INSERT INTO `marc_subfield_structure` VALUES ('u53', 'a', 'CLNT', 'CLNT', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12685 INSERT INTO `marc_subfield_structure` VALUES ('u53', 'b', 'CLNT', 'CLNT', 1, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12686 INSERT INTO `marc_subfield_structure` VALUES ('u54', 'a', 'Notes to serials department, SRNT', 'Notes to serials department, SRNT', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12687 INSERT INTO `marc_subfield_structure` VALUES ('u55', 'a', 'Cataloging notes, CTNT', 'Cataloging notes, CTNT', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12688 INSERT INTO `marc_subfield_structure` VALUES ('u5f', 'a', 'Accounting notes, ACNT', 'Accounting notes, ACNT', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12689 INSERT INTO `marc_subfield_structure` VALUES ('u70', 'a', 'QTY', 'QTY', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12690 INSERT INTO `marc_subfield_structure` VALUES ('u70', 'b', 'MAT', 'MAT', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12691 INSERT INTO `marc_subfield_structure` VALUES ('u70', 'l', 'MLOC', 'MLOC', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12692 INSERT INTO `marc_subfield_structure` VALUES ('u71', 'a', 'Fund account, FUND', 'Fund account, FUND', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12693 INSERT INTO `marc_subfield_structure` VALUES ('u75', 'a', 'ITEM', 'ITEM', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12694 INSERT INTO `marc_subfield_structure` VALUES ('u75', 'c', 'CIRC', 'CIRC', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12695 INSERT INTO `marc_subfield_structure` VALUES ('u75', 'h', 'IPST', 'IPST', 1, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12696 INSERT INTO `marc_subfield_structure` VALUES ('u75', 'i', 'ITEM', 'ITEM', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12697 INSERT INTO `marc_subfield_structure` VALUES ('u75', 'l', 'SLOC', 'SLOC', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12698 INSERT INTO `marc_subfield_structure` VALUES ('u7f', 'a', 'LPRI', 'LPRI', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12699 INSERT INTO `marc_subfield_structure` VALUES ('u7f', 'b', 'CURR', 'CURR', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12700 INSERT INTO `marc_subfield_structure` VALUES ('u7f', 'k', 'CVRT [OBSOLETE]', 'CVRT [OBSOLETE]', 1, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12701 INSERT INTO `marc_subfield_structure` VALUES ('u7f', 'p', 'LPD', 'LPD', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12702 INSERT INTO `marc_subfield_structure` VALUES ('u7f', 'r', 'EDRT', 'EDRT', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12703 INSERT INTO `marc_subfield_structure` VALUES ('u90', 'h', 'TAPE', 'TAPE', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12704 INSERT INTO `marc_subfield_structure` VALUES ('u90', 'i', 'TAPE', 'TAPE', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12705 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'a', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12706 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'b', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12707 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'c', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12708 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'd', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12709 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'e', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12710 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'f', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12711 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'g', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12712 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'h', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12713 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'n', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_SOUND_RECORDINGS', '', '');
12714
12715
12716 -- *******************************************************
12717
12718
12719
12720 -- ***************************************************************************
12721 -- ASMP VIDEORECORDINGS KOHA RECORD AND HOLDINGS MANAGEMENT FIELDS/SUBFIELDS. 
12722 -- ***************************************************************************
12723
12724 -- These ought to be adjusted for different less conflicting and more 
12725 -- rationally chosen fields and subfields but I had left that for last. 
12726
12727 -- ADJUST ME
12728 -- Use values from your dump of marc_tag_structure and marc_subfield_structure 
12729 -- to provide support for your Koha database.
12730
12731
12732 -- ******************************************************
12733
12734
12735 -- Current Record ID Field/Subfields 
12736
12737
12738 INSERT INTO `marc_tag_structure` VALUES ('090', 'SYSTEM CONTROL NUMBERS (KOHA)', 'SYSTEM CONTROL NUMBERS (KOHA)', 1, 0, '', 'ASMP_VIDEORECORDINGS');
12739
12740 INSERT INTO `marc_subfield_structure` VALUES ('090', 'a', 'Item type [OBSOLETE]', 'Item type [OBSOLETE]', 0, 0, NULL, -1, NULL, NULL, '', NULL, -5, 'ASMP_VIDEORECORDINGS', '', '');
12741 INSERT INTO `marc_subfield_structure` VALUES ('090', 'b', 'Koha Dewey Subclass [OBSOLETE]', 'Koha Dewey Subclass [OBSOLETE]', 0, 0, NULL, 0, NULL, NULL, '', NULL, -5, 'ASMP_VIDEORECORDINGS', '', '');
12742 INSERT INTO `marc_subfield_structure` VALUES ('090', 'c', 'Koha biblionumber', 'Koha biblionumber', 0, 0, 'biblio.biblionumber', -1, NULL, NULL, '', NULL, -5, 'ASMP_VIDEORECORDINGS', '', '');
12743 INSERT INTO `marc_subfield_structure` VALUES ('090', 'd', 'Koha biblioitemnumber', 'Koha biblioitemnumber', 0, 0, 'biblioitems.biblioitemnumber', -1, NULL, NULL, '', NULL, -5, 'ASMP_VIDEORECORDINGS', '', '');
12744
12745
12746 -- ******************************************************
12747
12748
12749 -- Current primary biblioitems Field/Subfields 
12750
12751
12752 INSERT INTO `marc_tag_structure` VALUES ('942', 'ADDED ENTRY ELEMENTS (KOHA)', 'ADDED ENTRY ELEMENTS (KOHA)', 0, 0, '', 'ASMP_VIDEORECORDINGS');
12753
12754 INSERT INTO `marc_subfield_structure` VALUES ('942', 'a', 'Institution code [OBSOLETE]', 'Institution code [OBSOLETE]', 0, 0, '', 9, '', '', '', NULL, -5, 'ASMP_VIDEORECORDINGS', '', '');
12755 INSERT INTO `marc_subfield_structure` VALUES ('942', 'c', 'Item type', 'Item type', 0, 1, 'biblioitems.itemtype', 9, 'itemtypes', '', '', NULL, 0, 'ASMP_VIDEORECORDINGS', '', '');
12756 INSERT INTO `marc_subfield_structure` VALUES ('942', 'j', 'Location (call number prefix code)', 'Location (call number prefix code)', 0, 0, 'biblioitems.classification', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
12757 INSERT INTO `marc_subfield_structure` VALUES ('942', 'k', 'Classification base (DDC to decimal or LCC letter class padded after single letter classes with trailing 0', 'Classification base', 0, 0, 'biblioitems.dewey', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
12758 INSERT INTO `marc_subfield_structure` VALUES ('942', 'l', 'Classification subclass (DDC after decimal or LCC number after letters', 'Classification subclass', 0, 0, 'biblioitems.subclass', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
12759
12760
12761 -- ******************************************************
12762
12763
12764 -- Recommended items Field/Subfields 
12765
12766
12767 -- INSERT INTO `marc_tag_structure` VALUES ('95k', 'LOCATION AND ITEM INFORMATION (KOHA)', 'LOCATION AND ITEM INFORMATION (KOHA)', 1, 0, '', '');
12768
12769 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '0', 'Item status (withdrawn) (similar to 876-8 $j)', 'Item status (withdrawn)', 0, 0, 'items.withdrawn', 10, '', '', '', 0, 0, 'ASMP_VIDEORECORDINGS', '', '');
12770 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '1', 'Item status (lost) (similar to 876-8 $j)', 'Item status (lost)', 0, 0, 'items.itemlost', 10, '', '', '', 0, 0, 'ASMP_VIDEORECORDINGS', '', '');
12771 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '2', 'Source of classification or shelving scheme (similar to 852 $2)', 'Source of classification or shelving scheme', 0, 0, '', 10, '', '', '', NULL, 0, 'ASMP_VIDEORECORDINGS', '', '');
12772 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '3', 'Materials specified (similar to 852, 876-8 $3)', 'Materials specified', 0, 0, '', 10, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
12773 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '4', 'Use restrictions (similar to 506 $a, 876-8 $h)', 'Use restrictions', 0, 0, 'items.restricted', 10, '', '', '', 0, 0, 'ASMP_VIDEORECORDINGS', '', '');
12774 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '6', 'Linkage (similar to 852, 876-8 $6)', 'Linkage', 0, 0, '', 10, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
12775 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '8', 'Sequence number (similar to 852, 876-8 $8)', 'Sequence number', 1, 0, '', 10, '', '', '', NULL, 0, 'ASMP_VIDEORECORDINGS', '', '');
12776 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '9', 'Koha itemnumber (autogenerated similar to 852, 876-8 $3 $8 $t combined)', 'Koha itemnumber', 0, 0, 'items.itemnumber', -1, '', '', '', 0, 0, 'ASMP_VIDEORECORDINGS', '', '');
12777 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'a', 'Location (homebranch) (similar to 852 $a)', 'Location (homebranch)', 0, 0, 'items.homebranch', 10, 'branches', '', '', 0, 0, '', '', '');
12778 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'b', 'Sublocation or collection (holdingbranch) (similar to 852 $b)', 'Sublocation or collection (holdingbranch)', 1, 0, 'items.holdingbranch', 10, 'branches', '', '', 0, 0, 'ASMP_VIDEORECORDINGS', '', '');
12779 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'c', 'Shelving location (similar to 852 $c, 876-8 $l)', 'Shelving location', 1, 0, 'items.location', 10, '', '', '', 0, 0, 'ASMP_VIDEORECORDINGS', '', '');
12780 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'd', 'Date acquired (similar to 541, 876-8 $d)', 'Date acquired', 0, 0, 'items.dateaccessioned', 10, '', '', '', 0, 0, 'ASMP_VIDEORECORDINGS', '', '');
12781 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'e', 'Source of acquisition (similar to 541 $a, 876-8 $e)', 'Source of acquisition', 1, 0, 'items.booksellerid', 10, '', '', '', 0, 0, 'ASMP_VIDEORECORDINGS', '', '');
12782 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'f', 'Coded location qualifier (similar to 852 $f)', 'Coded location qualifier', 1, 0, '', 10, '', '', '', NULL, 0, 'ASMP_VIDEORECORDINGS', '', '');
12783 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'g', 'Non-coded location qualifier (similar to 852 $g)', 'Non-coded location qualifier', 1, 0, '', 10, '', '', '', NULL, 0, 'ASMP_VIDEORECORDINGS', '', '');
12784 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'h', 'Classification part (similar to 852 $h)', 'Classification part', 0, 0, '', 10, '', '', '', NULL, 0, 'ASMP_VIDEORECORDINGS', '', '');
12785 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'i', 'Item part (similar to 852 $i)', 'Item part', 1, 0, '', 10, '', '', '', NULL, 0, 'ASMP_VIDEORECORDINGS', '', '');
12786 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'j', 'Shelving control number (similar to 852 $j)', 'Shelving control number', 0, 0, '', 10, '', '', '', NULL, 0, 'ASMP_VIDEORECORDINGS', '', '');
12787 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'k', 'Call number prefix (similar to 852 $k)', 'Call number prefix', 0, 0, '', 10, '', '', '', NULL, 0, 'ASMP_VIDEORECORDINGS', '', '');
12788 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'l', 'Shelving form of title (similar to 852 $l)', 'Shelving form of title', 0, 0, '', 10, '', '', '', NULL, 0, 'ASMP_VIDEORECORDINGS', '', '');
12789 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'm', 'Call number suffix (similar to 852 $m)', 'Call number suffix', 0, 0, '', 10, '', '', '', NULL, 0, 'ASMP_VIDEORECORDINGS', '', '');
12790 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'n', 'Country code (similar to 852 $n)', 'Country code', 0, 0, '', 10, '', '', '', NULL, 0, 'ASMP_VIDEORECORDINGS', '', '');
12791 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'o', 'Call number (similar to 852 $k $h $i $m combined)', 'Call number', 0, 0, 'items.itemcallnumber', 10, '', '', NULL, 0, 0, 'ASMP_VIDEORECORDINGS', '', '');
12792 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'p', 'Piece designation (barcode) (similar to 852, 876-8 $p)', 'Piece designation (barcode)', 0, 1, 'items.barcode', 10, '', '', '', 0, 0, 'ASMP_VIDEORECORDINGS', '', '');
12793 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'q', 'Piece physical condition (similar to 562 $a, 852 $q)', 'Piece physical condition', 0, 0, '', 10, '', '', '', NULL, 0, 'ASMP_VIDEORECORDINGS', '', '');
12794 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'r', 'Invalid or canceled piece designation (canceled barcode) (similar to 876-8 $r)', 'Invalid or canceled piece designation (canceled barcode)', 1, 0, '', 10, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
12795 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 's', 'Copyright article-fee code (similar to 018 $a, 852 $s)', 'Copyright article-fee code', 1, 0, '', 10, '', '', '', NULL, 0, 'ASMP_VIDEORECORDINGS', '', '');
12796 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 't', 'Copy number (similar to 852, 876-8 $t)', 'Copy number', 0, 0, '', 10, '', '', '', NULL, 0, 'ASMP_VIDEORECORDINGS', '', '');
12797 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'u', 'Cost, normal purchase price (similar to 541 $h, 876-8 $c)', 'Cost, normal purchase price', 0, 0, 'items.price', 10, '', '', '', 0, 0, 'ASMP_VIDEORECORDINGS', '', '');
12798 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'v', 'Cost, replacement price (similar to 365 $b, 876-8 $c)', 'Cost, replacement price', 0, 0, 'items.replacementprice', 10, '', '', '', 0, 0, 'ASMP_VIDEORECORDINGS', '', '');
12799 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'w', 'Price effective from (similar to 365 $f)', 'Price effective from', 0, 0, 'items.replacementpricedate', 10, '', '', '', 0, 0, 'ASMP_VIDEORECORDINGS', '', '');
12800 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'x', 'Nonpublic note (similar to 852, 876-8 $x)', 'Nonpublic note', 1, 0, '', 10, '', '', '', NULL, 6, 'ASMP_VIDEORECORDINGS', '', '');
12801 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'y', 'Use restrictions (not for loan) (similar to 506 $a, 876-8 $h)', 'Use restrictions (not for loan)', 0, 0, 'items.notforloan', 10, '', '', '', 0, 0, 'ASMP_VIDEORECORDINGS', '', '');
12802 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'z', 'Public note (similar to 852, 876-8 $z)', 'Public note', 0, 0, 'items.itemnotes', 10, '', '', '', 1, 0, 'ASMP_VIDEORECORDINGS', '', '');
12803
12804
12805
12806 -- Current items Field/Subfields 
12807
12808
12809 INSERT INTO `marc_tag_structure` VALUES ('952', 'LOCATION AND ITEM INFORMATION (KOHA)', 'LOCATION AND ITEM INFORMATION (KOHA)', 1, 0, '', 'ASMP_VIDEORECORDINGS');
12810
12811 INSERT INTO `marc_subfield_structure` VALUES ('952', '0', 'Item status (withdrawn)', 'Item status (withdrawn)', 0, 0, 'items.withdrawn', 10, '', '', '', 0, 0, 'ASMP_VIDEORECORDINGS', '', '');
12812 INSERT INTO `marc_subfield_structure` VALUES ('952', '1', 'Item status (lost)', 'Item status (lost)', 0, 0, 'items.itemlost', 10, '', '', '', 0, 0, 'ASMP_VIDEORECORDINGS', '', '');
12813 INSERT INTO `marc_subfield_structure` VALUES ('952', '2', 'Source of classification or shelving scheme', 'Source of classification or shelving scheme', 0, 0, '', 10, '', '', '', NULL, 0, 'ASMP_VIDEORECORDINGS', '', '');
12814 INSERT INTO `marc_subfield_structure` VALUES ('952', '3', 'Materials specified', 'Materials specified', 0, 0, '', 10, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
12815 INSERT INTO `marc_subfield_structure` VALUES ('952', '4', 'Use restrictions', 'Use restrictions', 0, 0, 'items.restricted', 10, '', '', '', 0, 0, 'ASMP_VIDEORECORDINGS', '', '');
12816 INSERT INTO `marc_subfield_structure` VALUES ('952', '6', 'Linkage', 'Linkage', 0, 0, '', 10, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
12817 INSERT INTO `marc_subfield_structure` VALUES ('952', '8', 'Sequence number', 'Sequence number', 1, 0, '', 10, '', '', '', NULL, 0, 'ASMP_VIDEORECORDINGS', '', '');
12818 INSERT INTO `marc_subfield_structure` VALUES ('952', '9', 'Cost, normal purchase price', 'Cost, normal purchase price', 0, 0, 'items.price', 10, '', '', '', 0, 0, 'ASMP_VIDEORECORDINGS', '', '');
12819 INSERT INTO `marc_subfield_structure` VALUES ('952', 'a', 'Invalid or canceled piece designation (canceled barcode)', 'Invalid or canceled piece designation (canceled barcode)', 1, 0, '', 10, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
12820 INSERT INTO `marc_subfield_structure` VALUES ('952', 'b', 'Location (homebranch) (similar to 852 $a)', 'Location (homebranch)', 0, 0, 'items.homebranch', 10, 'branches', '', '', 0, 0, 'ASMP_VIDEORECORDINGS', '', '');
12821 INSERT INTO `marc_subfield_structure` VALUES ('952', 'c', 'Shelving location (similar to 852 $c, 876-8 $l)', 'Shelving location', 1, 0, 'items.location', 10, '', '', '', 0, 0, 'ASMP_VIDEORECORDINGS', '', '');
12822 INSERT INTO `marc_subfield_structure` VALUES ('952', 'd', 'Sublocation or collection (holdingbranch)', 'Sublocation or collection (holdingbranch)', 0, 0, 'items.holdingbranch', 10, 'branches', '', '', 0, 0, 'ASMP_VIDEORECORDINGS', '''952b''', '');
12823 INSERT INTO `marc_subfield_structure` VALUES ('952', 'e', 'Source of acquisition', 'Source of acquisition', 1, 0, 'items.booksellerid', 10, '', '', '', 0, 0, 'ASMP_VIDEORECORDINGS', '', '');
12824 INSERT INTO `marc_subfield_structure` VALUES ('952', 'f', 'Coded location qualifier', 'Coded location qualifier', 1, 0, '', 10, '', '', '', NULL, 0, 'ASMP_VIDEORECORDINGS', '', '');
12825 INSERT INTO `marc_subfield_structure` VALUES ('952', 'g', 'Non-coded location qualifier', 'Non-coded location qualifier', 1, 0, '', 10, '', '', '', NULL, 0, 'ASMP_VIDEORECORDINGS', '', '');
12826 INSERT INTO `marc_subfield_structure` VALUES ('952', 'h', 'Classification part', 'Classification part', 0, 0, '', 10, '', '', '', NULL, 0, 'ASMP_VIDEORECORDINGS', '', '');
12827 INSERT INTO `marc_subfield_structure` VALUES ('952', 'i', 'Item part', 'Item part', 1, 0, '', 10, '', '', '', NULL, 0, 'ASMP_VIDEORECORDINGS', '', '');
12828 INSERT INTO `marc_subfield_structure` VALUES ('952', 'j', 'Shelving control number', 'Shelving control number', 0, 0, '', 10, '', '', '', NULL, 0, 'ASMP_VIDEORECORDINGS', '', '');
12829 INSERT INTO `marc_subfield_structure` VALUES ('952', 'k', 'Call number (combined)', 'Call number', 0, 0, 'items.itemcallnumber', 10, '', '', NULL, 0, 0, 'ASMP_VIDEORECORDINGS', '', '');
12830 INSERT INTO `marc_subfield_structure` VALUES ('952', 'l', 'Shelving form of title', 'Shelving form of title', 0, 0, '', 10, '', '', '', NULL, 0, 'ASMP_VIDEORECORDINGS', '', '');
12831 INSERT INTO `marc_subfield_structure` VALUES ('952', 'm', 'Call number suffix', 'Call number suffix', 0, 0, '', 10, '', '', '', NULL, 0, 'ASMP_VIDEORECORDINGS', '', '');
12832 INSERT INTO `marc_subfield_structure` VALUES ('952', 'n', 'Country code', 'Country code', 0, 0, '', 10, '', '', '', NULL, 0, 'ASMP_VIDEORECORDINGS', '', '');
12833 INSERT INTO `marc_subfield_structure` VALUES ('952', 'o', 'Call number prefix', 'Call number prefix', 0, 0, '', 10, '', '', '', NULL, 0, 'ASMP_VIDEORECORDINGS', '', '');
12834 INSERT INTO `marc_subfield_structure` VALUES ('952', 'p', 'Piece designation (barcode)', 'Piece designation (barcode)', 0, 1, 'items.barcode', 10, '', '', '', 0, 0, 'ASMP_VIDEORECORDINGS', '', '');
12835 INSERT INTO `marc_subfield_structure` VALUES ('952', 'q', 'Piece physical condition', 'Piece physical condition', 0, 0, '', 10, '', '', '', NULL, 0, 'ASMP_VIDEORECORDINGS', '', '');
12836 INSERT INTO `marc_subfield_structure` VALUES ('952', 'r', 'Cost, replacement price', 'Cost, replacement price', 0, 0, 'items.replacementprice', 10, '', '', '', 0, 0, 'ASMP_VIDEORECORDINGS', '', '');
12837 INSERT INTO `marc_subfield_structure` VALUES ('952', 's', 'Copyright article-fee code', 'Copyright article-fee code', 1, 0, '', 10, '', '', '', NULL, 0, 'ASMP_VIDEORECORDINGS', '', '');
12838 INSERT INTO `marc_subfield_structure` VALUES ('952', 't', 'Copy number', 'Copy number', 0, 0, '', 10, '', '', '', NULL, 0, 'ASMP_VIDEORECORDINGS', '', '');
12839 INSERT INTO `marc_subfield_structure` VALUES ('952', 'u', 'Koha itemnumber (autogenerated)', 'Koha itemnumber', 0, 0, 'items.itemnumber', -1, '', '', '', 0, 0, 'ASMP_VIDEORECORDINGS', '', '');
12840 INSERT INTO `marc_subfield_structure` VALUES ('952', 'v', 'Date acquired', 'Date acquired', 0, 0, 'items.dateaccessioned', 10, '', '', '', 0, 0, 'ASMP_VIDEORECORDINGS', '', '');
12841 INSERT INTO `marc_subfield_structure` VALUES ('952', 'w', 'Price effective from', 'Price effective from', 0, 0, 'items.replacementpricedate', 10, '', '', '', 0, 0, 'ASMP_VIDEORECORDINGS', '', '');
12842 INSERT INTO `marc_subfield_structure` VALUES ('952', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 10, '', '', '', NULL, 6, 'ASMP_VIDEORECORDINGS', '', '');
12843 INSERT INTO `marc_subfield_structure` VALUES ('952', 'y', 'Use restrictions (not for loan)', 'Use restrictions (not for loan)', 0, 0, 'items.notforloan', 10, '', '', '', 0, 0, 'ASMP_VIDEORECORDINGS', '', '');
12844 INSERT INTO `marc_subfield_structure` VALUES ('952', 'z', 'Public note', 'Public note', 0, 0, 'items.itemnotes', 10, '', '', '', 1, 0, 'ASMP_VIDEORECORDINGS', '', '');
12845
12846
12847 -- *******************************************************
12848
12849
12850
12851 -- ******************************************************************
12852 -- ASMP VIDEORECORDINGS MARC 21 FIELDS/SUBFIELDS AND COMMMONLY USED EXTENSIONS 
12853 -- ******************************************************************
12854
12855
12856 -- A Few local use codes need specifying.  Several seealso, plugin, and 
12857 -- authority framework columns need improving.  $9 for authority record linking 
12858 -- needs to be added where not already provided by RLIN specifications. 
12859 -- Needs checking for errors but probably tolerable for use on a production. 
12860 -- A server can be upgraded easily from later versions of this file.
12861 --                                                                          
12862 -- In the absense of more column support for qualifying the relative 
12863 -- importance of subfields to the record editor, some modest modification of 
12864 -- the default framework is needed setting the not-useful non-Koha holdings 
12865 -- subfields to not managed in Koha.
12866
12867 -- MARC fields including letters as part of the field identifier are from RLIN
12868 -- and should be expected to remain along with RLIN $% subfields.  RLIN has 
12869 -- been using letters in fields because there are not enough local use number 
12870 -- fields which have not already been specified for very large union catalogue 
12871 -- networks such as RLIN itself.
12872
12873
12874 -- Fields ending in c, o, or r are temporary placeholders for information from
12875 -- a numeric value until a non-conflicting way to treat the content under the
12876 -- proper original numeric field is adopted.  090 for LC call numbers is much 
12877 -- too common and important so 999 is also provided as a temporary place 
12878 -- holder until all Koha code for finding control fields has been changed from 
12879 -- a numeric test of < 10 to a regular expression match of m/^00/ to prevent 
12880 -- mistaken matching of fields with letters such as 09o if they were control 
12881 -- fields.
12882 INSERT INTO `marc_tag_structure` VALUES ('000', 'LEADER', 'LEADER', 0, 1, '', 'ASMP_VIDEORECORDINGS');
12883 INSERT INTO `marc_tag_structure` VALUES ('001', 'CONTROL NUMBER', 'CONTROL NUMBER', 0, 0, '', 'ASMP_VIDEORECORDINGS');
12884 INSERT INTO `marc_tag_structure` VALUES ('003', 'CONTROL NUMBER IDENTIFIER', 'CONTROL NUMBER IDENTIFIER', 0, 0, '', 'ASMP_VIDEORECORDINGS');
12885 INSERT INTO `marc_tag_structure` VALUES ('005', 'DATE AND TIME OF LATEST TRANSACTION', 'DATE AND TIME OF LATEST TRANSACTION', 0, 0, '', 'ASMP_VIDEORECORDINGS');
12886 INSERT INTO `marc_tag_structure` VALUES ('006', 'FIXED-LENGTH DATA ELEMENTS--ADDITIONAL MATERIAL CHARACTERISTICS--GENERAL INFORMATION', 'FIXED-LENGTH DATA ELEMENTS--ADDITIONAL MATERIAL CHARACTERISTICS--GENERAL INFORMATION', 1, 0, '', 'ASMP_VIDEORECORDINGS');
12887 INSERT INTO `marc_tag_structure` VALUES ('007', 'PHYSICAL DESCRIPTION FIXED FIELD--GENERAL INFORMATION', 'PHYSICAL DESCRIPTION FIXED FIELD--GENERAL INFORMATION', 1, 0, '', 'ASMP_VIDEORECORDINGS');
12888 INSERT INTO `marc_tag_structure` VALUES ('008', 'FIXED-LENGTH DATA ELEMENTS--GENERAL INFORMATION', 'FIXED-LENGTH DATA ELEMENTS--GENERAL INFORMATION', 0, 1, '', 'ASMP_VIDEORECORDINGS');
12889 INSERT INTO `marc_tag_structure` VALUES ('009', 'PHYSICAL DESCRIPTION FIXED-FIELD FOR ARCHIVAL COLLECTION (VM) [OBSOLETE]', 'PHYSICAL DESCRIPTION FIXED-FIELD FOR ARCHIVAL COLLECTION (VM) [OBSOLETE]', 1, 0, '', 'ASMP_VIDEORECORDINGS');
12890 INSERT INTO `marc_tag_structure` VALUES ('010', 'LIBRARY OF CONGRESS CONTROL NUMBER', 'LIBRARY OF CONGRESS CONTROL NUMBER', 0, 0, '', 'ASMP_VIDEORECORDINGS');
12891 INSERT INTO `marc_tag_structure` VALUES ('011', 'LINKING LIBRARY OF CONGRESS CONTROL NUMBER [OBSOLETE]', 'LINKING LIBRARY OF CONGRESS CONTROL NUMBER [OBSOLETE]', 0, 0, '', 'ASMP_VIDEORECORDINGS');
12892 INSERT INTO `marc_tag_structure` VALUES ('013', 'PATENT CONTROL INFORMATION', 'PATENT CONTROL INFORMATION', 1, 0, '', 'ASMP_VIDEORECORDINGS');
12893 INSERT INTO `marc_tag_structure` VALUES ('015', 'NATIONAL BIBLIOGRAPHY NUMBER', 'NATIONAL BIBLIOGRAPHY NUMBER', 1, 0, '', 'ASMP_VIDEORECORDINGS');
12894 INSERT INTO `marc_tag_structure` VALUES ('016', 'NATIONAL BIBLIOGRAPHIC AGENCY CONTROL NUMBER', 'NATIONAL BIBLIOGRAPHIC AGENCY CONTROL NUMBER', 1, 0, '', 'ASMP_VIDEORECORDINGS');
12895 INSERT INTO `marc_tag_structure` VALUES ('017', 'COPYRIGHT OR LEGAL DEPOSIT NUMBER', 'COPYRIGHT OR LEGAL DEPOSIT NUMBER', 1, 0, '', 'ASMP_VIDEORECORDINGS');
12896 INSERT INTO `marc_tag_structure` VALUES ('018', 'COPYRIGHT ARTICLE-FEE CODE', 'COPYRIGHT ARTICLE-FEE CODE', 0, 0, '', 'ASMP_VIDEORECORDINGS');
12897 INSERT INTO `marc_tag_structure` VALUES ('01e', 'CODED FIELD ERROR (RLIN)', 'CODED FIELD ERROR (RLIN)', 1, 0, '', 'ASMP_VIDEORECORDINGS');
12898 INSERT INTO `marc_tag_structure` VALUES ('020', 'ISBN', 'INTERNATIONAL STANDARD BOOK NUMBER', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
12899 INSERT INTO `marc_tag_structure` VALUES ('022', 'INTERNATIONAL STANDARD SERIAL NUMBER', 'INTERNATIONAL STANDARD SERIAL NUMBER', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
12900 INSERT INTO `marc_tag_structure` VALUES ('023', 'STANDARD FILM NUMBER (VM) [DELETED]', 'STANDARD FILM NUMBER (VM) [DELETED]', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
12901 INSERT INTO `marc_tag_structure` VALUES ('024', 'OTHER STANDARD IDENTIFIER', 'OTHER STANDARD IDENTIFIER', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
12902 INSERT INTO `marc_tag_structure` VALUES ('025', 'OVERSEAS ACQUISITION NUMBER', 'OVERSEAS ACQUISITION NUMBER', 1, 0, '', 'ASMP_VIDEORECORDINGS');
12903 INSERT INTO `marc_tag_structure` VALUES ('026', 'FINGERPRINT IDENTIFIER', 'FINGERPRINT IDENTIFIER', 1, 0, '', 'ASMP_VIDEORECORDINGS');
12904 INSERT INTO `marc_tag_structure` VALUES ('027', 'STANDARD TECHNICAL REPORT NUMBER', 'STANDARD TECHNICAL REPORT NUMBER', 1, 0, '', 'ASMP_VIDEORECORDINGS');
12905 INSERT INTO `marc_tag_structure` VALUES ('028', 'IDENTIFICATION NUMBER--PUBLISHER NUMBER', 'PUBLISHER NUMBER', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
12906 INSERT INTO `marc_tag_structure` VALUES ('029', 'OTHER SYSTEM CONTROL NUMBER (OCLC)', ' (OCLC)', 1, 0, '', 'ASMP_VIDEORECORDINGS');
12907 INSERT INTO `marc_tag_structure` VALUES ('030', 'CODEN DESIGNATION', 'CODEN DESIGNATION', 1, 0, '', 'ASMP_VIDEORECORDINGS');
12908 INSERT INTO `marc_tag_structure` VALUES ('031', 'MUSICAL INCIPITS INFORMATION', 'MUSICAL INCIPITS INFORMATION', 1, 0, '', 'ASMP_VIDEORECORDINGS');
12909 INSERT INTO `marc_tag_structure` VALUES ('032', 'POSTAL REGISTRATION NUMBER', 'POSTAL REGISTRATION NUMBER', 1, 0, '', 'ASMP_VIDEORECORDINGS');
12910 INSERT INTO `marc_tag_structure` VALUES ('033', 'DATE/TIME AND PLACE OF AN EVENT', 'DATE/TIME AND PLACE OF AN EVENT', 1, 0, '', 'ASMP_VIDEORECORDINGS');
12911 INSERT INTO `marc_tag_structure` VALUES ('034', 'CODED CARTOGRAPHIC MATHEMATICAL DATA', 'CODED CARTOGRAPHIC MATHEMATICAL DATA', 1, 0, '', 'ASMP_VIDEORECORDINGS');
12912 INSERT INTO `marc_tag_structure` VALUES ('035', 'SYSTEM CONTROL NUMBER', 'SYSTEM CONTROL NUMBER', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
12913 INSERT INTO `marc_tag_structure` VALUES ('036', 'ORIGINAL STUDY NUMBER FOR COMPUTER DATA FILES', 'ORIGINAL STUDY NUMBER FOR COMPUTER DATA FILES', 0, 0, '', 'ASMP_VIDEORECORDINGS');
12914 INSERT INTO `marc_tag_structure` VALUES ('037', 'PUBLICATION, DISTRIBUTION DETAILS--SOURCE OF ACQUISITION', 'SOURCE OF ACQUISITION', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
12915 INSERT INTO `marc_tag_structure` VALUES ('038', 'RECORD CONTENT LICENSOR', 'RECORD CONTENT LICENSOR', 0, 0, '', 'ASMP_VIDEORECORDINGS');
12916 INSERT INTO `marc_tag_structure` VALUES ('039', 'LEVEL OF BIBLIOGRAPHIC CONTROL AND CODING DETAIL [OBSOLETE]', 'LEVEL OF BIBLIOGRAPHIC CONTROL AND CODING DETAIL [OBSOLETE]', 0, 0, '', 'ASMP_VIDEORECORDINGS');
12917 INSERT INTO `marc_tag_structure` VALUES ('040', 'CATALOGING SOURCE', 'CATALOGING SOURCE', 0, 0, NULL, 'ASMP_VIDEORECORDINGS');
12918 INSERT INTO `marc_tag_structure` VALUES ('041', 'LANGUAGE CODE', 'LANGUAGE CODE', 1, 0, '', 'ASMP_VIDEORECORDINGS');
12919 INSERT INTO `marc_tag_structure` VALUES ('042', 'AUTHENTICATION CODE', 'AUTHENTICATION CODE', 0, 0, '', 'ASMP_VIDEORECORDINGS');
12920 INSERT INTO `marc_tag_structure` VALUES ('043', 'GEOGRAPHIC AREA CODE', 'GEOGRAPHIC AREA CODE', 0, 0, NULL, 'ASMP_VIDEORECORDINGS');
12921 INSERT INTO `marc_tag_structure` VALUES ('044', 'COUNTRY OF PUBLISHING/PRODUCING ENTITY CODE', 'COUNTRY OF PUBLISHING/PRODUCING ENTITY CODE', 0, 0, '', 'ASMP_VIDEORECORDINGS');
12922 INSERT INTO `marc_tag_structure` VALUES ('045', 'TIME PERIOD OF CONTENT', 'TIME PERIOD OF CONTENT', 0, 0, '', 'ASMP_VIDEORECORDINGS');
12923 INSERT INTO `marc_tag_structure` VALUES ('046', 'SPECIAL CODED DATES', 'SPECIAL CODED DATES', 1, 0, '', 'ASMP_VIDEORECORDINGS');
12924 INSERT INTO `marc_tag_structure` VALUES ('047', 'FORM OF MUSICAL COMPOSITION CODE', 'FORM OF MUSICAL COMPOSITION CODE', 0, 0, '', 'ASMP_VIDEORECORDINGS');
12925 INSERT INTO `marc_tag_structure` VALUES ('048', 'NUMBER OF MUSICAL INSTRUMENTS OR VOICES CODE', 'NUMBER OF MUSICAL INSTRUMENTS OR VOICES CODE', 1, 0, '', 'ASMP_VIDEORECORDINGS');
12926 INSERT INTO `marc_tag_structure` VALUES ('049', 'LOCAL HOLDINGS (OCLC)', 'LOCAL HOLDINGS (OCLC)', 0, 0, '', 'ASMP_VIDEORECORDINGS');
12927 INSERT INTO `marc_tag_structure` VALUES ('050', 'LIBRARY OF CONGRESS CALL NUMBER', 'LIBRARY OF CONGRESS CALL NUMBER', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
12928 INSERT INTO `marc_tag_structure` VALUES ('051', 'LIBRARY OF CONGRESS COPY, ISSUE, OFFPRINT STATEMENT', 'LIBRARY OF CONGRESS COPY, ISSUE, OFFPRINT STATEMENT', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
12929 INSERT INTO `marc_tag_structure` VALUES ('052', 'GEOGRAPHIC CLASSIFICATION', 'GEOGRAPHIC CLASSIFICATION', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
12930 INSERT INTO `marc_tag_structure` VALUES ('055', 'CLASSIFICATION NUMBERS ASSIGNED IN CANADA', 'CLASSIFICATION NUMBERS ASSIGNED IN CANADA', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
12931 INSERT INTO `marc_tag_structure` VALUES ('060', 'NATIONAL LIBRARY OF MEDICINE CALL NUMBER', 'NATIONAL LIBRARY OF MEDICINE CALL NUMBER', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
12932 INSERT INTO `marc_tag_structure` VALUES ('061', 'NATIONAL LIBRARY OF MEDICINE COPY STATEMENT', 'NATIONAL LIBRARY OF MEDICINE COPY STATEMENT', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
12933 INSERT INTO `marc_tag_structure` VALUES ('066', 'CHARACTER SETS PRESENT', 'CHARACTER SETS PRESENT', 0, 0, NULL, 'ASMP_VIDEORECORDINGS');
12934 INSERT INTO `marc_tag_structure` VALUES ('070', 'NATIONAL AGRICULTURAL LIBRARY CALL NUMBER', 'NATIONAL AGRICULTURAL LIBRARY CALL NUMBER', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
12935 INSERT INTO `marc_tag_structure` VALUES ('071', 'NATIONAL AGRICULTURAL LIBRARY COPY STATEMENT', 'NATIONAL AGRICULTURAL LIBRARY COPY STATEMENT', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
12936 INSERT INTO `marc_tag_structure` VALUES ('072', 'SUBJECT CATEGORY CODE', 'SUBJECT CATEGORY CODE', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
12937 INSERT INTO `marc_tag_structure` VALUES ('074', 'GPO ITEM NUMBER', 'GPO ITEM NUMBER', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
12938 INSERT INTO `marc_tag_structure` VALUES ('080', 'UNIVERSAL DECIMAL CLASSIFICATION NUMBER', 'UNIVERSAL DECIMAL CLASSIFICATION NUMBER', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
12939 INSERT INTO `marc_tag_structure` VALUES ('082', 'DEWEY DECIMAL CLASSIFICATION NUMBER', 'DEWEY DECIMAL CLASSIFICATION NUMBER', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
12940 INSERT INTO `marc_tag_structure` VALUES ('084', 'OTHER CLASSIFICATION NUMBER', 'OTHER CLASSIFICATION NUMBER', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
12941 INSERT INTO `marc_tag_structure` VALUES ('086', 'GOVERNMENT DOCUMENT CLASSIFICATION NUMBER', 'GOVERNMENT DOCUMENT CLASSIFICATION NUMBER', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
12942 INSERT INTO `marc_tag_structure` VALUES ('087', 'REPORT NUMBER [OBSOLETE, CAN/MARC]', 'REPORT NUMBER [OBSOLETE, CAN/MARC]', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
12943 INSERT INTO `marc_tag_structure` VALUES ('088', 'REPORT NUMBER', 'REPORT NUMBER', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
12944 INSERT INTO `marc_tag_structure` VALUES ('09o', 'LOCALLY ASSIGNED LC-TYPE CALL NUMBER (OCLC); LOCAL CALL NUMBER (RLIN)', 'LOCALLY ASSIGNED LC-TYPE CALL NUMBER (OCLC); LOCAL CALL NUMBER (OCLC)', 1, 0, '', 'ASMP_VIDEORECORDINGS');
12945 INSERT INTO `marc_tag_structure` VALUES ('091', 'MICROFILM SHELF LOCATION (AM) [OBSOLETE]', 'MICROFILM SHELF LOCATION (AM) [OBSOLETE]', 0, 0, '', 'ASMP_VIDEORECORDINGS');
12946 INSERT INTO `marc_tag_structure` VALUES ('092', 'LOCALLY ASSIGNED DEWEY CALL NUMBER (OCLC)', 'LOCALLY ASSIGNED DEWEY CALL NUMBER (OCLC)', 1, 0, '', 'ASMP_VIDEORECORDINGS');
12947 INSERT INTO `marc_tag_structure` VALUES ('096', 'LOCALLY ASSIGNED NLM-TYPE CALL NUMBER (OCLC)', 'LOCALLY ASSIGNED NLM-TYPE CALL NUMBER (OCLC)', 1, 0, '', 'ASMP_VIDEORECORDINGS');
12948 INSERT INTO `marc_tag_structure` VALUES ('098', 'OTHER CLASSIFICATION SCHEMES (OCLC)', 'OTHER CLASSIFICATION SCHEMES (OCLC)', 1, 0, '', 'ASMP_VIDEORECORDINGS');
12949 INSERT INTO `marc_tag_structure` VALUES ('099', 'LOCAL FREE-TEXT CALL NUMBER (OCLC)', 'LOCAL FREE-TEXT CALL NUMBER (OCLC)', 1, 0, '', 'ASMP_VIDEORECORDINGS');
12950 INSERT INTO `marc_tag_structure` VALUES ('100', 'MAIN ENTRY--DIRECTOR/PERSONAL NAME', 'MAIN ENTRY--PERSONAL NAME', 0, 0, NULL, 'ASMP_VIDEORECORDINGS');
12951 INSERT INTO `marc_tag_structure` VALUES ('110', 'MAIN ENTRY--CORPORATE NAME', 'MAIN ENTRY--CORPORATE NAME', 0, 0, NULL, 'ASMP_VIDEORECORDINGS');
12952 INSERT INTO `marc_tag_structure` VALUES ('111', 'MAIN ENTRY--MEETING NAME', 'MAIN ENTRY--MEETING NAME', 0, 0, NULL, 'ASMP_VIDEORECORDINGS');
12953 INSERT INTO `marc_tag_structure` VALUES ('130', 'MAIN ENTRY--UNIFORM TITLE', 'MAIN ENTRY--UNIFORM TITLE', 0, 0, NULL, 'ASMP_VIDEORECORDINGS');
12954 INSERT INTO `marc_tag_structure` VALUES ('210', 'ABBREVIATED TITLE', 'ABBREVIATED TITLE', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
12955 INSERT INTO `marc_tag_structure` VALUES ('211', 'ACRONYM OR SHORTENED TITLE [OBSOLETE]', 'ACRONYM OR SHORTENED TITLE [OBSOLETE]', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
12956 INSERT INTO `marc_tag_structure` VALUES ('212', 'VARIANT ACCESS TITLE [OBSOLETE]', 'VARIANT ACCESS TITLE [OBSOLETE]', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
12957 INSERT INTO `marc_tag_structure` VALUES ('214', 'AUGMENTED TITLE [OBSOLETE]', 'AUGMENTED TITLE [OBSOLETE]', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
12958 INSERT INTO `marc_tag_structure` VALUES ('222', 'KEY TITLE', 'KEY TITLE', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
12959 INSERT INTO `marc_tag_structure` VALUES ('240', 'UNIFORM TITLE', 'UNIFORM TITLE', 0, 0, 'Unititle', 'ASMP_VIDEORECORDINGS');
12960 INSERT INTO `marc_tag_structure` VALUES ('241', 'ROMANIZED TITLE (BK AM CF MP MU VM) [OBSOLETE]', 'ROMANIZED TITLE (BK AM CF MP MU VM) [OBSOLETE]', 0, 0, '', 'ASMP_VIDEORECORDINGS');
12961 INSERT INTO `marc_tag_structure` VALUES ('242', 'TRANSLATION OF TITLE BY CATALOGING AGENCY', 'TRANSLATION OF TITLE BY CATALOGING AGENCY', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
12962 INSERT INTO `marc_tag_structure` VALUES ('243', 'COLLECTIVE UNIFORM TITLE', 'COLLECTIVE UNIFORM TITLE', 0, 0, '', 'ASMP_VIDEORECORDINGS');
12963 INSERT INTO `marc_tag_structure` VALUES ('245', 'TITLE', 'TITLE STATEMENT', 0, 1, '', 'ASMP_VIDEORECORDINGS');
12964 INSERT INTO `marc_tag_structure` VALUES ('246', 'VARYING FORM OF TITLE', 'VARYING FORM OF TITLE', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
12965 INSERT INTO `marc_tag_structure` VALUES ('247', 'FORMER TITLE', 'FORMER TITLE', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
12966 INSERT INTO `marc_tag_structure` VALUES ('250', 'EDITION STATEMENT', 'EDITION STATEMENT', 0, 0, NULL, 'ASMP_VIDEORECORDINGS');
12967 INSERT INTO `marc_tag_structure` VALUES ('254', 'MUSICAL PRESENTATION STATEMENT', 'MUSICAL PRESENTATION STATEMENT', 0, 0, NULL, 'ASMP_VIDEORECORDINGS');
12968 INSERT INTO `marc_tag_structure` VALUES ('255', 'CARTOGRAPHIC MATHEMATICAL DATA', 'CARTOGRAPHIC MATHEMATICAL DATA', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
12969 INSERT INTO `marc_tag_structure` VALUES ('256', 'COMPUTER FILE CHARACTERISTICS', 'COMPUTER FILE CHARACTERISTICS', 0, 0, NULL, 'ASMP_VIDEORECORDINGS');
12970 INSERT INTO `marc_tag_structure` VALUES ('257', 'COUNTRY OF PRODUCING ENTITY FOR ARCHIVAL FILMS', 'COUNTRY OF PRODUCING ENTITY FOR ARCHIVAL FILMS', 0, 0, NULL, 'ASMP_VIDEORECORDINGS');
12971 INSERT INTO `marc_tag_structure` VALUES ('258', 'PHILATELIC ISSUE DATE', 'PHILATELIC ISSUE DATE', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
12972 INSERT INTO `marc_tag_structure` VALUES ('260', 'STUDIO/PROCUCTION COMPANY--PUBLICATION, DISTRIBUTION, ETC. (IMPRINT)', 'PUBLICATION, DISTRIBUTION, ETC. (IMPRINT)', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
12973 INSERT INTO `marc_tag_structure` VALUES ('261', 'IMPRINT STATEMENT FOR FILMS (Pre-AACR 1 Revised) [OBSOLETE, CAN/MARC], [LOCAL, USA]', 'IMPRINT STATEMENT FOR FILMS (Pre-AACR 1 Revised) [OBSOLETE, CAN/MARC], [LOCAL, USA]', 0, 0, NULL, 'ASMP_VIDEORECORDINGS');
12974 INSERT INTO `marc_tag_structure` VALUES ('262', 'IMPRINT STATEMENT FOR SOUND RECORDINGS (Pre-AACR 2) [LOCAL, USA]', 'IMPRINT STATEMENT FOR SOUND RECORDINGS (Pre-AACR 2) [LOCAL, USA]', 0, 0, NULL, 'ASMP_VIDEORECORDINGS');
12975 INSERT INTO `marc_tag_structure` VALUES ('263', 'PROJECTED PUBLICATION DATE', 'PROJECTED PUBLICATION DATE', 0, 0, NULL, 'ASMP_VIDEORECORDINGS');
12976 INSERT INTO `marc_tag_structure` VALUES ('265', 'SOURCE FOR ACQUISITION/SUBSCRIPTION ADDRESS [OBSOLETE]', 'SOURCE FOR ACQUISITION/SUBSCRIPTION ADDRESS [OBSOLETE]', 0, 0, NULL, 'ASMP_VIDEORECORDINGS');
12977 INSERT INTO `marc_tag_structure` VALUES ('270', 'PUBLICATION, DISTRIBUTION DETAILS--ADDRESS', 'ADDRESS', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
12978 INSERT INTO `marc_tag_structure` VALUES ('300', 'PHYSICAL DESCRIPTION', 'PHYSICAL DESCRIPTION', 1, 1, NULL, 'ASMP_VIDEORECORDINGS');
12979 INSERT INTO `marc_tag_structure` VALUES ('301', 'PHYSICAL DESCRIPTION FOR FILMS (PRE-AACR 2) (VM) [OBSOLETE, USMARC]', 'PHYSICAL DESCRIPTION FOR FILMS (PRE-AACR 2) (VM) [OBSOLETE, USMARC]', 0, 0, NULL, 'ASMP_VIDEORECORDINGS');
12980 INSERT INTO `marc_tag_structure` VALUES ('302', 'PAGE OR ITEM COUNT (BK AM) [OBSOLETE]', 'PAGE OR ITEM COUNT (BK AM) [OBSOLETE]', 0, 0, NULL, 'ASMP_VIDEORECORDINGS');
12981 INSERT INTO `marc_tag_structure` VALUES ('303', 'UNIT COUNT (AM) [OBSOLETE, USMARC]', 'UNIT COUNT (AM) [OBSOLETE, USMARC]', 0, 0, NULL, 'ASMP_VIDEORECORDINGS');
12982 INSERT INTO `marc_tag_structure` VALUES ('304', 'LINEAR FOOTAGE (AM) [OBSOLETE, USMARC]', 'LINEAR FOOTAGE (AM) [OBSOLETE, USMARC]', 0, 0, NULL, 'ASMP_VIDEORECORDINGS');
12983 INSERT INTO `marc_tag_structure` VALUES ('305', 'PHYSICAL DESCRIPTION FOR SOUND RECORDINGS (Pre-AACR 2) (MU) [OBSOLETE]', 'PHYSICAL DESCRIPTION FOR SOUND RECORDINGS (Pre-AACR 2) (MU) [OBSOLETE]', 0, 0, NULL, 'ASMP_VIDEORECORDINGS');
12984 INSERT INTO `marc_tag_structure` VALUES ('306', 'RUN TIME', 'PLAYING TIME', 0, 0, NULL, 'ASMP_VIDEORECORDINGS');
12985 INSERT INTO `marc_tag_structure` VALUES ('307', 'HOURS, ETC.', 'HOURS, ETC.', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
12986 INSERT INTO `marc_tag_structure` VALUES ('308', 'PHYSICAL DESCRIPTION FOR FILMS (ARCHIVAL) (VM) [OBSOLETE]', 'PHYSICAL DESCRIPTION FOR FILMS (ARCHIVAL) (VM) [OBSOLETE]', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
12987 INSERT INTO `marc_tag_structure` VALUES ('310', 'CURRENT PUBLICATION FREQUENCY', 'CURRENT PUBLICATION FREQUENCY', 0, 0, NULL, 'ASMP_VIDEORECORDINGS');
12988 INSERT INTO `marc_tag_structure` VALUES ('315', 'FREQUENCY (CF MP) [OBSOLETE]', 'FREQUENCY (CF MP) [OBSOLETE]', 0, 0, NULL, 'ASMP_VIDEORECORDINGS');
12989 INSERT INTO `marc_tag_structure` VALUES ('321', 'FORMER PUBLICATION FREQUENCY', 'FORMER PUBLICATION FREQUENCY', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
12990 INSERT INTO `marc_tag_structure` VALUES ('340', 'PHYSICAL MEDIUM', 'PHYSICAL MEDIUM', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
12991 INSERT INTO `marc_tag_structure` VALUES ('342', 'GEOSPATIAL REFERENCE DATA', 'GEOSPATIAL REFERENCE DATA', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
12992 INSERT INTO `marc_tag_structure` VALUES ('343', 'PLANAR COORDINATE DATA', 'PLANAR COORDINATE DATA', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
12993 INSERT INTO `marc_tag_structure` VALUES ('350', 'PRICE (NR) (BK AM CF MU VM SE) [OBSOLETE]', 'PRICE (NR) (BK AM CF MU VM SE) [OBSOLETE]', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
12994 INSERT INTO `marc_tag_structure` VALUES ('351', 'ORGANIZATION AND ARRANGEMENT OF MATERIALS', 'ORGANIZATION AND ARRANGEMENT OF MATERIALS', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
12995 INSERT INTO `marc_tag_structure` VALUES ('352', 'DIGITAL GRAPHIC REPRESENTATION', 'DIGITAL GRAPHIC REPRESENTATION', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
12996 INSERT INTO `marc_tag_structure` VALUES ('355', 'SECURITY CLASSIFICATION CONTROL', 'SECURITY CLASSIFICATION CONTROL', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
12997 INSERT INTO `marc_tag_structure` VALUES ('357', 'ORIGINATOR DISSEMINATION CONTROL', 'ORIGINATOR DISSEMINATION CONTROL', 0, 0, NULL, 'ASMP_VIDEORECORDINGS');
12998 INSERT INTO `marc_tag_structure` VALUES ('359', 'RENTAL PRICE (VM) [OBSOLETE]', 'RENTAL PRICE (VM) [OBSOLETE]', 0, 0, NULL, 'ASMP_VIDEORECORDINGS');
12999 INSERT INTO `marc_tag_structure` VALUES ('362', 'DATES OF PUBLICATION AND/OR SEQUENTIAL DESIGNATION', 'DATES OF PUBLICATION AND/OR SEQUENTIAL DESIGNATION', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13000 INSERT INTO `marc_tag_structure` VALUES ('365', 'PUBLICATION, DISTRIBUTION DETAILS--TRADE PRICE', 'TRADE PRICE', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13001 INSERT INTO `marc_tag_structure` VALUES ('366', 'PUBLICATION, DISTRIBUTION DETAILS--TRADE AVAILABILITY INFORMATION', 'TRADE AVAILABILITY INFORMATION', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13002 INSERT INTO `marc_tag_structure` VALUES ('400', 'SERIES STATEMENT/ADDED ENTRY--PERSONAL NAME [OBSOLETE, CAN/MARC], [LOCAL, USA]', 'SERIES STATEMENT/ADDED ENTRY--PERSONAL NAME [OBSOLETE, CAN/MARC], [LOCAL, USA]', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13003 INSERT INTO `marc_tag_structure` VALUES ('410', 'SERIES STATEMENT/ADDED ENTRY--CORPORATE NAME [OBSOLETE, CAN/MARC], [LOCAL, USA]', 'SERIES STATEMENT/ADDED ENTRY--CORPORATE NAME [OBSOLETE, CAN/MARC], [LOCAL, USA]', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13004 INSERT INTO `marc_tag_structure` VALUES ('411', 'SERIES STATEMENT/ADDED ENTRY--MEETING NAME [OBSOLETE, CAN/MARC], [LOCAL, USA]', 'SERIES STATEMENT/ADDED ENTRY--MEETING NAME [OBSOLETE, CAN/MARC], [LOCAL, USA]', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13005 INSERT INTO `marc_tag_structure` VALUES ('440', 'SERIES--TITLE', 'SERIES STATEMENT/ADDED ENTRY--TITLE', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13006 INSERT INTO `marc_tag_structure` VALUES ('490', 'SERIES STATEMENT', 'SERIES STATEMENT', 1, 0, '', 'ASMP_VIDEORECORDINGS');
13007 INSERT INTO `marc_tag_structure` VALUES ('500', 'ASPECT RATIO/GENERAL NOTE', 'GENERAL NOTE', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13008 INSERT INTO `marc_tag_structure` VALUES ('501', 'WITH NOTE', 'WITH NOTE', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13009 INSERT INTO `marc_tag_structure` VALUES ('502', 'DISSERTATION NOTE', 'DISSERTATION NOTE', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13010 INSERT INTO `marc_tag_structure` VALUES ('503', 'BIBLIOGRAPHIC HISTORY NOTE (BK CF MU) [OBSOLETE]', 'BIBLIOGRAPHIC HISTORY NOTE (BK CF MU) [OBSOLETE]', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13011 INSERT INTO `marc_tag_structure` VALUES ('504', 'BIBLIOGRAPHY, ETC. NOTE', 'BIBLIOGRAPHY, ETC. NOTE', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13012 INSERT INTO `marc_tag_structure` VALUES ('505', 'FORMATTED CONTENTS NOTE', 'FORMATTED CONTENTS NOTE', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13013 INSERT INTO `marc_tag_structure` VALUES ('506', 'RATING/RESTRICTIONS ON ACCESS NOTE', 'RESTRICTIONS ON ACCESS NOTE', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13014 INSERT INTO `marc_tag_structure` VALUES ('507', 'SCALE NOTE FOR GRAPHIC MATERIAL', 'SCALE NOTE FOR GRAPHIC MATERIAL', 0, 0, NULL, 'ASMP_VIDEORECORDINGS');
13015 INSERT INTO `marc_tag_structure` VALUES ('508', 'CREATION/PRODUCTION CREDITS NOTE', 'CREATION/PRODUCTION CREDITS NOTE', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13016 INSERT INTO `marc_tag_structure` VALUES ('509', 'INFORMAL NOTES (RLIN)', 'INFORMAL NOTES (RLIN)', 0, 0, NULL, 'ASMP_VIDEORECORDINGS');
13017 INSERT INTO `marc_tag_structure` VALUES ('510', 'CITATION/REFERENCES NOTE', 'CITATION/REFERENCES NOTE', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13018 INSERT INTO `marc_tag_structure` VALUES ('511', 'PARTICIPANT OR PERFORMER NOTE', 'PARTICIPANT OR PERFORMER NOTE', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13019 INSERT INTO `marc_tag_structure` VALUES ('512', 'EARLIER OR LATER VOLUMES SEPARATELY CATALOGED NOTE (SE) [OBSOLETE]', 'EARLIER OR LATER VOLUMES SEPARATELY CATALOGED NOTE (SE) [OBSOLETE]', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13020 INSERT INTO `marc_tag_structure` VALUES ('513', 'TYPE OF REPORT AND PERIOD COVERED NOTE', 'TYPE OF REPORT AND PERIOD COVERED NOTE', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13021 INSERT INTO `marc_tag_structure` VALUES ('514', 'DATA QUALITY NOTE', 'DATA QUALITY NOTE', 0, 0, NULL, 'ASMP_VIDEORECORDINGS');
13022 INSERT INTO `marc_tag_structure` VALUES ('515', 'NUMBERING PECULIARITIES NOTE', 'NUMBERING PECULIARITIES NOTE', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13023 INSERT INTO `marc_tag_structure` VALUES ('516', 'REGION CODE/TYPE OF COMPUTER FILE OR DATA NOTE', 'TYPE OF COMPUTER FILE OR DATA NOTE', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13024 INSERT INTO `marc_tag_structure` VALUES ('517', 'CATEGORIES OF FILMS NOTE (ARCHIVAL) (VM) [OBSOLETE]', 'CATEGORIES OF FILMS NOTE (ARCHIVAL) (VM) [OBSOLETE]', 0, 0, NULL, 'ASMP_VIDEORECORDINGS');
13025 INSERT INTO `marc_tag_structure` VALUES ('518', 'DATE/TIME AND PLACE OF AN EVENT NOTE', 'DATE/TIME AND PLACE OF AN EVENT NOTE', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13026 INSERT INTO `marc_tag_structure` VALUES ('520', 'SUMMARY, ETC.', 'SUMMARY, ETC.', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13027 INSERT INTO `marc_tag_structure` VALUES ('521', 'GRADE LEVEL/TARGET AUDIENCE NOTE', 'TARGET AUDIENCE NOTE', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13028 INSERT INTO `marc_tag_structure` VALUES ('522', 'GEOGRAPHIC DETAILS/GEOGRAPHIC COVERAGE NOTE', 'GEOGRAPHIC COVERAGE NOTE', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13029 INSERT INTO `marc_tag_structure` VALUES ('523', 'TIME PERIOD OF CONTENT NOTE (CF) [OBSOLETE]', 'TIME PERIOD OF CONTENT NOTE (CF) [OBSOLETE]', 0, 0, NULL, 'ASMP_VIDEORECORDINGS');
13030 INSERT INTO `marc_tag_structure` VALUES ('524', 'PREFERRED CITATION OF DESCRIBED MATERIALS NOTE', 'PREFERRED CITATION OF DESCRIBED MATERIALS NOTE', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13031 INSERT INTO `marc_tag_structure` VALUES ('525', 'SUPPLEMENT NOTE', 'SUPPLEMENT NOTE', 0, 0, NULL, 'ASMP_VIDEORECORDINGS');
13032 INSERT INTO `marc_tag_structure` VALUES ('526', 'STUDY PROGRAM INFORMATION NOTE', 'STUDY PROGRAM INFORMATION NOTE', 0, 0, NULL, 'ASMP_VIDEORECORDINGS');
13033 INSERT INTO `marc_tag_structure` VALUES ('527', 'CENSORSHIP NOTE (VM) [OBSOLETE]', 'CENSORSHIP NOTE (VM) [OBSOLETE]', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13034 INSERT INTO `marc_tag_structure` VALUES ('530', 'ADDITIONAL PHYSICAL FORM AVAILABLE NOTE', 'ADDITIONAL PHYSICAL FORM AVAILABLE NOTE', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13035 INSERT INTO `marc_tag_structure` VALUES ('533', 'REPRODUCTION NOTE', 'REPRODUCTION NOTE', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13036 INSERT INTO `marc_tag_structure` VALUES ('534', 'ORIGINAL VERSION NOTE', 'ORIGINAL VERSION NOTE', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13037 INSERT INTO `marc_tag_structure` VALUES ('535', 'LOCATION OF ORIGINALS/DUPLICATES NOTE', 'LOCATION OF ORIGINALS/DUPLICATES NOTE', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13038 INSERT INTO `marc_tag_structure` VALUES ('536', 'FUNDING INFORMATION NOTE', 'FUNDING INFORMATION NOTE', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13039 INSERT INTO `marc_tag_structure` VALUES ('537', 'SOURCE OF DATA NOTE (CF) [OBSOLETE]', 'SOURCE OF DATA NOTE (CF) [OBSOLETE]', 0, 0, NULL, 'ASMP_VIDEORECORDINGS');
13040 INSERT INTO `marc_tag_structure` VALUES ('538', 'SYSTEM DETAILS NOTE', 'SYSTEM DETAILS NOTE', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13041 INSERT INTO `marc_tag_structure` VALUES ('540', 'TERMS GOVERNING USE AND REPRODUCTION NOTE', 'TERMS GOVERNING USE AND REPRODUCTION NOTE', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13042 INSERT INTO `marc_tag_structure` VALUES ('541', 'ACQUISITION INFO--IMMEDIATE SOURCE OF ACQUISITION NOTE', 'IMMEDIATE SOURCE OF ACQUISITION NOTE', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13043 INSERT INTO `marc_tag_structure` VALUES ('543', 'SOLICITATION INFORMATION NOTE (AM) [OBSOLETE]', 'SOLICITATION INFORMATION NOTE (AM) [OBSOLETE]', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13044 INSERT INTO `marc_tag_structure` VALUES ('544', 'LOCATION OF OTHER ARCHIVAL MATERIALS NOTE', 'LOCATION OF OTHER ARCHIVAL MATERIALS NOTE', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13045 INSERT INTO `marc_tag_structure` VALUES ('546', 'LANGUAGE/TRANSLATION INFO', 'LANGUAGE NOTE', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13046 INSERT INTO `marc_tag_structure` VALUES ('547', 'FORMER TITLE COMPLEXITY NOTE', 'FORMER TITLE COMPLEXITY NOTE', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13047 INSERT INTO `marc_tag_structure` VALUES ('550', 'ISSUING BODY NOTE', 'ISSUING BODY NOTE', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13048 INSERT INTO `marc_tag_structure` VALUES ('552', 'ENTITY AND ATTRIBUTE INFORMATION NOTE', 'ENTITY AND ATTRIBUTE INFORMATION NOTE', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13049 INSERT INTO `marc_tag_structure` VALUES ('555', 'CUMULATIVE INDEX/FINDING AIDS NOTE', 'CUMULATIVE INDEX/FINDING AIDS NOTE', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13050 INSERT INTO `marc_tag_structure` VALUES ('556', 'INFORMATION ABOUT DOCUMENTATION NOTE', 'INFORMATION ABOUT DOCUMENTATION NOTE', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13051 INSERT INTO `marc_tag_structure` VALUES ('561', 'OWNERSHIP AND CUSTODIAL HISTORY', 'OWNERSHIP AND CUSTODIAL HISTORY', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13052 INSERT INTO `marc_tag_structure` VALUES ('562', 'COPY AND VERSION IDENTIFICATION NOTE', 'COPY AND VERSION IDENTIFICATION NOTE', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13053 INSERT INTO `marc_tag_structure` VALUES ('563', 'BINDING INFORMATION', 'BINDING INFORMATION', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13054 INSERT INTO `marc_tag_structure` VALUES ('565', 'CASE FILE CHARACTERISTICS NOTE', 'CASE FILE CHARACTERISTICS NOTE', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13055 INSERT INTO `marc_tag_structure` VALUES ('567', 'METHODOLOGY NOTE', 'METHODOLOGY NOTE', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13056 INSERT INTO `marc_tag_structure` VALUES ('570', 'EDITOR NOTE (SE) [OBSOLETE]', 'EDITOR NOTE (SE) [OBSOLETE]', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13057 INSERT INTO `marc_tag_structure` VALUES ('580', 'LINKING ENTRY COMPLEXITY NOTE', 'LINKING ENTRY COMPLEXITY NOTE', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13058 INSERT INTO `marc_tag_structure` VALUES ('581', 'PUBLICATIONS ABOUT DESCRIBED MATERIALS NOTE', 'PUBLICATIONS ABOUT DESCRIBED MATERIALS NOTE', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13059 INSERT INTO `marc_tag_structure` VALUES ('582', 'RELATED COMPUTER FILES NOTE (CF) [OBSOLETE]', 'RELATED COMPUTER FILES NOTE (CF) [OBSOLETE]', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13060 INSERT INTO `marc_tag_structure` VALUES ('583', 'ACQUISITION INFO--ACTION NOTE', 'ACTION NOTE', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13061 INSERT INTO `marc_tag_structure` VALUES ('584', 'ACCUMULATION AND FREQUENCY OF USE NOTE', 'ACCUMULATION AND FREQUENCY OF USE NOTE', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13062 INSERT INTO `marc_tag_structure` VALUES ('585', 'EXHIBITIONS NOTE', 'EXHIBITIONS NOTE', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13063 INSERT INTO `marc_tag_structure` VALUES ('586', 'AWARDS', 'AWARDS NOTE', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13064 INSERT INTO `marc_tag_structure` VALUES ('590', 'LOCAL NOTE (RLIN)', 'LOCAL NOTE (RLIN)', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13065 INSERT INTO `marc_tag_structure` VALUES ('600', 'SUBJECT--PERSONAL NAME', 'SUBJECT ADDED ENTRY--PERSONAL NAME', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13066 INSERT INTO `marc_tag_structure` VALUES ('610', 'SUBJECT--CORPORATE NAME', 'SUBJECT ADDED ENTRY--CORPORATE NAME', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13067 INSERT INTO `marc_tag_structure` VALUES ('611', 'SUBJECT--MEETING NAME', 'SUBJECT ADDED ENTRY--MEETING NAME', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13068 INSERT INTO `marc_tag_structure` VALUES ('630', 'SUBJECT--UNIFORM TITLE', 'SUBJECT ADDED ENTRY--UNIFORM TITLE', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13069 INSERT INTO `marc_tag_structure` VALUES ('648', 'SUBJECT--CHRONOLOGICAL TERM', 'SUBJECT ADDED ENTRY--CHRONOLOGICAL TERM', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13070 INSERT INTO `marc_tag_structure` VALUES ('650', 'SUBJECT--TOPIC', 'SUBJECT ADDED ENTRY--TOPICAL TERM', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13071 INSERT INTO `marc_tag_structure` VALUES ('651', 'SUBJECT--GEOGRAPHIC NAME', 'SUBJECT ADDED ENTRY--GEOGRAPHIC NAME', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13072 INSERT INTO `marc_tag_structure` VALUES ('652', 'SUBJECT ADDED ENTRY--REVERSE GEOGRAPHIC (BK MP SE) [OBSOLETE]', 'SUBJECT ADDED ENTRY--REVERSE GEOGRAPHIC (BK MP SE) [OBSOLETE]', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13073 INSERT INTO `marc_tag_structure` VALUES ('653', 'SUBJECT--UNCONTROLLED', 'INDEX TERM--UNCONTROLLED', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13074 INSERT INTO `marc_tag_structure` VALUES ('654', 'SUBJECT ADDED ENTRY--FACETED TOPICAL TERM', 'SUBJECT ADDED ENTRY--FACETED TOPICAL TERM', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13075 INSERT INTO `marc_tag_structure` VALUES ('655', 'SUBJECT--GENRE/FORM', 'INDEX TERM--GENRE/FORM', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13076 INSERT INTO `marc_tag_structure` VALUES ('656', 'SUBJECT--OCCUPATION', 'INDEX TERM--OCCUPATION', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13077 INSERT INTO `marc_tag_structure` VALUES ('657', 'SUBJECT--FUNCTION', 'INDEX TERM--FUNCTION', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13078 INSERT INTO `marc_tag_structure` VALUES ('658', 'SUBJECT--CURRICULUM OBJECTIVE', 'INDEX TERM--CURRICULUM OBJECTIVE', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13079 INSERT INTO `marc_tag_structure` VALUES ('662', 'SUBJECT ADDED ENTRY--HIERARCHICAL PLACE NAME', 'SUBJECT ADDED ENTRY--HIERARCHICAL PLACE NAME', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13080 INSERT INTO `marc_tag_structure` VALUES ('690', 'LOCAL SUBJECT--TOPICAL TERM (OCLC, RLIN)', 'LOCAL SUBJECT ADDED ENTRY--TOPICAL TERM (OCLC, RLIN)', 1, 0, '', 'ASMP_VIDEORECORDINGS');
13081 INSERT INTO `marc_tag_structure` VALUES ('691', 'LOCAL SUBJECT ADDED ENTRY--GEOGRAPHIC NAME (RLIN)', 'LOCAL SUBJECT ADDED ENTRY--GEOGRAPHIC NAME (RLIN)', 1, 0, '', 'ASMP_VIDEORECORDINGS');
13082 INSERT INTO `marc_tag_structure` VALUES ('696', 'LOCAL SUBJECT ADDED ENTRY--PERSONAL NAME (RLIN)', 'LOCAL SUBJECT ADDED ENTRY--PERSONAL NAME (RLIN)', 1, 0, '', 'ASMP_VIDEORECORDINGS');
13083 INSERT INTO `marc_tag_structure` VALUES ('697', 'LOCAL SUBJECT ADDED ENTRY--CORPORATE NAME (RLIN)', 'LOCAL SUBJECT ADDED ENTRY--CORPORATE NAME (RLIN)', 1, 0, '', 'ASMP_VIDEORECORDINGS');
13084 INSERT INTO `marc_tag_structure` VALUES ('698', 'LOCAL SUBJECT ADDED ENTRY--MEETING NAME (RLIN)', 'LOCAL SUBJECT ADDED ENTRY--MEETING NAME (RLIN)', 1, 0, '', 'ASMP_VIDEORECORDINGS');
13085 INSERT INTO `marc_tag_structure` VALUES ('699', 'LOCAL SUBJECT ADDED ENTRY--UNIFORM TITLE (RLIN)', 'LOCAL SUBJECT ADDED ENTRY--UNIFORM TITLE (RLIN)', 1, 0, '', 'ASMP_VIDEORECORDINGS');
13086 INSERT INTO `marc_tag_structure` VALUES ('700', 'ADDED ENTRY--PERSONAL NAME', 'ADDED ENTRY--PERSONAL NAME', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13087 INSERT INTO `marc_tag_structure` VALUES ('705', 'ADDED ENTRY--PERSONAL NAME (PERFORMER) (MU) [OBSOLETE]', 'ADDED ENTRY--PERSONAL NAME (PERFORMER) (MU) [OBSOLETE]', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13088 INSERT INTO `marc_tag_structure` VALUES ('710', 'ADDED ENTRY--CORPORATE NAME', 'ADDED ENTRY--CORPORATE NAME', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13089 INSERT INTO `marc_tag_structure` VALUES ('711', 'ADDED ENTRY--MEETING NAME', 'ADDED ENTRY--MEETING NAME', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13090 INSERT INTO `marc_tag_structure` VALUES ('715', 'ADDED ENTRY--CORPORATE NAME (PERFORMER) (MU) [OBSOLETE]', 'ADDED ENTRY--CORPORATE NAME (PERFORMER) (MU) [OBSOLETE]', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13091 INSERT INTO `marc_tag_structure` VALUES ('720', 'ADDED ENTRY--UNCONTROLLED NAME (ACTOR, ETC.)', 'ADDED ENTRY--UNCONTROLLED NAME', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13092 INSERT INTO `marc_tag_structure` VALUES ('730', 'ADDED ENTRY--UNIFORM TITLE', 'ADDED ENTRY--UNIFORM TITLE', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13093 INSERT INTO `marc_tag_structure` VALUES ('740', 'ADDED ENTRY--UNCONTROLLED RELATED/ANALYTICAL TITLE', 'ADDED ENTRY--UNCONTROLLED RELATED/ANALYTICAL TITLE', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13094 INSERT INTO `marc_tag_structure` VALUES ('752', 'ADDED ENTRY--HIERARCHICAL PLACE NAME', 'ADDED ENTRY--HIERARCHICAL PLACE NAME', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13095 INSERT INTO `marc_tag_structure` VALUES ('753', 'SYSTEM DETAILS ACCESS TO COMPUTER FILES', 'SYSTEM DETAILS ACCESS TO COMPUTER FILES', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13096 INSERT INTO `marc_tag_structure` VALUES ('754', 'ADDED ENTRY--TAXONOMIC IDENTIFICATION', 'ADDED ENTRY--TAXONOMIC IDENTIFICATION', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13097 INSERT INTO `marc_tag_structure` VALUES ('755', 'ADDED ENTRY--PHYSICAL CHARACTERISTICS [OBSOLETE]', 'ADDED ENTRY--PHYSICAL CHARACTERISTICS [OBSOLETE]', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13098 INSERT INTO `marc_tag_structure` VALUES ('760', 'MAIN SERIES ENTRY', 'MAIN SERIES ENTRY', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13099 INSERT INTO `marc_tag_structure` VALUES ('762', 'SUBSERIES ENTRY', 'SUBSERIES ENTRY', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13100 INSERT INTO `marc_tag_structure` VALUES ('765', 'ORIGINAL LANGUAGE ENTRY', 'ORIGINAL LANGUAGE ENTRY', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13101 INSERT INTO `marc_tag_structure` VALUES ('767', 'TRANSLATION ENTRY', 'TRANSLATION ENTRY', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13102 INSERT INTO `marc_tag_structure` VALUES ('770', 'SUPPLEMENT/SPECIAL ISSUE ENTRY', 'SUPPLEMENT/SPECIAL ISSUE ENTRY', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13103 INSERT INTO `marc_tag_structure` VALUES ('772', 'SUPPLEMENT PARENT ENTRY', 'SUPPLEMENT PARENT ENTRY', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13104 INSERT INTO `marc_tag_structure` VALUES ('773', 'HOST ITEM ENTRY', 'HOST ITEM ENTRY', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13105 INSERT INTO `marc_tag_structure` VALUES ('774', 'CONSTITUENT UNIT ENTRY', 'CONSTITUENT UNIT ENTRY', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13106 INSERT INTO `marc_tag_structure` VALUES ('775', 'OTHER EDITION ENTRY', 'OTHER EDITION ENTRY', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13107 INSERT INTO `marc_tag_structure` VALUES ('776', 'ADDITIONAL PHYSICAL FORM ENTRY', 'ADDITIONAL PHYSICAL FORM ENTRY', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13108 INSERT INTO `marc_tag_structure` VALUES ('777', 'ISSUED WITH ENTRY', 'ISSUED WITH ENTRY', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13109 INSERT INTO `marc_tag_structure` VALUES ('780', 'PRECEDING ENTRY', 'PRECEDING ENTRY', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13110 INSERT INTO `marc_tag_structure` VALUES ('785', 'SUCCEEDING ENTRY', 'SUCCEEDING ENTRY', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13111 INSERT INTO `marc_tag_structure` VALUES ('786', 'DATA SOURCE ENTRY', 'DATA SOURCE ENTRY', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13112 INSERT INTO `marc_tag_structure` VALUES ('787', 'NONSPECIFIC RELATIONSHIP ENTRY', 'NONSPECIFIC RELATIONSHIP ENTRY', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13113 INSERT INTO `marc_tag_structure` VALUES ('789', 'COMPONENT ITEM ENTRY (RLIN)', 'COMPONENT ITEM ENTRY (RLIN)', 1, 0, '', 'ASMP_VIDEORECORDINGS');
13114 INSERT INTO `marc_tag_structure` VALUES ('796', 'LOCAL ADDED ENTRY--PERSONAL NAME (RLIN)', 'LOCAL ADDED ENTRY--PERSONAL NAME (RLIN)', 1, 0, '', 'ASMP_VIDEORECORDINGS');
13115 INSERT INTO `marc_tag_structure` VALUES ('797', 'LOCAL ADDED ENTRY--CORPORATE NAME (RLIN)', 'LOCAL ADDED ENTRY--CORPORATE NAME (RLIN)', 1, 0, '', 'ASMP_VIDEORECORDINGS');
13116 INSERT INTO `marc_tag_structure` VALUES ('798', 'LOCAL ADDED ENTRY--MEETING NAME (RLIN)', 'LOCAL ADDED ENTRY--MEETING NAME (RLIN)', 1, 0, '', 'ASMP_VIDEORECORDINGS');
13117 INSERT INTO `marc_tag_structure` VALUES ('799', 'LOCAL ADDED ENTRY--UNIFORM TITLE (RLIN)', 'LOCAL ADDED ENTRY--UNIFORM TITLE (RLIN)', 1, 0, '', 'ASMP_VIDEORECORDINGS');
13118 INSERT INTO `marc_tag_structure` VALUES ('800', 'SERIES ADDED ENTRY--PERSONAL NAME', 'SERIES ADDED ENTRY--PERSONAL NAME', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13119 INSERT INTO `marc_tag_structure` VALUES ('810', 'SERIES ADDED ENTRY--CORPORATE NAME', 'SERIES ADDED ENTRY--CORPORATE NAME', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13120 INSERT INTO `marc_tag_structure` VALUES ('811', 'SERIES ADDED ENTRY--MEETING NAME', 'SERIES ADDED ENTRY--MEETING NAME', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13121 INSERT INTO `marc_tag_structure` VALUES ('830', 'SERIES ADDED ENTRY--UNIFORM TITLE', 'SERIES ADDED ENTRY--UNIFORM TITLE', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13122 INSERT INTO `marc_tag_structure` VALUES ('840', 'SERIES ADDED ENTRY--TITLE [OBSOLETE]', 'SERIES ADDED ENTRY--TITLE [OBSOLETE]', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13123 INSERT INTO `marc_tag_structure` VALUES ('841', 'HOLDINGS CODED DATA VALUES', 'HOLDINGS CODED DATA VALUES', 0, 0, NULL, 'ASMP_VIDEORECORDINGS');
13124 INSERT INTO `marc_tag_structure` VALUES ('842', 'TEXTUAL PHYSICAL FORM DESIGNATOR', 'TEXTUAL PHYSICAL FORM DESIGNATOR', 0, 0, NULL, 'ASMP_VIDEORECORDINGS');
13125 INSERT INTO `marc_tag_structure` VALUES ('843', 'REPRODUCTION NOTE', 'REPRODUCTION NOTE', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13126 INSERT INTO `marc_tag_structure` VALUES ('844', 'NAME OF UNIT', 'NAME OF UNIT', 0, 0, NULL, 'ASMP_VIDEORECORDINGS');
13127 INSERT INTO `marc_tag_structure` VALUES ('845', 'TERMS GOVERNING USE AND REPRODUCTION NOTE', 'TERMS GOVERNING USE AND REPRODUCTION NOTE', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13128 INSERT INTO `marc_tag_structure` VALUES ('850', 'HOLDING INSTITUTION', 'HOLDING INSTITUTION', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13129 INSERT INTO `marc_tag_structure` VALUES ('851', 'LOCATION [OBSOLETE]', 'LOCATION [OBSOLETE]', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13130 INSERT INTO `marc_tag_structure` VALUES ('852', 'LOCATION/CALL NUMBER', 'LOCATION/CALL NUMBER', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13131 INSERT INTO `marc_tag_structure` VALUES ('853', 'CAPTIONS AND PATTERN--BASIC BIBLIOGRAPHIC UNIT', 'CAPTIONS AND PATTERN--BASIC BIBLIOGRAPHIC UNIT', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13132 INSERT INTO `marc_tag_structure` VALUES ('854', 'CAPTIONS AND PATTERN--SUPPLEMENTARY MATERIAL', 'CAPTIONS AND PATTERN--SUPPLEMENTARY MATERIAL', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13133 INSERT INTO `marc_tag_structure` VALUES ('855', 'CAPTIONS AND PATTERN--INDEXES', 'CAPTIONS AND PATTERN--INDEXES', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13134 INSERT INTO `marc_tag_structure` VALUES ('856', 'ELECTRONIC LOCATION AND ACCESS', 'ELECTRONIC LOCATION AND ACCESS', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13135 INSERT INTO `marc_tag_structure` VALUES ('859', 'LOCAL CONTROL INFORMATION (RLIN)', 'LOCAL CONTROL INFORMATION (RLIN)', 1, 0, '', 'ASMP_VIDEORECORDINGS');
13136 INSERT INTO `marc_tag_structure` VALUES ('863', 'ENUMERATION AND CHRONOLOGY--BASIC BIBLIOGRAPHIC UNIT', 'ENUMERATION AND CHRONOLOGY--BASIC BIBLIOGRAPHIC UNIT', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13137 INSERT INTO `marc_tag_structure` VALUES ('864', 'ENUMERATION AND CHRONOLOGY--SUPPLEMENTARY MATERIAL', 'ENUMERATION AND CHRONOLOGY--SUPPLEMENTARY MATERIAL', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13138 INSERT INTO `marc_tag_structure` VALUES ('865', 'ENUMERATION AND CHRONOLOGY--INDEXES', 'ENUMERATION AND CHRONOLOGY--INDEXES', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13139 INSERT INTO `marc_tag_structure` VALUES ('866', 'TEXTUAL HOLDINGS--BASIC BIBLIOGRAPHIC UNIT', 'TEXTUAL HOLDINGS--BASIC BIBLIOGRAPHIC UNIT', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13140 INSERT INTO `marc_tag_structure` VALUES ('867', 'TEXTUAL HOLDINGS--SUPPLEMENTARY MATERIAL', 'TEXTUAL HOLDINGS--SUPPLEMENTARY MATERIAL', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13141 INSERT INTO `marc_tag_structure` VALUES ('868', 'TEXTUAL HOLDINGS--INDEXES', 'TEXTUAL HOLDINGS--INDEXES', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13142 INSERT INTO `marc_tag_structure` VALUES ('870', 'VARIANT PERSONAL NAME (SE) [OBSOLETE]', 'VARIANT PERSONAL NAME (SE) [OBSOLETE]', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13143 INSERT INTO `marc_tag_structure` VALUES ('871', 'VARIANT CORPORATE NAME (SE)[OBSOLETE]', 'VARIANT CORPORATE NAME (SE)[OBSOLETE]', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13144 INSERT INTO `marc_tag_structure` VALUES ('872', 'VARIANT CONFERENCE OR MEETING NAME (SE) [OBSOLETE]', 'VARIANT CONFERENCE OR MEETING NAME (SE) [OBSOLETE]', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13145 INSERT INTO `marc_tag_structure` VALUES ('873', 'VARIANT UNIFORM TITLE HEADING (SE) [OBSOLETE]', 'VARIANT UNIFORM TITLE HEADING (SE) [OBSOLETE]', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13146 INSERT INTO `marc_tag_structure` VALUES ('876', 'ITEM INFORMATION--BASIC BIBLIOGRAPHIC UNIT', 'ITEM INFORMATION--BASIC BIBLIOGRAPHIC UNIT', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13147 INSERT INTO `marc_tag_structure` VALUES ('877', 'ITEM INFORMATION--SUPPLEMENTARY MATERIAL', 'ITEM INFORMATION--SUPPLEMENTARY MATERIAL', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13148 INSERT INTO `marc_tag_structure` VALUES ('878', 'ITEM INFORMATION--INDEXES', 'ITEM INFORMATION--INDEXES', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13149 INSERT INTO `marc_tag_structure` VALUES ('880', 'ALTERNATE GRAPHIC REPRESENTATION', 'ALTERNATE GRAPHIC REPRESENTATION', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13150 INSERT INTO `marc_tag_structure` VALUES ('886', 'FOREIGN MARC INFORMATION FIELD', 'FOREIGN MARC INFORMATION FIELD', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13151 INSERT INTO `marc_tag_structure` VALUES ('887', 'NON-MARC INFORMATION FIELD', 'NON-MARC INFORMATION FIELD', 1, 0, NULL, 'ASMP_VIDEORECORDINGS');
13152 INSERT INTO `marc_tag_structure` VALUES ('896', 'LOCAL SERIES ADDED ENTRY--PERSONAL NAME (RLIN)', 'LOCAL SERIES ADDED ENTRY--PERSONAL NAME (RLIN)', 1, 0, '', 'ASMP_VIDEORECORDINGS');
13153 INSERT INTO `marc_tag_structure` VALUES ('897', 'LOCAL SERIES ADDED ENTRY--CORPORATE NAME (RLIN)', 'LOCAL SERIES ADDED ENTRY--CORPORATE NAME (RLIN)', 1, 0, '', 'ASMP_VIDEORECORDINGS');
13154 INSERT INTO `marc_tag_structure` VALUES ('898', 'LOCAL SERIES ADDED ENTRY--MEETING NAME (RLIN)', 'LOCAL SERIES ADDED ENTRY--MEETING NAME (RLIN)', 1, 0, '', 'ASMP_VIDEORECORDINGS');
13155 INSERT INTO `marc_tag_structure` VALUES ('899', 'LOCAL SERIES ADDED ENTRY--UNIFORM TITLE (RLIN)', 'LOCAL SERIES ADDED ENTRY--UNIFORM TITLE (RLIN)', 1, 0, '', 'ASMP_VIDEORECORDINGS');
13156 INSERT INTO `marc_tag_structure` VALUES ('89e', 'ERRONEOUS FIELD, ERR (RLIN)', 'ERRONEOUS FIELD, ERR (RLIN)', 1, 0, '', 'ASMP_VIDEORECORDINGS');
13157 INSERT INTO `marc_tag_structure` VALUES ('900', 'EQUIVALENCE OR CROSS-REFERENCE-PERSONAL NAME [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-PERSONAL NAME [LOCAL, CANADA]', 1, 0, '', 'ASMP_VIDEORECORDINGS');
13158 INSERT INTO `marc_tag_structure` VALUES ('901', 'LOCAL DATA ELEMENT A, LDA (RLIN)', 'LOCAL DATA ELEMENT A, LDA (RLIN)', 1, 0, '', 'ASMP_VIDEORECORDINGS');
13159 INSERT INTO `marc_tag_structure` VALUES ('902', 'LOCAL DATA ELEMENT B, LDB (RLIN)', 'LOCAL DATA ELEMENT B, LDB (RLIN)', 1, 0, '', 'ASMP_VIDEORECORDINGS');
13160 INSERT INTO `marc_tag_structure` VALUES ('903', 'LOCAL DATA ELEMENT C, LDC (RLIN)', 'LOCAL DATA ELEMENT C, LDC (RLIN)', 1, 0, '', 'ASMP_VIDEORECORDINGS');
13161 INSERT INTO `marc_tag_structure` VALUES ('904', 'LOCAL DATA ELEMENT D, LDD (RLIN)', 'LOCAL DATA ELEMENT D, LDD (RLIN)', 1, 0, '', 'ASMP_VIDEORECORDINGS');
13162 INSERT INTO `marc_tag_structure` VALUES ('905', 'LOCAL DATA ELEMENT E, LDE (RLIN)', 'LOCAL DATA ELEMENT E, LDE (RLIN)', 1, 0, '', 'ASMP_VIDEORECORDINGS');
13163 INSERT INTO `marc_tag_structure` VALUES ('906', 'LOCAL DATA ELEMENT F, LDF (RLIN)', 'LOCAL DATA ELEMENT F, LDF (RLIN)', 1, 0, '', 'ASMP_VIDEORECORDINGS');
13164 INSERT INTO `marc_tag_structure` VALUES ('907', 'LOCAL DATA ELEMENT G, LDG (RLIN)', 'LOCAL DATA ELEMENT G, LDG (RLIN)', 1, 0, '', 'ASMP_VIDEORECORDINGS');
13165 INSERT INTO `marc_tag_structure` VALUES ('908', 'PUT COMMAND PARAMETER (RLIN)', 'PUT COMMAND PARAMETER (RLIN)', 0, 0, '', 'ASMP_VIDEORECORDINGS');
13166 INSERT INTO `marc_tag_structure` VALUES ('910', 'EQUIVALENCE OR CROSS-REFERENCE-CORPORATE NAME [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-CORPORATE NAME [LOCAL, CANADA]', 1, 0, '', 'ASMP_VIDEORECORDINGS');
13167 INSERT INTO `marc_tag_structure` VALUES ('91o', 'USER-OPTION DATA (COLC)', 'USER-OPTION DATA (OCLC)', 0, 0, '', 'ASMP_VIDEORECORDINGS');
13168 INSERT INTO `marc_tag_structure` VALUES ('91r', 'RLG STANDARDS NOTE (RLIN)', 'RLG STANDARDS NOTE (RLIN)', 1, 0, '', 'ASMP_VIDEORECORDINGS');
13169 INSERT INTO `marc_tag_structure` VALUES ('911', 'EQUIVALENCE OR CROSS-REFERENCE-CONFERENCE OR MEETING NAME [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-CONFERENCE OR MEETING NAME [LOCAL, CANADA]', 1, 0, '', 'ASMP_VIDEORECORDINGS');
13170 INSERT INTO `marc_tag_structure` VALUES ('930', 'EQUIVALENCE OR CROSS-REFERENCE-UNIFORM TITLE HEADING [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-UNIFORM TITLE HEADING [LOCAL, CANADA]', 1, 0, '', 'ASMP_VIDEORECORDINGS');
13171 INSERT INTO `marc_tag_structure` VALUES ('93r', 'SUMMARY HOLDINGS STATEMENT (RLIN)', 'SUMMARY HOLDINGS STATEMENT (RLIN)', 1, 0, '', 'ASMP_VIDEORECORDINGS');
13172 INSERT INTO `marc_tag_structure` VALUES ('936', 'OCLC/CONSER MISCELLANEOUS DATA (OCLC); PIECE USED FOR CATALOGING (pre-AACR2) (RLIN)', 'OCLC/CONSER MISCELLANEOUS DATA (OCLC); PIECE USED FOR CATALOGING (pre-AACR2) (RLIN)', 0, 0, '', 'ASMP_VIDEORECORDINGS');
13173 INSERT INTO `marc_tag_structure` VALUES ('940', 'EQUIVALENCE OR CROSS-REFERENCE--UNIFORM TITLE [OBSOLETE] [CAN/MARC only]', 'EQUIVALENCE OR CROSS-REFERENCE--UNIFORM TITLE [OBSOLETE] [CAN/MARC only]', 1, 0, '', 'ASMP_VIDEORECORDINGS');
13174 INSERT INTO `marc_tag_structure` VALUES ('941', 'EQUIVALENCE OR CROSS-REFERENCE--ROMANIZED TITLE [OBSOLETE] [CAN/MARC only]', 'EQUIVALENCE OR CROSS-REFERENCE--ROMANIZED TITLE [OBSOLETE] [CAN/MARC only]', 1, 0, '', 'ASMP_VIDEORECORDINGS');
13175 INSERT INTO `marc_tag_structure` VALUES ('943', 'EQUIVALENCE OR CROSS-REFERENCE--COLLECTIVE TITLE [OBSOLETE] [CAN/MARC only]', 'EQUIVALENCE OR CROSS-REFERENCE--COLLECTIVE TITLE [OBSOLETE] [CAN/MARC only]', 1, 0, '', 'ASMP_VIDEORECORDINGS');
13176 INSERT INTO `marc_tag_structure` VALUES ('945', 'LOCAL PROCESSING INFORMATION (OCLC)', 'LOCAL PROCESSING INFORMATION (OCLC)', 1, 0, '', 'ASMP_VIDEORECORDINGS');
13177 INSERT INTO `marc_tag_structure` VALUES ('94c', 'EQUIVALENCE OR CROSS-REFERENCE--TITLE [OBSOLETE] [CAN/MARC only]', 'EQUIVALENCE OR CROSS-REFERENCE--TITLE [OBSOLETE] [CAN/MARC only]', 1, 0, '', 'ASMP_VIDEORECORDINGS');
13178 INSERT INTO `marc_tag_structure` VALUES ('946', 'LOCAL PROCESSING INFORMATION (OCLC)', 'LOCAL PROCESSING INFORMATION (OCLC)', 1, 0, '', 'ASMP_VIDEORECORDINGS');
13179 INSERT INTO `marc_tag_structure` VALUES ('947', 'LOCAL PROCESSING INFORMATION (OCLC)', 'LOCAL PROCESSING INFORMATION (OCLC)', 1, 0, '', 'ASMP_VIDEORECORDINGS');
13180 INSERT INTO `marc_tag_structure` VALUES ('948', 'LOCAL PROCESSING INFORMATION (OCLC); SERIES PART DESIGNATOR (RLIN)', 'LOCAL PROCESSING INFORMATION (OCLC); SERIES PART DESIGNATOR (RLIN)', 1, 0, '', 'ASMP_VIDEORECORDINGS');
13181 INSERT INTO `marc_tag_structure` VALUES ('949', 'LOCAL PROCESSING INFORMATION (OCLC)', 'LOCAL PROCESSING INFORMATION (OCLC)', 1, 0, '', 'ASMP_VIDEORECORDINGS');
13182 INSERT INTO `marc_tag_structure` VALUES ('94a', 'ANALYSIS TREATMENT NOTE (RLIN)', 'ANALYSIS TREATMENT NOTE (RLIN)', 1, 0, '', 'ASMP_VIDEORECORDINGS');
13183 INSERT INTO `marc_tag_structure` VALUES ('94b', 'TREATMENT CODES (RLIN)', 'TREATMENT CODES (RLIN)', 1, 0, '', 'ASMP_VIDEORECORDINGS');
13184 INSERT INTO `marc_tag_structure` VALUES ('950', 'LOCAL HOLDINGS (RLIN)', 'LOCAL HOLDINGS (RLIN)', 1, 0, '', 'ASMP_VIDEORECORDINGS');
13185 INSERT INTO `marc_tag_structure` VALUES ('951', 'EQUIVALENCE OR CROSS-REFERENCE--GEOGRAPHIC NAME/AREA NAME [OBSOLETE] [CAN/MARC only]', 'EQUIVALENCE OR CROSS-REFERENCE-GEOGRAPHIC NAME/AREA NAME [OBSOLETE] [CAN/MARC only]', 1, 0, '', 'ASMP_VIDEORECORDINGS');
13186 INSERT INTO `marc_tag_structure` VALUES ('95c', 'EQUIVALENCE OR CROSS-REFERENCE--HIERARCHICAL PLACE NAME [OBSOLETE] [CAN/MARC only]', 'EQUIVALENCE OR CROSS-REFERENCE-HIERARCHICAL PLACE NAME [OBSOLETE] [CAN/MARC only]', 1, 0, '', 'ASMP_VIDEORECORDINGS');
13187 INSERT INTO `marc_tag_structure` VALUES ('95r', 'CLUSTER MEMBER (RLIN)', 'CLUSTER MEMBER (RLIN)', 1, 0, '', 'ASMP_VIDEORECORDINGS');
13188 INSERT INTO `marc_tag_structure` VALUES ('955', 'COPY-LEVEL INFORMATION (RLIN)', 'COPY-LEVEL INFORMATION (RLIN)', 1, 0, '', 'ASMP_VIDEORECORDINGS');
13189 INSERT INTO `marc_tag_structure` VALUES ('956', 'LOCAL ELECTRONIC LOCATION AND ACCESS (OCLC)', 'LOCAL ELECTRONIC LOCATION AND ACCESS (OCLC)', 1, 0, '', 'ASMP_VIDEORECORDINGS');
13190 INSERT INTO `marc_tag_structure` VALUES ('960', 'PHYSICAL LOCATION (RLIN)', 'PHYSICAL LOCATION (RLIN)', 1, 0, '', 'ASMP_VIDEORECORDINGS');
13191 INSERT INTO `marc_tag_structure` VALUES ('967', 'ADDITIONAL ESTC CODES (RLIN)', 'ADDITIONAL ESTC CODES (RLIN)', 1, 0, '', 'ASMP_VIDEORECORDINGS');
13192 INSERT INTO `marc_tag_structure` VALUES ('980', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--PERSONAL NAME/TITLE [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--PERSONAL NAME/TITLE [LOCAL, CANADA]', 1, 0, '', 'ASMP_VIDEORECORDINGS');
13193 INSERT INTO `marc_tag_structure` VALUES ('981', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--CORPORATE NAME/TITLE [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--CORPORATE NAME/TITLE [LOCAL, CANADA]', 1, 0, '', 'ASMP_VIDEORECORDINGS');
13194 INSERT INTO `marc_tag_structure` VALUES ('982', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--CONFERENCE OR MEETING NAME/TITLE [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--CONFERENCE OR MEETING NAME/TITLE [LOCAL, CANADA]', 1, 0, '', 'ASMP_VIDEORECORDINGS');
13195 INSERT INTO `marc_tag_structure` VALUES ('983', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--TITLE/UNIFORM TITLE [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE--SERIES STATEMENT-TITLE/UNIFORM TITLE [LOCAL, CANADA]', 1, 0, '', 'ASMP_VIDEORECORDINGS');
13196 INSERT INTO `marc_tag_structure` VALUES ('984', 'WLN AUTOMATIC HOLDINGS STATEMENT (OCLC)', 'WLN AUTOMATIC HOLDINGS STATEMENT (OCLC)', 1, 0, '', 'ASMP_VIDEORECORDINGS');
13197 INSERT INTO `marc_tag_structure` VALUES ('987', 'LOCAL ROMANIZATION/CONVERSION HISTORY (OCLC)', 'LOCAL ROMANIZATION/CONVERSION HISTORY (OCLC)', 1, 0, '', 'ASMP_VIDEORECORDINGS');
13198 INSERT INTO `marc_tag_structure` VALUES ('990', 'EQUIVALENCES OR CROSS-REFERENCES [LOCAL, CANADA]', 'EQUIVALENCES OR CROSS-REFERENCES [LOCAL, CANADA]', 1, 0, '', 'ASMP_VIDEORECORDINGS');
13199 INSERT INTO `marc_tag_structure` VALUES ('995', 'RECOMMANDATION 995 [LOCAL, UNIMARC FRANCE]', 'RECOMMANDATION 995 [LOCAL, UNIMARC FRANCE]', 1, 0, '', 'ASMP_VIDEORECORDINGS');
13200 INSERT INTO `marc_tag_structure` VALUES ('998', 'LOCAL CONTROL INFORMATION (RLIN)', 'LOCAL CONTROL INFORMATION (RLIN)', 1, 0, '', 'ASMP_VIDEORECORDINGS');
13201 INSERT INTO `marc_tag_structure` VALUES ('999', '090: LOCALLY ASSIGNED LC-TYPE CALL NUMBER (OCLC); LOCAL CALL NUMBER (RLIN)', '090: LOCALLY ASSIGNED LC-TYPE CALL NUMBER (OCLC); LOCAL CALL NUMBER (OCLC)', 1, 0, '', 'ASMP_VIDEORECORDINGS');
13202 INSERT INTO `marc_tag_structure` VALUES ('b99', 'PRIVATE LOCAL INFORMATION (RLIN)', 'PRIVATE LOCAL INFORMATION (RLIN)', 1, 0, '', 'ASMP_VIDEORECORDINGS');
13203 INSERT INTO `marc_tag_structure` VALUES ('u01', 'UNIT IDENTIFICATION, STATUS, AND TYPE (RLIN)', 'UNIT IDENTIFICATION, STATUS, AND TYPE (RLIN)', 0, 0, '', 'ASMP_VIDEORECORDINGS');
13204 INSERT INTO `marc_tag_structure` VALUES ('u02', 'STANDARD NUMBER (RLIN)', 'STANDARD NUMBER (RLIN)', 0, 0, '', 'ASMP_VIDEORECORDINGS');
13205 INSERT INTO `marc_tag_structure` VALUES ('u08', 'CODED INFORMATION (RLIN)', 'CODED INFORMATION (RLIN)', 0, 0, '', 'ASMP_VIDEORECORDINGS');
13206 INSERT INTO `marc_tag_structure` VALUES ('u10', 'REQUESTER IDENTIFICATION (RLIN)', 'REQUESTER IDENTIFICATION (RLIN)', 1, 0, '', 'ASMP_VIDEORECORDINGS');
13207 INSERT INTO `marc_tag_structure` VALUES ('u11', 'DEPARTMENT REPORT REQUEST (RLIN)', 'DEPARTMENT REPORT REQUEST (RLIN)', 1, 0, '', 'ASMP_VIDEORECORDINGS');
13208 INSERT INTO `marc_tag_structure` VALUES ('u20', 'SUPPLIER IDENTIFICATION, SUPN (RLIN)', 'SUPPLIER IDENTIFICATION, SUPN (RLIN)', 0, 0, '', 'ASMP_VIDEORECORDINGS');
13209 INSERT INTO `marc_tag_structure` VALUES ('u21', 'LIBRARY CODES FOR VENDOR AND ORDER (RLIN)', 'LIBRARY CODES FOR VENDOR AND ORDER (RLIN)', 0, 0, '', 'ASMP_VIDEORECORDINGS');
13210 INSERT INTO `marc_tag_structure` VALUES ('u22', 'SUPPLIER CODES AND CATALOG INFORMATION (RLIN)', 'SUPPLIER CODES AND CATALOG INFORMATION (RLIN)', 0, 0, '', 'ASMP_VIDEORECORDINGS');
13211 INSERT INTO `marc_tag_structure` VALUES ('u25', 'SUPPLIER REPORT(S) (RLIN)', 'SUPPLIER REPORT(S) (RLIN)', 0, 0, '', 'ASMP_VIDEORECORDINGS');
13212 INSERT INTO `marc_tag_structure` VALUES ('u30', 'INTERVALS (RLIN)', 'INTERVALS (RLIN)', 0, 0, '', 'ASMP_VIDEORECORDINGS');
13213 INSERT INTO `marc_tag_structure` VALUES ('u31', 'CLAIM COUNTS (RLIN)', 'CLAIM COUNTS (RLIN)', 0, 0, '', 'ASMP_VIDEORECORDINGS');
13214 INSERT INTO `marc_tag_structure` VALUES ('u33', 'INVOICE CLAIM (RLIN)', 'INVOICE CLAIM (RLIN)', 0, 0, '', 'ASMP_VIDEORECORDINGS');
13215 INSERT INTO `marc_tag_structure` VALUES ('u34', 'EXTENDED PROCUREMENT CLAIM AND REVIEW (RLIN)', 'EXTENDED PROCUREMENT CLAIM AND REVIEW (RLIN)', 0, 0, '', 'ASMP_VIDEORECORDINGS');
13216 INSERT INTO `marc_tag_structure` VALUES ('u40', 'EXTENDED PROCUREMENT CODES (RLIN)', 'EXTENDED PROCUREMENT CODES (RLIN)', 0, 0, '', 'ASMP_VIDEORECORDINGS');
13217 INSERT INTO `marc_tag_structure` VALUES ('u50', 'ACQUISITIONS NOTES (RLIN)', 'ACQUISITIONS NOTES (RLIN)', 0, 0, '', 'ASMP_VIDEORECORDINGS');
13218 INSERT INTO `marc_tag_structure` VALUES ('u51', 'SELECTION NOTES (RLIN)', 'SELECTION NOTES (RLIN)', 0, 0, '', 'ASMP_VIDEORECORDINGS');
13219 INSERT INTO `marc_tag_structure` VALUES ('u52', 'SUPPLIER INSTRUCTIONS AND NOTES, SINT (RLIN)', 'SUPPLIER INSTRUCTIONS AND NOTES, SINT (RLIN)', 0, 0, '', 'ASMP_VIDEORECORDINGS');
13220 INSERT INTO `marc_tag_structure` VALUES ('u53', 'CLAIM INSTRUCTIONS AND NOTES, CLNT (RLIN)', 'CLAIM INSTRUCTIONS AND NOTES, CLNT (RLIN)', 0, 0, '', 'ASMP_VIDEORECORDINGS');
13221 INSERT INTO `marc_tag_structure` VALUES ('u54', 'NOTES TO SERIALS DEPARTMENT (RLIN)', 'NOTES TO SERIALS DEPARTMENT (RLIN)', 0, 0, '', 'ASMP_VIDEORECORDINGS');
13222 INSERT INTO `marc_tag_structure` VALUES ('u55', 'CATALOGING NOTES (RLIN)', 'CATALOGING NOTES (RLIN)', 0, 0, '', 'ASMP_VIDEORECORDINGS');
13223 INSERT INTO `marc_tag_structure` VALUES ('u5f', 'ACCOUNTING NOTES (RLIN)', 'ACCOUNTING NOTES (RLIN)', 0, 0, '', 'ASMP_VIDEORECORDINGS');
13224 INSERT INTO `marc_tag_structure` VALUES ('u70', 'MATERIAL AND LOCATION INFORMATION (RLIN)', 'MATERIAL AND LOCATION INFORMATION (RLIN)', 0, 0, '', 'ASMP_VIDEORECORDINGS');
13225 INSERT INTO `marc_tag_structure` VALUES ('u71', 'FUND ACCOUNT (RLIN)', 'FUND ACCOUNT (RLIN)', 0, 0, '', 'ASMP_VIDEORECORDINGS');
13226 INSERT INTO `marc_tag_structure` VALUES ('u75', 'ITEM DETAILS (RLIN)', 'ITEM DETAILS (RLIN)', 1, 0, '', 'ASMP_VIDEORECORDINGS');
13227 INSERT INTO `marc_tag_structure` VALUES ('u7f', 'PRICE INFORMATION (RLIN)', 'PRICE INFORMATION (RLIN)', 1, 0, '', 'ASMP_VIDEORECORDINGS');
13228 INSERT INTO `marc_tag_structure` VALUES ('u90', 'TAPE OUTPUT, TAPE (RLIN)', 'TAPE OUTPUT, TAPE (RLIN)', 0, 0, '', 'ASMP_VIDEORECORDINGS');
13229 INSERT INTO `marc_tag_structure` VALUES ('ufi', 'FISCAL INFORMATION, FI (RLIN)', 'FISCAL INFORMATION, FI (RLIN)', 1, 0, '', 'ASMP_VIDEORECORDINGS');
13230
13231
13232
13233 INSERT INTO `marc_subfield_structure` VALUES ('000', '@', 'fixed length control field', 'fixed length control field', 0, 1, '', 0, '', '', 'marc21_leader.pl', 0, 0, 'ASMP_VIDEORECORDINGS', '', '');
13234 INSERT INTO `marc_subfield_structure` VALUES ('001', '@', 'control field', 'control field', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13235 INSERT INTO `marc_subfield_structure` VALUES ('003', '@', 'control field', 'control field', 0, 0, '', 0, '', '', 'marc21_field_003.pl', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13236 INSERT INTO `marc_subfield_structure` VALUES ('005', '@', 'control field', 'control field', 0, 0, '', 0, '', '', 'marc21_field_005.pl', 0, -1, 'ASMP_VIDEORECORDINGS', '', '');
13237 INSERT INTO `marc_subfield_structure` VALUES ('006', '@', 'fixed length control field', 'fixed length control field', 0, 0, '', 0, '', '', 'marc21_field_006.pl', 0, -1, 'ASMP_VIDEORECORDINGS', '', '');
13238 INSERT INTO `marc_subfield_structure` VALUES ('007', '@', 'fixed length control field', 'fixed length control field', 0, 0, '', 0, '', '', 'marc21_field_007.pl', 0, 0, 'ASMP_VIDEORECORDINGS', '', '');
13239 INSERT INTO `marc_subfield_structure` VALUES ('008', '@', 'fixed length control field', 'fixed length control field', 0, 1, '', 0, '', '', 'marc21_field_008.pl', 0, 0, 'ASMP_VIDEORECORDINGS', '', '');
13240 INSERT INTO `marc_subfield_structure` VALUES ('009', '@', 'fixed length control field', 'fixed length control field', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13241 INSERT INTO `marc_subfield_structure` VALUES ('010', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', NULL, 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13242 INSERT INTO `marc_subfield_structure` VALUES ('010', 'a', 'LC control number', 'LC control number', 0, 0, 'biblioitems.lccn', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13243 INSERT INTO `marc_subfield_structure` VALUES ('010', 'b', 'NUCMC control number', 'NUCMC control number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13244 INSERT INTO `marc_subfield_structure` VALUES ('010', 'z', 'Canceled/invalid LC control number', 'Canceled/invalid LC control number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13245 INSERT INTO `marc_subfield_structure` VALUES ('011', 'a', 'LC control number', 'LC control number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13246 INSERT INTO `marc_subfield_structure` VALUES ('013', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', NULL, 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13247 INSERT INTO `marc_subfield_structure` VALUES ('013', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13248 INSERT INTO `marc_subfield_structure` VALUES ('013', 'a', 'Number', 'Number', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13249 INSERT INTO `marc_subfield_structure` VALUES ('013', 'b', 'Country', 'Country', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13250 INSERT INTO `marc_subfield_structure` VALUES ('013', 'c', 'Type of number', 'Type of number', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13251 INSERT INTO `marc_subfield_structure` VALUES ('013', 'd', 'Date', 'Date', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13252 INSERT INTO `marc_subfield_structure` VALUES ('013', 'e', 'Status', 'Status', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13253 INSERT INTO `marc_subfield_structure` VALUES ('013', 'f', 'Party to document', 'Party to document', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13254 INSERT INTO `marc_subfield_structure` VALUES ('015', '2', 'Source', 'Source', 0, 0, '', 0, '', '', NULL, 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13255 INSERT INTO `marc_subfield_structure` VALUES ('015', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13256 INSERT INTO `marc_subfield_structure` VALUES ('015', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13257 INSERT INTO `marc_subfield_structure` VALUES ('015', 'a', 'National bibliography number', 'National bibliography number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13258 INSERT INTO `marc_subfield_structure` VALUES ('016', '2', 'Source', 'Source', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13259 INSERT INTO `marc_subfield_structure` VALUES ('016', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13260 INSERT INTO `marc_subfield_structure` VALUES ('016', 'a', 'Record control number', 'Record control number', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13261 INSERT INTO `marc_subfield_structure` VALUES ('016', 'z', 'Canceled or invalid record control number', 'Canceled or invalid record control number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13262 INSERT INTO `marc_subfield_structure` VALUES ('017', '2', 'Source', 'Source', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13263 INSERT INTO `marc_subfield_structure` VALUES ('017', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13264 INSERT INTO `marc_subfield_structure` VALUES ('017', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13265 INSERT INTO `marc_subfield_structure` VALUES ('017', 'a', 'Copyright or legal deposit number', 'Copyright or legal deposit number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13266 INSERT INTO `marc_subfield_structure` VALUES ('017', 'b', 'Assigning agency', 'Assigning agency', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13267 INSERT INTO `marc_subfield_structure` VALUES ('017', 'd', 'Date', 'Date', 0, 0, '', 0, '', '', NULL, 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13268 INSERT INTO `marc_subfield_structure` VALUES ('017', 'i', 'Display text', 'Display text', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13269 INSERT INTO `marc_subfield_structure` VALUES ('018', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13270 INSERT INTO `marc_subfield_structure` VALUES ('018', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13271 INSERT INTO `marc_subfield_structure` VALUES ('018', 'a', 'Copyright article-fee code', 'Copyright article-fee code', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13272 INSERT INTO `marc_subfield_structure` VALUES ('01e', 'a', 'Coded field error', 'Coded field error', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13273 INSERT INTO `marc_subfield_structure` VALUES ('020', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13274 INSERT INTO `marc_subfield_structure` VALUES ('020', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13275 INSERT INTO `marc_subfield_structure` VALUES ('020', 'a', 'International Standard Book Number', 'International Standard Book Number', 0, 0, 'biblioitems.isbn', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13276 INSERT INTO `marc_subfield_structure` VALUES ('020', 'c', 'Terms of availability', 'Terms of availability', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13277 INSERT INTO `marc_subfield_structure` VALUES ('020', 'z', 'Cancelled/invalid ISBN', 'Cancelled/invalid ISBN', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13278 INSERT INTO `marc_subfield_structure` VALUES ('022', '2', 'Source', 'Source', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13279 INSERT INTO `marc_subfield_structure` VALUES ('022', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13280 INSERT INTO `marc_subfield_structure` VALUES ('022', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13281 INSERT INTO `marc_subfield_structure` VALUES ('022', 'a', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, 'biblioitems.issn', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13282 INSERT INTO `marc_subfield_structure` VALUES ('022', 'y', 'Incorrect ISSN', 'Incorrect ISSN', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13283 INSERT INTO `marc_subfield_structure` VALUES ('022', 'z', 'Canceled ISSN', 'Canceled ISSN', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13284 INSERT INTO `marc_subfield_structure` VALUES ('023', 'a', 'Standard film number', 'Standard film number', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13285 INSERT INTO `marc_subfield_structure` VALUES ('024', '2', 'Source of number or code', 'Source of number or code', 0, 0, '', 0, '', '', '', 0, -1, 'ASMP_VIDEORECORDINGS', '', '');
13286 INSERT INTO `marc_subfield_structure` VALUES ('024', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13287 INSERT INTO `marc_subfield_structure` VALUES ('024', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13288 INSERT INTO `marc_subfield_structure` VALUES ('024', 'a', 'Standard number or code', 'Standard number or code', 0, 0, '', 0, '', '', '', 0, -1, 'ASMP_VIDEORECORDINGS', '', '');
13289 INSERT INTO `marc_subfield_structure` VALUES ('024', 'b', 'Additional codes following the standard number [OBSOLETE]', 'Additional codes following the standard number [OBSOLETE]', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13290 INSERT INTO `marc_subfield_structure` VALUES ('024', 'c', 'Terms of availability', 'Terms of availability', 0, 0, '', 0, '', '', '', 0, -1, 'ASMP_VIDEORECORDINGS', '', '');
13291 INSERT INTO `marc_subfield_structure` VALUES ('024', 'd', 'Additional codes following the standard number or code', 'Additional codes following the standard number or code', 0, 0, '', 0, '', '', '', 0, -1, 'ASMP_VIDEORECORDINGS', '', '');
13292 INSERT INTO `marc_subfield_structure` VALUES ('024', 'z', 'Canceled/invalid standard number or code', 'Canceled/invalid standard number or code', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13293 INSERT INTO `marc_subfield_structure` VALUES ('025', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13294 INSERT INTO `marc_subfield_structure` VALUES ('025', 'a', 'Overseas acquisition number', 'Overseas acquisition number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13295 INSERT INTO `marc_subfield_structure` VALUES ('026', '2', 'Source', 'Source', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13296 INSERT INTO `marc_subfield_structure` VALUES ('026', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13297 INSERT INTO `marc_subfield_structure` VALUES ('026', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13298 INSERT INTO `marc_subfield_structure` VALUES ('026', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13299 INSERT INTO `marc_subfield_structure` VALUES ('026', 'a', 'First and second groups of characters', 'First and second groups of characters', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13300 INSERT INTO `marc_subfield_structure` VALUES ('026', 'b', 'Third and fourth groups of characters', 'Third and fourth groups of characters', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13301 INSERT INTO `marc_subfield_structure` VALUES ('026', 'c', 'Date', 'Date', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13302 INSERT INTO `marc_subfield_structure` VALUES ('026', 'd', 'Number of volume or part', 'Number of volume or part', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13303 INSERT INTO `marc_subfield_structure` VALUES ('026', 'e', 'unparsed fingerprint', 'unparsed fingerprint', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13304 INSERT INTO `marc_subfield_structure` VALUES ('027', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13305 INSERT INTO `marc_subfield_structure` VALUES ('027', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13306 INSERT INTO `marc_subfield_structure` VALUES ('027', 'a', 'Standard technical report number', 'Standard technical report number', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13307 INSERT INTO `marc_subfield_structure` VALUES ('027', 'z', 'Canceled/invalid number', 'Canceled/invalid number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13308 INSERT INTO `marc_subfield_structure` VALUES ('028', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13309 INSERT INTO `marc_subfield_structure` VALUES ('028', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13310 INSERT INTO `marc_subfield_structure` VALUES ('028', 'a', 'Publisher number', 'Publisher number', 0, 0, '', 0, '', '', '', 0, 0, 'ASMP_VIDEORECORDINGS', '', '');
13311 INSERT INTO `marc_subfield_structure` VALUES ('028', 'b', 'Source', 'Source', 0, 0, '', 0, '', '', '', 0, 0, 'ASMP_VIDEORECORDINGS', '', '');
13312 INSERT INTO `marc_subfield_structure` VALUES ('030', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13313 INSERT INTO `marc_subfield_structure` VALUES ('030', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13314 INSERT INTO `marc_subfield_structure` VALUES ('030', 'a', 'CODEN', 'CODEN', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13315 INSERT INTO `marc_subfield_structure` VALUES ('030', 'z', 'Canceled/invalid CODEN', 'Canceled/invalid CODEN', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13316 INSERT INTO `marc_subfield_structure` VALUES ('031', '2', 'System code', 'System code', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13317 INSERT INTO `marc_subfield_structure` VALUES ('031', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13318 INSERT INTO `marc_subfield_structure` VALUES ('031', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13319 INSERT INTO `marc_subfield_structure` VALUES ('031', 'a', 'Number of work', 'Number of work', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13320 INSERT INTO `marc_subfield_structure` VALUES ('031', 'b', 'Number of movement', 'Number of movement', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13321 INSERT INTO `marc_subfield_structure` VALUES ('031', 'c', 'Number of excerpt', 'Number of excerpt', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13322 INSERT INTO `marc_subfield_structure` VALUES ('031', 'd', 'Caption or heading', 'Caption or heading', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13323 INSERT INTO `marc_subfield_structure` VALUES ('031', 'e', 'Role', 'Role', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13324 INSERT INTO `marc_subfield_structure` VALUES ('031', 'g', 'Clef', 'Clef', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13325 INSERT INTO `marc_subfield_structure` VALUES ('031', 'm', 'Voice/instrument', 'Voice/instrument', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13326 INSERT INTO `marc_subfield_structure` VALUES ('031', 'n', 'Key signature', 'Key signature', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13327 INSERT INTO `marc_subfield_structure` VALUES ('031', 'o', 'Time signature', 'Time signature', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13328 INSERT INTO `marc_subfield_structure` VALUES ('031', 'p', 'Musical notation', 'Musical notation', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13329 INSERT INTO `marc_subfield_structure` VALUES ('031', 'q', 'General note', 'General note', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13330 INSERT INTO `marc_subfield_structure` VALUES ('031', 'r', 'Key or mode', 'Key or mode', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13331 INSERT INTO `marc_subfield_structure` VALUES ('031', 's', 'Coded validity note', 'Coded validity note', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13332 INSERT INTO `marc_subfield_structure` VALUES ('031', 't', 'Text incipit', 'Text incipit', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13333 INSERT INTO `marc_subfield_structure` VALUES ('031', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 0, '', '', '', 1, -6, 'ASMP_VIDEORECORDINGS', '', '');
13334 INSERT INTO `marc_subfield_structure` VALUES ('031', 'y', 'Link text', 'Link text', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13335 INSERT INTO `marc_subfield_structure` VALUES ('031', 'z', 'Public note', 'Public note', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13336 INSERT INTO `marc_subfield_structure` VALUES ('032', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', NULL, 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13337 INSERT INTO `marc_subfield_structure` VALUES ('032', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13338 INSERT INTO `marc_subfield_structure` VALUES ('032', 'a', 'Postal registration number', 'Postal registration number', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13339 INSERT INTO `marc_subfield_structure` VALUES ('032', 'b', 'Source (agency assigning number)', 'Source (agency assigning number)', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13340 INSERT INTO `marc_subfield_structure` VALUES ('033', '3', 'Materials specified', 'Materials specified', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13341 INSERT INTO `marc_subfield_structure` VALUES ('033', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13342 INSERT INTO `marc_subfield_structure` VALUES ('033', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13343 INSERT INTO `marc_subfield_structure` VALUES ('033', 'a', 'Formatted date/time', 'Formatted date/time', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13344 INSERT INTO `marc_subfield_structure` VALUES ('033', 'b', 'Geographic classification area code', 'Geographic classification area code', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13345 INSERT INTO `marc_subfield_structure` VALUES ('033', 'c', 'Geographic classification subarea code', 'Geographic classification subarea code', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13346 INSERT INTO `marc_subfield_structure` VALUES ('034', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13347 INSERT INTO `marc_subfield_structure` VALUES ('034', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13348 INSERT INTO `marc_subfield_structure` VALUES ('034', 'a', 'Category of scale', 'Category of scale', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13349 INSERT INTO `marc_subfield_structure` VALUES ('034', 'b', 'Constant ratio linear horizontal scale', 'Constant ratio linear horizontal scale', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13350 INSERT INTO `marc_subfield_structure` VALUES ('034', 'c', 'Constant ratio linear vertical scale', 'Constant ratio linear vertical scale', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13351 INSERT INTO `marc_subfield_structure` VALUES ('034', 'd', 'Coordinates--westernmost longitude', 'Coordinates--westernmost longitude', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13352 INSERT INTO `marc_subfield_structure` VALUES ('034', 'e', 'Coordinates--easternmost longitude', 'Coordinates--easternmost longitude', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13353 INSERT INTO `marc_subfield_structure` VALUES ('034', 'f', 'Coordinates--northernmost latitude', 'Coordinates--northernmost latitude', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13354 INSERT INTO `marc_subfield_structure` VALUES ('034', 'g', 'Coordinates--southernmost latitude', 'Coordinates--southernmost latitude', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13355 INSERT INTO `marc_subfield_structure` VALUES ('034', 'h', 'Angular scale', 'Angular scale', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13356 INSERT INTO `marc_subfield_structure` VALUES ('034', 'j', 'Declination--northern limit', 'Declination--northern limit', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13357 INSERT INTO `marc_subfield_structure` VALUES ('034', 'k', 'Declination--southern limit', 'Declination--southern limit', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13358 INSERT INTO `marc_subfield_structure` VALUES ('034', 'm', 'Right ascension--eastern limit', 'Right ascension--eastern limit', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13359 INSERT INTO `marc_subfield_structure` VALUES ('034', 'n', 'Right ascension--western limit', 'Right ascension--western limit', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13360 INSERT INTO `marc_subfield_structure` VALUES ('034', 'p', 'Equinox', 'Equinox', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13361 INSERT INTO `marc_subfield_structure` VALUES ('034', 's', 'G-ring latitude', 'G-ring latitude', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13362 INSERT INTO `marc_subfield_structure` VALUES ('034', 't', 'G-ring longitude', 'G-ring longitude', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13363 INSERT INTO `marc_subfield_structure` VALUES ('035', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13364 INSERT INTO `marc_subfield_structure` VALUES ('035', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13365 INSERT INTO `marc_subfield_structure` VALUES ('035', 'a', 'System control number', 'System control number', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13366 INSERT INTO `marc_subfield_structure` VALUES ('035', 'z', 'Canceled/invalid control number', 'Canceled/invalid control number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13367 INSERT INTO `marc_subfield_structure` VALUES ('036', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13368 INSERT INTO `marc_subfield_structure` VALUES ('036', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13369 INSERT INTO `marc_subfield_structure` VALUES ('036', 'a', 'Original study number', 'Original study number', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13370 INSERT INTO `marc_subfield_structure` VALUES ('036', 'b', 'Source (agency assigning number)', 'Source (agency assigning number)', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13371 INSERT INTO `marc_subfield_structure` VALUES ('037', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13372 INSERT INTO `marc_subfield_structure` VALUES ('037', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13373 INSERT INTO `marc_subfield_structure` VALUES ('037', 'a', 'Stock number', 'Stock number', 0, 0, '', 9, '', '', '', 0, -1, 'ASMP_VIDEORECORDINGS', '', '');
13374 INSERT INTO `marc_subfield_structure` VALUES ('037', 'b', 'Source of stock number/acquisition', 'Source of stock number/acquisition', 0, 0, '', 9, '', '', '', 0, -1, 'ASMP_VIDEORECORDINGS', '', '');
13375 INSERT INTO `marc_subfield_structure` VALUES ('037', 'c', 'Terms of availability', 'Terms of availability', 1, 0, '', 9, '', '', '', 0, -1, 'ASMP_VIDEORECORDINGS', '', '');
13376 INSERT INTO `marc_subfield_structure` VALUES ('037', 'f', 'Form of issue', 'Form of issue', 1, 0, '', 9, '', '', '', 0, -1, 'ASMP_VIDEORECORDINGS', '', '');
13377 INSERT INTO `marc_subfield_structure` VALUES ('037', 'g', 'Additional format characteristics', 'Additional format characteristics', 1, 0, '', 9, '', '', '', 0, -1, 'ASMP_VIDEORECORDINGS', '', '');
13378 INSERT INTO `marc_subfield_structure` VALUES ('037', 'n', 'Note', 'Note', 1, 0, '', 9, '', '', '', 0, -1, 'ASMP_VIDEORECORDINGS', '', '');
13379 INSERT INTO `marc_subfield_structure` VALUES ('038', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13380 INSERT INTO `marc_subfield_structure` VALUES ('038', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13381 INSERT INTO `marc_subfield_structure` VALUES ('038', 'a', 'Record content licensor', 'Record content licensor', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13382 INSERT INTO `marc_subfield_structure` VALUES ('039', 'a', 'Level of rules in bibliographic description', 'Level of rules in bibliographic description', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13383 INSERT INTO `marc_subfield_structure` VALUES ('039', 'b', 'Level of effort used to assign nonsubject heading access points', 'Level of effort used to assign nonsubject heading access points', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13384 INSERT INTO `marc_subfield_structure` VALUES ('039', 'c', 'Level of effort used to assign subject headings', 'Level of effort used to assign subject headings', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13385 INSERT INTO `marc_subfield_structure` VALUES ('039', 'd', 'Level of effort used to assign classification', 'Level of effort used to assign classification', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13386 INSERT INTO `marc_subfield_structure` VALUES ('039', 'e', 'Number of fixed field character positions coded', 'Number of fixed field character positions coded', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13387 INSERT INTO `marc_subfield_structure` VALUES ('040', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13388 INSERT INTO `marc_subfield_structure` VALUES ('040', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13389 INSERT INTO `marc_subfield_structure` VALUES ('040', 'a', 'Original cataloging agency', 'Original cataloging agency', 0, 0, '', 0, '', '', '', 0, -1, 'ASMP_VIDEORECORDINGS', '', '');
13390 INSERT INTO `marc_subfield_structure` VALUES ('040', 'b', 'Language of cataloging', 'Language of cataloging', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13391 INSERT INTO `marc_subfield_structure` VALUES ('040', 'c', 'Transcribing agency', 'Transcribing agency', 0, 0, '', 0, '', '', '', 0, -1, 'ASMP_VIDEORECORDINGS', '', '');
13392 INSERT INTO `marc_subfield_structure` VALUES ('040', 'd', 'Modifying agency', 'Modifying agency', 1, 0, '', 0, '', '', '', 0, -1, 'ASMP_VIDEORECORDINGS', '', '');
13393 INSERT INTO `marc_subfield_structure` VALUES ('040', 'e', 'Description conventions', 'Description conventions', 0, 0, '', 0, '', '', '', 0, -1, 'ASMP_VIDEORECORDINGS', '', '');
13394 INSERT INTO `marc_subfield_structure` VALUES ('041', '2', 'Source of code', 'Source of code', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13395 INSERT INTO `marc_subfield_structure` VALUES ('041', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13396 INSERT INTO `marc_subfield_structure` VALUES ('041', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13397 INSERT INTO `marc_subfield_structure` VALUES ('041', 'a', 'Language code of text/sound track or separate title', 'Language code of text/sound track or separate title', 1, 0, '', 0, '', '', '', 0, -1, 'ASMP_VIDEORECORDINGS', '', '');
13398 INSERT INTO `marc_subfield_structure` VALUES ('041', 'b', 'Language code of summary or abstract/overprinted title or subtitle', 'Language code of summary or abstract/overprinted title or subtitle', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13399 INSERT INTO `marc_subfield_structure` VALUES ('041', 'c', 'Languages of separate titles (VM) [OBSOLETE] ; Languages of available translation  (SE) [OBSOLETE]', 'Languages of separate titles (VM) [OBSOLETE] ; Languages of available translation  (SE) [OBSOLETE]', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13400 INSERT INTO `marc_subfield_structure` VALUES ('041', 'd', 'Language code of sung or spoken text', 'Language code of sung or spoken text', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13401 INSERT INTO `marc_subfield_structure` VALUES ('041', 'e', 'Language code of librettos', 'Language code of librettos', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13402 INSERT INTO `marc_subfield_structure` VALUES ('041', 'f', 'Language code of table of contents', 'Language code of table of contents', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13403 INSERT INTO `marc_subfield_structure` VALUES ('041', 'g', 'Language code of accompanying material other than librettos', 'Language code of accompanying material other than librettos', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13404 INSERT INTO `marc_subfield_structure` VALUES ('041', 'h', 'Language code of original and/or intermediate translations of text', 'Language code of original and/or intermediate translations of text', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13405 INSERT INTO `marc_subfield_structure` VALUES ('042', 'a', 'Authentication code', 'Authentication code', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13406 INSERT INTO `marc_subfield_structure` VALUES ('043', '2', 'Source of local code', 'Source of local code', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13407 INSERT INTO `marc_subfield_structure` VALUES ('043', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13408 INSERT INTO `marc_subfield_structure` VALUES ('043', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13409 INSERT INTO `marc_subfield_structure` VALUES ('043', 'a', 'Geographic area code', 'Geographic area code', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13410 INSERT INTO `marc_subfield_structure` VALUES ('043', 'b', 'Local GAC code', 'Local GAC code', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13411 INSERT INTO `marc_subfield_structure` VALUES ('043', 'c', 'ISO code', 'ISO code', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13412 INSERT INTO `marc_subfield_structure` VALUES ('044', '2', 'Source of local subentity code', 'Source of local subentity code', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13413 INSERT INTO `marc_subfield_structure` VALUES ('044', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13414 INSERT INTO `marc_subfield_structure` VALUES ('044', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13415 INSERT INTO `marc_subfield_structure` VALUES ('044', 'a', 'MARC country code', 'MARC country code', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13416 INSERT INTO `marc_subfield_structure` VALUES ('044', 'b', 'Local subentity code', 'Local subentity code', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13417 INSERT INTO `marc_subfield_structure` VALUES ('044', 'c', 'ISO country code', 'ISO country code', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13418 INSERT INTO `marc_subfield_structure` VALUES ('045', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13419 INSERT INTO `marc_subfield_structure` VALUES ('045', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13420 INSERT INTO `marc_subfield_structure` VALUES ('045', 'a', 'Time period code', 'Time period code', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13421 INSERT INTO `marc_subfield_structure` VALUES ('045', 'b', 'Formatted 9999 B.C. through C.E. time period', 'Formatted 9999 B.C. through C.E. time period', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13422 INSERT INTO `marc_subfield_structure` VALUES ('045', 'c', 'Formatted pre-9999 B.C. time period', 'Formatted pre-9999 B.C. time period', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13423 INSERT INTO `marc_subfield_structure` VALUES ('046', '2', 'Source of date', 'Source of date', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13424 INSERT INTO `marc_subfield_structure` VALUES ('046', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13425 INSERT INTO `marc_subfield_structure` VALUES ('046', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13426 INSERT INTO `marc_subfield_structure` VALUES ('046', 'a', 'Type of date code', 'Type of date code', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13427 INSERT INTO `marc_subfield_structure` VALUES ('046', 'b', 'Date 1 (B.C. date)', 'Date 1 (B.C. date)', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13428 INSERT INTO `marc_subfield_structure` VALUES ('046', 'c', 'Date 1 (C.E. date)', 'Date 1 (C.E. date)', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13429 INSERT INTO `marc_subfield_structure` VALUES ('046', 'd', 'Date 2 (B.C. date)', 'Date 2 (B.C. date)', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13430 INSERT INTO `marc_subfield_structure` VALUES ('046', 'e', 'Date 2 (C.E. date)', 'Date 2 (C.E. date)', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13431 INSERT INTO `marc_subfield_structure` VALUES ('046', 'j', 'Date resource modified', 'Date resource modified', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13432 INSERT INTO `marc_subfield_structure` VALUES ('046', 'k', 'Beginning or single date created', 'Beginning or single date created', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13433 INSERT INTO `marc_subfield_structure` VALUES ('046', 'l', 'Ending date created', 'Ending date created', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13434 INSERT INTO `marc_subfield_structure` VALUES ('046', 'm', 'Beginning of date valid', 'Beginning of date valid', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13435 INSERT INTO `marc_subfield_structure` VALUES ('046', 'n', 'End of date valid', 'End of date valid', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13436 INSERT INTO `marc_subfield_structure` VALUES ('047', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13437 INSERT INTO `marc_subfield_structure` VALUES ('047', 'a', 'Form of musical composition code', 'Form of musical composition code', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13438 INSERT INTO `marc_subfield_structure` VALUES ('048', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13439 INSERT INTO `marc_subfield_structure` VALUES ('048', 'a', 'Performer or ensemble', 'Performer or ensemble', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13440 INSERT INTO `marc_subfield_structure` VALUES ('048', 'b', 'Soloist', 'Soloist', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13441 INSERT INTO `marc_subfield_structure` VALUES ('049', 'a', 'Holding library', 'Holding library', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13442 INSERT INTO `marc_subfield_structure` VALUES ('049', 'c', 'Copy statement', 'Copy statement', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13443 INSERT INTO `marc_subfield_structure` VALUES ('049', 'd', 'Definition of bibliographic subdivisions', 'Definition of bibliographic subdivisions', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13444 INSERT INTO `marc_subfield_structure` VALUES ('049', 'l', 'Local processing data', 'Local processing data', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13445 INSERT INTO `marc_subfield_structure` VALUES ('049', 'm', 'Missing elements', 'Missing elements', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13446 INSERT INTO `marc_subfield_structure` VALUES ('049', 'n', 'Notes about holdings', 'Notes about holdings', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13447 INSERT INTO `marc_subfield_structure` VALUES ('049', 'o', 'Local processing data', 'Local processing data', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13448 INSERT INTO `marc_subfield_structure` VALUES ('049', 'p', 'Secondary bibliographic subdivision', 'Secondary bibliographic subdivision', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13449 INSERT INTO `marc_subfield_structure` VALUES ('049', 'q', 'Third bibliographic subdivision', 'Third bibliographic subdivision', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13450 INSERT INTO `marc_subfield_structure` VALUES ('049', 'r', 'Fourth bibliographic subdivision', 'Fourth bibliographic subdivision', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13451 INSERT INTO `marc_subfield_structure` VALUES ('049', 's', 'Fifth bibliographic subdivision', 'Fifth bibliographic subdivision', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13452 INSERT INTO `marc_subfield_structure` VALUES ('049', 't', 'Sixth bibliographic subdivision', 'Sixth bibliographic subdivision', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13453 INSERT INTO `marc_subfield_structure` VALUES ('049', 'u', 'Seventh bibliographic subdivision', 'Seventh bibliographic subdivision', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13454 INSERT INTO `marc_subfield_structure` VALUES ('049', 'v', 'Primary bibliographic subdivision', 'Primary bibliographic subdivision', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13455 INSERT INTO `marc_subfield_structure` VALUES ('049', 'y', 'Inclusive dates of publication or coverage', 'Inclusive dates of publication or coverage', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13456 INSERT INTO `marc_subfield_structure` VALUES ('050', '3', 'Materials specified', 'Materials specified', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13457 INSERT INTO `marc_subfield_structure` VALUES ('050', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13458 INSERT INTO `marc_subfield_structure` VALUES ('050', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13459 INSERT INTO `marc_subfield_structure` VALUES ('050', 'a', 'Classification number', 'Classification number', 1, 0, '', 0, '', '', '', 0, 0, 'ASMP_VIDEORECORDINGS', '', '');
13460 INSERT INTO `marc_subfield_structure` VALUES ('050', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', 0, 0, 'ASMP_VIDEORECORDINGS', '', '');
13461 INSERT INTO `marc_subfield_structure` VALUES ('050', 'd', 'Supplementary class number (MU) [OBSOLETE]', 'Supplementary class number (MU) [OBSOLETE]', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13462 INSERT INTO `marc_subfield_structure` VALUES ('051', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13463 INSERT INTO `marc_subfield_structure` VALUES ('051', 'a', 'Classification number', 'Classification number', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13464 INSERT INTO `marc_subfield_structure` VALUES ('051', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13465 INSERT INTO `marc_subfield_structure` VALUES ('051', 'c', 'Copy information', 'Copy information', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13466 INSERT INTO `marc_subfield_structure` VALUES ('052', '2', 'Code Source', 'Code Source', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13467 INSERT INTO `marc_subfield_structure` VALUES ('052', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13468 INSERT INTO `marc_subfield_structure` VALUES ('052', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13469 INSERT INTO `marc_subfield_structure` VALUES ('052', 'a', 'Geographic classification area code', 'Geographic classification area code', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13470 INSERT INTO `marc_subfield_structure` VALUES ('052', 'b', 'Geographic classification subarea code', 'Geographic classification subarea code', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13471 INSERT INTO `marc_subfield_structure` VALUES ('052', 'c', 'Subject (MP) [OBSOLETE]', 'Subject (MP) [OBSOLETE]', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13472 INSERT INTO `marc_subfield_structure` VALUES ('052', 'd', 'Populated place name', 'Populated place name', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13473 INSERT INTO `marc_subfield_structure` VALUES ('055', '2', 'Source of call/class number', 'Source of call/class number', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13474 INSERT INTO `marc_subfield_structure` VALUES ('055', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13475 INSERT INTO `marc_subfield_structure` VALUES ('055', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13476 INSERT INTO `marc_subfield_structure` VALUES ('055', 'a', 'Classification number', 'Classification number', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13477 INSERT INTO `marc_subfield_structure` VALUES ('055', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13478 INSERT INTO `marc_subfield_structure` VALUES ('060', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13479 INSERT INTO `marc_subfield_structure` VALUES ('060', 'a', 'Classification number', 'Classification number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13480 INSERT INTO `marc_subfield_structure` VALUES ('060', 'b', 'Item number', 'Item number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13481 INSERT INTO `marc_subfield_structure` VALUES ('061', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13482 INSERT INTO `marc_subfield_structure` VALUES ('061', 'a', 'Classification number', 'Classification number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13483 INSERT INTO `marc_subfield_structure` VALUES ('061', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13484 INSERT INTO `marc_subfield_structure` VALUES ('061', 'c', 'Copy information', 'Copy information', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13485 INSERT INTO `marc_subfield_structure` VALUES ('066', 'a', 'Primary G0 character set', 'Primary G0 character set', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13486 INSERT INTO `marc_subfield_structure` VALUES ('066', 'b', 'Primary G1 character set', 'Primary G1 character set', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13487 INSERT INTO `marc_subfield_structure` VALUES ('066', 'c', 'Alternate G0 or G1 character set', 'Alternate G0 or G1 character set', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13488 INSERT INTO `marc_subfield_structure` VALUES ('070', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13489 INSERT INTO `marc_subfield_structure` VALUES ('070', 'a', 'Classification number', 'Classification number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13490 INSERT INTO `marc_subfield_structure` VALUES ('070', 'b', 'Item number', 'Item number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13491 INSERT INTO `marc_subfield_structure` VALUES ('071', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13492 INSERT INTO `marc_subfield_structure` VALUES ('071', 'a', 'Classification number', 'Classification number', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13493 INSERT INTO `marc_subfield_structure` VALUES ('071', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13494 INSERT INTO `marc_subfield_structure` VALUES ('071', 'c', 'Copy information', 'Copy information', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13495 INSERT INTO `marc_subfield_structure` VALUES ('072', '2', 'Source', 'Source', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13496 INSERT INTO `marc_subfield_structure` VALUES ('072', '6', 'Linkage', 'Linkage', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13497 INSERT INTO `marc_subfield_structure` VALUES ('072', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13498 INSERT INTO `marc_subfield_structure` VALUES ('072', 'a', 'Subject category code', 'Subject category code', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13499 INSERT INTO `marc_subfield_structure` VALUES ('072', 'x', 'Subject category code subdivision', 'Subject category code subdivision', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13500 INSERT INTO `marc_subfield_structure` VALUES ('074', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13501 INSERT INTO `marc_subfield_structure` VALUES ('074', 'a', 'GPO item number', 'GPO item number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
13502 INSERT INTO `marc_subfield_structure` VALUES ('074', 'z', 'Canceled/invalid GPO item number', 'Canceled/invalid GPO item number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13503 INSERT INTO `marc_subfield_structure` VALUES ('080', '2', 'Edition identifier', 'Edition identifier', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13504 INSERT INTO `marc_subfield_structure` VALUES ('080', '6', 'Linkage', 'Linkage', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13505 INSERT INTO `marc_subfield_structure` VALUES ('080', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13506 INSERT INTO `marc_subfield_structure` VALUES ('080', 'a', 'Universal Decimal Classification number', 'Universal Decimal Classification number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13507 INSERT INTO `marc_subfield_structure` VALUES ('080', 'b', 'Item number', 'Item number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13508 INSERT INTO `marc_subfield_structure` VALUES ('080', 'x', 'Common auxiliary subdivision', 'Common auxiliary subdivision', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13509 INSERT INTO `marc_subfield_structure` VALUES ('082', '2', 'Edition number', 'Edition number', 0, 0, '', 0, '', '', '', NULL, 0, 'ASMP_VIDEORECORDINGS', '', '');
13510 INSERT INTO `marc_subfield_structure` VALUES ('082', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13511 INSERT INTO `marc_subfield_structure` VALUES ('082', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13512 INSERT INTO `marc_subfield_structure` VALUES ('082', 'a', 'Classification number', 'Classification number', 1, 0, '', 0, '', '', '', NULL, 0, 'ASMP_VIDEORECORDINGS', '', '');
13513 INSERT INTO `marc_subfield_structure` VALUES ('082', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', NULL, 0, 'ASMP_VIDEORECORDINGS', '', '');
13514 INSERT INTO `marc_subfield_structure` VALUES ('084', '2', 'Source of number', 'Source of number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13515 INSERT INTO `marc_subfield_structure` VALUES ('084', '6', 'Linkage', 'Linkage', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13516 INSERT INTO `marc_subfield_structure` VALUES ('084', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13517 INSERT INTO `marc_subfield_structure` VALUES ('084', 'a', 'Classification number', 'Classification number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13518 INSERT INTO `marc_subfield_structure` VALUES ('084', 'b', 'Item number', 'Item number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13519 INSERT INTO `marc_subfield_structure` VALUES ('086', '2', 'Number source', 'Number source', 0, 0, NULL, 0, NULL, NULL, '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
13520 INSERT INTO `marc_subfield_structure` VALUES ('086', '6', 'Linkage', 'Linkage', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13521 INSERT INTO `marc_subfield_structure` VALUES ('086', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13522 INSERT INTO `marc_subfield_structure` VALUES ('086', 'a', 'Classification number', 'Classification number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
13523 INSERT INTO `marc_subfield_structure` VALUES ('086', 'z', 'Canceled/invalid classification number', 'Canceled/invalid classification number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13524 INSERT INTO `marc_subfield_structure` VALUES ('087', 'a', 'Report number [OBSOLETE, CAN/MARC]', 'Report number [OBSOLETE, CAN/MARC]', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13525 INSERT INTO `marc_subfield_structure` VALUES ('087', 'z', 'Canceled/invalid report number [OBSOLETE, CAN/MARC]', 'Canceled/invalid report number [OBSOLETE, CAN/MARC]', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13526 INSERT INTO `marc_subfield_structure` VALUES ('088', '6', 'Linkage', 'Linkage', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13527 INSERT INTO `marc_subfield_structure` VALUES ('088', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13528 INSERT INTO `marc_subfield_structure` VALUES ('088', 'a', 'Report number', 'Report number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13529 INSERT INTO `marc_subfield_structure` VALUES ('088', 'z', 'Canceled/invalid report number', 'Canceled/invalid report number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13530 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'a', 'Classification number (OCLC) (R) ; Classification number, CALL (RLIN) (NR)', 'Classification number (OCLC) (R) ; Classification number, CALL (RLIN) (NR)', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13531 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'b', 'Local cutter number (OCLC) ; Book number/undivided call number, CALL (RLIN)', 'Local cutter number (OCLC) ; Book number/undivided call number, CALL (RLIN)', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13532 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'e', 'Feature heading (OCLC)', 'Feature heading (OCLC)', 0, 0, '', 0, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
13533 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'f', 'Filing suffix (OCLC); Footnote, FNT (RLIN)', 'Filing suffix (OCLC); Footnote, FNT (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
13534 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'h', 'Output transaction history, HST (RLIN)', 'Output transaction history, HST (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
13535 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'i', 'Output transaction instruction, INS (RLIN)', 'Output transaction instruction, INS (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
13536 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'l', 'Extra card control statement, EXT (RLIN)', 'Extra card control statement, EXT (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
13537 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'n', 'Additional local notes, ANT (RLIN)', 'Additional local notes, ANT (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
13538 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'p', 'Pathfinder code, PTH (RLIN)', 'Pathfinder code, PTH (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
13539 INSERT INTO `marc_subfield_structure` VALUES ('09o', 't', 'Field suppresion, FSP (RLIN)', 'Field suppresion, FSP (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
13540 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'v', 'Volumes, VOL (RLIN)', 'Volumes, VOL (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
13541 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'y', 'Date, VOL (RLIN)', 'Date, VOL (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
13542 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'z', 'Retention, VOL (RLIN)', 'Retention, VOL (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
13543 INSERT INTO `marc_subfield_structure` VALUES ('091', 'a', 'Microfilm shelf location', 'Microfilm shelf location', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13544 INSERT INTO `marc_subfield_structure` VALUES ('092', '2', 'Edition number', 'Edition number', 0, 0, '', 0, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13545 INSERT INTO `marc_subfield_structure` VALUES ('092', 'a', 'Classification number', 'Classification number', 0, 0, '', 0, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13546 INSERT INTO `marc_subfield_structure` VALUES ('092', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13547 INSERT INTO `marc_subfield_structure` VALUES ('092', 'e', 'Feature heading', 'Feature heading', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13548 INSERT INTO `marc_subfield_structure` VALUES ('092', 'f', 'Filing suffix', 'Filing suffix', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13549 INSERT INTO `marc_subfield_structure` VALUES ('096', 'a', 'Classification number', 'Classification number', 0, 0, '', 0, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13550 INSERT INTO `marc_subfield_structure` VALUES ('096', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13551 INSERT INTO `marc_subfield_structure` VALUES ('096', 'e', 'Feature heading', 'Feature heading', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13552 INSERT INTO `marc_subfield_structure` VALUES ('096', 'f', 'Filing suffix', 'Filing suffix', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13553 INSERT INTO `marc_subfield_structure` VALUES ('098', 'a', 'Call number based on other classification scheme', 'Call number based on other classification scheme', 0, 0, '', 0, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13554 INSERT INTO `marc_subfield_structure` VALUES ('098', 'e', 'Feature heading', 'Feature heading', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13555 INSERT INTO `marc_subfield_structure` VALUES ('098', 'f', 'Filing suffix', 'Filing suffix', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13556 INSERT INTO `marc_subfield_structure` VALUES ('099', 'a', 'Classification number', 'Classification number', 1, 0, '', 0, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13557 INSERT INTO `marc_subfield_structure` VALUES ('099', 'e', 'Feature heading', 'Feature heading', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13558 INSERT INTO `marc_subfield_structure` VALUES ('099', 'f', 'Filing suffix', 'Filing suffix', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13559 INSERT INTO `marc_subfield_structure` VALUES ('100', '4', 'Relator code', 'Relator code', 1, 0, '', 1, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13560 INSERT INTO `marc_subfield_structure` VALUES ('100', '6', 'Linkage', 'Linkage', 0, 0, '', 1, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13561 INSERT INTO `marc_subfield_structure` VALUES ('100', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 1, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13562 INSERT INTO `marc_subfield_structure` VALUES ('100', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'ASMP_VIDEORECORDINGS', '', '');
13563 INSERT INTO `marc_subfield_structure` VALUES ('100', 'a', 'Personal name', 'Personal name', 0, 0, 'biblio.author', 1, '', '', '', 0, -1, 'ASMP_VIDEORECORDINGS', '''100b'',''100c'',''100q'',''100d'',''100e'',''110a'',''110b'',''110c'',''110d'',''110e'',''700a'',''700b'',''700c'',''700q'',''700d'',''700e'',''710a'',''710b'',''710c'',''710d'',''710e'',''720a'',''720e'',''900a''', '');
13564 INSERT INTO `marc_subfield_structure` VALUES ('100', 'b', 'Numeration', 'Numeration', 0, 0, '', 1, '', '', '', 0, -1, 'ASMP_VIDEORECORDINGS', '', '');
13565 INSERT INTO `marc_subfield_structure` VALUES ('100', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 1, '', '', '', 0, -1, 'ASMP_VIDEORECORDINGS', '', '');
13566 INSERT INTO `marc_subfield_structure` VALUES ('100', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 1, '', '', '', 0, -1, 'ASMP_VIDEORECORDINGS', '', '');
13567 INSERT INTO `marc_subfield_structure` VALUES ('100', 'e', 'Relator term', 'Relator term', 1, 0, '', 1, '', '', '', 0, -1, 'ASMP_VIDEORECORDINGS', '', '');
13568 INSERT INTO `marc_subfield_structure` VALUES ('100', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 1, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13569 INSERT INTO `marc_subfield_structure` VALUES ('100', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 1, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13570 INSERT INTO `marc_subfield_structure` VALUES ('100', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 1, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13571 INSERT INTO `marc_subfield_structure` VALUES ('100', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 1, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13572 INSERT INTO `marc_subfield_structure` VALUES ('100', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 1, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13573 INSERT INTO `marc_subfield_structure` VALUES ('100', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 1, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13574 INSERT INTO `marc_subfield_structure` VALUES ('100', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 1, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13575 INSERT INTO `marc_subfield_structure` VALUES ('100', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 1, '', '', '', 0, -1, 'ASMP_VIDEORECORDINGS', '', '');
13576 INSERT INTO `marc_subfield_structure` VALUES ('100', 't', 'Title of a work', 'Title of a work', 0, 0, '', 1, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13577 INSERT INTO `marc_subfield_structure` VALUES ('100', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 1, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13578 INSERT INTO `marc_subfield_structure` VALUES ('110', '4', 'Relator code', 'Relator code', 1, 0, '', 1, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13579 INSERT INTO `marc_subfield_structure` VALUES ('110', '6', 'Linkage', 'Linkage', 0, 0, '', 1, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13580 INSERT INTO `marc_subfield_structure` VALUES ('110', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 1, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13581 INSERT INTO `marc_subfield_structure` VALUES ('110', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'ASMP_VIDEORECORDINGS', '', '');
13582 INSERT INTO `marc_subfield_structure` VALUES ('110', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 1, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
13583 INSERT INTO `marc_subfield_structure` VALUES ('110', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 1, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
13584 INSERT INTO `marc_subfield_structure` VALUES ('110', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 1, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
13585 INSERT INTO `marc_subfield_structure` VALUES ('110', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 1, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
13586 INSERT INTO `marc_subfield_structure` VALUES ('110', 'e', 'Relator term', 'Relator term', 1, 0, '', 1, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
13587 INSERT INTO `marc_subfield_structure` VALUES ('110', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 1, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13588 INSERT INTO `marc_subfield_structure` VALUES ('110', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 1, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13589 INSERT INTO `marc_subfield_structure` VALUES ('110', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 1, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13590 INSERT INTO `marc_subfield_structure` VALUES ('110', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 1, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13591 INSERT INTO `marc_subfield_structure` VALUES ('110', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 1, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13592 INSERT INTO `marc_subfield_structure` VALUES ('110', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 1, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13593 INSERT INTO `marc_subfield_structure` VALUES ('110', 't', 'Title of a work', 'Title of a work', 0, 0, '', 1, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13594 INSERT INTO `marc_subfield_structure` VALUES ('110', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 1, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13595 INSERT INTO `marc_subfield_structure` VALUES ('111', '4', 'Relator code', 'Relator code', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13596 INSERT INTO `marc_subfield_structure` VALUES ('111', '6', 'Linkage', 'Linkage', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13597 INSERT INTO `marc_subfield_structure` VALUES ('111', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13598 INSERT INTO `marc_subfield_structure` VALUES ('111', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'ASMP_VIDEORECORDINGS', '', '');
13599 INSERT INTO `marc_subfield_structure` VALUES ('111', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 1, NULL, NULL, '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
13600 INSERT INTO `marc_subfield_structure` VALUES ('111', 'b', 'Number [OBSOLETE]', 'Number [OBSOLETE]', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13601 INSERT INTO `marc_subfield_structure` VALUES ('111', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 1, NULL, NULL, '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
13602 INSERT INTO `marc_subfield_structure` VALUES ('111', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 1, NULL, NULL, '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
13603 INSERT INTO `marc_subfield_structure` VALUES ('111', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 1, NULL, NULL, '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
13604 INSERT INTO `marc_subfield_structure` VALUES ('111', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13605 INSERT INTO `marc_subfield_structure` VALUES ('111', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13606 INSERT INTO `marc_subfield_structure` VALUES ('111', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13607 INSERT INTO `marc_subfield_structure` VALUES ('111', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13608 INSERT INTO `marc_subfield_structure` VALUES ('111', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13609 INSERT INTO `marc_subfield_structure` VALUES ('111', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13610 INSERT INTO `marc_subfield_structure` VALUES ('111', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13611 INSERT INTO `marc_subfield_structure` VALUES ('111', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13612 INSERT INTO `marc_subfield_structure` VALUES ('111', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13613 INSERT INTO `marc_subfield_structure` VALUES ('130', '6', 'Linkage', 'Linkage', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13614 INSERT INTO `marc_subfield_structure` VALUES ('130', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13615 INSERT INTO `marc_subfield_structure` VALUES ('130', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'ASMP_VIDEORECORDINGS', '', '');
13616 INSERT INTO `marc_subfield_structure` VALUES ('130', 'a', 'Uniform title', 'Uniform title', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13617 INSERT INTO `marc_subfield_structure` VALUES ('130', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13618 INSERT INTO `marc_subfield_structure` VALUES ('130', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13619 INSERT INTO `marc_subfield_structure` VALUES ('130', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13620 INSERT INTO `marc_subfield_structure` VALUES ('130', 'h', 'Medium', 'Medium', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13621 INSERT INTO `marc_subfield_structure` VALUES ('130', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13622 INSERT INTO `marc_subfield_structure` VALUES ('130', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13623 INSERT INTO `marc_subfield_structure` VALUES ('130', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13624 INSERT INTO `marc_subfield_structure` VALUES ('130', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13625 INSERT INTO `marc_subfield_structure` VALUES ('130', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13626 INSERT INTO `marc_subfield_structure` VALUES ('130', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13627 INSERT INTO `marc_subfield_structure` VALUES ('130', 'r', 'Key for music', 'Key for music', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13628 INSERT INTO `marc_subfield_structure` VALUES ('130', 's', 'Version', 'Version', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13629 INSERT INTO `marc_subfield_structure` VALUES ('130', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13630 INSERT INTO `marc_subfield_structure` VALUES ('210', '2', 'Source', 'Source', 1, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13631 INSERT INTO `marc_subfield_structure` VALUES ('210', '6', 'Linkage', 'Linkage', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13632 INSERT INTO `marc_subfield_structure` VALUES ('210', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13633 INSERT INTO `marc_subfield_structure` VALUES ('210', 'a', 'Abbreviated title', 'Abbreviated title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13634 INSERT INTO `marc_subfield_structure` VALUES ('210', 'b', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13635 INSERT INTO `marc_subfield_structure` VALUES ('211', '6', 'Linkage', 'Linkage', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13636 INSERT INTO `marc_subfield_structure` VALUES ('211', 'a', 'Acronym or shortened title', 'Acronym or shortened title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13637 INSERT INTO `marc_subfield_structure` VALUES ('212', '6', 'Linkage', 'Linkage', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13638 INSERT INTO `marc_subfield_structure` VALUES ('212', 'a', 'Variant access title', 'Variant access title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13639 INSERT INTO `marc_subfield_structure` VALUES ('214', '6', 'Linkage', 'Linkage', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13640 INSERT INTO `marc_subfield_structure` VALUES ('214', 'a', 'Augmented title', 'Augmented title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13641 INSERT INTO `marc_subfield_structure` VALUES ('222', '6', 'Linkage', 'Linkage', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13642 INSERT INTO `marc_subfield_structure` VALUES ('222', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13643 INSERT INTO `marc_subfield_structure` VALUES ('222', 'a', 'Key title', 'Key title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13644 INSERT INTO `marc_subfield_structure` VALUES ('222', 'b', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13645 INSERT INTO `marc_subfield_structure` VALUES ('240', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13646 INSERT INTO `marc_subfield_structure` VALUES ('240', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13647 INSERT INTO `marc_subfield_structure` VALUES ('240', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'ASMP_VIDEORECORDINGS', '', '');
13648 INSERT INTO `marc_subfield_structure` VALUES ('240', 'a', 'Uniform title', 'Uniform title', 0, 0, 'biblio.unititle', 2, '', '', '', 1, -1, 'ASMP_VIDEORECORDINGS', '', '');
13649 INSERT INTO `marc_subfield_structure` VALUES ('240', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 2, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13650 INSERT INTO `marc_subfield_structure` VALUES ('240', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 2, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13651 INSERT INTO `marc_subfield_structure` VALUES ('240', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 2, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13652 INSERT INTO `marc_subfield_structure` VALUES ('240', 'h', 'Medium', 'Medium', 0, 0, '', 2, '', '', '', 0, -1, 'ASMP_VIDEORECORDINGS', '', '');
13653 INSERT INTO `marc_subfield_structure` VALUES ('240', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 2, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13654 INSERT INTO `marc_subfield_structure` VALUES ('240', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 2, '', '', '', 0, -1, 'ASMP_VIDEORECORDINGS', '', '');
13655 INSERT INTO `marc_subfield_structure` VALUES ('240', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 2, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13656 INSERT INTO `marc_subfield_structure` VALUES ('240', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 2, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13657 INSERT INTO `marc_subfield_structure` VALUES ('240', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 2, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13658 INSERT INTO `marc_subfield_structure` VALUES ('240', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 2, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13659 INSERT INTO `marc_subfield_structure` VALUES ('240', 'r', 'Key for music', 'Key for music', 0, 0, '', 2, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13660 INSERT INTO `marc_subfield_structure` VALUES ('240', 's', 'Version', 'Version', 0, 0, '', 2, '', '', '', 0, -1, 'ASMP_VIDEORECORDINGS', '', '');
13661 INSERT INTO `marc_subfield_structure` VALUES ('241', 'a', 'Romanized title', 'Romanized title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13662 INSERT INTO `marc_subfield_structure` VALUES ('241', 'h', 'Medium', 'Medium', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13663 INSERT INTO `marc_subfield_structure` VALUES ('242', '6', 'Linkage', 'Linkage', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13664 INSERT INTO `marc_subfield_structure` VALUES ('242', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13665 INSERT INTO `marc_subfield_structure` VALUES ('242', 'a', 'Title', 'Title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13666 INSERT INTO `marc_subfield_structure` VALUES ('242', 'b', 'Remainder of title', 'Remainder of title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13667 INSERT INTO `marc_subfield_structure` VALUES ('242', 'c', 'Statement of responsibility, etc', 'Statement of responsibility, etc', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13668 INSERT INTO `marc_subfield_structure` VALUES ('242', 'd', 'Designation of section (BK AM MP MU VM SE) [OBSOLETE]', 'Designation of section (BK AM MP MU VM SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13669 INSERT INTO `marc_subfield_structure` VALUES ('242', 'e', 'Name of part/section (BK AM MP MU VM SE) [OBSOLETE]', 'Name of part/section (BK AM MP MU VM SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13670 INSERT INTO `marc_subfield_structure` VALUES ('242', 'h', 'Medium', 'Medium', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13671 INSERT INTO `marc_subfield_structure` VALUES ('242', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13672 INSERT INTO `marc_subfield_structure` VALUES ('242', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13673 INSERT INTO `marc_subfield_structure` VALUES ('242', 'y', 'Language code of translated title', 'Language code of translated title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13674 INSERT INTO `marc_subfield_structure` VALUES ('243', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13675 INSERT INTO `marc_subfield_structure` VALUES ('243', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13676 INSERT INTO `marc_subfield_structure` VALUES ('243', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'ASMP_VIDEORECORDINGS', '', '');
13677 INSERT INTO `marc_subfield_structure` VALUES ('243', 'a', 'Uniform title', 'Unifor title', 0, 0, '', 2, '', '', '', 1, -1, 'ASMP_VIDEORECORDINGS', '', '');
13678 INSERT INTO `marc_subfield_structure` VALUES ('243', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 2, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13679 INSERT INTO `marc_subfield_structure` VALUES ('243', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 2, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13680 INSERT INTO `marc_subfield_structure` VALUES ('243', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 2, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13681 INSERT INTO `marc_subfield_structure` VALUES ('243', 'h', 'Medium', 'Medium', 0, 0, '', 2, '', '', '', 0, -1, 'ASMP_VIDEORECORDINGS', '', '');
13682 INSERT INTO `marc_subfield_structure` VALUES ('243', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 2, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13683 INSERT INTO `marc_subfield_structure` VALUES ('243', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 2, '', '', '', 0, -1, 'ASMP_VIDEORECORDINGS', '', '');
13684 INSERT INTO `marc_subfield_structure` VALUES ('243', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 2, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13685 INSERT INTO `marc_subfield_structure` VALUES ('243', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 2, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13686 INSERT INTO `marc_subfield_structure` VALUES ('243', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 2, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13687 INSERT INTO `marc_subfield_structure` VALUES ('243', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 2, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13688 INSERT INTO `marc_subfield_structure` VALUES ('243', 'r', 'Key for music', 'Key for music', 0, 0, '', 2, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13689 INSERT INTO `marc_subfield_structure` VALUES ('243', 's', 'Version', 'Version', 0, 0, '', 2, '', '', '', 0, -1, 'ASMP_VIDEORECORDINGS', '', '');
13690 INSERT INTO `marc_subfield_structure` VALUES ('245', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13691 INSERT INTO `marc_subfield_structure` VALUES ('245', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13692 INSERT INTO `marc_subfield_structure` VALUES ('245', 'a', 'Title', 'Title', 0, 1, 'biblio.title', 2, '', '', '', NULL, 0, 'ASMP_VIDEORECORDINGS', '''245b'',''245f'',''245g'',''245k'',''245n'',''245p'',''245s'',''245h'',''246i'',''246a'',''246b'',''246f'',''246g'',''246n'',''246p'',''246h'',''242a'',''242b'',''242n'',''242p'',''242h''', '');
13693 INSERT INTO `marc_subfield_structure` VALUES ('245', 'b', 'Remainder of title', 'Remainder of title', 0, 0, 'bibliosubtitle.subtitle', 2, '', '', '', NULL, 0, 'ASMP_VIDEORECORDINGS', '', '');
13694 INSERT INTO `marc_subfield_structure` VALUES ('245', 'c', 'Statement of responsibility, etc', 'Statement of responsibility, etc', 0, 0, '', 2, '', '', '', NULL, 0, 'ASMP_VIDEORECORDINGS', '', '');
13695 INSERT INTO `marc_subfield_structure` VALUES ('245', 'd', 'Designation of section/part/series (SE) [OBSOLETE]', 'Designation of section section/part/series: (SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13696 INSERT INTO `marc_subfield_structure` VALUES ('245', 'e', 'Name of part/section/series (SE) [OBSOLETE]', 'Name of part/section/series (SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13697 INSERT INTO `marc_subfield_structure` VALUES ('245', 'f', 'Inclusive dates', 'Inclusive dates', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13698 INSERT INTO `marc_subfield_structure` VALUES ('245', 'g', 'Bulk dates', 'Bulk dates', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13699 INSERT INTO `marc_subfield_structure` VALUES ('245', 'h', 'Medium', 'Medium', 0, 0, '', 2, '', '', '', NULL, 0, 'ASMP_VIDEORECORDINGS', '', '');
13700 INSERT INTO `marc_subfield_structure` VALUES ('245', 'k', 'Form', 'Form', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13701 INSERT INTO `marc_subfield_structure` VALUES ('245', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13702 INSERT INTO `marc_subfield_structure` VALUES ('245', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13703 INSERT INTO `marc_subfield_structure` VALUES ('245', 's', 'Version', 'Version', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13704 INSERT INTO `marc_subfield_structure` VALUES ('246', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13705 INSERT INTO `marc_subfield_structure` VALUES ('246', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13706 INSERT INTO `marc_subfield_structure` VALUES ('246', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13707 INSERT INTO `marc_subfield_structure` VALUES ('246', 'a', 'Title proper/short title', 'Title proper/short title', 0, 0, '', 2, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
13708 INSERT INTO `marc_subfield_structure` VALUES ('246', 'b', 'Remainder of title', 'Remainder of title', 0, 0, '', 2, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
13709 INSERT INTO `marc_subfield_structure` VALUES ('246', 'd', 'Designation of section/part/series (SE) [OBSOLETE]', 'Designation of section section/part/series (SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13710 INSERT INTO `marc_subfield_structure` VALUES ('246', 'e', 'Name of part/section/series (SE) [OBSOLETE]', 'Name of part/section/series (SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13711 INSERT INTO `marc_subfield_structure` VALUES ('246', 'f', 'Date or sequential designation', 'Date or sequential designation', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13712 INSERT INTO `marc_subfield_structure` VALUES ('246', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13713 INSERT INTO `marc_subfield_structure` VALUES ('246', 'h', 'Medium', 'Medium', 0, 0, '', 2, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
13714 INSERT INTO `marc_subfield_structure` VALUES ('246', 'i', 'Display text', 'Display text', 0, 0, '', 2, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
13715 INSERT INTO `marc_subfield_structure` VALUES ('246', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13716 INSERT INTO `marc_subfield_structure` VALUES ('246', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13717 INSERT INTO `marc_subfield_structure` VALUES ('247', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13718 INSERT INTO `marc_subfield_structure` VALUES ('247', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13719 INSERT INTO `marc_subfield_structure` VALUES ('247', 'a', 'Title', 'Title', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13720 INSERT INTO `marc_subfield_structure` VALUES ('247', 'b', 'Remainder of title', 'Remainder of title', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13721 INSERT INTO `marc_subfield_structure` VALUES ('247', 'd', 'Designation of section (SE) [OBSOLETE]', 'Designation of section (SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13722 INSERT INTO `marc_subfield_structure` VALUES ('247', 'e', 'Name of part/section (SE) [OBSOLETE]', 'Name of part/section (SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13723 INSERT INTO `marc_subfield_structure` VALUES ('247', 'f', 'Date or sequential designation', 'Date or sequential designation', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13724 INSERT INTO `marc_subfield_structure` VALUES ('247', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13725 INSERT INTO `marc_subfield_structure` VALUES ('247', 'h', 'Medium', 'Medium', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13726 INSERT INTO `marc_subfield_structure` VALUES ('247', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13727 INSERT INTO `marc_subfield_structure` VALUES ('247', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13728 INSERT INTO `marc_subfield_structure` VALUES ('247', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13729 INSERT INTO `marc_subfield_structure` VALUES ('250', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13730 INSERT INTO `marc_subfield_structure` VALUES ('250', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13731 INSERT INTO `marc_subfield_structure` VALUES ('250', 'a', 'Edition statement', 'Edition statement', 0, 0, '', 2, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
13732 INSERT INTO `marc_subfield_structure` VALUES ('250', 'b', 'Remainder of edition statement', 'Remainder of edition statement', 0, 0, '', 2, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
13733 INSERT INTO `marc_subfield_structure` VALUES ('254', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13734 INSERT INTO `marc_subfield_structure` VALUES ('254', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13735 INSERT INTO `marc_subfield_structure` VALUES ('254', 'a', 'Musical presentation statement', 'Musical presentation statement', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13736 INSERT INTO `marc_subfield_structure` VALUES ('255', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13737 INSERT INTO `marc_subfield_structure` VALUES ('255', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13738 INSERT INTO `marc_subfield_structure` VALUES ('255', 'a', 'Statement of scale', 'Statement of scale', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13739 INSERT INTO `marc_subfield_structure` VALUES ('255', 'b', 'Statement of projection', 'Statement of projection', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13740 INSERT INTO `marc_subfield_structure` VALUES ('255', 'c', 'Statement of coordinates', 'Statement of coordinates', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13741 INSERT INTO `marc_subfield_structure` VALUES ('255', 'd', 'Statement of zone', 'Statement of zone', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13742 INSERT INTO `marc_subfield_structure` VALUES ('255', 'e', 'Statement of equinox', 'Statement of equinox', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13743 INSERT INTO `marc_subfield_structure` VALUES ('255', 'f', 'Outer G-ring coordinate pairs', 'Outer G-ring coordinate pairs', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13744 INSERT INTO `marc_subfield_structure` VALUES ('255', 'g', 'Exclusion G-ring coordinate pairs', 'Exclusion G-ring coordinate pairs', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13745 INSERT INTO `marc_subfield_structure` VALUES ('256', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13746 INSERT INTO `marc_subfield_structure` VALUES ('256', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13747 INSERT INTO `marc_subfield_structure` VALUES ('256', 'a', 'Computer file characteristics', 'Computer file characteristics', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13748 INSERT INTO `marc_subfield_structure` VALUES ('257', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13749 INSERT INTO `marc_subfield_structure` VALUES ('257', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13750 INSERT INTO `marc_subfield_structure` VALUES ('257', 'a', 'Country of producing entity', 'Country of producing entity', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13751 INSERT INTO `marc_subfield_structure` VALUES ('258', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13752 INSERT INTO `marc_subfield_structure` VALUES ('258', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13753 INSERT INTO `marc_subfield_structure` VALUES ('258', 'a', 'Issuing jurisdiction', 'Issuing jurisdiction', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13754 INSERT INTO `marc_subfield_structure` VALUES ('258', 'b', 'Denomination', 'Denomination', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13755 INSERT INTO `marc_subfield_structure` VALUES ('260', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13756 INSERT INTO `marc_subfield_structure` VALUES ('260', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13757 INSERT INTO `marc_subfield_structure` VALUES ('260', 'a', 'Place of publication, distribution, etc', 'Place of publication, distribution, etc', 1, 0, 'biblioitems.place', 2, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
13758 INSERT INTO `marc_subfield_structure` VALUES ('260', 'b', 'Name of publisher, distributor, etc', 'Name of publisher, distributor, etc', 1, 0, 'biblioitems.publishercode', 2, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
13759 INSERT INTO `marc_subfield_structure` VALUES ('260', 'c', 'Date of copyright, publication, distribution, release, etc', 'Date of publication, distribution, etc', 1, 0, 'biblio.copyrightdate', 2, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
13760 INSERT INTO `marc_subfield_structure` VALUES ('260', 'd', 'Plate or publisher\'s number for music (Pre-AACR 2) [OBSOLETE, CAN/MARC], [LOCAL, USA]', 'Plate or publisher\'s number for music (Pre-AACR 2) [OBSOLETE, CAN/MARC], [LOCAL, USA]', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13761 INSERT INTO `marc_subfield_structure` VALUES ('260', 'e', 'Place of manufacture', 'Place of manufacture', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13762 INSERT INTO `marc_subfield_structure` VALUES ('260', 'f', 'Manufacturer', 'Manufacturer', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13763 INSERT INTO `marc_subfield_structure` VALUES ('260', 'g', 'Date of manufacture', 'Date of manufacture', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13764 INSERT INTO `marc_subfield_structure` VALUES ('260', 'k', 'Identification/manufacturer number [OBSOLETE, CAN/MARC]', 'Identification/manufacturer number [OBSOLETE, CAN/MARC]', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13765 INSERT INTO `marc_subfield_structure` VALUES ('260', 'l', 'Matrix and/or take number [OBSOLETE, CAN/MARC]', 'Matrix and/or take number [OBSOLETE, CAN/MARC]', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13766 INSERT INTO `marc_subfield_structure` VALUES ('261', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13767 INSERT INTO `marc_subfield_structure` VALUES ('261', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13768 INSERT INTO `marc_subfield_structure` VALUES ('261', 'a', 'Producing company', 'Producing company', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13769 INSERT INTO `marc_subfield_structure` VALUES ('261', 'b', 'Releasing company (primary distributor)', 'Releasing company (primary distributor)', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13770 INSERT INTO `marc_subfield_structure` VALUES ('261', 'c', 'Date of production, release, etc.', 'Date of production, release, etc.', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13771 INSERT INTO `marc_subfield_structure` VALUES ('261', 'd', 'Date of production, release, etc.', 'Date of production, release, etc.', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13772 INSERT INTO `marc_subfield_structure` VALUES ('261', 'e', 'Contractual producer', 'Contractual producer', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13773 INSERT INTO `marc_subfield_structure` VALUES ('261', 'f', 'Place of production, release, etc.', 'Place of production, release, etc.', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13774 INSERT INTO `marc_subfield_structure` VALUES ('262', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13775 INSERT INTO `marc_subfield_structure` VALUES ('262', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13776 INSERT INTO `marc_subfield_structure` VALUES ('262', 'a', 'Place of production, release, etc.', 'Place of production, release, etc.', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13777 INSERT INTO `marc_subfield_structure` VALUES ('262', 'b', 'Publisher or trade name', 'Publisher or trade name', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13778 INSERT INTO `marc_subfield_structure` VALUES ('262', 'c', 'Date of production, release, etc.', 'Date of production, release, etc.', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13779 INSERT INTO `marc_subfield_structure` VALUES ('262', 'k', 'Serial identification', 'Serial identification', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13780 INSERT INTO `marc_subfield_structure` VALUES ('262', 'l', 'Matrix and/or take number', 'Matrix and/or take number', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13781 INSERT INTO `marc_subfield_structure` VALUES ('263', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13782 INSERT INTO `marc_subfield_structure` VALUES ('263', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13783 INSERT INTO `marc_subfield_structure` VALUES ('263', 'a', 'Projected publication date', 'Projected publication date', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13784 INSERT INTO `marc_subfield_structure` VALUES ('265', '6', 'Linkage [OBSOLETE]', 'Linkage [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13785 INSERT INTO `marc_subfield_structure` VALUES ('265', 'a', 'Source for acquisition/subscription address [OBSOLETE]', 'Source for acquisition/subscription address [OBSOLETE]', 1, 0, '', 2, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13786 INSERT INTO `marc_subfield_structure` VALUES ('270', '4', 'Relator code', 'Relator code', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13787 INSERT INTO `marc_subfield_structure` VALUES ('270', '6', 'Linkage', 'Linkage', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13788 INSERT INTO `marc_subfield_structure` VALUES ('270', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13789 INSERT INTO `marc_subfield_structure` VALUES ('270', 'a', 'Address', 'Address', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
13790 INSERT INTO `marc_subfield_structure` VALUES ('270', 'b', 'City', 'City', 0, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
13791 INSERT INTO `marc_subfield_structure` VALUES ('270', 'c', 'State or province', 'State or province', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13792 INSERT INTO `marc_subfield_structure` VALUES ('270', 'd', 'Country', 'Country', 0, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
13793 INSERT INTO `marc_subfield_structure` VALUES ('270', 'e', 'Postal code', 'Postal code', 0, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
13794 INSERT INTO `marc_subfield_structure` VALUES ('270', 'f', 'Terms preceding attention name', 'Terms preceding attention name', 0, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
13795 INSERT INTO `marc_subfield_structure` VALUES ('270', 'g', 'Attention name', 'Attention name', 0, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
13796 INSERT INTO `marc_subfield_structure` VALUES ('270', 'h', 'Attention position', 'Attention position', 0, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
13797 INSERT INTO `marc_subfield_structure` VALUES ('270', 'i', 'Type of address', 'Type of address', 0, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
13798 INSERT INTO `marc_subfield_structure` VALUES ('270', 'j', 'Specialized telephone number', 'Specialized telephone number', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
13799 INSERT INTO `marc_subfield_structure` VALUES ('270', 'k', 'Telephone number', 'Telephone number', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
13800 INSERT INTO `marc_subfield_structure` VALUES ('270', 'l', 'Fax number', 'Fax number', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
13801 INSERT INTO `marc_subfield_structure` VALUES ('270', 'm', 'Electronic mail address', 'Electronic mail address', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
13802 INSERT INTO `marc_subfield_structure` VALUES ('270', 'n', 'TDD or TTY number', 'TDD or TTY number', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
13803 INSERT INTO `marc_subfield_structure` VALUES ('270', 'p', 'Contact person', 'Contact person', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
13804 INSERT INTO `marc_subfield_structure` VALUES ('270', 'q', 'Title of contact person', 'Title of contact person', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
13805 INSERT INTO `marc_subfield_structure` VALUES ('270', 'r', 'Hours', 'Hours', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
13806 INSERT INTO `marc_subfield_structure` VALUES ('270', 'z', 'Public note', 'Public note', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
13807 INSERT INTO `marc_subfield_structure` VALUES ('300', '3', 'Materials specified', 'Materials specified', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13808 INSERT INTO `marc_subfield_structure` VALUES ('300', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13809 INSERT INTO `marc_subfield_structure` VALUES ('300', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13810 INSERT INTO `marc_subfield_structure` VALUES ('300', 'a', 'Extent (number of discs/tapes followed by format)', 'Extent', 1, 1, 'biblioitems.pages', 3, '', '', '', NULL, 0, 'ASMP_VIDEORECORDINGS', '', '');
13811 INSERT INTO `marc_subfield_structure` VALUES ('300', 'b', 'Other physical details', 'Other physical details', 0, 0, 'biblioitems.illus', 3, '', '', '', 0, 0, 'ASMP_VIDEORECORDINGS', '', '');
13812 INSERT INTO `marc_subfield_structure` VALUES ('300', 'c', 'Dimensions', 'Dimensions', 1, 0, 'biblioitems.size', 3, '', '', '', NULL, 0, 'ASMP_VIDEORECORDINGS', '', '');
13813 INSERT INTO `marc_subfield_structure` VALUES ('300', 'd', 'Accompanying material [OBSOLETE, CAN/MARC]', 'Accompanying material [OBSOLETE, CAN/MARC]', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13814 INSERT INTO `marc_subfield_structure` VALUES ('300', 'e', 'Accompanying material', 'Accompanying material', 0, 0, '', 3, '', '', '', NULL, 0, 'ASMP_VIDEORECORDINGS', '', '');
13815 INSERT INTO `marc_subfield_structure` VALUES ('300', 'f', 'Type of unit', 'Type of unit', 1, 0, '', 3, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
13816 INSERT INTO `marc_subfield_structure` VALUES ('300', 'g', 'Size of unit', 'Size of unit', 1, 0, '', 3, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
13817 INSERT INTO `marc_subfield_structure` VALUES ('300', 'k', 'Speed [Videodiscs, pre-AACR2 records only] [OBSOLETE, CAN/MARC]', 'Speed [Videodiscs, pre-AACR2 records only] [OBSOLETE, CAN/MARC]', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13818 INSERT INTO `marc_subfield_structure` VALUES ('300', 'm', 'Identification/manufacturer number [pre-AACR2 records only] [OBSOLETE, CAN/MARC]', 'Identification/manufacturer number [pre-AACR2 records only] [OBSOLETE, CAN/MARC]', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13819 INSERT INTO `marc_subfield_structure` VALUES ('300', 'n', 'Matrix and/or take number [Sound recordings, pre-AACR2 records only] [OBSOLETE, CAN/MARC]', 'Matrix and/or take number [Sound recordings, pre-AACR2 records only] [OBSOLETE, CAN/MARC]', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13820 INSERT INTO `marc_subfield_structure` VALUES ('301', 'a', 'Extent of item', 'Extent of item', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13821 INSERT INTO `marc_subfield_structure` VALUES ('301', 'b', 'Sound characteristics', 'Sound characteristics', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13822 INSERT INTO `marc_subfield_structure` VALUES ('301', 'c', 'Color characteristics', 'Color characteristics', 0, 0, '', 3, '', '', NULL, NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13823 INSERT INTO `marc_subfield_structure` VALUES ('301', 'd', 'Dimensions', 'Dimensions', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13824 INSERT INTO `marc_subfield_structure` VALUES ('301', 'e', 'Sound characteristics', 'Sound characteristics', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13825 INSERT INTO `marc_subfield_structure` VALUES ('301', 'f', 'Speed', 'Speed', 0, 0, '', 3, '', '', NULL, NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13826 INSERT INTO `marc_subfield_structure` VALUES ('302', 'a', 'Page count', 'Page count', 0, 0, '', 3, '', '', NULL, NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13827 INSERT INTO `marc_subfield_structure` VALUES ('303', 'a', 'Unit count', 'Unit count', 0, 0, '', 3, '', '', NULL, NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13828 INSERT INTO `marc_subfield_structure` VALUES ('304', 'a', 'Linear footage', 'Linear footage', 0, 0, '', 3, '', '', NULL, NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13829 INSERT INTO `marc_subfield_structure` VALUES ('305', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13830 INSERT INTO `marc_subfield_structure` VALUES ('305', 'a', 'Extent', 'Extent', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13831 INSERT INTO `marc_subfield_structure` VALUES ('305', 'b', 'Other physical details', 'Other physical details', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13832 INSERT INTO `marc_subfield_structure` VALUES ('305', 'c', 'Dimensions', 'Dimensions', 0, 0, '', 3, '', '', NULL, NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13833 INSERT INTO `marc_subfield_structure` VALUES ('305', 'd', 'Microgroove or standard', 'Microgroove or standard', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13834 INSERT INTO `marc_subfield_structure` VALUES ('305', 'e', 'Stereophonic, monaural', 'Stereophonic, monaural', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13835 INSERT INTO `marc_subfield_structure` VALUES ('305', 'f', 'Number of tracks', 'Number of tracks', 0, 0, '', 3, '', '', NULL, NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13836 INSERT INTO `marc_subfield_structure` VALUES ('305', 'm', 'Serial identification', 'Serial identification', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13837 INSERT INTO `marc_subfield_structure` VALUES ('305', 'n', 'Matrix and/or take number', 'Matrix and/or take number', 0, 0, '', 3, '', '', NULL, NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13838 INSERT INTO `marc_subfield_structure` VALUES ('306', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13839 INSERT INTO `marc_subfield_structure` VALUES ('306', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13840 INSERT INTO `marc_subfield_structure` VALUES ('306', 'a', 'Playing time', 'Playing time', 0, 0, '', 3, '', '', '', NULL, 0, 'ASMP_VIDEORECORDINGS', '', '');
13841 INSERT INTO `marc_subfield_structure` VALUES ('307', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13842 INSERT INTO `marc_subfield_structure` VALUES ('307', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13843 INSERT INTO `marc_subfield_structure` VALUES ('307', 'a', 'Hours', 'Hours', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13844 INSERT INTO `marc_subfield_structure` VALUES ('307', 'b', 'Additional information', 'Additional information', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13845 INSERT INTO `marc_subfield_structure` VALUES ('308', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13846 INSERT INTO `marc_subfield_structure` VALUES ('308', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13847 INSERT INTO `marc_subfield_structure` VALUES ('308', 'a', 'Number of reels', 'Number of reels', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13848 INSERT INTO `marc_subfield_structure` VALUES ('308', 'b', 'Footage', 'Footage', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13849 INSERT INTO `marc_subfield_structure` VALUES ('308', 'c', 'Sound characteristics', 'Sound characteristics', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13850 INSERT INTO `marc_subfield_structure` VALUES ('308', 'd', 'Color characteristics', 'Color characteristics', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13851 INSERT INTO `marc_subfield_structure` VALUES ('308', 'e', 'Width', 'Width', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13852 INSERT INTO `marc_subfield_structure` VALUES ('308', 'f', 'Presentation format', 'Presentation format', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13853 INSERT INTO `marc_subfield_structure` VALUES ('310', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13854 INSERT INTO `marc_subfield_structure` VALUES ('310', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13855 INSERT INTO `marc_subfield_structure` VALUES ('310', 'a', 'Current publication frequency', 'Current publication frequency', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13856 INSERT INTO `marc_subfield_structure` VALUES ('310', 'b', 'Date of current publication frequency', 'Date of current publication frequency', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13857 INSERT INTO `marc_subfield_structure` VALUES ('315', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13858 INSERT INTO `marc_subfield_structure` VALUES ('315', 'a', 'Frequency', 'Frequency', 1, 0, '', 3, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13859 INSERT INTO `marc_subfield_structure` VALUES ('315', 'b', 'Dates of frequency', 'Dates of frequency', 1, 0, '', 3, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13860 INSERT INTO `marc_subfield_structure` VALUES ('321', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13861 INSERT INTO `marc_subfield_structure` VALUES ('321', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13862 INSERT INTO `marc_subfield_structure` VALUES ('321', 'a', 'Former publication frequency', 'Former publication frequency', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13863 INSERT INTO `marc_subfield_structure` VALUES ('321', 'b', 'Former publication frequency', 'Former publication frequency', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13864 INSERT INTO `marc_subfield_structure` VALUES ('340', '3', 'Materials specified', 'Materials specified', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13865 INSERT INTO `marc_subfield_structure` VALUES ('340', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13866 INSERT INTO `marc_subfield_structure` VALUES ('340', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13867 INSERT INTO `marc_subfield_structure` VALUES ('340', 'a', 'Material base and configuration', 'Material base and configuration', 1, 0, '', 3, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13868 INSERT INTO `marc_subfield_structure` VALUES ('340', 'b', 'Dimensions', 'Dimensions', 1, 0, '', 3, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13869 INSERT INTO `marc_subfield_structure` VALUES ('340', 'c', 'Materials applied to surface', 'Materials applied to surface', 1, 0, '', 3, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13870 INSERT INTO `marc_subfield_structure` VALUES ('340', 'd', 'Information recording technique', 'Information recording technique', 1, 0, '', 3, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13871 INSERT INTO `marc_subfield_structure` VALUES ('340', 'e', 'Support', 'Support', 1, 0, '', 3, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13872 INSERT INTO `marc_subfield_structure` VALUES ('340', 'f', 'Production rate/ratio', 'Production rate/ratio', 1, 0, '', 3, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13873 INSERT INTO `marc_subfield_structure` VALUES ('340', 'h', 'Location within medium', 'Location within medium', 1, 0, '', 3, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13874 INSERT INTO `marc_subfield_structure` VALUES ('340', 'i', 'Technical specifications of medium', 'Technical specifications of medium', 1, 0, '', 3, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13875 INSERT INTO `marc_subfield_structure` VALUES ('342', '2', 'Reference method used', 'Reference method used', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13876 INSERT INTO `marc_subfield_structure` VALUES ('342', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13877 INSERT INTO `marc_subfield_structure` VALUES ('342', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13878 INSERT INTO `marc_subfield_structure` VALUES ('342', 'a', 'Name', 'Name', 1, 0, '', 3, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13879 INSERT INTO `marc_subfield_structure` VALUES ('342', 'b', 'Coordinate or distance units', 'Coordinate or distance units', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13880 INSERT INTO `marc_subfield_structure` VALUES ('342', 'c', 'Latitude resolution', 'Latitude resolution', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13881 INSERT INTO `marc_subfield_structure` VALUES ('342', 'd', 'Longitude resolution', 'Longitude resolution', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13882 INSERT INTO `marc_subfield_structure` VALUES ('342', 'e', 'Standard parallel or oblique line latitude', 'Standard parallel or oblique line latitude', 1, 0, '', 3, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13883 INSERT INTO `marc_subfield_structure` VALUES ('342', 'f', 'Oblique line longitude', 'Oblique line longitude', 1, 0, '', 3, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13884 INSERT INTO `marc_subfield_structure` VALUES ('342', 'g', 'Longitude of central meridian or projection center', 'Longitude of central meridian or projection center', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13885 INSERT INTO `marc_subfield_structure` VALUES ('342', 'h', 'Latitude of projection origin or projection center', 'Latitude of projection origin or projection center', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13886 INSERT INTO `marc_subfield_structure` VALUES ('342', 'i', 'False easting', 'False easting', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13887 INSERT INTO `marc_subfield_structure` VALUES ('342', 'j', 'False northing', 'False northing', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13888 INSERT INTO `marc_subfield_structure` VALUES ('342', 'k', 'Scale factor', 'Scale factor', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13889 INSERT INTO `marc_subfield_structure` VALUES ('342', 'l', 'Height of perspective point above surface', 'Height of perspective point above surface', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13890 INSERT INTO `marc_subfield_structure` VALUES ('342', 'm', 'Azimuthal angle', 'Azimuthal angle', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13891 INSERT INTO `marc_subfield_structure` VALUES ('342', 'n', 'Azimuth measure point longitude or straight vertical longitude from pole', 'Azimuth measure point longitude or straight vertical longitude from pole', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13892 INSERT INTO `marc_subfield_structure` VALUES ('342', 'o', 'Landsat number and path number', 'Landsat number and path number', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13893 INSERT INTO `marc_subfield_structure` VALUES ('342', 'p', 'Zone identifier', 'Zone identifier', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13894 INSERT INTO `marc_subfield_structure` VALUES ('342', 'q', 'Ellipsoid name', 'Ellipsoid name', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13895 INSERT INTO `marc_subfield_structure` VALUES ('342', 'r', 'Semi-major axis', 'Semi-major axis', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13896 INSERT INTO `marc_subfield_structure` VALUES ('342', 's', 'Denominator of flattening ratio', 'Denominator of flattening ratio', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13897 INSERT INTO `marc_subfield_structure` VALUES ('342', 't', 'Vertical resolution', 'Vertical resolution', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13898 INSERT INTO `marc_subfield_structure` VALUES ('342', 'u', 'Vertical encoding method', 'Vertical encoding method', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13899 INSERT INTO `marc_subfield_structure` VALUES ('342', 'v', 'Local planar, local, or other projection or grid description', 'Local planar, local, or other projection or grid description', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13900 INSERT INTO `marc_subfield_structure` VALUES ('342', 'w', 'Local planar or local georeference information', 'Local planar or local georeference information', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13901 INSERT INTO `marc_subfield_structure` VALUES ('343', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13902 INSERT INTO `marc_subfield_structure` VALUES ('343', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13903 INSERT INTO `marc_subfield_structure` VALUES ('343', 'a', 'Planar coordinate encoding method', 'Planar coordinate encoding method', 1, 0, '', 3, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13904 INSERT INTO `marc_subfield_structure` VALUES ('343', 'b', 'Planar distance units', 'Planar distance units', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13905 INSERT INTO `marc_subfield_structure` VALUES ('343', 'c', 'Abscissa resolution', 'Abscissa resolution', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13906 INSERT INTO `marc_subfield_structure` VALUES ('343', 'd', 'Ordinate resolution', 'Ordinate resolution', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13907 INSERT INTO `marc_subfield_structure` VALUES ('343', 'e', 'Distance resolution', 'Distance resolution', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13908 INSERT INTO `marc_subfield_structure` VALUES ('343', 'f', 'Bearing resolution', 'Bearing resolution', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13909 INSERT INTO `marc_subfield_structure` VALUES ('343', 'g', 'Bearing unit', 'Bearing unit', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13910 INSERT INTO `marc_subfield_structure` VALUES ('343', 'h', 'Bearing reference direction', 'Bearing reference direction', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13911 INSERT INTO `marc_subfield_structure` VALUES ('343', 'i', 'Bearing reference meridian', 'Bearing reference meridian', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13912 INSERT INTO `marc_subfield_structure` VALUES ('350', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13913 INSERT INTO `marc_subfield_structure` VALUES ('350', 'a', 'Price', 'Price', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13914 INSERT INTO `marc_subfield_structure` VALUES ('350', 'b', 'Form of issue', 'Form of issue', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13915 INSERT INTO `marc_subfield_structure` VALUES ('351', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13916 INSERT INTO `marc_subfield_structure` VALUES ('351', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13917 INSERT INTO `marc_subfield_structure` VALUES ('351', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13918 INSERT INTO `marc_subfield_structure` VALUES ('351', 'a', 'Organization', 'Organization', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13919 INSERT INTO `marc_subfield_structure` VALUES ('351', 'b', 'Arrangement', 'Arrangement', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13920 INSERT INTO `marc_subfield_structure` VALUES ('351', 'c', 'Hierarchical level', 'Hierarchical level', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13921 INSERT INTO `marc_subfield_structure` VALUES ('352', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13922 INSERT INTO `marc_subfield_structure` VALUES ('352', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13923 INSERT INTO `marc_subfield_structure` VALUES ('352', 'a', 'Direct reference method', 'Direct reference method', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13924 INSERT INTO `marc_subfield_structure` VALUES ('352', 'b', 'Object type', 'Object type', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13925 INSERT INTO `marc_subfield_structure` VALUES ('352', 'c', 'Object count', 'Object count', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13926 INSERT INTO `marc_subfield_structure` VALUES ('352', 'd', 'Row count', 'Row count', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13927 INSERT INTO `marc_subfield_structure` VALUES ('352', 'e', 'Column count', 'Column count', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13928 INSERT INTO `marc_subfield_structure` VALUES ('352', 'f', 'Vertical count', 'Vertical count', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13929 INSERT INTO `marc_subfield_structure` VALUES ('352', 'g', 'VPF topology level', 'VPF topology level', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13930 INSERT INTO `marc_subfield_structure` VALUES ('352', 'i', 'Indirect reference description', 'Indirect reference description', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13931 INSERT INTO `marc_subfield_structure` VALUES ('355', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13932 INSERT INTO `marc_subfield_structure` VALUES ('355', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13933 INSERT INTO `marc_subfield_structure` VALUES ('355', 'a', 'Security classification', 'Security classification', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13934 INSERT INTO `marc_subfield_structure` VALUES ('355', 'b', 'Handling instructions', 'Handling instructions', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13935 INSERT INTO `marc_subfield_structure` VALUES ('355', 'c', 'External dissemination information', 'External dissemination information', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13936 INSERT INTO `marc_subfield_structure` VALUES ('355', 'd', 'Downgrading or declassification event', 'Downgrading or declassification event', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13937 INSERT INTO `marc_subfield_structure` VALUES ('355', 'e', 'Classification system', 'Classification system', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13938 INSERT INTO `marc_subfield_structure` VALUES ('355', 'f', 'Country of origin code', 'Country of origin code', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13939 INSERT INTO `marc_subfield_structure` VALUES ('355', 'g', 'Downgrading date', 'Downgrading date', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13940 INSERT INTO `marc_subfield_structure` VALUES ('355', 'h', 'Declassification date', 'Declassification date', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13941 INSERT INTO `marc_subfield_structure` VALUES ('355', 'j', 'Authorization', 'Authorization', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13942 INSERT INTO `marc_subfield_structure` VALUES ('357', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13943 INSERT INTO `marc_subfield_structure` VALUES ('357', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13944 INSERT INTO `marc_subfield_structure` VALUES ('357', 'a', 'Originator control term', 'Originator control term', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13945 INSERT INTO `marc_subfield_structure` VALUES ('357', 'b', 'Originating agency', 'Originating agency', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13946 INSERT INTO `marc_subfield_structure` VALUES ('357', 'c', 'Authorized recipients of material', 'Authorized recipients of material', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13947 INSERT INTO `marc_subfield_structure` VALUES ('357', 'g', 'Other restrictions', 'Other restrictions', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13948 INSERT INTO `marc_subfield_structure` VALUES ('359', 'a', 'Rental price', 'Rental price', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13949 INSERT INTO `marc_subfield_structure` VALUES ('362', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13950 INSERT INTO `marc_subfield_structure` VALUES ('362', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13951 INSERT INTO `marc_subfield_structure` VALUES ('362', 'a', 'Dates of publication and/or sequential designation', 'Dates of publication and/or sequential designation', 0, 0, 'biblioitems.volumedesc', 3, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13952 INSERT INTO `marc_subfield_structure` VALUES ('362', 'z', 'Source of information', 'Source of information', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13953 INSERT INTO `marc_subfield_structure` VALUES ('365', '2', 'Source of price type code', 'Source of price type code', 0, 0, '', 9, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
13954 INSERT INTO `marc_subfield_structure` VALUES ('365', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13955 INSERT INTO `marc_subfield_structure` VALUES ('365', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13956 INSERT INTO `marc_subfield_structure` VALUES ('365', 'a', 'Price type code', 'Price type code', 0, 0, '', 9, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
13957 INSERT INTO `marc_subfield_structure` VALUES ('365', 'b', 'Price amount', 'Price amount', 0, 0, '', 9, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
13958 INSERT INTO `marc_subfield_structure` VALUES ('365', 'c', 'Price type code', 'Price type code', 0, 0, '', 9, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
13959 INSERT INTO `marc_subfield_structure` VALUES ('365', 'd', 'Unit of pricing', 'Unit of pricing', 0, 0, '', 9, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
13960 INSERT INTO `marc_subfield_structure` VALUES ('365', 'e', 'Price note', 'Price note', 0, 0, '', 9, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
13961 INSERT INTO `marc_subfield_structure` VALUES ('365', 'f', 'Price effective from', 'Price effective from', 0, 0, '', 9, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
13962 INSERT INTO `marc_subfield_structure` VALUES ('365', 'g', 'Price effective until', 'Price effective until', 0, 0, '', 9, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
13963 INSERT INTO `marc_subfield_structure` VALUES ('365', 'h', 'Tax rate 1', 'Tax rate 1', 0, 0, '', 9, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
13964 INSERT INTO `marc_subfield_structure` VALUES ('365', 'i', 'Tax rate 2', 'Tax rate 2', 0, 0, '', 9, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
13965 INSERT INTO `marc_subfield_structure` VALUES ('365', 'j', 'ISO country code', 'ISO country code', 0, 0, '', 9, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
13966 INSERT INTO `marc_subfield_structure` VALUES ('365', 'k', 'MARC country code', 'MARC country code', 0, 0, '', 9, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
13967 INSERT INTO `marc_subfield_structure` VALUES ('365', 'm', 'Identification of pricing entity', 'Identification of pricing entity', 0, 0, '', 9, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
13968 INSERT INTO `marc_subfield_structure` VALUES ('366', '2', 'Source of availability status code', 'Source of availability status code', 0, 0, '', 9, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
13969 INSERT INTO `marc_subfield_structure` VALUES ('366', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13970 INSERT INTO `marc_subfield_structure` VALUES ('366', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
13971 INSERT INTO `marc_subfield_structure` VALUES ('366', 'a', 'Publishers\' compressed title identification', 'Publishers\' compressed title identification', 0, 0, '', 9, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
13972 INSERT INTO `marc_subfield_structure` VALUES ('366', 'b', 'Detailed date of publication', 'Detailed date of publication', 0, 0, '', 9, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
13973 INSERT INTO `marc_subfield_structure` VALUES ('366', 'c', 'Availability status code', 'Availability status code', 0, 0, '', 9, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
13974 INSERT INTO `marc_subfield_structure` VALUES ('366', 'd', 'Expected next availability date', 'Expected next availability date', 0, 0, '', 9, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
13975 INSERT INTO `marc_subfield_structure` VALUES ('366', 'e', 'Note', 'Note', 0, 0, '', 9, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
13976 INSERT INTO `marc_subfield_structure` VALUES ('366', 'f', 'Publishers\' discount category', 'Publishers\' discount category', 0, 0, '', 9, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
13977 INSERT INTO `marc_subfield_structure` VALUES ('366', 'g', 'Date made out of print', 'Date made out of print', 0, 0, '', 9, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
13978 INSERT INTO `marc_subfield_structure` VALUES ('366', 'j', 'ISO country code', 'ISO country code', 0, 0, '', 9, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
13979 INSERT INTO `marc_subfield_structure` VALUES ('366', 'k', 'MARC country code', 'MARC country code', 0, 0, '', 9, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
13980 INSERT INTO `marc_subfield_structure` VALUES ('366', 'm', 'Identification of agency', 'Identification of agency', 0, 0, '', 9, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
13981 INSERT INTO `marc_subfield_structure` VALUES ('400', '4', 'Relator code', 'Relator code', 1, 0, '', 4, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13982 INSERT INTO `marc_subfield_structure` VALUES ('400', '6', 'Linkage', 'Linkage', 0, 0, '', 4, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13983 INSERT INTO `marc_subfield_structure` VALUES ('400', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 4, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13984 INSERT INTO `marc_subfield_structure` VALUES ('400', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'ASMP_VIDEORECORDINGS', '', '');
13985 INSERT INTO `marc_subfield_structure` VALUES ('400', 'a', 'Personal name', 'Personal name', 0, 0, '', 4, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13986 INSERT INTO `marc_subfield_structure` VALUES ('400', 'b', 'Numeration', 'Numeration', 0, 0, '', 4, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13987 INSERT INTO `marc_subfield_structure` VALUES ('400', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 4, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13988 INSERT INTO `marc_subfield_structure` VALUES ('400', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 4, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13989 INSERT INTO `marc_subfield_structure` VALUES ('400', 'e', 'Relator term', 'Relator term', 1, 0, '', 4, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13990 INSERT INTO `marc_subfield_structure` VALUES ('400', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 4, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13991 INSERT INTO `marc_subfield_structure` VALUES ('400', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 4, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13992 INSERT INTO `marc_subfield_structure` VALUES ('400', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 4, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13993 INSERT INTO `marc_subfield_structure` VALUES ('400', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 4, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13994 INSERT INTO `marc_subfield_structure` VALUES ('400', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 4, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13995 INSERT INTO `marc_subfield_structure` VALUES ('400', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 4, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13996 INSERT INTO `marc_subfield_structure` VALUES ('400', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 4, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13997 INSERT INTO `marc_subfield_structure` VALUES ('400', 't', 'Title of a work', 'Title of a work', 0, 0, '', 4, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13998 INSERT INTO `marc_subfield_structure` VALUES ('400', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 4, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
13999 INSERT INTO `marc_subfield_structure` VALUES ('400', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 4, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14000 INSERT INTO `marc_subfield_structure` VALUES ('400', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 4, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14001 INSERT INTO `marc_subfield_structure` VALUES ('410', '4', 'Relator code', 'Relator code', 1, 0, '', 4, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14002 INSERT INTO `marc_subfield_structure` VALUES ('410', '6', 'Linkage', 'Linkage', 0, 0, '', 4, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14003 INSERT INTO `marc_subfield_structure` VALUES ('410', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 4, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14004 INSERT INTO `marc_subfield_structure` VALUES ('410', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
14005 INSERT INTO `marc_subfield_structure` VALUES ('410', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 4, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14006 INSERT INTO `marc_subfield_structure` VALUES ('410', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 4, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14007 INSERT INTO `marc_subfield_structure` VALUES ('410', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 4, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14008 INSERT INTO `marc_subfield_structure` VALUES ('410', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 4, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14009 INSERT INTO `marc_subfield_structure` VALUES ('410', 'e', 'Relator term', 'Relator term', 1, 0, '', 4, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14010 INSERT INTO `marc_subfield_structure` VALUES ('410', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 4, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14011 INSERT INTO `marc_subfield_structure` VALUES ('410', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 4, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14012 INSERT INTO `marc_subfield_structure` VALUES ('410', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 4, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14013 INSERT INTO `marc_subfield_structure` VALUES ('410', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 4, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14014 INSERT INTO `marc_subfield_structure` VALUES ('410', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 4, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14015 INSERT INTO `marc_subfield_structure` VALUES ('410', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 4, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14016 INSERT INTO `marc_subfield_structure` VALUES ('410', 't', 'Title of a work', 'Title of a work', 0, 0, '', 4, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14017 INSERT INTO `marc_subfield_structure` VALUES ('410', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 4, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14018 INSERT INTO `marc_subfield_structure` VALUES ('410', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 4, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14019 INSERT INTO `marc_subfield_structure` VALUES ('410', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 4, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14020 INSERT INTO `marc_subfield_structure` VALUES ('411', '4', 'Relator code', 'Relator code', 1, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14021 INSERT INTO `marc_subfield_structure` VALUES ('411', '6', 'Linkage', 'Linkage', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14022 INSERT INTO `marc_subfield_structure` VALUES ('411', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14023 INSERT INTO `marc_subfield_structure` VALUES ('411', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'ASMP_VIDEORECORDINGS', '', '');
14024 INSERT INTO `marc_subfield_structure` VALUES ('411', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14025 INSERT INTO `marc_subfield_structure` VALUES ('411', 'b', 'Number [OBSOLETE]', 'Number [OBSOLETE]', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14026 INSERT INTO `marc_subfield_structure` VALUES ('411', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14027 INSERT INTO `marc_subfield_structure` VALUES ('411', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14028 INSERT INTO `marc_subfield_structure` VALUES ('411', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14029 INSERT INTO `marc_subfield_structure` VALUES ('411', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14030 INSERT INTO `marc_subfield_structure` VALUES ('411', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14031 INSERT INTO `marc_subfield_structure` VALUES ('411', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14032 INSERT INTO `marc_subfield_structure` VALUES ('411', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14033 INSERT INTO `marc_subfield_structure` VALUES ('411', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14034 INSERT INTO `marc_subfield_structure` VALUES ('411', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14035 INSERT INTO `marc_subfield_structure` VALUES ('411', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14036 INSERT INTO `marc_subfield_structure` VALUES ('411', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14037 INSERT INTO `marc_subfield_structure` VALUES ('411', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14038 INSERT INTO `marc_subfield_structure` VALUES ('411', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 4, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14039 INSERT INTO `marc_subfield_structure` VALUES ('411', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 4, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14040 INSERT INTO `marc_subfield_structure` VALUES ('440', '6', 'Linkage', 'Linkage', 0, 0, '', 4, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14041 INSERT INTO `marc_subfield_structure` VALUES ('440', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 4, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14042 INSERT INTO `marc_subfield_structure` VALUES ('440', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'ASMP_VIDEORECORDINGS', '', '');
14043 INSERT INTO `marc_subfield_structure` VALUES ('440', 'a', 'Title', 'Title', 0, 0, 'biblio.seriestitle', 4, '', '', '', NULL, 0, 'ASMP_VIDEORECORDINGS', '', '');
14044 INSERT INTO `marc_subfield_structure` VALUES ('440', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, 'biblioitems.number', 4, '', '', '', NULL, 0, 'ASMP_VIDEORECORDINGS', '', '');
14045 INSERT INTO `marc_subfield_structure` VALUES ('440', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 4, '', '', '', NULL, 0, 'ASMP_VIDEORECORDINGS', '', '');
14046 INSERT INTO `marc_subfield_structure` VALUES ('440', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, 'biblioitems.volume', 4, '', '', '', NULL, 0, 'ASMP_VIDEORECORDINGS', '', '');
14047 INSERT INTO `marc_subfield_structure` VALUES ('440', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 4, '', '', '', NULL, 0, 'ASMP_VIDEORECORDINGS', '', '');
14048 INSERT INTO `marc_subfield_structure` VALUES ('490', '6', 'Linkage', 'Linkage', 0, 0, '', 4, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14049 INSERT INTO `marc_subfield_structure` VALUES ('490', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 4, '', '', NULL, NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14050 INSERT INTO `marc_subfield_structure` VALUES ('490', 'a', 'Series statement', 'Series statement', 1, 0, '', 4, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14051 INSERT INTO `marc_subfield_structure` VALUES ('490', 'l', 'Library of Congress call number', 'Library of Congress call number', 0, 0, '', 4, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14052 INSERT INTO `marc_subfield_structure` VALUES ('490', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 1, 0, '', 4, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14053 INSERT INTO `marc_subfield_structure` VALUES ('490', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 4, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14054 INSERT INTO `marc_subfield_structure` VALUES ('500', '3', 'Materials specified', 'Materials specified', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14055 INSERT INTO `marc_subfield_structure` VALUES ('500', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14056 INSERT INTO `marc_subfield_structure` VALUES ('500', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14057 INSERT INTO `marc_subfield_structure` VALUES ('500', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14058 INSERT INTO `marc_subfield_structure` VALUES ('500', 'a', 'General note', 'General note', 0, 0, 'biblio.notes', 5, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14059 INSERT INTO `marc_subfield_structure` VALUES ('500', 'l', 'Library of Congress call number (SE) [OBSOLETE]', 'Library of Congress call number (SE) [OBSOLETE]', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14060 INSERT INTO `marc_subfield_structure` VALUES ('500', 'n', 'n (RLIN) [OBSOLETE]', 'n (RLIN) [OBSOLETE]', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14061 INSERT INTO `marc_subfield_structure` VALUES ('500', 'x', 'International Standard Serial Number (SE) [OBSOLETE]', 'International Standard Serial Number (SE) [OBSOLETE]', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14062 INSERT INTO `marc_subfield_structure` VALUES ('500', 'z', 'Source of note information (AM SE) [OBSOLETE]', 'Source of note information (AM SE) [OBSOLETE]', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14063 INSERT INTO `marc_subfield_structure` VALUES ('501', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14064 INSERT INTO `marc_subfield_structure` VALUES ('501', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14065 INSERT INTO `marc_subfield_structure` VALUES ('501', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14066 INSERT INTO `marc_subfield_structure` VALUES ('501', 'a', 'With note', 'With note', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14067 INSERT INTO `marc_subfield_structure` VALUES ('502', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14068 INSERT INTO `marc_subfield_structure` VALUES ('502', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14069 INSERT INTO `marc_subfield_structure` VALUES ('502', 'a', 'Dissertation note', 'Dissertation note', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14070 INSERT INTO `marc_subfield_structure` VALUES ('503', '8', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14071 INSERT INTO `marc_subfield_structure` VALUES ('503', 'a', 'Bibliographic history note', 'Bibliographic history note', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14072 INSERT INTO `marc_subfield_structure` VALUES ('504', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14073 INSERT INTO `marc_subfield_structure` VALUES ('504', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14074 INSERT INTO `marc_subfield_structure` VALUES ('504', 'a', 'Bibliography, etc', 'Bibliography, etc', 0, 0, '', 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14075 INSERT INTO `marc_subfield_structure` VALUES ('504', 'b', 'Number of references', 'Number of references', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14076 INSERT INTO `marc_subfield_structure` VALUES ('505', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14077 INSERT INTO `marc_subfield_structure` VALUES ('505', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14078 INSERT INTO `marc_subfield_structure` VALUES ('505', 'a', 'Formatted contents note', 'Formatted contents note', 0, 0, '', 5, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14079 INSERT INTO `marc_subfield_structure` VALUES ('505', 'g', 'Miscellaneous information', 'Miscellaneous information', 1, 0, '', 5, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14080 INSERT INTO `marc_subfield_structure` VALUES ('505', 'r', 'Statement of responsibility', 'Statement of responsibility', 1, 0, '', 5, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14081 INSERT INTO `marc_subfield_structure` VALUES ('505', 't', 'Title', 'Title', 1, 0, '', 5, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14082 INSERT INTO `marc_subfield_structure` VALUES ('505', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -1, 'ASMP_VIDEORECORDINGS', '', '');
14083 INSERT INTO `marc_subfield_structure` VALUES ('506', '3', 'Materials specified', 'Materials specified', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14084 INSERT INTO `marc_subfield_structure` VALUES ('506', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14085 INSERT INTO `marc_subfield_structure` VALUES ('506', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14086 INSERT INTO `marc_subfield_structure` VALUES ('506', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14087 INSERT INTO `marc_subfield_structure` VALUES ('506', 'a', 'Terms governing access', 'Terms governing access', 0, 0, '', 5, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14088 INSERT INTO `marc_subfield_structure` VALUES ('506', 'b', 'Jurisdiction', 'Jurisdiction', 1, 0, '', 5, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14089 INSERT INTO `marc_subfield_structure` VALUES ('506', 'c', 'Physical access provisions', 'Physical access provisions', 1, 0, '', 5, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14090 INSERT INTO `marc_subfield_structure` VALUES ('506', 'd', 'Authorized users', 'Authorized users', 1, 0, '', 5, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14091 INSERT INTO `marc_subfield_structure` VALUES ('506', 'e', 'Authorization', 'Authorization', 1, 0, '', 5, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14092 INSERT INTO `marc_subfield_structure` VALUES ('506', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -1, 'ASMP_VIDEORECORDINGS', '', '');
14093 INSERT INTO `marc_subfield_structure` VALUES ('507', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14094 INSERT INTO `marc_subfield_structure` VALUES ('507', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14095 INSERT INTO `marc_subfield_structure` VALUES ('507', 'a', 'Representative fraction of scale note', 'Representative fraction of scale note', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14096 INSERT INTO `marc_subfield_structure` VALUES ('507', 'b', 'Remainder of scale note', 'Remainder of scale note', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14097 INSERT INTO `marc_subfield_structure` VALUES ('508', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14098 INSERT INTO `marc_subfield_structure` VALUES ('508', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14099 INSERT INTO `marc_subfield_structure` VALUES ('508', 'a', 'Creation/production credits note', 'Creation/production credits note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14100 INSERT INTO `marc_subfield_structure` VALUES ('509', 'a', 'Informal Notes', 'Informal Notes', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14101 INSERT INTO `marc_subfield_structure` VALUES ('510', '3', 'Materials specified', 'Materials specified', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14102 INSERT INTO `marc_subfield_structure` VALUES ('510', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14103 INSERT INTO `marc_subfield_structure` VALUES ('510', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14104 INSERT INTO `marc_subfield_structure` VALUES ('510', 'a', 'Name of source', 'Name of source', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14105 INSERT INTO `marc_subfield_structure` VALUES ('510', 'b', 'Coverage of source', 'Coverage of source', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14106 INSERT INTO `marc_subfield_structure` VALUES ('510', 'c', 'Location within source', 'Location within source', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14107 INSERT INTO `marc_subfield_structure` VALUES ('510', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14108 INSERT INTO `marc_subfield_structure` VALUES ('511', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14109 INSERT INTO `marc_subfield_structure` VALUES ('511', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14110 INSERT INTO `marc_subfield_structure` VALUES ('511', 'a', 'Participant or performer note', 'Participant or performer note', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14111 INSERT INTO `marc_subfield_structure` VALUES ('512', '6', 'Linkage', 'Linkage', 0, 0, '', -1, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14112 INSERT INTO `marc_subfield_structure` VALUES ('512', 'a', 'Earlier or later volumes separately cataloged note', 'Earlier or later volumes separately cataloged note', 0, 0, '', -1, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14113 INSERT INTO `marc_subfield_structure` VALUES ('513', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14114 INSERT INTO `marc_subfield_structure` VALUES ('513', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14115 INSERT INTO `marc_subfield_structure` VALUES ('513', 'a', 'Type of report', 'Type of report', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14116 INSERT INTO `marc_subfield_structure` VALUES ('513', 'b', 'Period covered', 'Period covered', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14117 INSERT INTO `marc_subfield_structure` VALUES ('514', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14118 INSERT INTO `marc_subfield_structure` VALUES ('514', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14119 INSERT INTO `marc_subfield_structure` VALUES ('514', 'a', 'Attribute accuracy report', 'Attribute accuracy report', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14120 INSERT INTO `marc_subfield_structure` VALUES ('514', 'b', 'Attribute accuracy value', 'Attribute accuracy value', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14121 INSERT INTO `marc_subfield_structure` VALUES ('514', 'c', 'Attribute accuracy explanation', 'Attribute accuracy explanation', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14122 INSERT INTO `marc_subfield_structure` VALUES ('514', 'd', 'Logical consistency report', 'Logical consistency report', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14123 INSERT INTO `marc_subfield_structure` VALUES ('514', 'e', 'Completeness report', 'Completeness report', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14124 INSERT INTO `marc_subfield_structure` VALUES ('514', 'f', 'Horizontal position accuracy report', 'Horizontal position accuracy report', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14125 INSERT INTO `marc_subfield_structure` VALUES ('514', 'g', 'Horizontal position accuracy value', 'Horizontal position accuracy value', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14126 INSERT INTO `marc_subfield_structure` VALUES ('514', 'h', 'Horizontal position accuracy explanation', 'Horizontal position accuracy explanation', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14127 INSERT INTO `marc_subfield_structure` VALUES ('514', 'i', 'Vertical positional accuracy report', 'Vertical positional accuracy report', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14128 INSERT INTO `marc_subfield_structure` VALUES ('514', 'j', 'Vertical positional accuracy value', 'Vertical positional accuracy value', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14129 INSERT INTO `marc_subfield_structure` VALUES ('514', 'k', 'Vertical positional accuracy explanation', 'Vertical positional accuracy explanation', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14130 INSERT INTO `marc_subfield_structure` VALUES ('514', 'm', 'Cloud cover', 'Cloud cover', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14131 INSERT INTO `marc_subfield_structure` VALUES ('514', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -6, 'ASMP_VIDEORECORDINGS', '', '');
14132 INSERT INTO `marc_subfield_structure` VALUES ('514', 'z', 'Display note', 'Display note', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14133 INSERT INTO `marc_subfield_structure` VALUES ('515', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14134 INSERT INTO `marc_subfield_structure` VALUES ('515', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14135 INSERT INTO `marc_subfield_structure` VALUES ('515', 'a', 'Numbering peculiarities note', 'Numbering peculiarities note', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14136 INSERT INTO `marc_subfield_structure` VALUES ('515', 'z', 'Source of note information (SE) [OBSOLETE]', 'Source of note information (SE) [OBSOLETE]', 0, 0, '', -1, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14137 INSERT INTO `marc_subfield_structure` VALUES ('516', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14138 INSERT INTO `marc_subfield_structure` VALUES ('516', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14139 INSERT INTO `marc_subfield_structure` VALUES ('516', 'a', 'Type of computer file or data note', 'Type of computer file or data note', 0, 0, '', 5, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14140 INSERT INTO `marc_subfield_structure` VALUES ('517', 'a', 'Different formats', 'Different formats', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14141 INSERT INTO `marc_subfield_structure` VALUES ('517', 'b', 'Content descriptors', 'Content descriptors', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14142 INSERT INTO `marc_subfield_structure` VALUES ('517', 'c', 'Additional animation techniques', 'Additional animation techniques', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14143 INSERT INTO `marc_subfield_structure` VALUES ('518', '3', 'Materials specified', 'Materials specified', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14144 INSERT INTO `marc_subfield_structure` VALUES ('518', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14145 INSERT INTO `marc_subfield_structure` VALUES ('518', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14146 INSERT INTO `marc_subfield_structure` VALUES ('518', 'a', 'Date/time and place of an event note', 'Date/time and place of an event note', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14147 INSERT INTO `marc_subfield_structure` VALUES ('520', '3', 'Materials specified', 'Materials specified', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14148 INSERT INTO `marc_subfield_structure` VALUES ('520', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14149 INSERT INTO `marc_subfield_structure` VALUES ('520', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14150 INSERT INTO `marc_subfield_structure` VALUES ('520', 'a', 'Summary, etc', 'Summary, etc', 0, 0, 'biblio.abstract', 5, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14151 INSERT INTO `marc_subfield_structure` VALUES ('520', 'b', 'Expansion of summary note', 'Expansion of summary note', 0, 0, '', 5, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14152 INSERT INTO `marc_subfield_structure` VALUES ('520', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -1, 'ASMP_VIDEORECORDINGS', '', '');
14153 INSERT INTO `marc_subfield_structure` VALUES ('520', 'z', 'Source of note information [OBSOLETE]', 'Source of note information [OBSOLETE]', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14154 INSERT INTO `marc_subfield_structure` VALUES ('521', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14155 INSERT INTO `marc_subfield_structure` VALUES ('521', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14156 INSERT INTO `marc_subfield_structure` VALUES ('521', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14157 INSERT INTO `marc_subfield_structure` VALUES ('521', 'a', 'Target audience note', 'Target audience note', 1, 0, NULL, 5, NULL, NULL, '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14158 INSERT INTO `marc_subfield_structure` VALUES ('521', 'b', 'Source', 'Source', 0, 0, NULL, 5, NULL, NULL, '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14159 INSERT INTO `marc_subfield_structure` VALUES ('522', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14160 INSERT INTO `marc_subfield_structure` VALUES ('522', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14161 INSERT INTO `marc_subfield_structure` VALUES ('522', 'a', 'Geographic coverage note', 'Geographic coverage note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14162 INSERT INTO `marc_subfield_structure` VALUES ('523', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14163 INSERT INTO `marc_subfield_structure` VALUES ('523', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14164 INSERT INTO `marc_subfield_structure` VALUES ('523', 'a', 'Time period of content note', 'Time period of content note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14165 INSERT INTO `marc_subfield_structure` VALUES ('524', '2', 'Source of schema used', 'Source of schema used', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14166 INSERT INTO `marc_subfield_structure` VALUES ('524', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14167 INSERT INTO `marc_subfield_structure` VALUES ('524', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14168 INSERT INTO `marc_subfield_structure` VALUES ('524', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14169 INSERT INTO `marc_subfield_structure` VALUES ('524', 'a', 'Preferred citation of described materials note', 'Preferred citation of described materials note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14170 INSERT INTO `marc_subfield_structure` VALUES ('525', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14171 INSERT INTO `marc_subfield_structure` VALUES ('525', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14172 INSERT INTO `marc_subfield_structure` VALUES ('525', 'a', 'Supplement note', 'Supplement note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14173 INSERT INTO `marc_subfield_structure` VALUES ('525', 'z', 'Source of note information (SE) [OBSOLETE]', 'Source of note information (SE) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14174 INSERT INTO `marc_subfield_structure` VALUES ('526', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14175 INSERT INTO `marc_subfield_structure` VALUES ('526', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14176 INSERT INTO `marc_subfield_structure` VALUES ('526', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14177 INSERT INTO `marc_subfield_structure` VALUES ('526', 'a', 'Program name', 'Program name', 0, 0, '', 5, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14178 INSERT INTO `marc_subfield_structure` VALUES ('526', 'b', 'Interest level', 'Interest level', 0, 0, '', 5, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14179 INSERT INTO `marc_subfield_structure` VALUES ('526', 'c', 'Reading level', 'Reading level', 0, 0, '', 5, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14180 INSERT INTO `marc_subfield_structure` VALUES ('526', 'd', 'Title point value', 'Title point value', 0, 0, '', 5, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14181 INSERT INTO `marc_subfield_structure` VALUES ('526', 'i', 'Display text', 'Display text', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14182 INSERT INTO `marc_subfield_structure` VALUES ('526', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 5, '', '', '', NULL, 6, 'ASMP_VIDEORECORDINGS', '', '');
14183 INSERT INTO `marc_subfield_structure` VALUES ('526', 'z', 'Public note', 'Public note', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14184 INSERT INTO `marc_subfield_structure` VALUES ('527', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14185 INSERT INTO `marc_subfield_structure` VALUES ('527', 'a', 'Censorship note', 'Censorship note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14186 INSERT INTO `marc_subfield_structure` VALUES ('530', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14187 INSERT INTO `marc_subfield_structure` VALUES ('530', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14188 INSERT INTO `marc_subfield_structure` VALUES ('530', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14189 INSERT INTO `marc_subfield_structure` VALUES ('530', 'a', 'Additional physical form available note', 'Additional physical form available note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14190 INSERT INTO `marc_subfield_structure` VALUES ('530', 'b', 'Availability source', 'Availability source', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14191 INSERT INTO `marc_subfield_structure` VALUES ('530', 'c', 'Availability conditions', 'Availability conditions', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14192 INSERT INTO `marc_subfield_structure` VALUES ('530', 'd', 'Order number', 'Order number', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14193 INSERT INTO `marc_subfield_structure` VALUES ('530', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, NULL, 5, NULL, NULL, '', 1, -6, 'ASMP_VIDEORECORDINGS', '', '');
14194 INSERT INTO `marc_subfield_structure` VALUES ('530', 'z', 'Source of note information (AM CF VM SE) [OBSOLETE]', 'Source of note information (AM CF VM SE) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14195 INSERT INTO `marc_subfield_structure` VALUES ('533', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14196 INSERT INTO `marc_subfield_structure` VALUES ('533', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14197 INSERT INTO `marc_subfield_structure` VALUES ('533', '7', 'Fixed-length data elements of reproduction', 'Fixed-length data elements of reproduction', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14198 INSERT INTO `marc_subfield_structure` VALUES ('533', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14199 INSERT INTO `marc_subfield_structure` VALUES ('533', 'a', 'Type of reproduction', 'Type of reproduction', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14200 INSERT INTO `marc_subfield_structure` VALUES ('533', 'b', 'Place of reproduction', 'Place of reproduction', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14201 INSERT INTO `marc_subfield_structure` VALUES ('533', 'c', 'Agency responsible for reproduction', 'Agency responsible for reproduction', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14202 INSERT INTO `marc_subfield_structure` VALUES ('533', 'd', 'Date of reproduction', 'Date of reproduction', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14203 INSERT INTO `marc_subfield_structure` VALUES ('533', 'e', 'Physical description of reproduction', 'Physical description of reproduction', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14204 INSERT INTO `marc_subfield_structure` VALUES ('533', 'f', 'Series statement of reproduction', 'Series statement of reproduction', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14205 INSERT INTO `marc_subfield_structure` VALUES ('533', 'm', 'Dates and/or sequential designation of issues reproduced', 'Dates and/or sequential designation of issues reproduced', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14206 INSERT INTO `marc_subfield_structure` VALUES ('533', 'n', 'Note about reproduction', 'Note about reproduction', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14207 INSERT INTO `marc_subfield_structure` VALUES ('534', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14208 INSERT INTO `marc_subfield_structure` VALUES ('534', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14209 INSERT INTO `marc_subfield_structure` VALUES ('534', 'a', 'Main entry of original', 'Main entry of original', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14210 INSERT INTO `marc_subfield_structure` VALUES ('534', 'b', 'Edition statement of original', 'Edition statement of original', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14211 INSERT INTO `marc_subfield_structure` VALUES ('534', 'c', 'Publication, distribution, etc', 'Publication, distribution, etc', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14212 INSERT INTO `marc_subfield_structure` VALUES ('534', 'e', 'Physical description, etc', 'Physical description, etc', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14213 INSERT INTO `marc_subfield_structure` VALUES ('534', 'f', 'Series statement of original', 'Series statement of original', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14214 INSERT INTO `marc_subfield_structure` VALUES ('534', 'k', 'Key title of original', 'Key title of original', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14215 INSERT INTO `marc_subfield_structure` VALUES ('534', 'l', 'Location of original', 'Location of original', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14216 INSERT INTO `marc_subfield_structure` VALUES ('534', 'm', 'Material specific details', 'Material specific details', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14217 INSERT INTO `marc_subfield_structure` VALUES ('534', 'n', 'Note about original', 'Note about original', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14218 INSERT INTO `marc_subfield_structure` VALUES ('534', 'p', 'Introductory phrase', 'Introductory phrase', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14219 INSERT INTO `marc_subfield_structure` VALUES ('534', 't', 'Title statement of original', 'Title statement of original', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14220 INSERT INTO `marc_subfield_structure` VALUES ('534', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14221 INSERT INTO `marc_subfield_structure` VALUES ('534', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14222 INSERT INTO `marc_subfield_structure` VALUES ('535', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14223 INSERT INTO `marc_subfield_structure` VALUES ('535', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14224 INSERT INTO `marc_subfield_structure` VALUES ('535', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14225 INSERT INTO `marc_subfield_structure` VALUES ('535', 'a', 'Custodian', 'Custodian', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14226 INSERT INTO `marc_subfield_structure` VALUES ('535', 'b', 'Postal address', 'Postal address', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14227 INSERT INTO `marc_subfield_structure` VALUES ('535', 'c', 'Country', 'Country', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14228 INSERT INTO `marc_subfield_structure` VALUES ('535', 'd', 'Telecommunications address', 'Telecommunications address', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14229 INSERT INTO `marc_subfield_structure` VALUES ('535', 'g', 'Repository location code', 'Repository location code', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14230 INSERT INTO `marc_subfield_structure` VALUES ('536', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14231 INSERT INTO `marc_subfield_structure` VALUES ('536', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14232 INSERT INTO `marc_subfield_structure` VALUES ('536', 'a', 'Text of note', 'Text of note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14233 INSERT INTO `marc_subfield_structure` VALUES ('536', 'b', 'Contract number', 'Contract number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14234 INSERT INTO `marc_subfield_structure` VALUES ('536', 'c', 'Grant number', 'Grant number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14235 INSERT INTO `marc_subfield_structure` VALUES ('536', 'd', 'Undifferentiated number', 'Undifferentiated number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14236 INSERT INTO `marc_subfield_structure` VALUES ('536', 'e', 'Program element number', 'Program element number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14237 INSERT INTO `marc_subfield_structure` VALUES ('536', 'f', 'Project number', 'Project number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14238 INSERT INTO `marc_subfield_structure` VALUES ('536', 'g', 'Task number', 'Task number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14239 INSERT INTO `marc_subfield_structure` VALUES ('536', 'h', 'Work unit number', 'Work unit number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14240 INSERT INTO `marc_subfield_structure` VALUES ('537', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14241 INSERT INTO `marc_subfield_structure` VALUES ('537', 'a', 'Source of data note', 'Source of data note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14242 INSERT INTO `marc_subfield_structure` VALUES ('538', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14243 INSERT INTO `marc_subfield_structure` VALUES ('538', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14244 INSERT INTO `marc_subfield_structure` VALUES ('538', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14245 INSERT INTO `marc_subfield_structure` VALUES ('538', 'a', 'System details note', 'System details note', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14246 INSERT INTO `marc_subfield_structure` VALUES ('538', 'i', 'Display text', 'Display text', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14247 INSERT INTO `marc_subfield_structure` VALUES ('538', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -6, 'ASMP_VIDEORECORDINGS', '', '');
14248 INSERT INTO `marc_subfield_structure` VALUES ('540', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14249 INSERT INTO `marc_subfield_structure` VALUES ('540', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14250 INSERT INTO `marc_subfield_structure` VALUES ('540', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14251 INSERT INTO `marc_subfield_structure` VALUES ('540', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14252 INSERT INTO `marc_subfield_structure` VALUES ('540', 'a', 'Terms governing use and reproduction', 'Terms governing use and reproduction', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14253 INSERT INTO `marc_subfield_structure` VALUES ('540', 'b', 'Jurisdiction', 'Jurisdiction', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14254 INSERT INTO `marc_subfield_structure` VALUES ('540', 'c', 'Authorization', 'Authorization', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14255 INSERT INTO `marc_subfield_structure` VALUES ('540', 'd', 'Authorized users', 'Authorized users', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14256 INSERT INTO `marc_subfield_structure` VALUES ('540', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -6, 'ASMP_VIDEORECORDINGS', '', '');
14257 INSERT INTO `marc_subfield_structure` VALUES ('541', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14258 INSERT INTO `marc_subfield_structure` VALUES ('541', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14259 INSERT INTO `marc_subfield_structure` VALUES ('541', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14260 INSERT INTO `marc_subfield_structure` VALUES ('541', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14261 INSERT INTO `marc_subfield_structure` VALUES ('541', 'a', 'Source of acquisition', 'Source of acquisition', 0, 0, '', 9, '', '', '', NULL, 1, 'ASMP_VIDEORECORDINGS', '', '');
14262 INSERT INTO `marc_subfield_structure` VALUES ('541', 'b', 'Address', 'Address', 0, 0, '', 9, '', '', '', NULL, 1, 'ASMP_VIDEORECORDINGS', '', '');
14263 INSERT INTO `marc_subfield_structure` VALUES ('541', 'c', 'Method of acquisition', 'Method of acquisition', 0, 0, '', 9, '', '', '', NULL, 1, 'ASMP_VIDEORECORDINGS', '', '');
14264 INSERT INTO `marc_subfield_structure` VALUES ('541', 'd', 'Date of acquisition', 'Date of acquisition', 0, 0, '', 9, '', '', '', NULL, 1, 'ASMP_VIDEORECORDINGS', '', '');
14265 INSERT INTO `marc_subfield_structure` VALUES ('541', 'e', 'Accession number', 'Accession number', 0, 0, '', 9, '', '', '', NULL, 1, 'ASMP_VIDEORECORDINGS', '', '');
14266 INSERT INTO `marc_subfield_structure` VALUES ('541', 'f', 'Owner', 'Owner', 0, 0, '', 9, '', '', '', NULL, 1, 'ASMP_VIDEORECORDINGS', '', '');
14267 INSERT INTO `marc_subfield_structure` VALUES ('541', 'h', 'Purchase price', 'Purchase price', 0, 0, '', 9, '', '', '', NULL, 1, 'ASMP_VIDEORECORDINGS', '', '');
14268 INSERT INTO `marc_subfield_structure` VALUES ('541', 'n', 'Extent', 'Extent', 0, 0, '', 9, '', '', '', NULL, 1, 'ASMP_VIDEORECORDINGS', '', '');
14269 INSERT INTO `marc_subfield_structure` VALUES ('541', 'o', 'Type of unit', 'Type of unit', 1, 0, '', 9, '', '', '', NULL, 1, 'ASMP_VIDEORECORDINGS', '', '');
14270 INSERT INTO `marc_subfield_structure` VALUES ('543', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14271 INSERT INTO `marc_subfield_structure` VALUES ('543', 'a', 'Solicitation information note', 'Solicitation information note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14272 INSERT INTO `marc_subfield_structure` VALUES ('544', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14273 INSERT INTO `marc_subfield_structure` VALUES ('544', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14274 INSERT INTO `marc_subfield_structure` VALUES ('544', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14275 INSERT INTO `marc_subfield_structure` VALUES ('544', 'a', 'Custodian', 'Custodian', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14276 INSERT INTO `marc_subfield_structure` VALUES ('544', 'b', 'Address', 'Address', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14277 INSERT INTO `marc_subfield_structure` VALUES ('544', 'c', 'Country', 'Country', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14278 INSERT INTO `marc_subfield_structure` VALUES ('544', 'd', 'Title', 'Title', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14279 INSERT INTO `marc_subfield_structure` VALUES ('544', 'e', 'Provenance', 'Provenance', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14280 INSERT INTO `marc_subfield_structure` VALUES ('544', 'n', 'Note', 'Note', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14281 INSERT INTO `marc_subfield_structure` VALUES ('545', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14282 INSERT INTO `marc_subfield_structure` VALUES ('545', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14283 INSERT INTO `marc_subfield_structure` VALUES ('545', 'a', 'Biographical or historical note', 'Biographical or historical note', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14284 INSERT INTO `marc_subfield_structure` VALUES ('545', 'b', 'Expansion', 'Expansion', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14285 INSERT INTO `marc_subfield_structure` VALUES ('545', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -6, 'ASMP_VIDEORECORDINGS', '', '');
14286 INSERT INTO `marc_subfield_structure` VALUES ('546', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14287 INSERT INTO `marc_subfield_structure` VALUES ('546', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14288 INSERT INTO `marc_subfield_structure` VALUES ('546', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14289 INSERT INTO `marc_subfield_structure` VALUES ('546', 'a', 'Language note', 'Language note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14290 INSERT INTO `marc_subfield_structure` VALUES ('546', 'b', 'Information code or alphabet', 'Information code or alphabet', 1, 0, NULL, 5, NULL, NULL, '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14291 INSERT INTO `marc_subfield_structure` VALUES ('546', 'z', 'Source of note information (SE) [OBSOLETE]', 'Source of note information (SE) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14292 INSERT INTO `marc_subfield_structure` VALUES ('547', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14293 INSERT INTO `marc_subfield_structure` VALUES ('547', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14294 INSERT INTO `marc_subfield_structure` VALUES ('547', 'a', 'Former title complexity note', 'Former title complexity note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14295 INSERT INTO `marc_subfield_structure` VALUES ('547', 'z', 'Source of note information (SE) [OBSOLETE]', 'Source of note information (SE) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14296 INSERT INTO `marc_subfield_structure` VALUES ('550', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14297 INSERT INTO `marc_subfield_structure` VALUES ('550', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14298 INSERT INTO `marc_subfield_structure` VALUES ('550', 'a', 'Issuing body note', 'Issuing body note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14299 INSERT INTO `marc_subfield_structure` VALUES ('550', 'z', 'Source of note information (SE) [OBSOLETE]', 'Source of note information (SE) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14300 INSERT INTO `marc_subfield_structure` VALUES ('552', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14301 INSERT INTO `marc_subfield_structure` VALUES ('552', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14302 INSERT INTO `marc_subfield_structure` VALUES ('552', 'a', 'Entity type label', 'Entity type label', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14303 INSERT INTO `marc_subfield_structure` VALUES ('552', 'b', 'Entity type definition and source', 'Entity type definition and source', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14304 INSERT INTO `marc_subfield_structure` VALUES ('552', 'c', 'Attribute label', 'Attribute label', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14305 INSERT INTO `marc_subfield_structure` VALUES ('552', 'd', 'Attribute definition and source', 'Attribute definition and source', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14306 INSERT INTO `marc_subfield_structure` VALUES ('552', 'e', 'Enumerated domain value', 'Enumerated domain value', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14307 INSERT INTO `marc_subfield_structure` VALUES ('552', 'f', 'Enumerated domain value definition and source', 'Enumerated domain value definition and source', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14308 INSERT INTO `marc_subfield_structure` VALUES ('552', 'g', 'Range domain minimum and maximum', 'Range domain minimum and maximum', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14309 INSERT INTO `marc_subfield_structure` VALUES ('552', 'h', 'Codeset name and source', 'Codeset name and source', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14310 INSERT INTO `marc_subfield_structure` VALUES ('552', 'i', 'Unrepresentable domain', 'Unrepresentable domain', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14311 INSERT INTO `marc_subfield_structure` VALUES ('552', 'j', 'Attribute units of measurement and resolution', 'Attribute units of measurement and resolution', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14312 INSERT INTO `marc_subfield_structure` VALUES ('552', 'k', 'Beginning date and ending date of attribute values', 'Beginning date and ending date of attribute values', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14313 INSERT INTO `marc_subfield_structure` VALUES ('552', 'l', 'Attribute value accuracy', 'Attribute value accuracy', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14314 INSERT INTO `marc_subfield_structure` VALUES ('552', 'm', 'Attribute value accuracy explanation', 'Attribute value accuracy explanation', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14315 INSERT INTO `marc_subfield_structure` VALUES ('552', 'n', 'Attribute measurement frequency', 'Attribute measurement frequency', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14316 INSERT INTO `marc_subfield_structure` VALUES ('552', 'o', 'Entity and attribute overview', 'Entity and attribute overview', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14317 INSERT INTO `marc_subfield_structure` VALUES ('552', 'p', 'Entity and attribute detail citation', 'Entity and attribute detail citation', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14318 INSERT INTO `marc_subfield_structure` VALUES ('552', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -6, 'ASMP_VIDEORECORDINGS', '', '');
14319 INSERT INTO `marc_subfield_structure` VALUES ('552', 'z', 'Display note', 'Display note', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14320 INSERT INTO `marc_subfield_structure` VALUES ('555', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14321 INSERT INTO `marc_subfield_structure` VALUES ('555', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14322 INSERT INTO `marc_subfield_structure` VALUES ('555', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14323 INSERT INTO `marc_subfield_structure` VALUES ('555', 'a', 'Cumulative index/finding aids note', 'Cumulative index/finding aids note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14324 INSERT INTO `marc_subfield_structure` VALUES ('555', 'b', 'Availability source', 'Availability source', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14325 INSERT INTO `marc_subfield_structure` VALUES ('555', 'c', 'Degree of control', 'Degree of control', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14326 INSERT INTO `marc_subfield_structure` VALUES ('555', 'd', 'Bibliographic reference', 'Bibliographic reference', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14327 INSERT INTO `marc_subfield_structure` VALUES ('555', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, NULL, 5, NULL, NULL, '', 1, -6, 'ASMP_VIDEORECORDINGS', '', '');
14328 INSERT INTO `marc_subfield_structure` VALUES ('556', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14329 INSERT INTO `marc_subfield_structure` VALUES ('556', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14330 INSERT INTO `marc_subfield_structure` VALUES ('556', 'a', 'Information about documentation note', 'Information about documentation note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14331 INSERT INTO `marc_subfield_structure` VALUES ('556', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14332 INSERT INTO `marc_subfield_structure` VALUES ('561', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14333 INSERT INTO `marc_subfield_structure` VALUES ('561', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14334 INSERT INTO `marc_subfield_structure` VALUES ('561', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14335 INSERT INTO `marc_subfield_structure` VALUES ('561', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14336 INSERT INTO `marc_subfield_structure` VALUES ('561', 'a', 'History', 'History', 0, 0, '', 5, '', '', '', NULL, 6, 'ASMP_VIDEORECORDINGS', '', '');
14337 INSERT INTO `marc_subfield_structure` VALUES ('561', 'b', 'Time of collation [OBSOLETE]', 'Time of collation [OBSOLETE]', 0, 0, '', 5, '', '', '', NULL, 6, 'ASMP_VIDEORECORDINGS', '', '');
14338 INSERT INTO `marc_subfield_structure` VALUES ('562', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14339 INSERT INTO `marc_subfield_structure` VALUES ('562', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, NULL, -1, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14340 INSERT INTO `marc_subfield_structure` VALUES ('562', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14341 INSERT INTO `marc_subfield_structure` VALUES ('562', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14342 INSERT INTO `marc_subfield_structure` VALUES ('562', 'a', 'Identifying markings', 'Identifying markings', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14343 INSERT INTO `marc_subfield_structure` VALUES ('562', 'b', 'Copy identification', 'Copy identification', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14344 INSERT INTO `marc_subfield_structure` VALUES ('562', 'c', 'Version identification', 'Version identification', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14345 INSERT INTO `marc_subfield_structure` VALUES ('562', 'd', 'Presentation format', 'Presentation format', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14346 INSERT INTO `marc_subfield_structure` VALUES ('562', 'e', 'Number of copies', 'Number of copies', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14347 INSERT INTO `marc_subfield_structure` VALUES ('563', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14348 INSERT INTO `marc_subfield_structure` VALUES ('563', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, NULL, -1, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14349 INSERT INTO `marc_subfield_structure` VALUES ('563', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14350 INSERT INTO `marc_subfield_structure` VALUES ('563', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14351 INSERT INTO `marc_subfield_structure` VALUES ('563', 'a', 'Binding note', 'Binding note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14352 INSERT INTO `marc_subfield_structure` VALUES ('563', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, NULL, 5, NULL, NULL, '', 1, -6, 'ASMP_VIDEORECORDINGS', '', '');
14353 INSERT INTO `marc_subfield_structure` VALUES ('565', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14354 INSERT INTO `marc_subfield_structure` VALUES ('565', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14355 INSERT INTO `marc_subfield_structure` VALUES ('565', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14356 INSERT INTO `marc_subfield_structure` VALUES ('565', 'a', 'Number of cases/variables', 'Number of cases/variables', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14357 INSERT INTO `marc_subfield_structure` VALUES ('565', 'b', 'Name of variable', 'Name of variable', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14358 INSERT INTO `marc_subfield_structure` VALUES ('565', 'c', 'Unit of analysis', 'Unit of analysis', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14359 INSERT INTO `marc_subfield_structure` VALUES ('565', 'd', 'Universe of data', 'Universe of data', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14360 INSERT INTO `marc_subfield_structure` VALUES ('565', 'e', 'Filing scheme or code', 'Filing scheme or code', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14361 INSERT INTO `marc_subfield_structure` VALUES ('567', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14362 INSERT INTO `marc_subfield_structure` VALUES ('567', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14363 INSERT INTO `marc_subfield_structure` VALUES ('567', 'a', 'Methodology note', 'Methodology note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14364 INSERT INTO `marc_subfield_structure` VALUES ('570', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14365 INSERT INTO `marc_subfield_structure` VALUES ('570', 'a', 'Editor note', 'Editor note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14366 INSERT INTO `marc_subfield_structure` VALUES ('570', 'z', 'Source of note information', 'Source of note information', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14367 INSERT INTO `marc_subfield_structure` VALUES ('580', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14368 INSERT INTO `marc_subfield_structure` VALUES ('580', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14369 INSERT INTO `marc_subfield_structure` VALUES ('580', 'a', 'Linking entry complexity note', 'Linking entry complexity note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14370 INSERT INTO `marc_subfield_structure` VALUES ('580', 'z', 'Source of note information [OBSOLETE]', 'Source of note information [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14371 INSERT INTO `marc_subfield_structure` VALUES ('581', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14372 INSERT INTO `marc_subfield_structure` VALUES ('581', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14373 INSERT INTO `marc_subfield_structure` VALUES ('581', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14374 INSERT INTO `marc_subfield_structure` VALUES ('581', 'a', 'Publications about described materials note', 'Publications about described materials note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14375 INSERT INTO `marc_subfield_structure` VALUES ('581', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14376 INSERT INTO `marc_subfield_structure` VALUES ('582', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14377 INSERT INTO `marc_subfield_structure` VALUES ('582', 'a', 'Related computer files note', 'Related computer files note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14378 INSERT INTO `marc_subfield_structure` VALUES ('583', '2', 'Source of term', 'Source of term', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14379 INSERT INTO `marc_subfield_structure` VALUES ('583', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14380 INSERT INTO `marc_subfield_structure` VALUES ('583', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14381 INSERT INTO `marc_subfield_structure` VALUES ('583', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14382 INSERT INTO `marc_subfield_structure` VALUES ('583', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14383 INSERT INTO `marc_subfield_structure` VALUES ('583', 'a', 'Action', 'Action', 0, 0, '', 9, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14384 INSERT INTO `marc_subfield_structure` VALUES ('583', 'b', 'Action identification', 'Action identification', 1, 0, '', 9, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14385 INSERT INTO `marc_subfield_structure` VALUES ('583', 'c', 'Time/date of action', 'Time/date of action', 1, 0, '', 9, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14386 INSERT INTO `marc_subfield_structure` VALUES ('583', 'd', 'Action interval', 'Action interval', 1, 0, '', 9, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14387 INSERT INTO `marc_subfield_structure` VALUES ('583', 'e', 'Contingency for action', 'Contingency for action', 1, 0, '', 9, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14388 INSERT INTO `marc_subfield_structure` VALUES ('583', 'f', 'Authorization', 'Authorization', 1, 0, '', 9, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14389 INSERT INTO `marc_subfield_structure` VALUES ('583', 'h', 'Jurisdiction', 'Jurisdiction', 0, 0, '', 9, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14390 INSERT INTO `marc_subfield_structure` VALUES ('583', 'i', 'Method of action', 'Method of action', 1, 0, '', 9, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14391 INSERT INTO `marc_subfield_structure` VALUES ('583', 'j', 'Site of action', 'Site of action', 1, 0, '', 9, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14392 INSERT INTO `marc_subfield_structure` VALUES ('583', 'k', 'Action agent', 'Action agent', 1, 0, '', 9, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14393 INSERT INTO `marc_subfield_structure` VALUES ('583', 'l', 'Status', 'Status', 1, 0, '', 9, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14394 INSERT INTO `marc_subfield_structure` VALUES ('583', 'n', 'Extent', 'Extent', 1, 0, '', 9, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14395 INSERT INTO `marc_subfield_structure` VALUES ('583', 'o', 'Type of unit', 'Type of unit', 1, 0, '', 9, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14396 INSERT INTO `marc_subfield_structure` VALUES ('583', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 9, '', '', '', 1, -1, 'ASMP_VIDEORECORDINGS', '', '');
14397 INSERT INTO `marc_subfield_structure` VALUES ('583', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 9, '', '', '', NULL, 4, 'ASMP_VIDEORECORDINGS', '', '');
14398 INSERT INTO `marc_subfield_structure` VALUES ('583', 'z', 'Public note', 'Public note', 1, 0, '', 9, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14399 INSERT INTO `marc_subfield_structure` VALUES ('584', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14400 INSERT INTO `marc_subfield_structure` VALUES ('584', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14401 INSERT INTO `marc_subfield_structure` VALUES ('584', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14402 INSERT INTO `marc_subfield_structure` VALUES ('584', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14403 INSERT INTO `marc_subfield_structure` VALUES ('584', 'a', 'Accumulation', 'Accumulation', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14404 INSERT INTO `marc_subfield_structure` VALUES ('584', 'b', 'Frequency of use', 'Frequency of use', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14405 INSERT INTO `marc_subfield_structure` VALUES ('585', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14406 INSERT INTO `marc_subfield_structure` VALUES ('585', '5', 'Institution to which field applies', 'Institution to which field applies', 0, -6, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14407 INSERT INTO `marc_subfield_structure` VALUES ('585', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14408 INSERT INTO `marc_subfield_structure` VALUES ('585', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14409 INSERT INTO `marc_subfield_structure` VALUES ('585', 'a', 'Exhibitions note', 'Exhibitions note', 0, 0, '', 5, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14410 INSERT INTO `marc_subfield_structure` VALUES ('586', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14411 INSERT INTO `marc_subfield_structure` VALUES ('586', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14412 INSERT INTO `marc_subfield_structure` VALUES ('586', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14413 INSERT INTO `marc_subfield_structure` VALUES ('586', 'a', 'Awards note', 'Awards note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14414 INSERT INTO `marc_subfield_structure` VALUES ('590', '6', 'Linkage (RLIN)', 'Linkage (RLIN)', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14415 INSERT INTO `marc_subfield_structure` VALUES ('590', '8', 'Field link and sequence number (RLIN)', 'Field link and sequence number (RLIN)', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14416 INSERT INTO `marc_subfield_structure` VALUES ('590', 'a', 'Local note', 'Local note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14417 INSERT INTO `marc_subfield_structure` VALUES ('590', 'b', 'Provenance (VM) [OBSOLETE]', 'Provenance (VM) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14418 INSERT INTO `marc_subfield_structure` VALUES ('590', 'c', 'Condition of individual reels (VM) [OBSOLETE]', 'Condition of individual reels (VM) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14419 INSERT INTO `marc_subfield_structure` VALUES ('590', 'd', 'Origin of safety copy (VM) [OBSOLETE]', 'Origin of safety copy (VM) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14420 INSERT INTO `marc_subfield_structure` VALUES ('600', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14421 INSERT INTO `marc_subfield_structure` VALUES ('600', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14422 INSERT INTO `marc_subfield_structure` VALUES ('600', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14423 INSERT INTO `marc_subfield_structure` VALUES ('600', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14424 INSERT INTO `marc_subfield_structure` VALUES ('600', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14425 INSERT INTO `marc_subfield_structure` VALUES ('600', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'ASMP_VIDEORECORDINGS', '', '');
14426 INSERT INTO `marc_subfield_structure` VALUES ('600', 'a', 'Personal name', 'Personal name', 0, 0, '', 6, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14427 INSERT INTO `marc_subfield_structure` VALUES ('600', 'b', 'Numeration', 'Numeration', 0, 0, '', 6, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14428 INSERT INTO `marc_subfield_structure` VALUES ('600', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14429 INSERT INTO `marc_subfield_structure` VALUES ('600', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 6, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14430 INSERT INTO `marc_subfield_structure` VALUES ('600', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14431 INSERT INTO `marc_subfield_structure` VALUES ('600', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14432 INSERT INTO `marc_subfield_structure` VALUES ('600', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14433 INSERT INTO `marc_subfield_structure` VALUES ('600', 'h', 'Medium', 'Medium', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14434 INSERT INTO `marc_subfield_structure` VALUES ('600', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14435 INSERT INTO `marc_subfield_structure` VALUES ('600', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14436 INSERT INTO `marc_subfield_structure` VALUES ('600', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14437 INSERT INTO `marc_subfield_structure` VALUES ('600', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14438 INSERT INTO `marc_subfield_structure` VALUES ('600', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14439 INSERT INTO `marc_subfield_structure` VALUES ('600', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14440 INSERT INTO `marc_subfield_structure` VALUES ('600', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14441 INSERT INTO `marc_subfield_structure` VALUES ('600', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 6, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14442 INSERT INTO `marc_subfield_structure` VALUES ('600', 'r', 'Key for music', 'Key for music', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14443 INSERT INTO `marc_subfield_structure` VALUES ('600', 's', 'Version', 'Version', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14444 INSERT INTO `marc_subfield_structure` VALUES ('600', 't', 'Title of a work', 'Title of a work', 0, 0, '', 6, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14445 INSERT INTO `marc_subfield_structure` VALUES ('600', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14446 INSERT INTO `marc_subfield_structure` VALUES ('600', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14447 INSERT INTO `marc_subfield_structure` VALUES ('600', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14448 INSERT INTO `marc_subfield_structure` VALUES ('600', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14449 INSERT INTO `marc_subfield_structure` VALUES ('600', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14450 INSERT INTO `marc_subfield_structure` VALUES ('610', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14451 INSERT INTO `marc_subfield_structure` VALUES ('610', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14452 INSERT INTO `marc_subfield_structure` VALUES ('610', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14453 INSERT INTO `marc_subfield_structure` VALUES ('610', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14454 INSERT INTO `marc_subfield_structure` VALUES ('610', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14455 INSERT INTO `marc_subfield_structure` VALUES ('610', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'ASMP_VIDEORECORDINGS', '', '');
14456 INSERT INTO `marc_subfield_structure` VALUES ('610', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 6, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14457 INSERT INTO `marc_subfield_structure` VALUES ('610', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14458 INSERT INTO `marc_subfield_structure` VALUES ('610', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 6, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14459 INSERT INTO `marc_subfield_structure` VALUES ('610', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14460 INSERT INTO `marc_subfield_structure` VALUES ('610', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14461 INSERT INTO `marc_subfield_structure` VALUES ('610', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14462 INSERT INTO `marc_subfield_structure` VALUES ('610', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14463 INSERT INTO `marc_subfield_structure` VALUES ('610', 'h', 'Medium', 'Medium', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14464 INSERT INTO `marc_subfield_structure` VALUES ('610', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14465 INSERT INTO `marc_subfield_structure` VALUES ('610', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14466 INSERT INTO `marc_subfield_structure` VALUES ('610', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14467 INSERT INTO `marc_subfield_structure` VALUES ('610', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14468 INSERT INTO `marc_subfield_structure` VALUES ('610', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14469 INSERT INTO `marc_subfield_structure` VALUES ('610', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14470 INSERT INTO `marc_subfield_structure` VALUES ('610', 'r', 'Key for music', 'Key for music', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14471 INSERT INTO `marc_subfield_structure` VALUES ('610', 's', 'Version', 'Version', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14472 INSERT INTO `marc_subfield_structure` VALUES ('610', 't', 'Title of a work', 'Title of a work', 0, 0, '', 6, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14473 INSERT INTO `marc_subfield_structure` VALUES ('610', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14474 INSERT INTO `marc_subfield_structure` VALUES ('610', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14475 INSERT INTO `marc_subfield_structure` VALUES ('610', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14476 INSERT INTO `marc_subfield_structure` VALUES ('610', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14477 INSERT INTO `marc_subfield_structure` VALUES ('610', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14478 INSERT INTO `marc_subfield_structure` VALUES ('611', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14479 INSERT INTO `marc_subfield_structure` VALUES ('611', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14480 INSERT INTO `marc_subfield_structure` VALUES ('611', '4', 'Relator code', 'Relator code', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14481 INSERT INTO `marc_subfield_structure` VALUES ('611', '6', 'Linkage', 'Linkage', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14482 INSERT INTO `marc_subfield_structure` VALUES ('611', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14483 INSERT INTO `marc_subfield_structure` VALUES ('611', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'ASMP_VIDEORECORDINGS', '', '');
14484 INSERT INTO `marc_subfield_structure` VALUES ('611', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14485 INSERT INTO `marc_subfield_structure` VALUES ('611', 'b', 'Number  (BK CF MP MU SE VM MX)  [OBSOLETE]', 'Number  (BK CF MP MU SE VM MX)  [OBSOLETE]', 1, 0, NULL, -1, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14486 INSERT INTO `marc_subfield_structure` VALUES ('611', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14487 INSERT INTO `marc_subfield_structure` VALUES ('611', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14488 INSERT INTO `marc_subfield_structure` VALUES ('611', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14489 INSERT INTO `marc_subfield_structure` VALUES ('611', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14490 INSERT INTO `marc_subfield_structure` VALUES ('611', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14491 INSERT INTO `marc_subfield_structure` VALUES ('611', 'h', 'Medium', 'Medium', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14492 INSERT INTO `marc_subfield_structure` VALUES ('611', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14493 INSERT INTO `marc_subfield_structure` VALUES ('611', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14494 INSERT INTO `marc_subfield_structure` VALUES ('611', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14495 INSERT INTO `marc_subfield_structure` VALUES ('611', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14496 INSERT INTO `marc_subfield_structure` VALUES ('611', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14497 INSERT INTO `marc_subfield_structure` VALUES ('611', 's', 'Version', 'Version', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14498 INSERT INTO `marc_subfield_structure` VALUES ('611', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14499 INSERT INTO `marc_subfield_structure` VALUES ('611', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14500 INSERT INTO `marc_subfield_structure` VALUES ('611', 'v', 'Form subdivision', 'Form subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14501 INSERT INTO `marc_subfield_structure` VALUES ('611', 'x', 'General subdivision', 'General subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14502 INSERT INTO `marc_subfield_structure` VALUES ('611', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14503 INSERT INTO `marc_subfield_structure` VALUES ('611', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14504 INSERT INTO `marc_subfield_structure` VALUES ('630', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14505 INSERT INTO `marc_subfield_structure` VALUES ('630', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14506 INSERT INTO `marc_subfield_structure` VALUES ('630', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14507 INSERT INTO `marc_subfield_structure` VALUES ('630', '6', 'Linkage', 'Linkage', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14508 INSERT INTO `marc_subfield_structure` VALUES ('630', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14509 INSERT INTO `marc_subfield_structure` VALUES ('630', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'ASMP_VIDEORECORDINGS', '', '');
14510 INSERT INTO `marc_subfield_structure` VALUES ('630', 'a', 'Uniform title', 'Uniform title', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14511 INSERT INTO `marc_subfield_structure` VALUES ('630', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14512 INSERT INTO `marc_subfield_structure` VALUES ('630', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14513 INSERT INTO `marc_subfield_structure` VALUES ('630', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14514 INSERT INTO `marc_subfield_structure` VALUES ('630', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14515 INSERT INTO `marc_subfield_structure` VALUES ('630', 'h', 'Medium', 'Medium', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14516 INSERT INTO `marc_subfield_structure` VALUES ('630', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14517 INSERT INTO `marc_subfield_structure` VALUES ('630', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14518 INSERT INTO `marc_subfield_structure` VALUES ('630', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14519 INSERT INTO `marc_subfield_structure` VALUES ('630', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14520 INSERT INTO `marc_subfield_structure` VALUES ('630', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14521 INSERT INTO `marc_subfield_structure` VALUES ('630', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14522 INSERT INTO `marc_subfield_structure` VALUES ('630', 'r', 'Key for music', 'Key for music', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14523 INSERT INTO `marc_subfield_structure` VALUES ('630', 's', 'Version', 'Version', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14524 INSERT INTO `marc_subfield_structure` VALUES ('630', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14525 INSERT INTO `marc_subfield_structure` VALUES ('630', 'v', 'Form subdivision', 'Form subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14526 INSERT INTO `marc_subfield_structure` VALUES ('630', 'x', 'General subdivision', 'General subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14527 INSERT INTO `marc_subfield_structure` VALUES ('630', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14528 INSERT INTO `marc_subfield_structure` VALUES ('630', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14529 INSERT INTO `marc_subfield_structure` VALUES ('648', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14530 INSERT INTO `marc_subfield_structure` VALUES ('648', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14531 INSERT INTO `marc_subfield_structure` VALUES ('648', '6', 'Linkage', 'Linkage', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14532 INSERT INTO `marc_subfield_structure` VALUES ('648', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14533 INSERT INTO `marc_subfield_structure` VALUES ('648', 'a', 'Chronological term', 'Chronological term', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14534 INSERT INTO `marc_subfield_structure` VALUES ('648', 'v', 'Form subdivision', 'Form subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14535 INSERT INTO `marc_subfield_structure` VALUES ('648', 'x', 'General subdivision', 'General subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14536 INSERT INTO `marc_subfield_structure` VALUES ('648', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14537 INSERT INTO `marc_subfield_structure` VALUES ('648', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14538 INSERT INTO `marc_subfield_structure` VALUES ('650', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', 0, 0, 'ASMP_VIDEORECORDINGS', '', '');
14539 INSERT INTO `marc_subfield_structure` VALUES ('650', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
14540 INSERT INTO `marc_subfield_structure` VALUES ('650', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14541 INSERT INTO `marc_subfield_structure` VALUES ('650', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
14542 INSERT INTO `marc_subfield_structure` VALUES ('650', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
14543 INSERT INTO `marc_subfield_structure` VALUES ('650', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'ASMP_VIDEORECORDINGS', '', '');
14544 INSERT INTO `marc_subfield_structure` VALUES ('650', 'a', 'Topical term or geographic name as entry element', 'Topical term or geographic name as entry element', 0, 0, 'bibliosubject.subject', 6, '', '', '', 0, 0, 'ASMP_VIDEORECORDINGS', '''6003'',''600a'',''600b'',''600c'',''600d'',''600e'',''600f'',''600g'',''600h'',''600k'',''600l'',''600m'',''600n'',''600o'',''600p'',''600r'',''600s'',''600t'',''600u'',''600x'',''600z'',''600y'',''600v'',''6103'',''610a'',''610b'',''610c'',''610d'',''610e'',''610f'',''610g'',''610h'',''610k'',''610l'',''610m'',''610n'',''610o'',''610p'',''610r'',''610s'',''610t'',''610u'',''610x'',''610z'',''610y'',''610v'',''6113'',''611a'',''611b'',''611c'',''611d'',''611e'',''611f'',''611g'',''611h'',''611k'',''611l'',''611m'',''611n'',''611o'',''611p'',''611r'',''611s'',''611t'',''611u'',''611x'',''611z'',''611y'',''611v'',''630a'',''630b'',''630c'',''630d'',''630e'',''630f'',''630g'',''630h'',''630k'',''630l'',''630m'',''630n'',''630o'',''630p'',''630r'',''630s'',''630t'',''630x'',''630z'',''630y'',''630v'',''6483'',''648a'',''648x'',''648z'',''648y'',''648v'',''6503'',''650b'',''650c'',''650d'',''650e'',''650x'',''650z'',''650y'',''650v'',''6513'',''651a'',''651b'',''651c'',''651d'',''651e'',''651x'',''651z'',''651y'',''651v'',''653a'',''6543'',''654a'',''654b'',''654x'',''654z'',''654y'',''654v'',''6553'',''655a'',''655b'',''655x'',''655z'',''655y'',''655v'',''6563'',''656a'',''656k'',''656x'',''656z'',''656y'',''656v'',''6573'',''657a'',''657x'',''657z'',''657y'',''657v'',''658a'',''658b'',''658c'',''658d'',''658v''', '');
14545 INSERT INTO `marc_subfield_structure` VALUES ('650', 'b', 'Topical term following geographic name as entry element', 'Topical term following geographic name as entry element', 0, 0, '', 6, '', '', '', 0, -1, 'ASMP_VIDEORECORDINGS', '', '');
14546 INSERT INTO `marc_subfield_structure` VALUES ('650', 'c', 'Location of event', 'Location of event', 0, 0, '', 6, '', '', '', 0, -1, 'ASMP_VIDEORECORDINGS', '', '');
14547 INSERT INTO `marc_subfield_structure` VALUES ('650', 'd', 'Active dates', 'Active dates', 0, 0, '', 6, '', '', '', 0, -1, 'ASMP_VIDEORECORDINGS', '', '');
14548 INSERT INTO `marc_subfield_structure` VALUES ('650', 'e', 'Relator term', 'Relator term', 0, 0, '', 6, '', '', '', 0, -1, 'ASMP_VIDEORECORDINGS', '', '');
14549 INSERT INTO `marc_subfield_structure` VALUES ('650', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', 0, 0, 'ASMP_VIDEORECORDINGS', '', '');
14550 INSERT INTO `marc_subfield_structure` VALUES ('650', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', 0, 0, 'ASMP_VIDEORECORDINGS', '', '');
14551 INSERT INTO `marc_subfield_structure` VALUES ('650', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', 0, 0, 'ASMP_VIDEORECORDINGS', '', '');
14552 INSERT INTO `marc_subfield_structure` VALUES ('650', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', 0, 0, 'ASMP_VIDEORECORDINGS', '', '');
14553 INSERT INTO `marc_subfield_structure` VALUES ('651', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14554 INSERT INTO `marc_subfield_structure` VALUES ('651', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14555 INSERT INTO `marc_subfield_structure` VALUES ('651', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14556 INSERT INTO `marc_subfield_structure` VALUES ('651', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14557 INSERT INTO `marc_subfield_structure` VALUES ('651', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14558 INSERT INTO `marc_subfield_structure` VALUES ('651', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'ASMP_VIDEORECORDINGS', '', '');
14559 INSERT INTO `marc_subfield_structure` VALUES ('651', 'a', 'Geographic name', 'Geographic name', 0, 0, '', 6, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14560 INSERT INTO `marc_subfield_structure` VALUES ('651', 'b', 'Geographic name following place entry element [OBSOLETE]', 'Geographic name following place entry element [OBSOLETE]', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14561 INSERT INTO `marc_subfield_structure` VALUES ('651', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14562 INSERT INTO `marc_subfield_structure` VALUES ('651', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14563 INSERT INTO `marc_subfield_structure` VALUES ('651', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14564 INSERT INTO `marc_subfield_structure` VALUES ('651', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14565 INSERT INTO `marc_subfield_structure` VALUES ('651', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14566 INSERT INTO `marc_subfield_structure` VALUES ('652', 'a', 'Geographic name of place element', 'Geographic name of place element', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14567 INSERT INTO `marc_subfield_structure` VALUES ('652', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14568 INSERT INTO `marc_subfield_structure` VALUES ('652', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14569 INSERT INTO `marc_subfield_structure` VALUES ('652', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14570 INSERT INTO `marc_subfield_structure` VALUES ('653', '6', 'Linkage', 'Linkage', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14571 INSERT INTO `marc_subfield_structure` VALUES ('653', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14572 INSERT INTO `marc_subfield_structure` VALUES ('653', 'a', 'Uncontrolled term', 'Uncontrolled term', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14573 INSERT INTO `marc_subfield_structure` VALUES ('654', '2', 'Source of term', 'Source of term', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14574 INSERT INTO `marc_subfield_structure` VALUES ('654', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14575 INSERT INTO `marc_subfield_structure` VALUES ('654', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14576 INSERT INTO `marc_subfield_structure` VALUES ('654', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14577 INSERT INTO `marc_subfield_structure` VALUES ('654', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14578 INSERT INTO `marc_subfield_structure` VALUES ('654', 'a', 'Focus term', 'Focus term', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14579 INSERT INTO `marc_subfield_structure` VALUES ('654', 'b', 'Non-focus term', 'Non-focus term', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14580 INSERT INTO `marc_subfield_structure` VALUES ('654', 'c', 'Facet/hierarchy designation', 'Facet/hierarchy designation', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14581 INSERT INTO `marc_subfield_structure` VALUES ('654', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14582 INSERT INTO `marc_subfield_structure` VALUES ('654', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14583 INSERT INTO `marc_subfield_structure` VALUES ('654', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14584 INSERT INTO `marc_subfield_structure` VALUES ('654', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14585 INSERT INTO `marc_subfield_structure` VALUES ('654', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14586 INSERT INTO `marc_subfield_structure` VALUES ('655', '2', 'Source of term', 'Source of term', 0, 0, '', 6, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14587 INSERT INTO `marc_subfield_structure` VALUES ('655', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14588 INSERT INTO `marc_subfield_structure` VALUES ('655', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14589 INSERT INTO `marc_subfield_structure` VALUES ('655', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14590 INSERT INTO `marc_subfield_structure` VALUES ('655', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14591 INSERT INTO `marc_subfield_structure` VALUES ('655', 'a', 'Genre/form data or focus term', 'Genre/form data or focus term', 0, 0, '', 6, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14592 INSERT INTO `marc_subfield_structure` VALUES ('655', 'b', 'Non-focus term', 'Non-focus term', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14593 INSERT INTO `marc_subfield_structure` VALUES ('655', 'c', 'Facet/hierarchy designation', 'Facet/hierarchy designation', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14594 INSERT INTO `marc_subfield_structure` VALUES ('655', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14595 INSERT INTO `marc_subfield_structure` VALUES ('655', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14596 INSERT INTO `marc_subfield_structure` VALUES ('655', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14597 INSERT INTO `marc_subfield_structure` VALUES ('655', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14598 INSERT INTO `marc_subfield_structure` VALUES ('656', '2', 'Source of term', 'Source of term', 0, 0, '', 6, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14599 INSERT INTO `marc_subfield_structure` VALUES ('656', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14600 INSERT INTO `marc_subfield_structure` VALUES ('656', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14601 INSERT INTO `marc_subfield_structure` VALUES ('656', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14602 INSERT INTO `marc_subfield_structure` VALUES ('656', 'a', 'Occupation', 'Occupation', 0, 0, '', 6, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14603 INSERT INTO `marc_subfield_structure` VALUES ('656', 'k', 'Form', 'Form', 0, 0, '', 6, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14604 INSERT INTO `marc_subfield_structure` VALUES ('656', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14605 INSERT INTO `marc_subfield_structure` VALUES ('656', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14606 INSERT INTO `marc_subfield_structure` VALUES ('656', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14607 INSERT INTO `marc_subfield_structure` VALUES ('656', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14608 INSERT INTO `marc_subfield_structure` VALUES ('657', '2', 'Source of term', 'Source of term', 0, 0, '', 6, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14609 INSERT INTO `marc_subfield_structure` VALUES ('657', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14610 INSERT INTO `marc_subfield_structure` VALUES ('657', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14611 INSERT INTO `marc_subfield_structure` VALUES ('657', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14612 INSERT INTO `marc_subfield_structure` VALUES ('657', 'a', 'Function', 'Function', 0, 0, '', 6, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14613 INSERT INTO `marc_subfield_structure` VALUES ('657', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14614 INSERT INTO `marc_subfield_structure` VALUES ('657', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14615 INSERT INTO `marc_subfield_structure` VALUES ('657', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14616 INSERT INTO `marc_subfield_structure` VALUES ('657', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14617 INSERT INTO `marc_subfield_structure` VALUES ('658', '2', 'Source of term', 'Source of term', 0, 0, '', 6, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14618 INSERT INTO `marc_subfield_structure` VALUES ('658', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14619 INSERT INTO `marc_subfield_structure` VALUES ('658', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14620 INSERT INTO `marc_subfield_structure` VALUES ('658', 'a', 'Main curriculum objective', 'Main curriculum objective', 0, 0, '', 6, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14621 INSERT INTO `marc_subfield_structure` VALUES ('658', 'b', 'Subordinate curriculum objective', 'Subordinate curriculum objective', 1, 0, '', 6, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14622 INSERT INTO `marc_subfield_structure` VALUES ('658', 'c', 'Curriculum code', 'Curriculum code', 0, 0, '', 6, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14623 INSERT INTO `marc_subfield_structure` VALUES ('658', 'd', 'Correlation factor', 'Correlation factor', 0, 0, '', 6, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14624 INSERT INTO `marc_subfield_structure` VALUES ('662', '2', 'Source of term', 'Source of term', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14625 INSERT INTO `marc_subfield_structure` VALUES ('662', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14626 INSERT INTO `marc_subfield_structure` VALUES ('662', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14627 INSERT INTO `marc_subfield_structure` VALUES ('662', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14628 INSERT INTO `marc_subfield_structure` VALUES ('662', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14629 INSERT INTO `marc_subfield_structure` VALUES ('662', 'a', 'Country or larger entity', 'Country or larger entity', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14630 INSERT INTO `marc_subfield_structure` VALUES ('662', 'b', 'First-order political jurisdiction', 'First-order political jurisdiction', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14631 INSERT INTO `marc_subfield_structure` VALUES ('662', 'c', 'Intermediate political jurisdiction', 'Intermediate political jurisdiction', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14632 INSERT INTO `marc_subfield_structure` VALUES ('662', 'd', 'City', 'City', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14633 INSERT INTO `marc_subfield_structure` VALUES ('662', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14634 INSERT INTO `marc_subfield_structure` VALUES ('662', 'f', 'City subsection', 'City subsection', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14635 INSERT INTO `marc_subfield_structure` VALUES ('662', 'g', 'Other nonjurisdictional geographic region and feature', 'Other nonjurisdictional geographic region and feature', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14636 INSERT INTO `marc_subfield_structure` VALUES ('662', 'h', 'Extraterrestrial area', 'Extraterrestrial area', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14637 INSERT INTO `marc_subfield_structure` VALUES ('690', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
14638 INSERT INTO `marc_subfield_structure` VALUES ('690', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
14639 INSERT INTO `marc_subfield_structure` VALUES ('690', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
14640 INSERT INTO `marc_subfield_structure` VALUES ('690', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
14641 INSERT INTO `marc_subfield_structure` VALUES ('690', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
14642 INSERT INTO `marc_subfield_structure` VALUES ('690', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'ASMP_VIDEORECORDINGS', '', '');
14643 INSERT INTO `marc_subfield_structure` VALUES ('690', 'a', 'Topical term or geographic name as entry element', 'Topical term or geographic name as entry element', 0, 0, '', 6, '', '', '', 0, -1, 'ASMP_VIDEORECORDINGS', '', '');
14644 INSERT INTO `marc_subfield_structure` VALUES ('690', 'b', 'Topical term following geographic name as entry element', 'Topical term following geographic name as entry element', 0, 0, '', 6, '', '', '', 0, -1, 'ASMP_VIDEORECORDINGS', '', '');
14645 INSERT INTO `marc_subfield_structure` VALUES ('690', 'c', 'Location of event', 'Location of event', 0, 0, '', 6, '', '', '', 0, -1, 'ASMP_VIDEORECORDINGS', '', '');
14646 INSERT INTO `marc_subfield_structure` VALUES ('690', 'd', 'Active dates', 'Active dates', 0, 0, '', 6, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
14647 INSERT INTO `marc_subfield_structure` VALUES ('690', 'e', 'Relator term', 'Relator term', 0, 0, '', 6, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
14648 INSERT INTO `marc_subfield_structure` VALUES ('690', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', 0, -1, 'ASMP_VIDEORECORDINGS', '', '');
14649 INSERT INTO `marc_subfield_structure` VALUES ('690', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', 0, -1, 'ASMP_VIDEORECORDINGS', '', '');
14650 INSERT INTO `marc_subfield_structure` VALUES ('690', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', 0, -1, 'ASMP_VIDEORECORDINGS', '', '');
14651 INSERT INTO `marc_subfield_structure` VALUES ('690', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', 0, -1, 'ASMP_VIDEORECORDINGS', '', '');
14652 INSERT INTO `marc_subfield_structure` VALUES ('691', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
14653 INSERT INTO `marc_subfield_structure` VALUES ('691', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14654 INSERT INTO `marc_subfield_structure` VALUES ('691', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14655 INSERT INTO `marc_subfield_structure` VALUES ('691', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14656 INSERT INTO `marc_subfield_structure` VALUES ('691', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14657 INSERT INTO `marc_subfield_structure` VALUES ('691', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'ASMP_VIDEORECORDINGS', '', '');
14658 INSERT INTO `marc_subfield_structure` VALUES ('691', 'a', 'Geographic name', 'Geographic name', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14659 INSERT INTO `marc_subfield_structure` VALUES ('691', 'b', 'Geographic name following place entry element [OBSOLETE]', 'Geographic name following place entry element [OBSOLETE]', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14660 INSERT INTO `marc_subfield_structure` VALUES ('691', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14661 INSERT INTO `marc_subfield_structure` VALUES ('691', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14662 INSERT INTO `marc_subfield_structure` VALUES ('691', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14663 INSERT INTO `marc_subfield_structure` VALUES ('691', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14664 INSERT INTO `marc_subfield_structure` VALUES ('696', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
14665 INSERT INTO `marc_subfield_structure` VALUES ('696', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14666 INSERT INTO `marc_subfield_structure` VALUES ('696', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14667 INSERT INTO `marc_subfield_structure` VALUES ('696', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14668 INSERT INTO `marc_subfield_structure` VALUES ('696', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14669 INSERT INTO `marc_subfield_structure` VALUES ('696', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14670 INSERT INTO `marc_subfield_structure` VALUES ('696', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'ASMP_VIDEORECORDINGS', '', '');
14671 INSERT INTO `marc_subfield_structure` VALUES ('696', 'a', 'Personal name', 'Personal name', 0, 0, '', 3, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14672 INSERT INTO `marc_subfield_structure` VALUES ('696', 'b', 'Numeration', 'Numeration', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14673 INSERT INTO `marc_subfield_structure` VALUES ('696', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14674 INSERT INTO `marc_subfield_structure` VALUES ('696', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14675 INSERT INTO `marc_subfield_structure` VALUES ('696', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14676 INSERT INTO `marc_subfield_structure` VALUES ('696', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14677 INSERT INTO `marc_subfield_structure` VALUES ('696', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14678 INSERT INTO `marc_subfield_structure` VALUES ('696', 'h', 'Medium', 'Medium', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14679 INSERT INTO `marc_subfield_structure` VALUES ('696', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14680 INSERT INTO `marc_subfield_structure` VALUES ('696', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14681 INSERT INTO `marc_subfield_structure` VALUES ('696', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14682 INSERT INTO `marc_subfield_structure` VALUES ('696', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14683 INSERT INTO `marc_subfield_structure` VALUES ('696', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14684 INSERT INTO `marc_subfield_structure` VALUES ('696', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14685 INSERT INTO `marc_subfield_structure` VALUES ('696', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14686 INSERT INTO `marc_subfield_structure` VALUES ('696', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14687 INSERT INTO `marc_subfield_structure` VALUES ('696', 'r', 'Key for music', 'Key for music', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14688 INSERT INTO `marc_subfield_structure` VALUES ('696', 's', 'Version', 'Version', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14689 INSERT INTO `marc_subfield_structure` VALUES ('696', 't', 'Title of a work', 'Title of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14690 INSERT INTO `marc_subfield_structure` VALUES ('696', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14691 INSERT INTO `marc_subfield_structure` VALUES ('696', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14692 INSERT INTO `marc_subfield_structure` VALUES ('696', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14693 INSERT INTO `marc_subfield_structure` VALUES ('696', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14694 INSERT INTO `marc_subfield_structure` VALUES ('696', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14695 INSERT INTO `marc_subfield_structure` VALUES ('697', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
14696 INSERT INTO `marc_subfield_structure` VALUES ('697', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14697 INSERT INTO `marc_subfield_structure` VALUES ('697', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14698 INSERT INTO `marc_subfield_structure` VALUES ('697', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14699 INSERT INTO `marc_subfield_structure` VALUES ('697', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14700 INSERT INTO `marc_subfield_structure` VALUES ('697', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14701 INSERT INTO `marc_subfield_structure` VALUES ('697', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'ASMP_VIDEORECORDINGS', '', '');
14702 INSERT INTO `marc_subfield_structure` VALUES ('697', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14703 INSERT INTO `marc_subfield_structure` VALUES ('697', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14704 INSERT INTO `marc_subfield_structure` VALUES ('697', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14705 INSERT INTO `marc_subfield_structure` VALUES ('697', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14706 INSERT INTO `marc_subfield_structure` VALUES ('697', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14707 INSERT INTO `marc_subfield_structure` VALUES ('697', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14708 INSERT INTO `marc_subfield_structure` VALUES ('697', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14709 INSERT INTO `marc_subfield_structure` VALUES ('697', 'h', 'Medium', 'Medium', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14710 INSERT INTO `marc_subfield_structure` VALUES ('697', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14711 INSERT INTO `marc_subfield_structure` VALUES ('697', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14712 INSERT INTO `marc_subfield_structure` VALUES ('697', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14713 INSERT INTO `marc_subfield_structure` VALUES ('697', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14714 INSERT INTO `marc_subfield_structure` VALUES ('697', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14715 INSERT INTO `marc_subfield_structure` VALUES ('697', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14716 INSERT INTO `marc_subfield_structure` VALUES ('697', 'r', 'Key for music', 'Key for music', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14717 INSERT INTO `marc_subfield_structure` VALUES ('697', 's', 'Version', 'Version', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14718 INSERT INTO `marc_subfield_structure` VALUES ('697', 't', 'Title of a work', 'Title of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14719 INSERT INTO `marc_subfield_structure` VALUES ('697', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14720 INSERT INTO `marc_subfield_structure` VALUES ('697', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14721 INSERT INTO `marc_subfield_structure` VALUES ('697', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14722 INSERT INTO `marc_subfield_structure` VALUES ('697', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14723 INSERT INTO `marc_subfield_structure` VALUES ('697', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14724 INSERT INTO `marc_subfield_structure` VALUES ('698', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
14725 INSERT INTO `marc_subfield_structure` VALUES ('698', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14726 INSERT INTO `marc_subfield_structure` VALUES ('698', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14727 INSERT INTO `marc_subfield_structure` VALUES ('698', '4', 'Relator code', 'Relator code', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14728 INSERT INTO `marc_subfield_structure` VALUES ('698', '6', 'Linkage', 'Linkage', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14729 INSERT INTO `marc_subfield_structure` VALUES ('698', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14730 INSERT INTO `marc_subfield_structure` VALUES ('698', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'ASMP_VIDEORECORDINGS', '', '');
14731 INSERT INTO `marc_subfield_structure` VALUES ('698', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14732 INSERT INTO `marc_subfield_structure` VALUES ('698', 'b', 'Number  (BK CF MP MU SE VM MX)  [OBSOLETE]', 'Number  (BK CF MP MU SE VM MX)  [OBSOLETE]', 1, 0, NULL, -1, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14733 INSERT INTO `marc_subfield_structure` VALUES ('698', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14734 INSERT INTO `marc_subfield_structure` VALUES ('698', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14735 INSERT INTO `marc_subfield_structure` VALUES ('698', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14736 INSERT INTO `marc_subfield_structure` VALUES ('698', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14737 INSERT INTO `marc_subfield_structure` VALUES ('698', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14738 INSERT INTO `marc_subfield_structure` VALUES ('698', 'h', 'Medium', 'Medium', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14739 INSERT INTO `marc_subfield_structure` VALUES ('698', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14740 INSERT INTO `marc_subfield_structure` VALUES ('698', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14741 INSERT INTO `marc_subfield_structure` VALUES ('698', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14742 INSERT INTO `marc_subfield_structure` VALUES ('698', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14743 INSERT INTO `marc_subfield_structure` VALUES ('698', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14744 INSERT INTO `marc_subfield_structure` VALUES ('698', 's', 'Version', 'Version', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14745 INSERT INTO `marc_subfield_structure` VALUES ('698', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14746 INSERT INTO `marc_subfield_structure` VALUES ('698', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14747 INSERT INTO `marc_subfield_structure` VALUES ('698', 'v', 'Form subdivision', 'Form subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14748 INSERT INTO `marc_subfield_structure` VALUES ('698', 'x', 'General subdivision', 'General subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14749 INSERT INTO `marc_subfield_structure` VALUES ('698', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14750 INSERT INTO `marc_subfield_structure` VALUES ('698', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14751 INSERT INTO `marc_subfield_structure` VALUES ('699', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
14752 INSERT INTO `marc_subfield_structure` VALUES ('699', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14753 INSERT INTO `marc_subfield_structure` VALUES ('699', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14754 INSERT INTO `marc_subfield_structure` VALUES ('699', '6', 'Linkage', 'Linkage', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14755 INSERT INTO `marc_subfield_structure` VALUES ('699', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14756 INSERT INTO `marc_subfield_structure` VALUES ('699', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'ASMP_VIDEORECORDINGS', '', '');
14757 INSERT INTO `marc_subfield_structure` VALUES ('699', 'a', 'Uniform title', 'Uniform title', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14758 INSERT INTO `marc_subfield_structure` VALUES ('699', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14759 INSERT INTO `marc_subfield_structure` VALUES ('699', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14760 INSERT INTO `marc_subfield_structure` VALUES ('699', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14761 INSERT INTO `marc_subfield_structure` VALUES ('699', 'h', 'Medium', 'Medium', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14762 INSERT INTO `marc_subfield_structure` VALUES ('699', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14763 INSERT INTO `marc_subfield_structure` VALUES ('699', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14764 INSERT INTO `marc_subfield_structure` VALUES ('699', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14765 INSERT INTO `marc_subfield_structure` VALUES ('699', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14766 INSERT INTO `marc_subfield_structure` VALUES ('699', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14767 INSERT INTO `marc_subfield_structure` VALUES ('699', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14768 INSERT INTO `marc_subfield_structure` VALUES ('699', 'r', 'Key for music', 'Key for music', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14769 INSERT INTO `marc_subfield_structure` VALUES ('699', 's', 'Version', 'Version', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14770 INSERT INTO `marc_subfield_structure` VALUES ('699', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14771 INSERT INTO `marc_subfield_structure` VALUES ('699', 'v', 'Form subdivision', 'Form subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14772 INSERT INTO `marc_subfield_structure` VALUES ('699', 'x', 'General subdivision', 'General subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14773 INSERT INTO `marc_subfield_structure` VALUES ('699', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14774 INSERT INTO `marc_subfield_structure` VALUES ('700', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14775 INSERT INTO `marc_subfield_structure` VALUES ('700', '4', 'Relator code', 'Relator code', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14776 INSERT INTO `marc_subfield_structure` VALUES ('700', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14777 INSERT INTO `marc_subfield_structure` VALUES ('700', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14778 INSERT INTO `marc_subfield_structure` VALUES ('700', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14779 INSERT INTO `marc_subfield_structure` VALUES ('700', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'ASMP_VIDEORECORDINGS', '', '');
14780 INSERT INTO `marc_subfield_structure` VALUES ('700', 'a', 'Personal name', 'Personal name', 0, 0, 'additionalauthors.author', 7, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14781 INSERT INTO `marc_subfield_structure` VALUES ('700', 'b', 'Numeration', 'Numeration', 0, 0, '', 7, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14782 INSERT INTO `marc_subfield_structure` VALUES ('700', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 7, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14783 INSERT INTO `marc_subfield_structure` VALUES ('700', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 7, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14784 INSERT INTO `marc_subfield_structure` VALUES ('700', 'e', 'Relator term', 'Relator term', 1, 0, '', 7, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14785 INSERT INTO `marc_subfield_structure` VALUES ('700', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14786 INSERT INTO `marc_subfield_structure` VALUES ('700', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14787 INSERT INTO `marc_subfield_structure` VALUES ('700', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14788 INSERT INTO `marc_subfield_structure` VALUES ('700', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14789 INSERT INTO `marc_subfield_structure` VALUES ('700', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14790 INSERT INTO `marc_subfield_structure` VALUES ('700', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14791 INSERT INTO `marc_subfield_structure` VALUES ('700', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14792 INSERT INTO `marc_subfield_structure` VALUES ('700', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14793 INSERT INTO `marc_subfield_structure` VALUES ('700', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14794 INSERT INTO `marc_subfield_structure` VALUES ('700', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14795 INSERT INTO `marc_subfield_structure` VALUES ('700', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 7, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14796 INSERT INTO `marc_subfield_structure` VALUES ('700', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14797 INSERT INTO `marc_subfield_structure` VALUES ('700', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14798 INSERT INTO `marc_subfield_structure` VALUES ('700', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14799 INSERT INTO `marc_subfield_structure` VALUES ('700', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14800 INSERT INTO `marc_subfield_structure` VALUES ('700', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14801 INSERT INTO `marc_subfield_structure` VALUES ('705', 'a', 'Personal name', 'Personal name', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14802 INSERT INTO `marc_subfield_structure` VALUES ('705', 'b', 'Numeration', 'Numeration', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14803 INSERT INTO `marc_subfield_structure` VALUES ('705', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14804 INSERT INTO `marc_subfield_structure` VALUES ('705', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14805 INSERT INTO `marc_subfield_structure` VALUES ('705', 'e', 'Relator term', 'Relator term', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14806 INSERT INTO `marc_subfield_structure` VALUES ('705', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14807 INSERT INTO `marc_subfield_structure` VALUES ('705', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14808 INSERT INTO `marc_subfield_structure` VALUES ('705', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14809 INSERT INTO `marc_subfield_structure` VALUES ('705', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14810 INSERT INTO `marc_subfield_structure` VALUES ('705', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14811 INSERT INTO `marc_subfield_structure` VALUES ('705', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14812 INSERT INTO `marc_subfield_structure` VALUES ('705', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14813 INSERT INTO `marc_subfield_structure` VALUES ('705', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14814 INSERT INTO `marc_subfield_structure` VALUES ('705', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14815 INSERT INTO `marc_subfield_structure` VALUES ('705', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14816 INSERT INTO `marc_subfield_structure` VALUES ('705', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14817 INSERT INTO `marc_subfield_structure` VALUES ('705', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14818 INSERT INTO `marc_subfield_structure` VALUES ('710', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14819 INSERT INTO `marc_subfield_structure` VALUES ('710', '4', 'Relator code', 'Relator code', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14820 INSERT INTO `marc_subfield_structure` VALUES ('710', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14821 INSERT INTO `marc_subfield_structure` VALUES ('710', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14822 INSERT INTO `marc_subfield_structure` VALUES ('710', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14823 INSERT INTO `marc_subfield_structure` VALUES ('710', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'ASMP_VIDEORECORDINGS', '', '');
14824 INSERT INTO `marc_subfield_structure` VALUES ('710', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 7, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14825 INSERT INTO `marc_subfield_structure` VALUES ('710', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 7, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14826 INSERT INTO `marc_subfield_structure` VALUES ('710', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 7, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14827 INSERT INTO `marc_subfield_structure` VALUES ('710', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 7, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14828 INSERT INTO `marc_subfield_structure` VALUES ('710', 'e', 'Relator term', 'Relator term', 1, 0, '', 7, '', '', '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14829 INSERT INTO `marc_subfield_structure` VALUES ('710', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14830 INSERT INTO `marc_subfield_structure` VALUES ('710', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14831 INSERT INTO `marc_subfield_structure` VALUES ('710', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14832 INSERT INTO `marc_subfield_structure` VALUES ('710', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14833 INSERT INTO `marc_subfield_structure` VALUES ('710', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14834 INSERT INTO `marc_subfield_structure` VALUES ('710', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14835 INSERT INTO `marc_subfield_structure` VALUES ('710', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14836 INSERT INTO `marc_subfield_structure` VALUES ('710', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14837 INSERT INTO `marc_subfield_structure` VALUES ('710', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14838 INSERT INTO `marc_subfield_structure` VALUES ('710', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14839 INSERT INTO `marc_subfield_structure` VALUES ('710', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14840 INSERT INTO `marc_subfield_structure` VALUES ('710', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14841 INSERT INTO `marc_subfield_structure` VALUES ('710', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14842 INSERT INTO `marc_subfield_structure` VALUES ('710', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14843 INSERT INTO `marc_subfield_structure` VALUES ('711', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14844 INSERT INTO `marc_subfield_structure` VALUES ('711', '4', 'Relator code', 'Relator code', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14845 INSERT INTO `marc_subfield_structure` VALUES ('711', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14846 INSERT INTO `marc_subfield_structure` VALUES ('711', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14847 INSERT INTO `marc_subfield_structure` VALUES ('711', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14848 INSERT INTO `marc_subfield_structure` VALUES ('711', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'ASMP_VIDEORECORDINGS', '', '');
14849 INSERT INTO `marc_subfield_structure` VALUES ('711', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 7, NULL, NULL, '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14850 INSERT INTO `marc_subfield_structure` VALUES ('711', 'b', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14851 INSERT INTO `marc_subfield_structure` VALUES ('711', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 7, NULL, NULL, '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14852 INSERT INTO `marc_subfield_structure` VALUES ('711', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 7, NULL, NULL, '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14853 INSERT INTO `marc_subfield_structure` VALUES ('711', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 7, NULL, NULL, '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14854 INSERT INTO `marc_subfield_structure` VALUES ('711', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14855 INSERT INTO `marc_subfield_structure` VALUES ('711', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14856 INSERT INTO `marc_subfield_structure` VALUES ('711', 'h', 'Medium', 'Medium', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14857 INSERT INTO `marc_subfield_structure` VALUES ('711', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14858 INSERT INTO `marc_subfield_structure` VALUES ('711', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14859 INSERT INTO `marc_subfield_structure` VALUES ('711', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14860 INSERT INTO `marc_subfield_structure` VALUES ('711', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14861 INSERT INTO `marc_subfield_structure` VALUES ('711', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14862 INSERT INTO `marc_subfield_structure` VALUES ('711', 's', 'Version', 'Version', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14863 INSERT INTO `marc_subfield_structure` VALUES ('711', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14864 INSERT INTO `marc_subfield_structure` VALUES ('711', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14865 INSERT INTO `marc_subfield_structure` VALUES ('711', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14866 INSERT INTO `marc_subfield_structure` VALUES ('715', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 7, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
14867 INSERT INTO `marc_subfield_structure` VALUES ('715', 'a', 'Corporate name or jurisdiction name', 'Corporate name or jurisdiction name', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14868 INSERT INTO `marc_subfield_structure` VALUES ('715', 'b', 'Subordinate unit', 'Subordinate unit', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14869 INSERT INTO `marc_subfield_structure` VALUES ('715', 'e', 'Relator term', 'Relator term', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14870 INSERT INTO `marc_subfield_structure` VALUES ('715', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14871 INSERT INTO `marc_subfield_structure` VALUES ('715', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14872 INSERT INTO `marc_subfield_structure` VALUES ('715', 'h', 'Medium', 'Medium', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14873 INSERT INTO `marc_subfield_structure` VALUES ('715', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14874 INSERT INTO `marc_subfield_structure` VALUES ('715', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14875 INSERT INTO `marc_subfield_structure` VALUES ('715', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14876 INSERT INTO `marc_subfield_structure` VALUES ('715', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14877 INSERT INTO `marc_subfield_structure` VALUES ('715', 'r', 'Key for music', 'Key for music', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14878 INSERT INTO `marc_subfield_structure` VALUES ('715', 's', 'Version', 'Version', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14879 INSERT INTO `marc_subfield_structure` VALUES ('715', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14880 INSERT INTO `marc_subfield_structure` VALUES ('715', 'u', 'Nonprinting information', 'Nonprinting information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14881 INSERT INTO `marc_subfield_structure` VALUES ('720', '4', 'Relator code', 'Relator code', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14882 INSERT INTO `marc_subfield_structure` VALUES ('720', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14883 INSERT INTO `marc_subfield_structure` VALUES ('720', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14884 INSERT INTO `marc_subfield_structure` VALUES ('720', 'a', 'Name', 'Name', 0, 0, '', 7, NULL, NULL, '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14885 INSERT INTO `marc_subfield_structure` VALUES ('720', 'e', 'Relator term', 'Relator term', 1, 0, NULL, 7, NULL, NULL, '', NULL, -1, 'ASMP_VIDEORECORDINGS', '', '');
14886 INSERT INTO `marc_subfield_structure` VALUES ('730', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14887 INSERT INTO `marc_subfield_structure` VALUES ('730', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14888 INSERT INTO `marc_subfield_structure` VALUES ('730', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14889 INSERT INTO `marc_subfield_structure` VALUES ('730', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14890 INSERT INTO `marc_subfield_structure` VALUES ('730', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'ASMP_VIDEORECORDINGS', '', '');
14891 INSERT INTO `marc_subfield_structure` VALUES ('730', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14892 INSERT INTO `marc_subfield_structure` VALUES ('730', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14893 INSERT INTO `marc_subfield_structure` VALUES ('730', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14894 INSERT INTO `marc_subfield_structure` VALUES ('730', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14895 INSERT INTO `marc_subfield_structure` VALUES ('730', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14896 INSERT INTO `marc_subfield_structure` VALUES ('730', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14897 INSERT INTO `marc_subfield_structure` VALUES ('730', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14898 INSERT INTO `marc_subfield_structure` VALUES ('730', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14899 INSERT INTO `marc_subfield_structure` VALUES ('730', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14900 INSERT INTO `marc_subfield_structure` VALUES ('730', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14901 INSERT INTO `marc_subfield_structure` VALUES ('730', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14902 INSERT INTO `marc_subfield_structure` VALUES ('730', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14903 INSERT INTO `marc_subfield_structure` VALUES ('730', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14904 INSERT INTO `marc_subfield_structure` VALUES ('730', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14905 INSERT INTO `marc_subfield_structure` VALUES ('730', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14906 INSERT INTO `marc_subfield_structure` VALUES ('740', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14907 INSERT INTO `marc_subfield_structure` VALUES ('740', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14908 INSERT INTO `marc_subfield_structure` VALUES ('740', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14909 INSERT INTO `marc_subfield_structure` VALUES ('740', 'a', 'Uncontrolled related/analytical title', 'Uncontrolled related/analytical title', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14910 INSERT INTO `marc_subfield_structure` VALUES ('740', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14911 INSERT INTO `marc_subfield_structure` VALUES ('740', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14912 INSERT INTO `marc_subfield_structure` VALUES ('740', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14913 INSERT INTO `marc_subfield_structure` VALUES ('752', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14914 INSERT INTO `marc_subfield_structure` VALUES ('752', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14915 INSERT INTO `marc_subfield_structure` VALUES ('752', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14916 INSERT INTO `marc_subfield_structure` VALUES ('752', 'a', 'Country or larger entity', 'Country or larger entity', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14917 INSERT INTO `marc_subfield_structure` VALUES ('752', 'b', 'First-order political jurisdiction', 'First-order political jurisdiction', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14918 INSERT INTO `marc_subfield_structure` VALUES ('752', 'c', 'Intermediate political jurisdiction', 'Intermediate political jurisdiction', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14919 INSERT INTO `marc_subfield_structure` VALUES ('752', 'd', 'City', 'City', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14920 INSERT INTO `marc_subfield_structure` VALUES ('752', 'f', 'City subsection', 'City subsection', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14921 INSERT INTO `marc_subfield_structure` VALUES ('752', 'g', 'Other nonjurisdictional geographic region and feature', 'Other nonjurisdictional geographic region and feature', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14922 INSERT INTO `marc_subfield_structure` VALUES ('752', 'h', 'Extraterrestrial area', 'Extraterrestrial area', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14923 INSERT INTO `marc_subfield_structure` VALUES ('753', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14924 INSERT INTO `marc_subfield_structure` VALUES ('753', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14925 INSERT INTO `marc_subfield_structure` VALUES ('753', 'a', 'Make and model of machine', 'Make and model of machine', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14926 INSERT INTO `marc_subfield_structure` VALUES ('753', 'b', 'Programming language', 'Programming language', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14927 INSERT INTO `marc_subfield_structure` VALUES ('753', 'c', 'Operating system', 'Operating system', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14928 INSERT INTO `marc_subfield_structure` VALUES ('754', '2', 'Source of taxonomic identification', 'Source of taxonomic identification', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14929 INSERT INTO `marc_subfield_structure` VALUES ('754', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14930 INSERT INTO `marc_subfield_structure` VALUES ('754', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14931 INSERT INTO `marc_subfield_structure` VALUES ('754', 'a', 'Taxonomic name', 'Taxonomic name', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14932 INSERT INTO `marc_subfield_structure` VALUES ('754', 'c', 'Taxonomic category', 'Taxonomic category', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14933 INSERT INTO `marc_subfield_structure` VALUES ('754', 'd', 'Common or alternative name', 'Common or alternative name', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14934 INSERT INTO `marc_subfield_structure` VALUES ('754', 'x', 'Non-public note', 'Non-public note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14935 INSERT INTO `marc_subfield_structure` VALUES ('754', 'z', 'Public note', 'Public note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14936 INSERT INTO `marc_subfield_structure` VALUES ('755', '2', 'Source of taxonomic identification', 'Source of taxonomic identification', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14937 INSERT INTO `marc_subfield_structure` VALUES ('755', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14938 INSERT INTO `marc_subfield_structure` VALUES ('755', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14939 INSERT INTO `marc_subfield_structure` VALUES ('755', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14940 INSERT INTO `marc_subfield_structure` VALUES ('755', 'a', 'Access term', 'Access term', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14941 INSERT INTO `marc_subfield_structure` VALUES ('755', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14942 INSERT INTO `marc_subfield_structure` VALUES ('755', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14943 INSERT INTO `marc_subfield_structure` VALUES ('755', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14944 INSERT INTO `marc_subfield_structure` VALUES ('760', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14945 INSERT INTO `marc_subfield_structure` VALUES ('760', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14946 INSERT INTO `marc_subfield_structure` VALUES ('760', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14947 INSERT INTO `marc_subfield_structure` VALUES ('760', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14948 INSERT INTO `marc_subfield_structure` VALUES ('760', 'b', 'Edition', 'Edition', 0, 0, NULL, -6, NULL, NULL, '', NULL, 0, 'ASMP_VIDEORECORDINGS', '', '');
14949 INSERT INTO `marc_subfield_structure` VALUES ('760', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14950 INSERT INTO `marc_subfield_structure` VALUES ('760', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14951 INSERT INTO `marc_subfield_structure` VALUES ('760', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14952 INSERT INTO `marc_subfield_structure` VALUES ('760', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14953 INSERT INTO `marc_subfield_structure` VALUES ('760', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14954 INSERT INTO `marc_subfield_structure` VALUES ('760', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14955 INSERT INTO `marc_subfield_structure` VALUES ('760', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14956 INSERT INTO `marc_subfield_structure` VALUES ('760', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14957 INSERT INTO `marc_subfield_structure` VALUES ('760', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14958 INSERT INTO `marc_subfield_structure` VALUES ('760', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14959 INSERT INTO `marc_subfield_structure` VALUES ('760', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14960 INSERT INTO `marc_subfield_structure` VALUES ('760', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14961 INSERT INTO `marc_subfield_structure` VALUES ('760', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14962 INSERT INTO `marc_subfield_structure` VALUES ('760', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14963 INSERT INTO `marc_subfield_structure` VALUES ('762', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14964 INSERT INTO `marc_subfield_structure` VALUES ('762', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14965 INSERT INTO `marc_subfield_structure` VALUES ('762', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14966 INSERT INTO `marc_subfield_structure` VALUES ('762', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14967 INSERT INTO `marc_subfield_structure` VALUES ('762', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14968 INSERT INTO `marc_subfield_structure` VALUES ('762', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14969 INSERT INTO `marc_subfield_structure` VALUES ('762', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14970 INSERT INTO `marc_subfield_structure` VALUES ('762', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14971 INSERT INTO `marc_subfield_structure` VALUES ('762', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14972 INSERT INTO `marc_subfield_structure` VALUES ('762', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14973 INSERT INTO `marc_subfield_structure` VALUES ('762', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14974 INSERT INTO `marc_subfield_structure` VALUES ('762', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14975 INSERT INTO `marc_subfield_structure` VALUES ('762', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14976 INSERT INTO `marc_subfield_structure` VALUES ('762', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14977 INSERT INTO `marc_subfield_structure` VALUES ('762', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14978 INSERT INTO `marc_subfield_structure` VALUES ('762', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14979 INSERT INTO `marc_subfield_structure` VALUES ('762', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14980 INSERT INTO `marc_subfield_structure` VALUES ('762', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14981 INSERT INTO `marc_subfield_structure` VALUES ('762', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14982 INSERT INTO `marc_subfield_structure` VALUES ('765', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14983 INSERT INTO `marc_subfield_structure` VALUES ('765', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14984 INSERT INTO `marc_subfield_structure` VALUES ('765', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14985 INSERT INTO `marc_subfield_structure` VALUES ('765', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14986 INSERT INTO `marc_subfield_structure` VALUES ('765', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14987 INSERT INTO `marc_subfield_structure` VALUES ('765', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14988 INSERT INTO `marc_subfield_structure` VALUES ('765', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14989 INSERT INTO `marc_subfield_structure` VALUES ('765', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14990 INSERT INTO `marc_subfield_structure` VALUES ('765', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14991 INSERT INTO `marc_subfield_structure` VALUES ('765', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14992 INSERT INTO `marc_subfield_structure` VALUES ('765', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14993 INSERT INTO `marc_subfield_structure` VALUES ('765', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14994 INSERT INTO `marc_subfield_structure` VALUES ('765', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14995 INSERT INTO `marc_subfield_structure` VALUES ('765', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14996 INSERT INTO `marc_subfield_structure` VALUES ('765', 'q', 'Parallel title (BK SE)  [OBSOLETE]', 'Parallel title (BK SE)  [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14997 INSERT INTO `marc_subfield_structure` VALUES ('765', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14998 INSERT INTO `marc_subfield_structure` VALUES ('765', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
14999 INSERT INTO `marc_subfield_structure` VALUES ('765', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15000 INSERT INTO `marc_subfield_structure` VALUES ('765', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15001 INSERT INTO `marc_subfield_structure` VALUES ('765', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15002 INSERT INTO `marc_subfield_structure` VALUES ('765', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15003 INSERT INTO `marc_subfield_structure` VALUES ('765', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15004 INSERT INTO `marc_subfield_structure` VALUES ('765', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15005 INSERT INTO `marc_subfield_structure` VALUES ('767', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15006 INSERT INTO `marc_subfield_structure` VALUES ('767', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15007 INSERT INTO `marc_subfield_structure` VALUES ('767', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15008 INSERT INTO `marc_subfield_structure` VALUES ('767', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15009 INSERT INTO `marc_subfield_structure` VALUES ('767', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15010 INSERT INTO `marc_subfield_structure` VALUES ('767', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15011 INSERT INTO `marc_subfield_structure` VALUES ('767', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15012 INSERT INTO `marc_subfield_structure` VALUES ('767', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15013 INSERT INTO `marc_subfield_structure` VALUES ('767', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15014 INSERT INTO `marc_subfield_structure` VALUES ('767', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15015 INSERT INTO `marc_subfield_structure` VALUES ('767', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15016 INSERT INTO `marc_subfield_structure` VALUES ('767', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15017 INSERT INTO `marc_subfield_structure` VALUES ('767', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15018 INSERT INTO `marc_subfield_structure` VALUES ('767', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15019 INSERT INTO `marc_subfield_structure` VALUES ('767', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15020 INSERT INTO `marc_subfield_structure` VALUES ('767', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15021 INSERT INTO `marc_subfield_structure` VALUES ('767', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15022 INSERT INTO `marc_subfield_structure` VALUES ('767', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15023 INSERT INTO `marc_subfield_structure` VALUES ('767', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15024 INSERT INTO `marc_subfield_structure` VALUES ('767', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15025 INSERT INTO `marc_subfield_structure` VALUES ('767', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15026 INSERT INTO `marc_subfield_structure` VALUES ('767', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15027 INSERT INTO `marc_subfield_structure` VALUES ('767', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15028 INSERT INTO `marc_subfield_structure` VALUES ('770', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15029 INSERT INTO `marc_subfield_structure` VALUES ('770', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15030 INSERT INTO `marc_subfield_structure` VALUES ('770', '8', 'Field link and sequence number', 'Field link and sequence number ', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15031 INSERT INTO `marc_subfield_structure` VALUES ('770', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15032 INSERT INTO `marc_subfield_structure` VALUES ('770', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15033 INSERT INTO `marc_subfield_structure` VALUES ('770', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15034 INSERT INTO `marc_subfield_structure` VALUES ('770', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15035 INSERT INTO `marc_subfield_structure` VALUES ('770', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15036 INSERT INTO `marc_subfield_structure` VALUES ('770', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15037 INSERT INTO `marc_subfield_structure` VALUES ('770', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15038 INSERT INTO `marc_subfield_structure` VALUES ('770', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15039 INSERT INTO `marc_subfield_structure` VALUES ('770', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15040 INSERT INTO `marc_subfield_structure` VALUES ('770', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15041 INSERT INTO `marc_subfield_structure` VALUES ('770', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15042 INSERT INTO `marc_subfield_structure` VALUES ('770', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15043 INSERT INTO `marc_subfield_structure` VALUES ('770', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15044 INSERT INTO `marc_subfield_structure` VALUES ('770', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15045 INSERT INTO `marc_subfield_structure` VALUES ('770', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15046 INSERT INTO `marc_subfield_structure` VALUES ('770', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15047 INSERT INTO `marc_subfield_structure` VALUES ('770', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15048 INSERT INTO `marc_subfield_structure` VALUES ('770', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15049 INSERT INTO `marc_subfield_structure` VALUES ('770', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15050 INSERT INTO `marc_subfield_structure` VALUES ('770', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15051 INSERT INTO `marc_subfield_structure` VALUES ('772', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15052 INSERT INTO `marc_subfield_structure` VALUES ('772', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15053 INSERT INTO `marc_subfield_structure` VALUES ('772', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15054 INSERT INTO `marc_subfield_structure` VALUES ('772', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15055 INSERT INTO `marc_subfield_structure` VALUES ('772', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15056 INSERT INTO `marc_subfield_structure` VALUES ('772', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15057 INSERT INTO `marc_subfield_structure` VALUES ('772', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15058 INSERT INTO `marc_subfield_structure` VALUES ('772', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15059 INSERT INTO `marc_subfield_structure` VALUES ('772', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15060 INSERT INTO `marc_subfield_structure` VALUES ('772', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15061 INSERT INTO `marc_subfield_structure` VALUES ('772', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15062 INSERT INTO `marc_subfield_structure` VALUES ('772', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15063 INSERT INTO `marc_subfield_structure` VALUES ('772', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15064 INSERT INTO `marc_subfield_structure` VALUES ('772', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15065 INSERT INTO `marc_subfield_structure` VALUES ('772', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15066 INSERT INTO `marc_subfield_structure` VALUES ('772', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15067 INSERT INTO `marc_subfield_structure` VALUES ('772', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15068 INSERT INTO `marc_subfield_structure` VALUES ('772', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15069 INSERT INTO `marc_subfield_structure` VALUES ('772', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15070 INSERT INTO `marc_subfield_structure` VALUES ('772', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15071 INSERT INTO `marc_subfield_structure` VALUES ('772', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15072 INSERT INTO `marc_subfield_structure` VALUES ('772', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15073 INSERT INTO `marc_subfield_structure` VALUES ('772', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15074 INSERT INTO `marc_subfield_structure` VALUES ('773', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15075 INSERT INTO `marc_subfield_structure` VALUES ('773', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15076 INSERT INTO `marc_subfield_structure` VALUES ('773', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15077 INSERT INTO `marc_subfield_structure` VALUES ('773', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15078 INSERT INTO `marc_subfield_structure` VALUES ('773', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15079 INSERT INTO `marc_subfield_structure` VALUES ('773', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15080 INSERT INTO `marc_subfield_structure` VALUES ('773', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15081 INSERT INTO `marc_subfield_structure` VALUES ('773', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15082 INSERT INTO `marc_subfield_structure` VALUES ('773', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15083 INSERT INTO `marc_subfield_structure` VALUES ('773', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15084 INSERT INTO `marc_subfield_structure` VALUES ('773', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15085 INSERT INTO `marc_subfield_structure` VALUES ('773', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15086 INSERT INTO `marc_subfield_structure` VALUES ('773', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15087 INSERT INTO `marc_subfield_structure` VALUES ('773', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15088 INSERT INTO `marc_subfield_structure` VALUES ('773', 'p', 'Abbreviated title', 'Abbreviated title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15089 INSERT INTO `marc_subfield_structure` VALUES ('773', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15090 INSERT INTO `marc_subfield_structure` VALUES ('773', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15091 INSERT INTO `marc_subfield_structure` VALUES ('773', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15092 INSERT INTO `marc_subfield_structure` VALUES ('773', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15093 INSERT INTO `marc_subfield_structure` VALUES ('773', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15094 INSERT INTO `marc_subfield_structure` VALUES ('773', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15095 INSERT INTO `marc_subfield_structure` VALUES ('773', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15096 INSERT INTO `marc_subfield_structure` VALUES ('773', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15097 INSERT INTO `marc_subfield_structure` VALUES ('774', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15098 INSERT INTO `marc_subfield_structure` VALUES ('774', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15099 INSERT INTO `marc_subfield_structure` VALUES ('774', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15100 INSERT INTO `marc_subfield_structure` VALUES ('774', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15101 INSERT INTO `marc_subfield_structure` VALUES ('774', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15102 INSERT INTO `marc_subfield_structure` VALUES ('774', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15103 INSERT INTO `marc_subfield_structure` VALUES ('774', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15104 INSERT INTO `marc_subfield_structure` VALUES ('774', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15105 INSERT INTO `marc_subfield_structure` VALUES ('774', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15106 INSERT INTO `marc_subfield_structure` VALUES ('774', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15107 INSERT INTO `marc_subfield_structure` VALUES ('774', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15108 INSERT INTO `marc_subfield_structure` VALUES ('774', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15109 INSERT INTO `marc_subfield_structure` VALUES ('774', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15110 INSERT INTO `marc_subfield_structure` VALUES ('774', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15111 INSERT INTO `marc_subfield_structure` VALUES ('774', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15112 INSERT INTO `marc_subfield_structure` VALUES ('774', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15113 INSERT INTO `marc_subfield_structure` VALUES ('774', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15114 INSERT INTO `marc_subfield_structure` VALUES ('774', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15115 INSERT INTO `marc_subfield_structure` VALUES ('774', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15116 INSERT INTO `marc_subfield_structure` VALUES ('774', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15117 INSERT INTO `marc_subfield_structure` VALUES ('774', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15118 INSERT INTO `marc_subfield_structure` VALUES ('774', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15119 INSERT INTO `marc_subfield_structure` VALUES ('775', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15120 INSERT INTO `marc_subfield_structure` VALUES ('775', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15121 INSERT INTO `marc_subfield_structure` VALUES ('775', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15122 INSERT INTO `marc_subfield_structure` VALUES ('775', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15123 INSERT INTO `marc_subfield_structure` VALUES ('775', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15124 INSERT INTO `marc_subfield_structure` VALUES ('775', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15125 INSERT INTO `marc_subfield_structure` VALUES ('775', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15126 INSERT INTO `marc_subfield_structure` VALUES ('775', 'e', 'Language code', 'Language code', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15127 INSERT INTO `marc_subfield_structure` VALUES ('775', 'f', 'Country code', 'Country code', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15128 INSERT INTO `marc_subfield_structure` VALUES ('775', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15129 INSERT INTO `marc_subfield_structure` VALUES ('775', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15130 INSERT INTO `marc_subfield_structure` VALUES ('775', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15131 INSERT INTO `marc_subfield_structure` VALUES ('775', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15132 INSERT INTO `marc_subfield_structure` VALUES ('775', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15133 INSERT INTO `marc_subfield_structure` VALUES ('775', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15134 INSERT INTO `marc_subfield_structure` VALUES ('775', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15135 INSERT INTO `marc_subfield_structure` VALUES ('775', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15136 INSERT INTO `marc_subfield_structure` VALUES ('775', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15137 INSERT INTO `marc_subfield_structure` VALUES ('775', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15138 INSERT INTO `marc_subfield_structure` VALUES ('775', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15139 INSERT INTO `marc_subfield_structure` VALUES ('775', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15140 INSERT INTO `marc_subfield_structure` VALUES ('775', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15141 INSERT INTO `marc_subfield_structure` VALUES ('775', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15142 INSERT INTO `marc_subfield_structure` VALUES ('775', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15143 INSERT INTO `marc_subfield_structure` VALUES ('775', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15144 INSERT INTO `marc_subfield_structure` VALUES ('776', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15145 INSERT INTO `marc_subfield_structure` VALUES ('776', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15146 INSERT INTO `marc_subfield_structure` VALUES ('776', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15147 INSERT INTO `marc_subfield_structure` VALUES ('776', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15148 INSERT INTO `marc_subfield_structure` VALUES ('776', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15149 INSERT INTO `marc_subfield_structure` VALUES ('776', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15150 INSERT INTO `marc_subfield_structure` VALUES ('776', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15151 INSERT INTO `marc_subfield_structure` VALUES ('776', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15152 INSERT INTO `marc_subfield_structure` VALUES ('776', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15153 INSERT INTO `marc_subfield_structure` VALUES ('776', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15154 INSERT INTO `marc_subfield_structure` VALUES ('776', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15155 INSERT INTO `marc_subfield_structure` VALUES ('776', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15156 INSERT INTO `marc_subfield_structure` VALUES ('776', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15157 INSERT INTO `marc_subfield_structure` VALUES ('776', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15158 INSERT INTO `marc_subfield_structure` VALUES ('776', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15159 INSERT INTO `marc_subfield_structure` VALUES ('776', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15160 INSERT INTO `marc_subfield_structure` VALUES ('776', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15161 INSERT INTO `marc_subfield_structure` VALUES ('776', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15162 INSERT INTO `marc_subfield_structure` VALUES ('776', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15163 INSERT INTO `marc_subfield_structure` VALUES ('776', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15164 INSERT INTO `marc_subfield_structure` VALUES ('776', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15165 INSERT INTO `marc_subfield_structure` VALUES ('776', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15166 INSERT INTO `marc_subfield_structure` VALUES ('776', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15167 INSERT INTO `marc_subfield_structure` VALUES ('777', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15168 INSERT INTO `marc_subfield_structure` VALUES ('777', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15169 INSERT INTO `marc_subfield_structure` VALUES ('777', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15170 INSERT INTO `marc_subfield_structure` VALUES ('777', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15171 INSERT INTO `marc_subfield_structure` VALUES ('777', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15172 INSERT INTO `marc_subfield_structure` VALUES ('777', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15173 INSERT INTO `marc_subfield_structure` VALUES ('777', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15174 INSERT INTO `marc_subfield_structure` VALUES ('777', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15175 INSERT INTO `marc_subfield_structure` VALUES ('777', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15176 INSERT INTO `marc_subfield_structure` VALUES ('777', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15177 INSERT INTO `marc_subfield_structure` VALUES ('777', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15178 INSERT INTO `marc_subfield_structure` VALUES ('777', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15179 INSERT INTO `marc_subfield_structure` VALUES ('777', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15180 INSERT INTO `marc_subfield_structure` VALUES ('777', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15181 INSERT INTO `marc_subfield_structure` VALUES ('777', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15182 INSERT INTO `marc_subfield_structure` VALUES ('777', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15183 INSERT INTO `marc_subfield_structure` VALUES ('777', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15184 INSERT INTO `marc_subfield_structure` VALUES ('777', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15185 INSERT INTO `marc_subfield_structure` VALUES ('777', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15186 INSERT INTO `marc_subfield_structure` VALUES ('777', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15187 INSERT INTO `marc_subfield_structure` VALUES ('780', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15188 INSERT INTO `marc_subfield_structure` VALUES ('780', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15189 INSERT INTO `marc_subfield_structure` VALUES ('780', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15190 INSERT INTO `marc_subfield_structure` VALUES ('780', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15191 INSERT INTO `marc_subfield_structure` VALUES ('780', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15192 INSERT INTO `marc_subfield_structure` VALUES ('780', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15193 INSERT INTO `marc_subfield_structure` VALUES ('780', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15194 INSERT INTO `marc_subfield_structure` VALUES ('780', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15195 INSERT INTO `marc_subfield_structure` VALUES ('780', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15196 INSERT INTO `marc_subfield_structure` VALUES ('780', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15197 INSERT INTO `marc_subfield_structure` VALUES ('780', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15198 INSERT INTO `marc_subfield_structure` VALUES ('780', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15199 INSERT INTO `marc_subfield_structure` VALUES ('780', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15200 INSERT INTO `marc_subfield_structure` VALUES ('780', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15201 INSERT INTO `marc_subfield_structure` VALUES ('780', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15202 INSERT INTO `marc_subfield_structure` VALUES ('780', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15203 INSERT INTO `marc_subfield_structure` VALUES ('780', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15204 INSERT INTO `marc_subfield_structure` VALUES ('780', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15205 INSERT INTO `marc_subfield_structure` VALUES ('780', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15206 INSERT INTO `marc_subfield_structure` VALUES ('780', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15207 INSERT INTO `marc_subfield_structure` VALUES ('780', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15208 INSERT INTO `marc_subfield_structure` VALUES ('780', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15209 INSERT INTO `marc_subfield_structure` VALUES ('780', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15210 INSERT INTO `marc_subfield_structure` VALUES ('785', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15211 INSERT INTO `marc_subfield_structure` VALUES ('785', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15212 INSERT INTO `marc_subfield_structure` VALUES ('785', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15213 INSERT INTO `marc_subfield_structure` VALUES ('785', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15214 INSERT INTO `marc_subfield_structure` VALUES ('785', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15215 INSERT INTO `marc_subfield_structure` VALUES ('785', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15216 INSERT INTO `marc_subfield_structure` VALUES ('785', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15217 INSERT INTO `marc_subfield_structure` VALUES ('785', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15218 INSERT INTO `marc_subfield_structure` VALUES ('785', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15219 INSERT INTO `marc_subfield_structure` VALUES ('785', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15220 INSERT INTO `marc_subfield_structure` VALUES ('785', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15221 INSERT INTO `marc_subfield_structure` VALUES ('785', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15222 INSERT INTO `marc_subfield_structure` VALUES ('785', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15223 INSERT INTO `marc_subfield_structure` VALUES ('785', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15224 INSERT INTO `marc_subfield_structure` VALUES ('785', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15225 INSERT INTO `marc_subfield_structure` VALUES ('785', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15226 INSERT INTO `marc_subfield_structure` VALUES ('785', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15227 INSERT INTO `marc_subfield_structure` VALUES ('785', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15228 INSERT INTO `marc_subfield_structure` VALUES ('785', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15229 INSERT INTO `marc_subfield_structure` VALUES ('785', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15230 INSERT INTO `marc_subfield_structure` VALUES ('785', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15231 INSERT INTO `marc_subfield_structure` VALUES ('785', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15232 INSERT INTO `marc_subfield_structure` VALUES ('785', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15233 INSERT INTO `marc_subfield_structure` VALUES ('786', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15234 INSERT INTO `marc_subfield_structure` VALUES ('786', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15235 INSERT INTO `marc_subfield_structure` VALUES ('786', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15236 INSERT INTO `marc_subfield_structure` VALUES ('786', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15237 INSERT INTO `marc_subfield_structure` VALUES ('786', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15238 INSERT INTO `marc_subfield_structure` VALUES ('786', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15239 INSERT INTO `marc_subfield_structure` VALUES ('786', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15240 INSERT INTO `marc_subfield_structure` VALUES ('786', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15241 INSERT INTO `marc_subfield_structure` VALUES ('786', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15242 INSERT INTO `marc_subfield_structure` VALUES ('786', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15243 INSERT INTO `marc_subfield_structure` VALUES ('786', 'j', 'Period of content', 'Period of content', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15244 INSERT INTO `marc_subfield_structure` VALUES ('786', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15245 INSERT INTO `marc_subfield_structure` VALUES ('786', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15246 INSERT INTO `marc_subfield_structure` VALUES ('786', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15247 INSERT INTO `marc_subfield_structure` VALUES ('786', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15248 INSERT INTO `marc_subfield_structure` VALUES ('786', 'p', 'Abbreviated title', 'Abbreviated title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15249 INSERT INTO `marc_subfield_structure` VALUES ('786', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15250 INSERT INTO `marc_subfield_structure` VALUES ('786', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15251 INSERT INTO `marc_subfield_structure` VALUES ('786', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15252 INSERT INTO `marc_subfield_structure` VALUES ('786', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15253 INSERT INTO `marc_subfield_structure` VALUES ('786', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15254 INSERT INTO `marc_subfield_structure` VALUES ('786', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15255 INSERT INTO `marc_subfield_structure` VALUES ('786', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15256 INSERT INTO `marc_subfield_structure` VALUES ('786', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15257 INSERT INTO `marc_subfield_structure` VALUES ('787', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15258 INSERT INTO `marc_subfield_structure` VALUES ('787', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15259 INSERT INTO `marc_subfield_structure` VALUES ('787', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15260 INSERT INTO `marc_subfield_structure` VALUES ('787', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15261 INSERT INTO `marc_subfield_structure` VALUES ('787', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15262 INSERT INTO `marc_subfield_structure` VALUES ('787', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15263 INSERT INTO `marc_subfield_structure` VALUES ('787', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15264 INSERT INTO `marc_subfield_structure` VALUES ('787', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15265 INSERT INTO `marc_subfield_structure` VALUES ('787', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15266 INSERT INTO `marc_subfield_structure` VALUES ('787', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15267 INSERT INTO `marc_subfield_structure` VALUES ('787', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15268 INSERT INTO `marc_subfield_structure` VALUES ('787', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15269 INSERT INTO `marc_subfield_structure` VALUES ('787', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15270 INSERT INTO `marc_subfield_structure` VALUES ('787', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15271 INSERT INTO `marc_subfield_structure` VALUES ('787', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15272 INSERT INTO `marc_subfield_structure` VALUES ('787', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15273 INSERT INTO `marc_subfield_structure` VALUES ('787', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15274 INSERT INTO `marc_subfield_structure` VALUES ('787', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15275 INSERT INTO `marc_subfield_structure` VALUES ('787', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15276 INSERT INTO `marc_subfield_structure` VALUES ('787', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15277 INSERT INTO `marc_subfield_structure` VALUES ('787', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15278 INSERT INTO `marc_subfield_structure` VALUES ('787', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15279 INSERT INTO `marc_subfield_structure` VALUES ('787', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15280 INSERT INTO `marc_subfield_structure` VALUES ('789', '%', '%', '%', 0, 0, '', 7, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
15281 INSERT INTO `marc_subfield_structure` VALUES ('789', '2', '2', '2', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15282 INSERT INTO `marc_subfield_structure` VALUES ('789', '3', '3', '3', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15283 INSERT INTO `marc_subfield_structure` VALUES ('789', '4', '4', '4', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15284 INSERT INTO `marc_subfield_structure` VALUES ('789', '5', '5', '5', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15285 INSERT INTO `marc_subfield_structure` VALUES ('789', '6', '6', '6', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15286 INSERT INTO `marc_subfield_structure` VALUES ('789', '7', '7', '7', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15287 INSERT INTO `marc_subfield_structure` VALUES ('789', '8', '8', '8', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15288 INSERT INTO `marc_subfield_structure` VALUES ('789', '9', '9', '9', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15289 INSERT INTO `marc_subfield_structure` VALUES ('789', 'a', 'a', 'a', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15290 INSERT INTO `marc_subfield_structure` VALUES ('789', 'b', 'b', 'b', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15291 INSERT INTO `marc_subfield_structure` VALUES ('789', 'c', 'c', 'c', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15292 INSERT INTO `marc_subfield_structure` VALUES ('789', 'd', 'd', 'd', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15293 INSERT INTO `marc_subfield_structure` VALUES ('789', 'e', 'e', 'e', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15294 INSERT INTO `marc_subfield_structure` VALUES ('789', 'f', 'f', 'f', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15295 INSERT INTO `marc_subfield_structure` VALUES ('789', 'g', 'g', 'g', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15296 INSERT INTO `marc_subfield_structure` VALUES ('789', 'h', 'h', 'h', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15297 INSERT INTO `marc_subfield_structure` VALUES ('789', 'i', 'i', 'i', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15298 INSERT INTO `marc_subfield_structure` VALUES ('789', 'j', 'j', 'j', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15299 INSERT INTO `marc_subfield_structure` VALUES ('789', 'k', 'k', 'k', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15300 INSERT INTO `marc_subfield_structure` VALUES ('789', 'l', 'l', 'l', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15301 INSERT INTO `marc_subfield_structure` VALUES ('789', 'm', 'm', 'm', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15302 INSERT INTO `marc_subfield_structure` VALUES ('789', 'n', 'n', 'n', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15303 INSERT INTO `marc_subfield_structure` VALUES ('789', 'o', 'o', 'o', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15304 INSERT INTO `marc_subfield_structure` VALUES ('789', 'p', 'p', 'p', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15305 INSERT INTO `marc_subfield_structure` VALUES ('789', 'q', 'q', 'q', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15306 INSERT INTO `marc_subfield_structure` VALUES ('789', 'r', 'r', 'r', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15307 INSERT INTO `marc_subfield_structure` VALUES ('789', 's', 's', 's', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15308 INSERT INTO `marc_subfield_structure` VALUES ('789', 't', 't', 't', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15309 INSERT INTO `marc_subfield_structure` VALUES ('789', 'u', 'u', 'u', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15310 INSERT INTO `marc_subfield_structure` VALUES ('789', 'v', 'v', 'v', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15311 INSERT INTO `marc_subfield_structure` VALUES ('789', 'w', 'w', 'w', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15312 INSERT INTO `marc_subfield_structure` VALUES ('789', 'x', 'x', 'x', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15313 INSERT INTO `marc_subfield_structure` VALUES ('789', 'y', 'y', 'y', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15314 INSERT INTO `marc_subfield_structure` VALUES ('789', 'z', 'z', 'z', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15315 INSERT INTO `marc_subfield_structure` VALUES ('796', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 7, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
15316 INSERT INTO `marc_subfield_structure` VALUES ('796', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15317 INSERT INTO `marc_subfield_structure` VALUES ('796', '4', 'Relator code', 'Relator code', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15318 INSERT INTO `marc_subfield_structure` VALUES ('796', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15319 INSERT INTO `marc_subfield_structure` VALUES ('796', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15320 INSERT INTO `marc_subfield_structure` VALUES ('796', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15321 INSERT INTO `marc_subfield_structure` VALUES ('796', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'ASMP_VIDEORECORDINGS', '', '');
15322 INSERT INTO `marc_subfield_structure` VALUES ('796', 'a', 'Personal name', 'Personal name', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15323 INSERT INTO `marc_subfield_structure` VALUES ('796', 'b', 'Numeration', 'Numeration', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15324 INSERT INTO `marc_subfield_structure` VALUES ('796', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15325 INSERT INTO `marc_subfield_structure` VALUES ('796', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15326 INSERT INTO `marc_subfield_structure` VALUES ('796', 'e', 'Relator term', 'Relator term', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15327 INSERT INTO `marc_subfield_structure` VALUES ('796', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15328 INSERT INTO `marc_subfield_structure` VALUES ('796', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15329 INSERT INTO `marc_subfield_structure` VALUES ('796', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15330 INSERT INTO `marc_subfield_structure` VALUES ('796', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15331 INSERT INTO `marc_subfield_structure` VALUES ('796', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15332 INSERT INTO `marc_subfield_structure` VALUES ('796', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15333 INSERT INTO `marc_subfield_structure` VALUES ('796', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15334 INSERT INTO `marc_subfield_structure` VALUES ('796', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15335 INSERT INTO `marc_subfield_structure` VALUES ('796', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15336 INSERT INTO `marc_subfield_structure` VALUES ('796', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15337 INSERT INTO `marc_subfield_structure` VALUES ('796', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15338 INSERT INTO `marc_subfield_structure` VALUES ('796', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15339 INSERT INTO `marc_subfield_structure` VALUES ('796', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15340 INSERT INTO `marc_subfield_structure` VALUES ('796', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15341 INSERT INTO `marc_subfield_structure` VALUES ('796', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15342 INSERT INTO `marc_subfield_structure` VALUES ('796', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15343 INSERT INTO `marc_subfield_structure` VALUES ('797', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 7, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
15344 INSERT INTO `marc_subfield_structure` VALUES ('797', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15345 INSERT INTO `marc_subfield_structure` VALUES ('797', '4', 'Relator code', 'Relator code', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15346 INSERT INTO `marc_subfield_structure` VALUES ('797', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15347 INSERT INTO `marc_subfield_structure` VALUES ('797', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15348 INSERT INTO `marc_subfield_structure` VALUES ('797', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15349 INSERT INTO `marc_subfield_structure` VALUES ('797', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'ASMP_VIDEORECORDINGS', '', '');
15350 INSERT INTO `marc_subfield_structure` VALUES ('797', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15351 INSERT INTO `marc_subfield_structure` VALUES ('797', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15352 INSERT INTO `marc_subfield_structure` VALUES ('797', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15353 INSERT INTO `marc_subfield_structure` VALUES ('797', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15354 INSERT INTO `marc_subfield_structure` VALUES ('797', 'e', 'Relator term', 'Relator term', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15355 INSERT INTO `marc_subfield_structure` VALUES ('797', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15356 INSERT INTO `marc_subfield_structure` VALUES ('797', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15357 INSERT INTO `marc_subfield_structure` VALUES ('797', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15358 INSERT INTO `marc_subfield_structure` VALUES ('797', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15359 INSERT INTO `marc_subfield_structure` VALUES ('797', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15360 INSERT INTO `marc_subfield_structure` VALUES ('797', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15361 INSERT INTO `marc_subfield_structure` VALUES ('797', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15362 INSERT INTO `marc_subfield_structure` VALUES ('797', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15363 INSERT INTO `marc_subfield_structure` VALUES ('797', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15364 INSERT INTO `marc_subfield_structure` VALUES ('797', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15365 INSERT INTO `marc_subfield_structure` VALUES ('797', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15366 INSERT INTO `marc_subfield_structure` VALUES ('797', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15367 INSERT INTO `marc_subfield_structure` VALUES ('797', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15368 INSERT INTO `marc_subfield_structure` VALUES ('797', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15369 INSERT INTO `marc_subfield_structure` VALUES ('798', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'ASMP_VIDEORECORDINGS', '', '');
15370 INSERT INTO `marc_subfield_structure` VALUES ('798', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15371 INSERT INTO `marc_subfield_structure` VALUES ('798', '4', 'Relator code', 'Relator code', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15372 INSERT INTO `marc_subfield_structure` VALUES ('798', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15373 INSERT INTO `marc_subfield_structure` VALUES ('798', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15374 INSERT INTO `marc_subfield_structure` VALUES ('798', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15375 INSERT INTO `marc_subfield_structure` VALUES ('798', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'ASMP_VIDEORECORDINGS', '', '');
15376 INSERT INTO `marc_subfield_structure` VALUES ('798', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15377 INSERT INTO `marc_subfield_structure` VALUES ('798', 'b', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15378 INSERT INTO `marc_subfield_structure` VALUES ('798', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15379 INSERT INTO `marc_subfield_structure` VALUES ('798', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15380 INSERT INTO `marc_subfield_structure` VALUES ('798', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15381 INSERT INTO `marc_subfield_structure` VALUES ('798', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15382 INSERT INTO `marc_subfield_structure` VALUES ('798', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15383 INSERT INTO `marc_subfield_structure` VALUES ('798', 'h', 'Medium', 'Medium', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15384 INSERT INTO `marc_subfield_structure` VALUES ('798', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15385 INSERT INTO `marc_subfield_structure` VALUES ('798', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15386 INSERT INTO `marc_subfield_structure` VALUES ('798', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15387 INSERT INTO `marc_subfield_structure` VALUES ('798', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15388 INSERT INTO `marc_subfield_structure` VALUES ('798', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15389 INSERT INTO `marc_subfield_structure` VALUES ('798', 's', 'Version', 'Version', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15390 INSERT INTO `marc_subfield_structure` VALUES ('798', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15391 INSERT INTO `marc_subfield_structure` VALUES ('798', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15392 INSERT INTO `marc_subfield_structure` VALUES ('798', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15393 INSERT INTO `marc_subfield_structure` VALUES ('799', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 7, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
15394 INSERT INTO `marc_subfield_structure` VALUES ('799', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15395 INSERT INTO `marc_subfield_structure` VALUES ('799', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15396 INSERT INTO `marc_subfield_structure` VALUES ('799', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15397 INSERT INTO `marc_subfield_structure` VALUES ('799', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15398 INSERT INTO `marc_subfield_structure` VALUES ('799', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'ASMP_VIDEORECORDINGS', '', '');
15399 INSERT INTO `marc_subfield_structure` VALUES ('799', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15400 INSERT INTO `marc_subfield_structure` VALUES ('799', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15401 INSERT INTO `marc_subfield_structure` VALUES ('799', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15402 INSERT INTO `marc_subfield_structure` VALUES ('799', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15403 INSERT INTO `marc_subfield_structure` VALUES ('799', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15404 INSERT INTO `marc_subfield_structure` VALUES ('799', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15405 INSERT INTO `marc_subfield_structure` VALUES ('799', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15406 INSERT INTO `marc_subfield_structure` VALUES ('799', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15407 INSERT INTO `marc_subfield_structure` VALUES ('799', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15408 INSERT INTO `marc_subfield_structure` VALUES ('799', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15409 INSERT INTO `marc_subfield_structure` VALUES ('799', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15410 INSERT INTO `marc_subfield_structure` VALUES ('799', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15411 INSERT INTO `marc_subfield_structure` VALUES ('799', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15412 INSERT INTO `marc_subfield_structure` VALUES ('799', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15413 INSERT INTO `marc_subfield_structure` VALUES ('799', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 7, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15414 INSERT INTO `marc_subfield_structure` VALUES ('800', '4', 'Relator code', 'Relator code', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15415 INSERT INTO `marc_subfield_structure` VALUES ('800', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15416 INSERT INTO `marc_subfield_structure` VALUES ('800', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15417 INSERT INTO `marc_subfield_structure` VALUES ('800', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, 'ASMP_VIDEORECORDINGS', '', '');
15418 INSERT INTO `marc_subfield_structure` VALUES ('800', 'a', 'Personal name', 'Personal name', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15419 INSERT INTO `marc_subfield_structure` VALUES ('800', 'b', 'Numeration', 'Numeration', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15420 INSERT INTO `marc_subfield_structure` VALUES ('800', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15421 INSERT INTO `marc_subfield_structure` VALUES ('800', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15422 INSERT INTO `marc_subfield_structure` VALUES ('800', 'e', 'Relator term', 'Relator term', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15423 INSERT INTO `marc_subfield_structure` VALUES ('800', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15424 INSERT INTO `marc_subfield_structure` VALUES ('800', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15425 INSERT INTO `marc_subfield_structure` VALUES ('800', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15426 INSERT INTO `marc_subfield_structure` VALUES ('800', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15427 INSERT INTO `marc_subfield_structure` VALUES ('800', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15428 INSERT INTO `marc_subfield_structure` VALUES ('800', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15429 INSERT INTO `marc_subfield_structure` VALUES ('800', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15430 INSERT INTO `marc_subfield_structure` VALUES ('800', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15431 INSERT INTO `marc_subfield_structure` VALUES ('800', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15432 INSERT INTO `marc_subfield_structure` VALUES ('800', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15433 INSERT INTO `marc_subfield_structure` VALUES ('800', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15434 INSERT INTO `marc_subfield_structure` VALUES ('800', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15435 INSERT INTO `marc_subfield_structure` VALUES ('800', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15436 INSERT INTO `marc_subfield_structure` VALUES ('800', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15437 INSERT INTO `marc_subfield_structure` VALUES ('800', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15438 INSERT INTO `marc_subfield_structure` VALUES ('800', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15439 INSERT INTO `marc_subfield_structure` VALUES ('810', '4', 'Relator code', 'Relator code', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15440 INSERT INTO `marc_subfield_structure` VALUES ('810', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15441 INSERT INTO `marc_subfield_structure` VALUES ('810', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15442 INSERT INTO `marc_subfield_structure` VALUES ('810', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, 'ASMP_VIDEORECORDINGS', '', '');
15443 INSERT INTO `marc_subfield_structure` VALUES ('810', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15444 INSERT INTO `marc_subfield_structure` VALUES ('810', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15445 INSERT INTO `marc_subfield_structure` VALUES ('810', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15446 INSERT INTO `marc_subfield_structure` VALUES ('810', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15447 INSERT INTO `marc_subfield_structure` VALUES ('810', 'e', 'Relator term', 'Relator term', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15448 INSERT INTO `marc_subfield_structure` VALUES ('810', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15449 INSERT INTO `marc_subfield_structure` VALUES ('810', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15450 INSERT INTO `marc_subfield_structure` VALUES ('810', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15451 INSERT INTO `marc_subfield_structure` VALUES ('810', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15452 INSERT INTO `marc_subfield_structure` VALUES ('810', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15453 INSERT INTO `marc_subfield_structure` VALUES ('810', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15454 INSERT INTO `marc_subfield_structure` VALUES ('810', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15455 INSERT INTO `marc_subfield_structure` VALUES ('810', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15456 INSERT INTO `marc_subfield_structure` VALUES ('810', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15457 INSERT INTO `marc_subfield_structure` VALUES ('810', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15458 INSERT INTO `marc_subfield_structure` VALUES ('810', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15459 INSERT INTO `marc_subfield_structure` VALUES ('810', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15460 INSERT INTO `marc_subfield_structure` VALUES ('810', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15461 INSERT INTO `marc_subfield_structure` VALUES ('810', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15462 INSERT INTO `marc_subfield_structure` VALUES ('811', '4', 'Relator code', 'Relator code', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15463 INSERT INTO `marc_subfield_structure` VALUES ('811', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15464 INSERT INTO `marc_subfield_structure` VALUES ('811', '8', 'Field link and sequence number ', 'Field link and sequence number ', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15465 INSERT INTO `marc_subfield_structure` VALUES ('811', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, 'ASMP_VIDEORECORDINGS', '', '');
15466 INSERT INTO `marc_subfield_structure` VALUES ('811', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15467 INSERT INTO `marc_subfield_structure` VALUES ('811', 'b', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15468 INSERT INTO `marc_subfield_structure` VALUES ('811', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15469 INSERT INTO `marc_subfield_structure` VALUES ('811', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15470 INSERT INTO `marc_subfield_structure` VALUES ('811', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15471 INSERT INTO `marc_subfield_structure` VALUES ('811', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15472 INSERT INTO `marc_subfield_structure` VALUES ('811', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15473 INSERT INTO `marc_subfield_structure` VALUES ('811', 'h', 'Medium', 'Medium', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15474 INSERT INTO `marc_subfield_structure` VALUES ('811', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15475 INSERT INTO `marc_subfield_structure` VALUES ('811', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15476 INSERT INTO `marc_subfield_structure` VALUES ('811', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15477 INSERT INTO `marc_subfield_structure` VALUES ('811', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15478 INSERT INTO `marc_subfield_structure` VALUES ('811', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15479 INSERT INTO `marc_subfield_structure` VALUES ('811', 's', 'Version', 'Version', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15480 INSERT INTO `marc_subfield_structure` VALUES ('811', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15481 INSERT INTO `marc_subfield_structure` VALUES ('811', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15482 INSERT INTO `marc_subfield_structure` VALUES ('811', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15483 INSERT INTO `marc_subfield_structure` VALUES ('830', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15484 INSERT INTO `marc_subfield_structure` VALUES ('830', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15485 INSERT INTO `marc_subfield_structure` VALUES ('830', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, 'ASMP_VIDEORECORDINGS', '', '');
15486 INSERT INTO `marc_subfield_structure` VALUES ('830', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15487 INSERT INTO `marc_subfield_structure` VALUES ('830', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15488 INSERT INTO `marc_subfield_structure` VALUES ('830', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15489 INSERT INTO `marc_subfield_structure` VALUES ('830', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15490 INSERT INTO `marc_subfield_structure` VALUES ('830', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15491 INSERT INTO `marc_subfield_structure` VALUES ('830', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15492 INSERT INTO `marc_subfield_structure` VALUES ('830', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15493 INSERT INTO `marc_subfield_structure` VALUES ('830', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15494 INSERT INTO `marc_subfield_structure` VALUES ('830', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15495 INSERT INTO `marc_subfield_structure` VALUES ('830', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15496 INSERT INTO `marc_subfield_structure` VALUES ('830', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15497 INSERT INTO `marc_subfield_structure` VALUES ('830', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15498 INSERT INTO `marc_subfield_structure` VALUES ('830', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15499 INSERT INTO `marc_subfield_structure` VALUES ('830', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15500 INSERT INTO `marc_subfield_structure` VALUES ('830', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15501 INSERT INTO `marc_subfield_structure` VALUES ('840', 'a', 'Title', 'Title', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15502 INSERT INTO `marc_subfield_structure` VALUES ('840', 'h', 'Medium', 'Medium', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15503 INSERT INTO `marc_subfield_structure` VALUES ('840', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15504 INSERT INTO `marc_subfield_structure` VALUES ('841', 'a', 'Type of record', 'Type of record', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15505 INSERT INTO `marc_subfield_structure` VALUES ('841', 'b', 'Fixed-length data elements', 'Fixed-length data elements', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15506 INSERT INTO `marc_subfield_structure` VALUES ('841', 'e', 'Encoding level', 'Encoding level', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15507 INSERT INTO `marc_subfield_structure` VALUES ('842', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15508 INSERT INTO `marc_subfield_structure` VALUES ('842', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15509 INSERT INTO `marc_subfield_structure` VALUES ('842', 'a', 'Textual physical form designator', 'Textual physical form designator', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15510 INSERT INTO `marc_subfield_structure` VALUES ('843', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15511 INSERT INTO `marc_subfield_structure` VALUES ('843', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15512 INSERT INTO `marc_subfield_structure` VALUES ('843', '7', 'Fixed-length data elements of reproduction', 'Fixed-length data elements of reproduction', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15513 INSERT INTO `marc_subfield_structure` VALUES ('843', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15514 INSERT INTO `marc_subfield_structure` VALUES ('843', 'a', 'Type of reproduction', 'Type of reproduction', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15515 INSERT INTO `marc_subfield_structure` VALUES ('843', 'b', 'Place of reproduction', 'Place of reproduction', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15516 INSERT INTO `marc_subfield_structure` VALUES ('843', 'c', 'Agency responsible for reproduction', 'Agency responsible for reproduction', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15517 INSERT INTO `marc_subfield_structure` VALUES ('843', 'd', 'Date of reproduction', 'Date of reproduction', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15518 INSERT INTO `marc_subfield_structure` VALUES ('843', 'e', 'Physical description of reproduction', 'Physical description of reproduction', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15519 INSERT INTO `marc_subfield_structure` VALUES ('843', 'f', 'Series statement of reproduction', 'Series statement of reproduction', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15520 INSERT INTO `marc_subfield_structure` VALUES ('843', 'm', 'Dates of publication and/or sequential designation of issues reproduced', 'Dates of publication and/or sequential designation of issues reproduced', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15521 INSERT INTO `marc_subfield_structure` VALUES ('843', 'n', 'Note about reproduction', 'Note about reproduction', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15522 INSERT INTO `marc_subfield_structure` VALUES ('844', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15523 INSERT INTO `marc_subfield_structure` VALUES ('844', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15524 INSERT INTO `marc_subfield_structure` VALUES ('844', 'a', 'Name of unit', 'Name of unit', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15525 INSERT INTO `marc_subfield_structure` VALUES ('845', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15526 INSERT INTO `marc_subfield_structure` VALUES ('845', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15527 INSERT INTO `marc_subfield_structure` VALUES ('845', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15528 INSERT INTO `marc_subfield_structure` VALUES ('845', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15529 INSERT INTO `marc_subfield_structure` VALUES ('845', 'a', 'Terms governing use and reproduction', 'Terms governing use and reproduction', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15530 INSERT INTO `marc_subfield_structure` VALUES ('845', 'b', 'Jurisdiction', 'Jurisdiction', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15531 INSERT INTO `marc_subfield_structure` VALUES ('845', 'c', 'Authorization', 'Authorization', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15532 INSERT INTO `marc_subfield_structure` VALUES ('845', 'd', 'Authorized users', 'Authorized users', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15533 INSERT INTO `marc_subfield_structure` VALUES ('850', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15534 INSERT INTO `marc_subfield_structure` VALUES ('850', 'a', 'Holding institution', 'Holding institution', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15535 INSERT INTO `marc_subfield_structure` VALUES ('850', 'b', 'Holdings (NR) (MU VM SE) [OBSOLETE]', 'Holdings (NR) (MU VM SE) [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15536 INSERT INTO `marc_subfield_structure` VALUES ('850', 'd', 'Inclusive dates (NR) (MU VM SE) [OBSOLETE]', 'Inclusive dates (NR) (MU VM SE) [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15537 INSERT INTO `marc_subfield_structure` VALUES ('850', 'e', 'Retention statement (NR) (CF MU VM SE) [OBSOLETE]', 'Retention statement (NR) (CF MU VM SE) [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15538 INSERT INTO `marc_subfield_structure` VALUES ('851', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15539 INSERT INTO `marc_subfield_structure` VALUES ('851', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15540 INSERT INTO `marc_subfield_structure` VALUES ('851', 'a', 'Name (custodian or owner)', 'Name (custodian or owner)', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15541 INSERT INTO `marc_subfield_structure` VALUES ('851', 'b', 'Institutional division', 'Institutional division', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15542 INSERT INTO `marc_subfield_structure` VALUES ('851', 'c', 'Street address', 'Street address', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15543 INSERT INTO `marc_subfield_structure` VALUES ('851', 'd', 'Country', 'Country', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15544 INSERT INTO `marc_subfield_structure` VALUES ('851', 'e', 'Location of units', 'Location of units', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15545 INSERT INTO `marc_subfield_structure` VALUES ('851', 'f', 'Item number', 'Item number', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15546 INSERT INTO `marc_subfield_structure` VALUES ('851', 'g', 'Repository location code', 'Repository location code', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15547 INSERT INTO `marc_subfield_structure` VALUES ('852', '2', 'Source of classification or shelving scheme', 'Source of classification or shelving scheme', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15548 INSERT INTO `marc_subfield_structure` VALUES ('852', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15549 INSERT INTO `marc_subfield_structure` VALUES ('852', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15550 INSERT INTO `marc_subfield_structure` VALUES ('852', '8', 'Sequence number', 'Sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15551 INSERT INTO `marc_subfield_structure` VALUES ('852', 'a', 'Location', 'Location', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15552 INSERT INTO `marc_subfield_structure` VALUES ('852', 'b', 'Sublocation or collection', 'Sublocation or collection', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15553 INSERT INTO `marc_subfield_structure` VALUES ('852', 'c', 'Shelving location', 'Shelving location', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15554 INSERT INTO `marc_subfield_structure` VALUES ('852', 'e', 'Address', 'Address', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15555 INSERT INTO `marc_subfield_structure` VALUES ('852', 'f', 'Coded location qualifier', 'Coded location qualifier', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15556 INSERT INTO `marc_subfield_structure` VALUES ('852', 'g', 'Non-coded location qualifier', 'Non-coded location qualifier', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15557 INSERT INTO `marc_subfield_structure` VALUES ('852', 'h', 'Classification part', 'Classification part', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15558 INSERT INTO `marc_subfield_structure` VALUES ('852', 'i', 'Item part', 'Item part', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15559 INSERT INTO `marc_subfield_structure` VALUES ('852', 'j', 'Shelving control number', 'Shelving control number', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15560 INSERT INTO `marc_subfield_structure` VALUES ('852', 'k', 'Call number prefix', 'Call number prefix', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15561 INSERT INTO `marc_subfield_structure` VALUES ('852', 'l', 'Shelving form of title', 'Shelving form of title', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15562 INSERT INTO `marc_subfield_structure` VALUES ('852', 'm', 'Call number suffix', 'Call number suffix', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15563 INSERT INTO `marc_subfield_structure` VALUES ('852', 'n', 'Country code', 'Country code', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15564 INSERT INTO `marc_subfield_structure` VALUES ('852', 'p', 'Piece designation', 'Piece designation', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15565 INSERT INTO `marc_subfield_structure` VALUES ('852', 'q', 'Piece physical condition', 'Piece physical condition', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15566 INSERT INTO `marc_subfield_structure` VALUES ('852', 's', 'Copyright article-fee code', 'Copyright article-fee code', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15567 INSERT INTO `marc_subfield_structure` VALUES ('852', 't', 'Copy number', 'Copy number', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15568 INSERT INTO `marc_subfield_structure` VALUES ('852', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15569 INSERT INTO `marc_subfield_structure` VALUES ('852', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15570 INSERT INTO `marc_subfield_structure` VALUES ('853', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15571 INSERT INTO `marc_subfield_structure` VALUES ('853', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15572 INSERT INTO `marc_subfield_structure` VALUES ('853', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15573 INSERT INTO `marc_subfield_structure` VALUES ('853', 'a', 'First level of enumeration', 'First level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15574 INSERT INTO `marc_subfield_structure` VALUES ('853', 'b', 'Second level of enumeration', 'Second level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15575 INSERT INTO `marc_subfield_structure` VALUES ('853', 'c', 'Third level of enumeration', 'Third level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15576 INSERT INTO `marc_subfield_structure` VALUES ('853', 'd', 'Fourth level of enumeration', 'Fourth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15577 INSERT INTO `marc_subfield_structure` VALUES ('853', 'e', 'Fifth level of enumeration', 'Fifth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15578 INSERT INTO `marc_subfield_structure` VALUES ('853', 'f', 'Sixth level of enumeration', 'Sixth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15579 INSERT INTO `marc_subfield_structure` VALUES ('853', 'g', 'Alternative numbering scheme, first level of enumeration', 'Alternative numbering scheme, first level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15580 INSERT INTO `marc_subfield_structure` VALUES ('853', 'h', 'Alternative numbering scheme, second level of enumeration', 'Alternative numbering scheme, second level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15581 INSERT INTO `marc_subfield_structure` VALUES ('853', 'i', 'First level of chronology', 'First level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15582 INSERT INTO `marc_subfield_structure` VALUES ('853', 'j', 'Second level of chronology', 'Second level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15583 INSERT INTO `marc_subfield_structure` VALUES ('853', 'k', 'Third level of chronology', 'Third level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15584 INSERT INTO `marc_subfield_structure` VALUES ('853', 'l', 'Fourth level of chronology', 'Fourth level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15585 INSERT INTO `marc_subfield_structure` VALUES ('853', 'm', 'Alternative numbering scheme, chronology', 'Alternative numbering scheme, chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15586 INSERT INTO `marc_subfield_structure` VALUES ('853', 'n', 'Pattern note', 'Pattern note', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15587 INSERT INTO `marc_subfield_structure` VALUES ('853', 'p', 'Number of pieces per issuance', 'Number of pieces per issuance', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15588 INSERT INTO `marc_subfield_structure` VALUES ('853', 't', 'Copy', 'Copy', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15589 INSERT INTO `marc_subfield_structure` VALUES ('853', 'u', 'Bibliographic units per next higher level', 'Bibliographic units per next higher level', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15590 INSERT INTO `marc_subfield_structure` VALUES ('853', 'v', 'Numbering continuity', 'Numbering continuity', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15591 INSERT INTO `marc_subfield_structure` VALUES ('853', 'w', 'Frequency', 'Frequency', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15592 INSERT INTO `marc_subfield_structure` VALUES ('853', 'x', 'Calendar change', 'Calendar change', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15593 INSERT INTO `marc_subfield_structure` VALUES ('853', 'y', 'Regularity pattern', 'Regularity pattern', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15594 INSERT INTO `marc_subfield_structure` VALUES ('853', 'z', 'Numbering scheme', 'Numbering scheme', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15595 INSERT INTO `marc_subfield_structure` VALUES ('854', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15596 INSERT INTO `marc_subfield_structure` VALUES ('854', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15597 INSERT INTO `marc_subfield_structure` VALUES ('854', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15598 INSERT INTO `marc_subfield_structure` VALUES ('854', 'a', 'First level of enumeration', 'First level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15599 INSERT INTO `marc_subfield_structure` VALUES ('854', 'b', 'Second level of enumeration', 'Second level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15600 INSERT INTO `marc_subfield_structure` VALUES ('854', 'c', 'Third level of enumeration', 'Third level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15601 INSERT INTO `marc_subfield_structure` VALUES ('854', 'd', 'Fourth level of enumeration', 'Fourth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15602 INSERT INTO `marc_subfield_structure` VALUES ('854', 'e', 'Fifth level of enumeration', 'Fifth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15603 INSERT INTO `marc_subfield_structure` VALUES ('854', 'f', 'Sixth level of enumeration', 'Sixth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15604 INSERT INTO `marc_subfield_structure` VALUES ('854', 'g', 'Alternative numbering scheme, first level of enumeration', 'Alternative numbering scheme, first level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15605 INSERT INTO `marc_subfield_structure` VALUES ('854', 'h', 'Alternative numbering scheme, second level of enumeration', 'Alternative numbering scheme, second level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15606 INSERT INTO `marc_subfield_structure` VALUES ('854', 'i', 'First level of chronology', 'First level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15607 INSERT INTO `marc_subfield_structure` VALUES ('854', 'j', 'Second level of chronology', 'Second level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15608 INSERT INTO `marc_subfield_structure` VALUES ('854', 'k', 'Third level of chronology', 'Third level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15609 INSERT INTO `marc_subfield_structure` VALUES ('854', 'l', 'Fourth level of chronology', 'Fourth level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15610 INSERT INTO `marc_subfield_structure` VALUES ('854', 'm', 'Alternative numbering scheme, chronology', 'Alternative numbering scheme, chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15611 INSERT INTO `marc_subfield_structure` VALUES ('854', 'n', 'Pattern note', 'Pattern note', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15612 INSERT INTO `marc_subfield_structure` VALUES ('854', 'p', 'Number of pieces per issuance', 'Number of pieces per issuance', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15613 INSERT INTO `marc_subfield_structure` VALUES ('854', 't', 'Copy', 'Copy', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15614 INSERT INTO `marc_subfield_structure` VALUES ('854', 'u', 'Bibliographic units per next higher level', 'Bibliographic units per next higher level', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15615 INSERT INTO `marc_subfield_structure` VALUES ('854', 'v', 'Numbering continuity', 'Numbering continuity', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15616 INSERT INTO `marc_subfield_structure` VALUES ('854', 'w', 'Frequency', 'Frequency', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15617 INSERT INTO `marc_subfield_structure` VALUES ('854', 'x', 'Calendar change', 'Calendar change', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15618 INSERT INTO `marc_subfield_structure` VALUES ('854', 'y', 'Regularity pattern', 'Regularity pattern', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15619 INSERT INTO `marc_subfield_structure` VALUES ('854', 'z', 'Numbering scheme', 'Numbering scheme', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15620 INSERT INTO `marc_subfield_structure` VALUES ('855', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15621 INSERT INTO `marc_subfield_structure` VALUES ('855', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15622 INSERT INTO `marc_subfield_structure` VALUES ('855', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15623 INSERT INTO `marc_subfield_structure` VALUES ('855', 'a', 'First level of enumeration', 'First level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15624 INSERT INTO `marc_subfield_structure` VALUES ('855', 'b', 'Second level of enumeration', 'Second level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15625 INSERT INTO `marc_subfield_structure` VALUES ('855', 'c', 'Third level of enumeration', 'Third level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15626 INSERT INTO `marc_subfield_structure` VALUES ('855', 'd', 'Fourth level of enumeration', 'Fourth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15627 INSERT INTO `marc_subfield_structure` VALUES ('855', 'e', 'Fifth level of enumeration', 'Fifth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15628 INSERT INTO `marc_subfield_structure` VALUES ('855', 'f', 'Sixth level of enumeration', 'Sixth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15629 INSERT INTO `marc_subfield_structure` VALUES ('855', 'g', 'Alternative numbering scheme, first level of enumeration', 'Alternative numbering scheme, first level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15630 INSERT INTO `marc_subfield_structure` VALUES ('855', 'h', 'Alternative numbering scheme, second level of enumeration', 'Alternative numbering scheme, second level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15631 INSERT INTO `marc_subfield_structure` VALUES ('855', 'i', 'First level of chronology', 'First level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15632 INSERT INTO `marc_subfield_structure` VALUES ('855', 'j', 'Second level of chronology', 'Second level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15633 INSERT INTO `marc_subfield_structure` VALUES ('855', 'k', 'Third level of chronology', 'Third level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15634 INSERT INTO `marc_subfield_structure` VALUES ('855', 'l', 'Fourth level of chronology', 'Fourth level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15635 INSERT INTO `marc_subfield_structure` VALUES ('855', 'm', 'Alternative numbering scheme, chronology', 'Alternative numbering scheme, chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15636 INSERT INTO `marc_subfield_structure` VALUES ('855', 'n', 'Pattern note', 'Pattern note', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15637 INSERT INTO `marc_subfield_structure` VALUES ('855', 'p', 'Number of pieces per issuance', 'Number of pieces per issuance', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15638 INSERT INTO `marc_subfield_structure` VALUES ('855', 't', 'Copy', 'Copy', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15639 INSERT INTO `marc_subfield_structure` VALUES ('855', 'u', 'Bibliographic units per next higher level', 'Bibliographic units per next higher level', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15640 INSERT INTO `marc_subfield_structure` VALUES ('855', 'v', 'Numbering continuity', 'Numbering continuity', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15641 INSERT INTO `marc_subfield_structure` VALUES ('855', 'w', 'Frequency', 'Frequency', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15642 INSERT INTO `marc_subfield_structure` VALUES ('855', 'x', 'Calendar change', 'Calendar change', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15643 INSERT INTO `marc_subfield_structure` VALUES ('855', 'y', 'Regularity pattern', 'Regularity pattern', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15644 INSERT INTO `marc_subfield_structure` VALUES ('855', 'z', 'Numbering scheme', 'Numbering scheme', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15645 INSERT INTO `marc_subfield_structure` VALUES ('856', '2', 'Access method', 'Access method', 0, 0, '', 8, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
15646 INSERT INTO `marc_subfield_structure` VALUES ('856', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
15647 INSERT INTO `marc_subfield_structure` VALUES ('856', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
15648 INSERT INTO `marc_subfield_structure` VALUES ('856', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
15649 INSERT INTO `marc_subfield_structure` VALUES ('856', 'a', 'Host name', 'Host name', 1, 0, '', 8, '', '', '', 0, -1, 'ASMP_VIDEORECORDINGS', '', '');
15650 INSERT INTO `marc_subfield_structure` VALUES ('856', 'b', 'Access number', 'Access number', 1, 0, '', 8, '', '', '', 0, -1, 'ASMP_VIDEORECORDINGS', '', '');
15651 INSERT INTO `marc_subfield_structure` VALUES ('856', 'c', 'Compression information', 'Compression information', 1, 0, '', 8, '', '', '', 0, -1, 'ASMP_VIDEORECORDINGS', '', '');
15652 INSERT INTO `marc_subfield_structure` VALUES ('856', 'd', 'Path', 'Path', 1, 0, '', 8, '', '', '', 0, -1, 'ASMP_VIDEORECORDINGS', '', '');
15653 INSERT INTO `marc_subfield_structure` VALUES ('856', 'f', 'Electronic name', 'Electronic name', 1, 0, '', 8, '', '', '', 0, -1, 'ASMP_VIDEORECORDINGS', '', '');
15654 INSERT INTO `marc_subfield_structure` VALUES ('856', 'h', 'Processor of request', 'Processor of request', 0, 0, '', 8, '', '', '', 0, -1, 'ASMP_VIDEORECORDINGS', '', '');
15655 INSERT INTO `marc_subfield_structure` VALUES ('856', 'i', 'Instruction', 'Instruction', 1, 0, '', 8, '', '', '', 0, -1, 'ASMP_VIDEORECORDINGS', '', '');
15656 INSERT INTO `marc_subfield_structure` VALUES ('856', 'j', 'Bits per second', 'Bits per second', 0, 0, '', 8, '', '', '', 0, -1, 'ASMP_VIDEORECORDINGS', '', '');
15657 INSERT INTO `marc_subfield_structure` VALUES ('856', 'k', 'Password', 'Password', 0, 0, '', 8, '', '', '', 0, -1, 'ASMP_VIDEORECORDINGS', '', '');
15658 INSERT INTO `marc_subfield_structure` VALUES ('856', 'l', 'Logon', 'Logon', 0, 0, '', 8, '', '', '', 0, -1, 'ASMP_VIDEORECORDINGS', '', '');
15659 INSERT INTO `marc_subfield_structure` VALUES ('856', 'm', 'Contact for access assistance', 'Contact for access assistance', 1, 0, '', 8, '', '', '', 0, -1, 'ASMP_VIDEORECORDINGS', '', '');
15660 INSERT INTO `marc_subfield_structure` VALUES ('856', 'n', 'Name of location of host in subfield', 'Name of location of host in subfield', 0, 0, '', 8, '', '', '', 0, -1, 'ASMP_VIDEORECORDINGS', '', '');
15661 INSERT INTO `marc_subfield_structure` VALUES ('856', 'o', 'Operating system', 'Operating system', 0, 0, '', 8, '', '', '', 0, -1, 'ASMP_VIDEORECORDINGS', '', '');
15662 INSERT INTO `marc_subfield_structure` VALUES ('856', 'p', 'Port', 'Port', 0, 0, '', 8, '', '', '', 0, -1, 'ASMP_VIDEORECORDINGS', '', '');
15663 INSERT INTO `marc_subfield_structure` VALUES ('856', 'q', 'Electronic format type', 'Electronic format type', 0, 0, '', 8, '', '', '', 0, -1, 'ASMP_VIDEORECORDINGS', '', '');
15664 INSERT INTO `marc_subfield_structure` VALUES ('856', 'r', 'Settings', 'Settings', 0, 0, '', 8, '', '', '', 0, -1, 'ASMP_VIDEORECORDINGS', '', '');
15665 INSERT INTO `marc_subfield_structure` VALUES ('856', 's', 'File size', 'File size', 1, 0, '', 8, '', '', '', 0, -1, 'ASMP_VIDEORECORDINGS', '', '');
15666 INSERT INTO `marc_subfield_structure` VALUES ('856', 't', 'Terminal emulation', 'Terminal emulation', 1, 0, '', 8, '', '', '', 0, -1, 'ASMP_VIDEORECORDINGS', '', '');
15667 INSERT INTO `marc_subfield_structure` VALUES ('856', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, 'biblioitems.url', 8, '', '', '', 1, -1, 'ASMP_VIDEORECORDINGS', '', '');
15668 INSERT INTO `marc_subfield_structure` VALUES ('856', 'v', 'Hours access method available', 'Hours access method available', 1, 0, '', 8, '', '', '', 0, -1, 'ASMP_VIDEORECORDINGS', '', '');
15669 INSERT INTO `marc_subfield_structure` VALUES ('856', 'w', 'Record control number', 'Record control number', 1, 0, '', 8, '', '', '', 0, -1, 'ASMP_VIDEORECORDINGS', '', '');
15670 INSERT INTO `marc_subfield_structure` VALUES ('856', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', 0, 1, 'ASMP_VIDEORECORDINGS', '', '');
15671 INSERT INTO `marc_subfield_structure` VALUES ('856', 'y', 'Link text', 'Link text', 1, 0, '', 8, '', '', '', 0, -1, 'ASMP_VIDEORECORDINGS', '', '');
15672 INSERT INTO `marc_subfield_structure` VALUES ('856', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', 0, -1, 'ASMP_VIDEORECORDINGS', '', '');
15673 INSERT INTO `marc_subfield_structure` VALUES ('859', 'b', 'Operator\'s initials, OID (RLIN)', 'Operator\'s initials, OID (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
15674 INSERT INTO `marc_subfield_structure` VALUES ('859', 'c', 'Cataloger\'s initials, CIN (RLIN)', 'Cataloger\'s initials, CIN (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
15675 INSERT INTO `marc_subfield_structure` VALUES ('859', 'd', 'TDC (RLIN)', 'TDC (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
15676 INSERT INTO `marc_subfield_structure` VALUES ('859', 'l', 'LIB (RLIN)', 'LIB (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
15677 INSERT INTO `marc_subfield_structure` VALUES ('859', 'p', 'PRI (RLIN)', 'PRI (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
15678 INSERT INTO `marc_subfield_structure` VALUES ('859', 'r', 'REG (RLIN)', 'REG (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
15679 INSERT INTO `marc_subfield_structure` VALUES ('859', 'v', 'VER (RLIN)', 'VER (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
15680 INSERT INTO `marc_subfield_structure` VALUES ('859', 'x', 'LDEL (RLIN)', 'LDEL (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
15681 INSERT INTO `marc_subfield_structure` VALUES ('866', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15682 INSERT INTO `marc_subfield_structure` VALUES ('866', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15683 INSERT INTO `marc_subfield_structure` VALUES ('866', 'a', 'Textual string', 'Textual string', 0, 0, '', 8, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
15684 INSERT INTO `marc_subfield_structure` VALUES ('866', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
15685 INSERT INTO `marc_subfield_structure` VALUES ('866', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
15686 INSERT INTO `marc_subfield_structure` VALUES ('867', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15687 INSERT INTO `marc_subfield_structure` VALUES ('867', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15688 INSERT INTO `marc_subfield_structure` VALUES ('867', 'a', 'Textual string', 'Textual string', 0, 0, '', 8, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
15689 INSERT INTO `marc_subfield_structure` VALUES ('867', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
15690 INSERT INTO `marc_subfield_structure` VALUES ('867', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
15691 INSERT INTO `marc_subfield_structure` VALUES ('868', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15692 INSERT INTO `marc_subfield_structure` VALUES ('868', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15693 INSERT INTO `marc_subfield_structure` VALUES ('868', 'a', 'Textual string', 'Textual string', 0, 0, '', 8, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
15694 INSERT INTO `marc_subfield_structure` VALUES ('868', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
15695 INSERT INTO `marc_subfield_structure` VALUES ('868', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
15696 INSERT INTO `marc_subfield_structure` VALUES ('870', '4', 'Relator code', 'Relator code', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15697 INSERT INTO `marc_subfield_structure` VALUES ('870', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15698 INSERT INTO `marc_subfield_structure` VALUES ('870', 'a', 'Personal name', 'Personal name', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15699 INSERT INTO `marc_subfield_structure` VALUES ('870', 'b', 'Numeration', 'Numeration', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15700 INSERT INTO `marc_subfield_structure` VALUES ('870', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15701 INSERT INTO `marc_subfield_structure` VALUES ('870', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15702 INSERT INTO `marc_subfield_structure` VALUES ('870', 'e', 'Relator term', 'Relator term', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15703 INSERT INTO `marc_subfield_structure` VALUES ('870', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15704 INSERT INTO `marc_subfield_structure` VALUES ('870', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15705 INSERT INTO `marc_subfield_structure` VALUES ('870', 'j', 'Tag and sequence number', 'Tag and sequence number', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15706 INSERT INTO `marc_subfield_structure` VALUES ('870', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15707 INSERT INTO `marc_subfield_structure` VALUES ('870', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15708 INSERT INTO `marc_subfield_structure` VALUES ('870', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15709 INSERT INTO `marc_subfield_structure` VALUES ('870', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15710 INSERT INTO `marc_subfield_structure` VALUES ('870', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15711 INSERT INTO `marc_subfield_structure` VALUES ('870', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15712 INSERT INTO `marc_subfield_structure` VALUES ('870', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15713 INSERT INTO `marc_subfield_structure` VALUES ('871', '4', 'Relator code', 'Relator code', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15714 INSERT INTO `marc_subfield_structure` VALUES ('871', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15715 INSERT INTO `marc_subfield_structure` VALUES ('871', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15716 INSERT INTO `marc_subfield_structure` VALUES ('871', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15717 INSERT INTO `marc_subfield_structure` VALUES ('871', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15718 INSERT INTO `marc_subfield_structure` VALUES ('871', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15719 INSERT INTO `marc_subfield_structure` VALUES ('871', 'e', 'Relator term', 'Relator term', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15720 INSERT INTO `marc_subfield_structure` VALUES ('871', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15721 INSERT INTO `marc_subfield_structure` VALUES ('871', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15722 INSERT INTO `marc_subfield_structure` VALUES ('871', 'j', 'Tag and sequence number', 'Tag and sequence number', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15723 INSERT INTO `marc_subfield_structure` VALUES ('871', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15724 INSERT INTO `marc_subfield_structure` VALUES ('871', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15725 INSERT INTO `marc_subfield_structure` VALUES ('871', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15726 INSERT INTO `marc_subfield_structure` VALUES ('871', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15727 INSERT INTO `marc_subfield_structure` VALUES ('871', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15728 INSERT INTO `marc_subfield_structure` VALUES ('871', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15729 INSERT INTO `marc_subfield_structure` VALUES ('872', '4', 'Relator code', 'Relator code', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15730 INSERT INTO `marc_subfield_structure` VALUES ('872', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15731 INSERT INTO `marc_subfield_structure` VALUES ('872', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15732 INSERT INTO `marc_subfield_structure` VALUES ('872', 'b', 'Number [OBSOLETE]', 'Number [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15733 INSERT INTO `marc_subfield_structure` VALUES ('872', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15734 INSERT INTO `marc_subfield_structure` VALUES ('872', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15735 INSERT INTO `marc_subfield_structure` VALUES ('872', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15736 INSERT INTO `marc_subfield_structure` VALUES ('872', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15737 INSERT INTO `marc_subfield_structure` VALUES ('872', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15738 INSERT INTO `marc_subfield_structure` VALUES ('872', 'j', 'Tag and sequence number', 'Tag and sequence number', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15739 INSERT INTO `marc_subfield_structure` VALUES ('872', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15740 INSERT INTO `marc_subfield_structure` VALUES ('872', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15741 INSERT INTO `marc_subfield_structure` VALUES ('872', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15742 INSERT INTO `marc_subfield_structure` VALUES ('872', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15743 INSERT INTO `marc_subfield_structure` VALUES ('872', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15744 INSERT INTO `marc_subfield_structure` VALUES ('872', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15745 INSERT INTO `marc_subfield_structure` VALUES ('872', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15746 INSERT INTO `marc_subfield_structure` VALUES ('873', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15747 INSERT INTO `marc_subfield_structure` VALUES ('873', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15748 INSERT INTO `marc_subfield_structure` VALUES ('873', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15749 INSERT INTO `marc_subfield_structure` VALUES ('873', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15750 INSERT INTO `marc_subfield_structure` VALUES ('873', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15751 INSERT INTO `marc_subfield_structure` VALUES ('873', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15752 INSERT INTO `marc_subfield_structure` VALUES ('873', 'j', 'Tag and sequence number', 'Tag and sequence number', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15753 INSERT INTO `marc_subfield_structure` VALUES ('873', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15754 INSERT INTO `marc_subfield_structure` VALUES ('873', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15755 INSERT INTO `marc_subfield_structure` VALUES ('873', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15756 INSERT INTO `marc_subfield_structure` VALUES ('873', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15757 INSERT INTO `marc_subfield_structure` VALUES ('873', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15758 INSERT INTO `marc_subfield_structure` VALUES ('873', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15759 INSERT INTO `marc_subfield_structure` VALUES ('873', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15760 INSERT INTO `marc_subfield_structure` VALUES ('873', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15761 INSERT INTO `marc_subfield_structure` VALUES ('873', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15762 INSERT INTO `marc_subfield_structure` VALUES ('876', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15763 INSERT INTO `marc_subfield_structure` VALUES ('876', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15764 INSERT INTO `marc_subfield_structure` VALUES ('876', '8', 'Sequence number', 'Sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15765 INSERT INTO `marc_subfield_structure` VALUES ('876', 'a', 'Internal item number', 'Internal item number', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15766 INSERT INTO `marc_subfield_structure` VALUES ('876', 'b', 'Invalid or canceled internal item number', 'Invalid or canceled internal item number', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15767 INSERT INTO `marc_subfield_structure` VALUES ('876', 'c', 'Cost', 'Cost', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15768 INSERT INTO `marc_subfield_structure` VALUES ('876', 'd', 'Date acquired', 'Date acquired', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15769 INSERT INTO `marc_subfield_structure` VALUES ('876', 'e', 'Source of acquisition', 'Source of acquisition', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15770 INSERT INTO `marc_subfield_structure` VALUES ('876', 'h', 'Use restrictions', 'Use restrictions', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15771 INSERT INTO `marc_subfield_structure` VALUES ('876', 'j', 'Item status', 'Item status', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15772 INSERT INTO `marc_subfield_structure` VALUES ('876', 'l', 'Temporary location', 'Temporary location', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15773 INSERT INTO `marc_subfield_structure` VALUES ('876', 'p', 'Piece designation', 'Piece designation', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15774 INSERT INTO `marc_subfield_structure` VALUES ('876', 'r', 'Invalid or canceled piece designation', 'Invalid or canceled piece designation', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15775 INSERT INTO `marc_subfield_structure` VALUES ('876', 't', 'Copy number', 'Copy number', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15776 INSERT INTO `marc_subfield_structure` VALUES ('876', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15777 INSERT INTO `marc_subfield_structure` VALUES ('876', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15778 INSERT INTO `marc_subfield_structure` VALUES ('877', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15779 INSERT INTO `marc_subfield_structure` VALUES ('877', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15780 INSERT INTO `marc_subfield_structure` VALUES ('877', '8', 'Sequence number', 'Sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15781 INSERT INTO `marc_subfield_structure` VALUES ('877', 'a', 'Internal item number', 'Internal item number', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15782 INSERT INTO `marc_subfield_structure` VALUES ('877', 'b', 'Invalid or canceled internal item number', 'Invalid or canceled internal item number', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15783 INSERT INTO `marc_subfield_structure` VALUES ('877', 'c', 'Cost', 'Cost', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15784 INSERT INTO `marc_subfield_structure` VALUES ('877', 'd', 'Date acquired', 'Date acquired', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15785 INSERT INTO `marc_subfield_structure` VALUES ('877', 'e', 'Source of acquisition', 'Source of acquisition', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15786 INSERT INTO `marc_subfield_structure` VALUES ('877', 'h', 'Use restrictions', 'Use restrictions', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15787 INSERT INTO `marc_subfield_structure` VALUES ('877', 'j', 'Item status', 'Item status', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15788 INSERT INTO `marc_subfield_structure` VALUES ('877', 'l', 'Temporary location', 'Temporary location', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15789 INSERT INTO `marc_subfield_structure` VALUES ('877', 'p', 'Piece designation', 'Piece designation', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15790 INSERT INTO `marc_subfield_structure` VALUES ('877', 'r', 'Invalid or canceled piece designation', 'Invalid or canceled piece designation', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15791 INSERT INTO `marc_subfield_structure` VALUES ('877', 't', 'Copy number', 'Copy number', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15792 INSERT INTO `marc_subfield_structure` VALUES ('877', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15793 INSERT INTO `marc_subfield_structure` VALUES ('877', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15794 INSERT INTO `marc_subfield_structure` VALUES ('878', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15795 INSERT INTO `marc_subfield_structure` VALUES ('878', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15796 INSERT INTO `marc_subfield_structure` VALUES ('878', '8', 'Sequence number', 'Sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15797 INSERT INTO `marc_subfield_structure` VALUES ('878', 'a', 'Internal item number', 'Internal item number', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15798 INSERT INTO `marc_subfield_structure` VALUES ('878', 'b', 'Invalid or canceled internal item number', 'Invalid or canceled internal item number', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15799 INSERT INTO `marc_subfield_structure` VALUES ('878', 'c', 'Cost', 'Cost', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15800 INSERT INTO `marc_subfield_structure` VALUES ('878', 'd', 'Date acquired', 'Date acquired', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15801 INSERT INTO `marc_subfield_structure` VALUES ('878', 'e', 'Source of acquisition', 'Source of acquisition', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15802 INSERT INTO `marc_subfield_structure` VALUES ('878', 'h', 'Use restrictions', 'Use restrictions', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15803 INSERT INTO `marc_subfield_structure` VALUES ('878', 'j', 'Item status', 'Item status', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15804 INSERT INTO `marc_subfield_structure` VALUES ('878', 'l', 'Temporary location', 'Temporary location', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15805 INSERT INTO `marc_subfield_structure` VALUES ('878', 'p', 'Piece designation', 'Piece designation', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15806 INSERT INTO `marc_subfield_structure` VALUES ('878', 'r', 'Invalid or canceled piece designation', 'Invalid or canceled piece designation', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15807 INSERT INTO `marc_subfield_structure` VALUES ('878', 't', 'Copy number', 'Copy number', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15808 INSERT INTO `marc_subfield_structure` VALUES ('878', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15809 INSERT INTO `marc_subfield_structure` VALUES ('878', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15810 INSERT INTO `marc_subfield_structure` VALUES ('880', '2', '2', '2', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15811 INSERT INTO `marc_subfield_structure` VALUES ('880', '3', '3', '3', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15812 INSERT INTO `marc_subfield_structure` VALUES ('880', '4', '4', '4', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15813 INSERT INTO `marc_subfield_structure` VALUES ('880', '5', '5', '5', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15814 INSERT INTO `marc_subfield_structure` VALUES ('880', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15815 INSERT INTO `marc_subfield_structure` VALUES ('880', '7', '7', '7', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15816 INSERT INTO `marc_subfield_structure` VALUES ('880', '8', '8', '8', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15817 INSERT INTO `marc_subfield_structure` VALUES ('880', '9', '9', '9', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15818 INSERT INTO `marc_subfield_structure` VALUES ('880', 'a', 'a', 'a', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15819 INSERT INTO `marc_subfield_structure` VALUES ('880', 'b', 'b', 'b', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15820 INSERT INTO `marc_subfield_structure` VALUES ('880', 'c', 'c', 'c', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15821 INSERT INTO `marc_subfield_structure` VALUES ('880', 'd', 'd', 'd', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15822 INSERT INTO `marc_subfield_structure` VALUES ('880', 'e', 'e', 'e', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15823 INSERT INTO `marc_subfield_structure` VALUES ('880', 'f', 'f', 'f', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15824 INSERT INTO `marc_subfield_structure` VALUES ('880', 'g', 'g', 'g', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15825 INSERT INTO `marc_subfield_structure` VALUES ('880', 'h', 'h', 'h', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15826 INSERT INTO `marc_subfield_structure` VALUES ('880', 'i', 'i', 'i', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15827 INSERT INTO `marc_subfield_structure` VALUES ('880', 'j', 'j', 'j', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15828 INSERT INTO `marc_subfield_structure` VALUES ('880', 'k', 'k', 'k', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15829 INSERT INTO `marc_subfield_structure` VALUES ('880', 'l', 'l', 'l', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15830 INSERT INTO `marc_subfield_structure` VALUES ('880', 'm', 'm', 'm', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15831 INSERT INTO `marc_subfield_structure` VALUES ('880', 'n', 'n', 'n', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15832 INSERT INTO `marc_subfield_structure` VALUES ('880', 'o', 'o', 'o', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15833 INSERT INTO `marc_subfield_structure` VALUES ('880', 'p', 'p', 'p', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15834 INSERT INTO `marc_subfield_structure` VALUES ('880', 'q', 'q', 'q', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15835 INSERT INTO `marc_subfield_structure` VALUES ('880', 'r', 'r', 'r', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15836 INSERT INTO `marc_subfield_structure` VALUES ('880', 's', 's', 's', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15837 INSERT INTO `marc_subfield_structure` VALUES ('880', 't', 't', 't', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15838 INSERT INTO `marc_subfield_structure` VALUES ('880', 'u', 'u', 'u', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15839 INSERT INTO `marc_subfield_structure` VALUES ('880', 'v', 'v', 'v', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15840 INSERT INTO `marc_subfield_structure` VALUES ('880', 'w', 'w', 'w', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15841 INSERT INTO `marc_subfield_structure` VALUES ('880', 'x', 'x', 'x', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15842 INSERT INTO `marc_subfield_structure` VALUES ('880', 'y', 'y', 'y', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15843 INSERT INTO `marc_subfield_structure` VALUES ('880', 'z', 'z', 'z', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15844 INSERT INTO `marc_subfield_structure` VALUES ('886', '0', '0', '0', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15845 INSERT INTO `marc_subfield_structure` VALUES ('886', '1', '1', '1', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15846 INSERT INTO `marc_subfield_structure` VALUES ('886', '2', '2', '2', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15847 INSERT INTO `marc_subfield_structure` VALUES ('886', '3', '3', '3', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15848 INSERT INTO `marc_subfield_structure` VALUES ('886', '4', '4', '4', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15849 INSERT INTO `marc_subfield_structure` VALUES ('886', '5', '5', '5', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15850 INSERT INTO `marc_subfield_structure` VALUES ('886', '6', '6', '6', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15851 INSERT INTO `marc_subfield_structure` VALUES ('886', '7', '7', '7', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15852 INSERT INTO `marc_subfield_structure` VALUES ('886', '8', '8', '8', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15853 INSERT INTO `marc_subfield_structure` VALUES ('886', '9', '9', '9', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15854 INSERT INTO `marc_subfield_structure` VALUES ('886', 'a', 'a', 'a', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15855 INSERT INTO `marc_subfield_structure` VALUES ('886', 'b', 'b', 'b', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15856 INSERT INTO `marc_subfield_structure` VALUES ('886', 'c', 'c', 'c', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15857 INSERT INTO `marc_subfield_structure` VALUES ('886', 'd', 'd', 'd', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15858 INSERT INTO `marc_subfield_structure` VALUES ('886', 'e', 'e', 'e', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15859 INSERT INTO `marc_subfield_structure` VALUES ('886', 'f', 'f', 'f', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15860 INSERT INTO `marc_subfield_structure` VALUES ('886', 'g', 'g', 'g', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15861 INSERT INTO `marc_subfield_structure` VALUES ('886', 'h', 'h', 'h', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15862 INSERT INTO `marc_subfield_structure` VALUES ('886', 'i', 'i', 'i', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15863 INSERT INTO `marc_subfield_structure` VALUES ('886', 'j', 'j', 'j', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15864 INSERT INTO `marc_subfield_structure` VALUES ('886', 'k', 'k', 'k', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15865 INSERT INTO `marc_subfield_structure` VALUES ('886', 'l', 'l', 'l', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15866 INSERT INTO `marc_subfield_structure` VALUES ('886', 'm', 'm', 'm', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15867 INSERT INTO `marc_subfield_structure` VALUES ('886', 'n', 'n', 'n', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15868 INSERT INTO `marc_subfield_structure` VALUES ('886', 'o', 'o', 'o', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15869 INSERT INTO `marc_subfield_structure` VALUES ('886', 'p', 'p', 'p', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15870 INSERT INTO `marc_subfield_structure` VALUES ('886', 'q', 'q', 'q', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15871 INSERT INTO `marc_subfield_structure` VALUES ('886', 'r', 'r', 'r', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15872 INSERT INTO `marc_subfield_structure` VALUES ('886', 's', 's', 's', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15873 INSERT INTO `marc_subfield_structure` VALUES ('886', 't', 't', 't', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15874 INSERT INTO `marc_subfield_structure` VALUES ('886', 'u', 'u', 'u', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15875 INSERT INTO `marc_subfield_structure` VALUES ('886', 'v', 'v', 'v', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15876 INSERT INTO `marc_subfield_structure` VALUES ('886', 'w', 'w', 'w', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15877 INSERT INTO `marc_subfield_structure` VALUES ('886', 'x', 'x', 'x', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15878 INSERT INTO `marc_subfield_structure` VALUES ('886', 'y', 'y', 'y', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15879 INSERT INTO `marc_subfield_structure` VALUES ('886', 'z', 'z', 'z', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15880 INSERT INTO `marc_subfield_structure` VALUES ('887', '2', 'Source of data', 'Source of data', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15881 INSERT INTO `marc_subfield_structure` VALUES ('887', 'a', 'Content of non-MARC field', 'Content of non-MARC field', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15882 INSERT INTO `marc_subfield_structure` VALUES ('896', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 8, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
15883 INSERT INTO `marc_subfield_structure` VALUES ('896', '4', 'Relator code', 'Relator code', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15884 INSERT INTO `marc_subfield_structure` VALUES ('896', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15885 INSERT INTO `marc_subfield_structure` VALUES ('896', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15886 INSERT INTO `marc_subfield_structure` VALUES ('896', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, 'ASMP_VIDEORECORDINGS', '', '');
15887 INSERT INTO `marc_subfield_structure` VALUES ('896', 'a', 'Personal name', 'Personal name', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15888 INSERT INTO `marc_subfield_structure` VALUES ('896', 'b', 'Numeration', 'Numeration', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15889 INSERT INTO `marc_subfield_structure` VALUES ('896', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15890 INSERT INTO `marc_subfield_structure` VALUES ('896', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15891 INSERT INTO `marc_subfield_structure` VALUES ('896', 'e', 'Relator term', 'Relator term', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15892 INSERT INTO `marc_subfield_structure` VALUES ('896', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15893 INSERT INTO `marc_subfield_structure` VALUES ('896', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15894 INSERT INTO `marc_subfield_structure` VALUES ('896', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15895 INSERT INTO `marc_subfield_structure` VALUES ('896', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15896 INSERT INTO `marc_subfield_structure` VALUES ('896', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15897 INSERT INTO `marc_subfield_structure` VALUES ('896', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15898 INSERT INTO `marc_subfield_structure` VALUES ('896', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15899 INSERT INTO `marc_subfield_structure` VALUES ('896', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15900 INSERT INTO `marc_subfield_structure` VALUES ('896', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15901 INSERT INTO `marc_subfield_structure` VALUES ('896', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15902 INSERT INTO `marc_subfield_structure` VALUES ('896', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15903 INSERT INTO `marc_subfield_structure` VALUES ('896', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15904 INSERT INTO `marc_subfield_structure` VALUES ('896', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15905 INSERT INTO `marc_subfield_structure` VALUES ('896', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15906 INSERT INTO `marc_subfield_structure` VALUES ('896', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15907 INSERT INTO `marc_subfield_structure` VALUES ('896', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15908 INSERT INTO `marc_subfield_structure` VALUES ('897', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 8, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
15909 INSERT INTO `marc_subfield_structure` VALUES ('897', '4', 'Relator code', 'Relator code', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15910 INSERT INTO `marc_subfield_structure` VALUES ('897', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15911 INSERT INTO `marc_subfield_structure` VALUES ('897', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15912 INSERT INTO `marc_subfield_structure` VALUES ('897', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, 'ASMP_VIDEORECORDINGS', '', '');
15913 INSERT INTO `marc_subfield_structure` VALUES ('897', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15914 INSERT INTO `marc_subfield_structure` VALUES ('897', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15915 INSERT INTO `marc_subfield_structure` VALUES ('897', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15916 INSERT INTO `marc_subfield_structure` VALUES ('897', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15917 INSERT INTO `marc_subfield_structure` VALUES ('897', 'e', 'Relator term', 'Relator term', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15918 INSERT INTO `marc_subfield_structure` VALUES ('897', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15919 INSERT INTO `marc_subfield_structure` VALUES ('897', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15920 INSERT INTO `marc_subfield_structure` VALUES ('897', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15921 INSERT INTO `marc_subfield_structure` VALUES ('897', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15922 INSERT INTO `marc_subfield_structure` VALUES ('897', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15923 INSERT INTO `marc_subfield_structure` VALUES ('897', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15924 INSERT INTO `marc_subfield_structure` VALUES ('897', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15925 INSERT INTO `marc_subfield_structure` VALUES ('897', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15926 INSERT INTO `marc_subfield_structure` VALUES ('897', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15927 INSERT INTO `marc_subfield_structure` VALUES ('897', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15928 INSERT INTO `marc_subfield_structure` VALUES ('897', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15929 INSERT INTO `marc_subfield_structure` VALUES ('897', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15930 INSERT INTO `marc_subfield_structure` VALUES ('897', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15931 INSERT INTO `marc_subfield_structure` VALUES ('897', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15932 INSERT INTO `marc_subfield_structure` VALUES ('898', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 8, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
15933 INSERT INTO `marc_subfield_structure` VALUES ('898', '4', 'Relator code', 'Relator code', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15934 INSERT INTO `marc_subfield_structure` VALUES ('898', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15935 INSERT INTO `marc_subfield_structure` VALUES ('898', '8', 'Field link and sequence number ', 'Field link and sequence number ', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15936 INSERT INTO `marc_subfield_structure` VALUES ('898', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, 'ASMP_VIDEORECORDINGS', '', '');
15937 INSERT INTO `marc_subfield_structure` VALUES ('898', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15938 INSERT INTO `marc_subfield_structure` VALUES ('898', 'b', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15939 INSERT INTO `marc_subfield_structure` VALUES ('898', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15940 INSERT INTO `marc_subfield_structure` VALUES ('898', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15941 INSERT INTO `marc_subfield_structure` VALUES ('898', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15942 INSERT INTO `marc_subfield_structure` VALUES ('898', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15943 INSERT INTO `marc_subfield_structure` VALUES ('898', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15944 INSERT INTO `marc_subfield_structure` VALUES ('898', 'h', 'Medium', 'Medium', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15945 INSERT INTO `marc_subfield_structure` VALUES ('898', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15946 INSERT INTO `marc_subfield_structure` VALUES ('898', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15947 INSERT INTO `marc_subfield_structure` VALUES ('898', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15948 INSERT INTO `marc_subfield_structure` VALUES ('898', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15949 INSERT INTO `marc_subfield_structure` VALUES ('898', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15950 INSERT INTO `marc_subfield_structure` VALUES ('898', 's', 'Version', 'Version', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15951 INSERT INTO `marc_subfield_structure` VALUES ('898', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15952 INSERT INTO `marc_subfield_structure` VALUES ('898', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15953 INSERT INTO `marc_subfield_structure` VALUES ('898', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15954 INSERT INTO `marc_subfield_structure` VALUES ('899', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 8, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
15955 INSERT INTO `marc_subfield_structure` VALUES ('899', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15956 INSERT INTO `marc_subfield_structure` VALUES ('899', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15957 INSERT INTO `marc_subfield_structure` VALUES ('899', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, 'ASMP_VIDEORECORDINGS', '', '');
15958 INSERT INTO `marc_subfield_structure` VALUES ('899', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15959 INSERT INTO `marc_subfield_structure` VALUES ('899', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15960 INSERT INTO `marc_subfield_structure` VALUES ('899', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15961 INSERT INTO `marc_subfield_structure` VALUES ('899', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15962 INSERT INTO `marc_subfield_structure` VALUES ('899', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15963 INSERT INTO `marc_subfield_structure` VALUES ('899', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15964 INSERT INTO `marc_subfield_structure` VALUES ('899', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15965 INSERT INTO `marc_subfield_structure` VALUES ('899', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15966 INSERT INTO `marc_subfield_structure` VALUES ('899', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15967 INSERT INTO `marc_subfield_structure` VALUES ('899', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15968 INSERT INTO `marc_subfield_structure` VALUES ('899', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15969 INSERT INTO `marc_subfield_structure` VALUES ('899', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15970 INSERT INTO `marc_subfield_structure` VALUES ('899', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15971 INSERT INTO `marc_subfield_structure` VALUES ('899', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15972 INSERT INTO `marc_subfield_structure` VALUES ('899', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 8, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
15973 INSERT INTO `marc_subfield_structure` VALUES ('89e', '0', '0', '0', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15974 INSERT INTO `marc_subfield_structure` VALUES ('89e', '1', '1', '1', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15975 INSERT INTO `marc_subfield_structure` VALUES ('89e', '2', '2', '2', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15976 INSERT INTO `marc_subfield_structure` VALUES ('89e', '3', '3', '3', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15977 INSERT INTO `marc_subfield_structure` VALUES ('89e', '4', '4', '4', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15978 INSERT INTO `marc_subfield_structure` VALUES ('89e', '5', '5', '5', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15979 INSERT INTO `marc_subfield_structure` VALUES ('89e', '6', '6', '6', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15980 INSERT INTO `marc_subfield_structure` VALUES ('89e', '7', '7', '7', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15981 INSERT INTO `marc_subfield_structure` VALUES ('89e', '8', '8', '8', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15982 INSERT INTO `marc_subfield_structure` VALUES ('89e', '9', '9', '9', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15983 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'a', 'a', 'a', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15984 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'b', 'b', 'b', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15985 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'c', 'c', 'c', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15986 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'd', 'd', 'd', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15987 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'e', 'e', 'e', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15988 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'f', 'f', 'f', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15989 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'g', 'g', 'g', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15990 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'h', 'h', 'h', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15991 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'i', 'i', 'i', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15992 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'j', 'j', 'j', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15993 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'k', 'k', 'k', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15994 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'l', 'l', 'l', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15995 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'm', 'm', 'm', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15996 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'n', 'n', 'n', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15997 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'o', 'o', 'o', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15998 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'p', 'p', 'p', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
15999 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'q', 'q', 'q', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16000 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'r', 'r', 'r', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16001 INSERT INTO `marc_subfield_structure` VALUES ('89e', 's', 's', 's', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16002 INSERT INTO `marc_subfield_structure` VALUES ('89e', 't', 't', 't', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16003 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'u', 'u', 'u', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16004 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'v', 'v', 'v', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16005 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'w', 'w', 'w', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16006 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'x', 'x', 'x', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16007 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'y', 'y', 'y', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16008 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'z', 'z', 'z', 1, 0, '', 8, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16009 INSERT INTO `marc_subfield_structure` VALUES ('900', '4', 'Relator code', 'Relator code', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16010 INSERT INTO `marc_subfield_structure` VALUES ('900', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16011 INSERT INTO `marc_subfield_structure` VALUES ('900', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16012 INSERT INTO `marc_subfield_structure` VALUES ('900', 'a', 'Personal name', 'Personal name', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16013 INSERT INTO `marc_subfield_structure` VALUES ('900', 'b', 'Numeration', 'Numeration', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16014 INSERT INTO `marc_subfield_structure` VALUES ('900', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16015 INSERT INTO `marc_subfield_structure` VALUES ('900', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16016 INSERT INTO `marc_subfield_structure` VALUES ('900', 'e', 'Relator term', 'Relator term', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16017 INSERT INTO `marc_subfield_structure` VALUES ('900', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16018 INSERT INTO `marc_subfield_structure` VALUES ('900', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16019 INSERT INTO `marc_subfield_structure` VALUES ('900', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16020 INSERT INTO `marc_subfield_structure` VALUES ('900', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16021 INSERT INTO `marc_subfield_structure` VALUES ('900', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16022 INSERT INTO `marc_subfield_structure` VALUES ('900', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16023 INSERT INTO `marc_subfield_structure` VALUES ('900', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16024 INSERT INTO `marc_subfield_structure` VALUES ('900', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16025 INSERT INTO `marc_subfield_structure` VALUES ('900', 't', 'Title of a work', 'Title of a work', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16026 INSERT INTO `marc_subfield_structure` VALUES ('900', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16027 INSERT INTO `marc_subfield_structure` VALUES ('901', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16028 INSERT INTO `marc_subfield_structure` VALUES ('901', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16029 INSERT INTO `marc_subfield_structure` VALUES ('901', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16030 INSERT INTO `marc_subfield_structure` VALUES ('901', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16031 INSERT INTO `marc_subfield_structure` VALUES ('901', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16032 INSERT INTO `marc_subfield_structure` VALUES ('901', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16033 INSERT INTO `marc_subfield_structure` VALUES ('901', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16034 INSERT INTO `marc_subfield_structure` VALUES ('901', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16035 INSERT INTO `marc_subfield_structure` VALUES ('901', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16036 INSERT INTO `marc_subfield_structure` VALUES ('901', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16037 INSERT INTO `marc_subfield_structure` VALUES ('901', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16038 INSERT INTO `marc_subfield_structure` VALUES ('901', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16039 INSERT INTO `marc_subfield_structure` VALUES ('901', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16040 INSERT INTO `marc_subfield_structure` VALUES ('901', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16041 INSERT INTO `marc_subfield_structure` VALUES ('901', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16042 INSERT INTO `marc_subfield_structure` VALUES ('901', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16043 INSERT INTO `marc_subfield_structure` VALUES ('901', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16044 INSERT INTO `marc_subfield_structure` VALUES ('901', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16045 INSERT INTO `marc_subfield_structure` VALUES ('901', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16046 INSERT INTO `marc_subfield_structure` VALUES ('901', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16047 INSERT INTO `marc_subfield_structure` VALUES ('901', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16048 INSERT INTO `marc_subfield_structure` VALUES ('901', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16049 INSERT INTO `marc_subfield_structure` VALUES ('901', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16050 INSERT INTO `marc_subfield_structure` VALUES ('901', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16051 INSERT INTO `marc_subfield_structure` VALUES ('901', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16052 INSERT INTO `marc_subfield_structure` VALUES ('901', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16053 INSERT INTO `marc_subfield_structure` VALUES ('901', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16054 INSERT INTO `marc_subfield_structure` VALUES ('901', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16055 INSERT INTO `marc_subfield_structure` VALUES ('901', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16056 INSERT INTO `marc_subfield_structure` VALUES ('901', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16057 INSERT INTO `marc_subfield_structure` VALUES ('901', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16058 INSERT INTO `marc_subfield_structure` VALUES ('901', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16059 INSERT INTO `marc_subfield_structure` VALUES ('901', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16060 INSERT INTO `marc_subfield_structure` VALUES ('901', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16061 INSERT INTO `marc_subfield_structure` VALUES ('901', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16062 INSERT INTO `marc_subfield_structure` VALUES ('901', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16063 INSERT INTO `marc_subfield_structure` VALUES ('902', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16064 INSERT INTO `marc_subfield_structure` VALUES ('902', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16065 INSERT INTO `marc_subfield_structure` VALUES ('902', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16066 INSERT INTO `marc_subfield_structure` VALUES ('902', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16067 INSERT INTO `marc_subfield_structure` VALUES ('902', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16068 INSERT INTO `marc_subfield_structure` VALUES ('902', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16069 INSERT INTO `marc_subfield_structure` VALUES ('902', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16070 INSERT INTO `marc_subfield_structure` VALUES ('902', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16071 INSERT INTO `marc_subfield_structure` VALUES ('902', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16072 INSERT INTO `marc_subfield_structure` VALUES ('902', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16073 INSERT INTO `marc_subfield_structure` VALUES ('902', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16074 INSERT INTO `marc_subfield_structure` VALUES ('902', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16075 INSERT INTO `marc_subfield_structure` VALUES ('902', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16076 INSERT INTO `marc_subfield_structure` VALUES ('902', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16077 INSERT INTO `marc_subfield_structure` VALUES ('902', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16078 INSERT INTO `marc_subfield_structure` VALUES ('902', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16079 INSERT INTO `marc_subfield_structure` VALUES ('902', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16080 INSERT INTO `marc_subfield_structure` VALUES ('902', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16081 INSERT INTO `marc_subfield_structure` VALUES ('902', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16082 INSERT INTO `marc_subfield_structure` VALUES ('902', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16083 INSERT INTO `marc_subfield_structure` VALUES ('902', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16084 INSERT INTO `marc_subfield_structure` VALUES ('902', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16085 INSERT INTO `marc_subfield_structure` VALUES ('902', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16086 INSERT INTO `marc_subfield_structure` VALUES ('902', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16087 INSERT INTO `marc_subfield_structure` VALUES ('902', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16088 INSERT INTO `marc_subfield_structure` VALUES ('902', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16089 INSERT INTO `marc_subfield_structure` VALUES ('902', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16090 INSERT INTO `marc_subfield_structure` VALUES ('902', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16091 INSERT INTO `marc_subfield_structure` VALUES ('902', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16092 INSERT INTO `marc_subfield_structure` VALUES ('902', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16093 INSERT INTO `marc_subfield_structure` VALUES ('902', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16094 INSERT INTO `marc_subfield_structure` VALUES ('902', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16095 INSERT INTO `marc_subfield_structure` VALUES ('902', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16096 INSERT INTO `marc_subfield_structure` VALUES ('902', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16097 INSERT INTO `marc_subfield_structure` VALUES ('902', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16098 INSERT INTO `marc_subfield_structure` VALUES ('902', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16099 INSERT INTO `marc_subfield_structure` VALUES ('903', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16100 INSERT INTO `marc_subfield_structure` VALUES ('903', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16101 INSERT INTO `marc_subfield_structure` VALUES ('903', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16102 INSERT INTO `marc_subfield_structure` VALUES ('903', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16103 INSERT INTO `marc_subfield_structure` VALUES ('903', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16104 INSERT INTO `marc_subfield_structure` VALUES ('903', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16105 INSERT INTO `marc_subfield_structure` VALUES ('903', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16106 INSERT INTO `marc_subfield_structure` VALUES ('903', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16107 INSERT INTO `marc_subfield_structure` VALUES ('903', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16108 INSERT INTO `marc_subfield_structure` VALUES ('903', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16109 INSERT INTO `marc_subfield_structure` VALUES ('903', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16110 INSERT INTO `marc_subfield_structure` VALUES ('903', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16111 INSERT INTO `marc_subfield_structure` VALUES ('903', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16112 INSERT INTO `marc_subfield_structure` VALUES ('903', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16113 INSERT INTO `marc_subfield_structure` VALUES ('903', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16114 INSERT INTO `marc_subfield_structure` VALUES ('903', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16115 INSERT INTO `marc_subfield_structure` VALUES ('903', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16116 INSERT INTO `marc_subfield_structure` VALUES ('903', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16117 INSERT INTO `marc_subfield_structure` VALUES ('903', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16118 INSERT INTO `marc_subfield_structure` VALUES ('903', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16119 INSERT INTO `marc_subfield_structure` VALUES ('903', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16120 INSERT INTO `marc_subfield_structure` VALUES ('903', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16121 INSERT INTO `marc_subfield_structure` VALUES ('903', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16122 INSERT INTO `marc_subfield_structure` VALUES ('903', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16123 INSERT INTO `marc_subfield_structure` VALUES ('903', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16124 INSERT INTO `marc_subfield_structure` VALUES ('903', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16125 INSERT INTO `marc_subfield_structure` VALUES ('903', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16126 INSERT INTO `marc_subfield_structure` VALUES ('903', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16127 INSERT INTO `marc_subfield_structure` VALUES ('903', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16128 INSERT INTO `marc_subfield_structure` VALUES ('903', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16129 INSERT INTO `marc_subfield_structure` VALUES ('903', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16130 INSERT INTO `marc_subfield_structure` VALUES ('903', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16131 INSERT INTO `marc_subfield_structure` VALUES ('903', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16132 INSERT INTO `marc_subfield_structure` VALUES ('903', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16133 INSERT INTO `marc_subfield_structure` VALUES ('903', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16134 INSERT INTO `marc_subfield_structure` VALUES ('903', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16135 INSERT INTO `marc_subfield_structure` VALUES ('904', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16136 INSERT INTO `marc_subfield_structure` VALUES ('904', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16137 INSERT INTO `marc_subfield_structure` VALUES ('904', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16138 INSERT INTO `marc_subfield_structure` VALUES ('904', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16139 INSERT INTO `marc_subfield_structure` VALUES ('904', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16140 INSERT INTO `marc_subfield_structure` VALUES ('904', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16141 INSERT INTO `marc_subfield_structure` VALUES ('904', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16142 INSERT INTO `marc_subfield_structure` VALUES ('904', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16143 INSERT INTO `marc_subfield_structure` VALUES ('904', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16144 INSERT INTO `marc_subfield_structure` VALUES ('904', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16145 INSERT INTO `marc_subfield_structure` VALUES ('904', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16146 INSERT INTO `marc_subfield_structure` VALUES ('904', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16147 INSERT INTO `marc_subfield_structure` VALUES ('904', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16148 INSERT INTO `marc_subfield_structure` VALUES ('904', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16149 INSERT INTO `marc_subfield_structure` VALUES ('904', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16150 INSERT INTO `marc_subfield_structure` VALUES ('904', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16151 INSERT INTO `marc_subfield_structure` VALUES ('904', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16152 INSERT INTO `marc_subfield_structure` VALUES ('904', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16153 INSERT INTO `marc_subfield_structure` VALUES ('904', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16154 INSERT INTO `marc_subfield_structure` VALUES ('904', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16155 INSERT INTO `marc_subfield_structure` VALUES ('904', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16156 INSERT INTO `marc_subfield_structure` VALUES ('904', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16157 INSERT INTO `marc_subfield_structure` VALUES ('904', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16158 INSERT INTO `marc_subfield_structure` VALUES ('904', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16159 INSERT INTO `marc_subfield_structure` VALUES ('904', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16160 INSERT INTO `marc_subfield_structure` VALUES ('904', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16161 INSERT INTO `marc_subfield_structure` VALUES ('904', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16162 INSERT INTO `marc_subfield_structure` VALUES ('904', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16163 INSERT INTO `marc_subfield_structure` VALUES ('904', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16164 INSERT INTO `marc_subfield_structure` VALUES ('904', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16165 INSERT INTO `marc_subfield_structure` VALUES ('904', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16166 INSERT INTO `marc_subfield_structure` VALUES ('904', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16167 INSERT INTO `marc_subfield_structure` VALUES ('904', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16168 INSERT INTO `marc_subfield_structure` VALUES ('904', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16169 INSERT INTO `marc_subfield_structure` VALUES ('904', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16170 INSERT INTO `marc_subfield_structure` VALUES ('904', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16171 INSERT INTO `marc_subfield_structure` VALUES ('905', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16172 INSERT INTO `marc_subfield_structure` VALUES ('905', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16173 INSERT INTO `marc_subfield_structure` VALUES ('905', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16174 INSERT INTO `marc_subfield_structure` VALUES ('905', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16175 INSERT INTO `marc_subfield_structure` VALUES ('905', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16176 INSERT INTO `marc_subfield_structure` VALUES ('905', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16177 INSERT INTO `marc_subfield_structure` VALUES ('905', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16178 INSERT INTO `marc_subfield_structure` VALUES ('905', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16179 INSERT INTO `marc_subfield_structure` VALUES ('905', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16180 INSERT INTO `marc_subfield_structure` VALUES ('905', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16181 INSERT INTO `marc_subfield_structure` VALUES ('905', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16182 INSERT INTO `marc_subfield_structure` VALUES ('905', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16183 INSERT INTO `marc_subfield_structure` VALUES ('905', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16184 INSERT INTO `marc_subfield_structure` VALUES ('905', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16185 INSERT INTO `marc_subfield_structure` VALUES ('905', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16186 INSERT INTO `marc_subfield_structure` VALUES ('905', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16187 INSERT INTO `marc_subfield_structure` VALUES ('905', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16188 INSERT INTO `marc_subfield_structure` VALUES ('905', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16189 INSERT INTO `marc_subfield_structure` VALUES ('905', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16190 INSERT INTO `marc_subfield_structure` VALUES ('905', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16191 INSERT INTO `marc_subfield_structure` VALUES ('905', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16192 INSERT INTO `marc_subfield_structure` VALUES ('905', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16193 INSERT INTO `marc_subfield_structure` VALUES ('905', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16194 INSERT INTO `marc_subfield_structure` VALUES ('905', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16195 INSERT INTO `marc_subfield_structure` VALUES ('905', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16196 INSERT INTO `marc_subfield_structure` VALUES ('905', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16197 INSERT INTO `marc_subfield_structure` VALUES ('905', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16198 INSERT INTO `marc_subfield_structure` VALUES ('905', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16199 INSERT INTO `marc_subfield_structure` VALUES ('905', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16200 INSERT INTO `marc_subfield_structure` VALUES ('905', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16201 INSERT INTO `marc_subfield_structure` VALUES ('905', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16202 INSERT INTO `marc_subfield_structure` VALUES ('905', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16203 INSERT INTO `marc_subfield_structure` VALUES ('905', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16204 INSERT INTO `marc_subfield_structure` VALUES ('905', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16205 INSERT INTO `marc_subfield_structure` VALUES ('905', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16206 INSERT INTO `marc_subfield_structure` VALUES ('905', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16207 INSERT INTO `marc_subfield_structure` VALUES ('906', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16208 INSERT INTO `marc_subfield_structure` VALUES ('906', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16209 INSERT INTO `marc_subfield_structure` VALUES ('906', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16210 INSERT INTO `marc_subfield_structure` VALUES ('906', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16211 INSERT INTO `marc_subfield_structure` VALUES ('906', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16212 INSERT INTO `marc_subfield_structure` VALUES ('906', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16213 INSERT INTO `marc_subfield_structure` VALUES ('906', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16214 INSERT INTO `marc_subfield_structure` VALUES ('906', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16215 INSERT INTO `marc_subfield_structure` VALUES ('906', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16216 INSERT INTO `marc_subfield_structure` VALUES ('906', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16217 INSERT INTO `marc_subfield_structure` VALUES ('906', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16218 INSERT INTO `marc_subfield_structure` VALUES ('906', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16219 INSERT INTO `marc_subfield_structure` VALUES ('906', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16220 INSERT INTO `marc_subfield_structure` VALUES ('906', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16221 INSERT INTO `marc_subfield_structure` VALUES ('906', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16222 INSERT INTO `marc_subfield_structure` VALUES ('906', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16223 INSERT INTO `marc_subfield_structure` VALUES ('906', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16224 INSERT INTO `marc_subfield_structure` VALUES ('906', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16225 INSERT INTO `marc_subfield_structure` VALUES ('906', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16226 INSERT INTO `marc_subfield_structure` VALUES ('906', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16227 INSERT INTO `marc_subfield_structure` VALUES ('906', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16228 INSERT INTO `marc_subfield_structure` VALUES ('906', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16229 INSERT INTO `marc_subfield_structure` VALUES ('906', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16230 INSERT INTO `marc_subfield_structure` VALUES ('906', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16231 INSERT INTO `marc_subfield_structure` VALUES ('906', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16232 INSERT INTO `marc_subfield_structure` VALUES ('906', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16233 INSERT INTO `marc_subfield_structure` VALUES ('906', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16234 INSERT INTO `marc_subfield_structure` VALUES ('906', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16235 INSERT INTO `marc_subfield_structure` VALUES ('906', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16236 INSERT INTO `marc_subfield_structure` VALUES ('906', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16237 INSERT INTO `marc_subfield_structure` VALUES ('906', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16238 INSERT INTO `marc_subfield_structure` VALUES ('906', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16239 INSERT INTO `marc_subfield_structure` VALUES ('906', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16240 INSERT INTO `marc_subfield_structure` VALUES ('906', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16241 INSERT INTO `marc_subfield_structure` VALUES ('906', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16242 INSERT INTO `marc_subfield_structure` VALUES ('906', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16243 INSERT INTO `marc_subfield_structure` VALUES ('907', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16244 INSERT INTO `marc_subfield_structure` VALUES ('907', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16245 INSERT INTO `marc_subfield_structure` VALUES ('907', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16246 INSERT INTO `marc_subfield_structure` VALUES ('907', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16247 INSERT INTO `marc_subfield_structure` VALUES ('907', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16248 INSERT INTO `marc_subfield_structure` VALUES ('907', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16249 INSERT INTO `marc_subfield_structure` VALUES ('907', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16250 INSERT INTO `marc_subfield_structure` VALUES ('907', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16251 INSERT INTO `marc_subfield_structure` VALUES ('907', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16252 INSERT INTO `marc_subfield_structure` VALUES ('907', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16253 INSERT INTO `marc_subfield_structure` VALUES ('907', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16254 INSERT INTO `marc_subfield_structure` VALUES ('907', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16255 INSERT INTO `marc_subfield_structure` VALUES ('907', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16256 INSERT INTO `marc_subfield_structure` VALUES ('907', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16257 INSERT INTO `marc_subfield_structure` VALUES ('907', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16258 INSERT INTO `marc_subfield_structure` VALUES ('907', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16259 INSERT INTO `marc_subfield_structure` VALUES ('907', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16260 INSERT INTO `marc_subfield_structure` VALUES ('907', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16261 INSERT INTO `marc_subfield_structure` VALUES ('907', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16262 INSERT INTO `marc_subfield_structure` VALUES ('907', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16263 INSERT INTO `marc_subfield_structure` VALUES ('907', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16264 INSERT INTO `marc_subfield_structure` VALUES ('907', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16265 INSERT INTO `marc_subfield_structure` VALUES ('907', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16266 INSERT INTO `marc_subfield_structure` VALUES ('907', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16267 INSERT INTO `marc_subfield_structure` VALUES ('907', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16268 INSERT INTO `marc_subfield_structure` VALUES ('907', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16269 INSERT INTO `marc_subfield_structure` VALUES ('907', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16270 INSERT INTO `marc_subfield_structure` VALUES ('907', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16271 INSERT INTO `marc_subfield_structure` VALUES ('907', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16272 INSERT INTO `marc_subfield_structure` VALUES ('907', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16273 INSERT INTO `marc_subfield_structure` VALUES ('907', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16274 INSERT INTO `marc_subfield_structure` VALUES ('907', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16275 INSERT INTO `marc_subfield_structure` VALUES ('907', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16276 INSERT INTO `marc_subfield_structure` VALUES ('907', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16277 INSERT INTO `marc_subfield_structure` VALUES ('907', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16278 INSERT INTO `marc_subfield_structure` VALUES ('907', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16279 INSERT INTO `marc_subfield_structure` VALUES ('908', 'a', 'Put command parameter', 'Put command parameter', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16280 INSERT INTO `marc_subfield_structure` VALUES ('910', '4', 'Relator code', 'Relator code', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16281 INSERT INTO `marc_subfield_structure` VALUES ('910', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16282 INSERT INTO `marc_subfield_structure` VALUES ('910', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16283 INSERT INTO `marc_subfield_structure` VALUES ('910', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16284 INSERT INTO `marc_subfield_structure` VALUES ('910', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16285 INSERT INTO `marc_subfield_structure` VALUES ('910', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16286 INSERT INTO `marc_subfield_structure` VALUES ('910', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16287 INSERT INTO `marc_subfield_structure` VALUES ('910', 'e', 'Relator term', 'Relator term', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16288 INSERT INTO `marc_subfield_structure` VALUES ('910', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16289 INSERT INTO `marc_subfield_structure` VALUES ('910', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16290 INSERT INTO `marc_subfield_structure` VALUES ('910', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16291 INSERT INTO `marc_subfield_structure` VALUES ('910', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16292 INSERT INTO `marc_subfield_structure` VALUES ('910', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16293 INSERT INTO `marc_subfield_structure` VALUES ('910', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16294 INSERT INTO `marc_subfield_structure` VALUES ('910', 't', 'Title of a work', 'Title of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16295 INSERT INTO `marc_subfield_structure` VALUES ('910', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16296 INSERT INTO `marc_subfield_structure` VALUES ('91o', 'a', 'User-option data', 'User-option data', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16297 INSERT INTO `marc_subfield_structure` VALUES ('91r', 'a', 'RLG standards note', 'RLG standards note', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16298 INSERT INTO `marc_subfield_structure` VALUES ('911', '4', 'Relator code', 'Relator code', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16299 INSERT INTO `marc_subfield_structure` VALUES ('911', '6', 'Linkage', 'Linkage', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16300 INSERT INTO `marc_subfield_structure` VALUES ('911', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16301 INSERT INTO `marc_subfield_structure` VALUES ('911', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16302 INSERT INTO `marc_subfield_structure` VALUES ('911', 'b', 'Number [OBSOLETE]', 'Number [OBSOLETE]', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16303 INSERT INTO `marc_subfield_structure` VALUES ('911', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16304 INSERT INTO `marc_subfield_structure` VALUES ('911', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16305 INSERT INTO `marc_subfield_structure` VALUES ('911', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16306 INSERT INTO `marc_subfield_structure` VALUES ('911', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16307 INSERT INTO `marc_subfield_structure` VALUES ('911', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16308 INSERT INTO `marc_subfield_structure` VALUES ('911', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16309 INSERT INTO `marc_subfield_structure` VALUES ('911', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16310 INSERT INTO `marc_subfield_structure` VALUES ('911', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16311 INSERT INTO `marc_subfield_structure` VALUES ('911', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16312 INSERT INTO `marc_subfield_structure` VALUES ('911', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16313 INSERT INTO `marc_subfield_structure` VALUES ('911', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16314 INSERT INTO `marc_subfield_structure` VALUES ('911', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16315 INSERT INTO `marc_subfield_structure` VALUES ('930', '6', 'Linkage', 'Linkage', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16316 INSERT INTO `marc_subfield_structure` VALUES ('930', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16317 INSERT INTO `marc_subfield_structure` VALUES ('930', 'a', 'Uniform title', 'Uniform title', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16318 INSERT INTO `marc_subfield_structure` VALUES ('930', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16319 INSERT INTO `marc_subfield_structure` VALUES ('930', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16320 INSERT INTO `marc_subfield_structure` VALUES ('930', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16321 INSERT INTO `marc_subfield_structure` VALUES ('930', 'h', 'Medium', 'Medium', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16322 INSERT INTO `marc_subfield_structure` VALUES ('930', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16323 INSERT INTO `marc_subfield_structure` VALUES ('930', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16324 INSERT INTO `marc_subfield_structure` VALUES ('930', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16325 INSERT INTO `marc_subfield_structure` VALUES ('930', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16326 INSERT INTO `marc_subfield_structure` VALUES ('930', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16327 INSERT INTO `marc_subfield_structure` VALUES ('930', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16328 INSERT INTO `marc_subfield_structure` VALUES ('930', 'r', 'Key for music', 'Key for music', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16329 INSERT INTO `marc_subfield_structure` VALUES ('930', 's', 'Version', 'Version', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16330 INSERT INTO `marc_subfield_structure` VALUES ('930', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16331 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'a', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
16332 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'b', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
16333 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'c', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
16334 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'd', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
16335 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'e', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
16336 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'f', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
16337 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'g', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
16338 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'h', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
16339 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'i', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
16340 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'k', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
16341 INSERT INTO `marc_subfield_structure` VALUES ('936', 'a', 'OCLC control number(s) of parallel record(s) (OCLC); Piece used for cataloging, PUC (RLIN)', 'OCLC control number(s) of parallel record(s) (OCLC); Piece used for cataloging, PUC (RLIN)', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16342 INSERT INTO `marc_subfield_structure` VALUES ('940', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16343 INSERT INTO `marc_subfield_structure` VALUES ('940', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16344 INSERT INTO `marc_subfield_structure` VALUES ('940', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 9, '', '', '', 1, -6, 'ASMP_VIDEORECORDINGS', '', '');
16345 INSERT INTO `marc_subfield_structure` VALUES ('940', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16346 INSERT INTO `marc_subfield_structure` VALUES ('940', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16347 INSERT INTO `marc_subfield_structure` VALUES ('940', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16348 INSERT INTO `marc_subfield_structure` VALUES ('940', 'h', 'Medium', 'Medium', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16349 INSERT INTO `marc_subfield_structure` VALUES ('940', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16350 INSERT INTO `marc_subfield_structure` VALUES ('940', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16351 INSERT INTO `marc_subfield_structure` VALUES ('940', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16352 INSERT INTO `marc_subfield_structure` VALUES ('940', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16353 INSERT INTO `marc_subfield_structure` VALUES ('940', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16354 INSERT INTO `marc_subfield_structure` VALUES ('940', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16355 INSERT INTO `marc_subfield_structure` VALUES ('940', 'r', 'Key for music', 'Key for music', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16356 INSERT INTO `marc_subfield_structure` VALUES ('940', 's', 'Version', 'Version', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16357 INSERT INTO `marc_subfield_structure` VALUES ('941', 'a', 'Romanized title', 'Romanized title', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16358 INSERT INTO `marc_subfield_structure` VALUES ('941', 'h', 'Medium', 'Medium', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16359 INSERT INTO `marc_subfield_structure` VALUES ('943', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16360 INSERT INTO `marc_subfield_structure` VALUES ('943', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16361 INSERT INTO `marc_subfield_structure` VALUES ('943', 'a', 'Uniform title', 'Unifor title', 0, 0, '', 9, '', '', '', 1, 5, 'ASMP_VIDEORECORDINGS', '', '130');
16362 INSERT INTO `marc_subfield_structure` VALUES ('943', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16363 INSERT INTO `marc_subfield_structure` VALUES ('943', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16364 INSERT INTO `marc_subfield_structure` VALUES ('943', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16365 INSERT INTO `marc_subfield_structure` VALUES ('943', 'h', 'Medium', 'Medium', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16366 INSERT INTO `marc_subfield_structure` VALUES ('943', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16367 INSERT INTO `marc_subfield_structure` VALUES ('943', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16368 INSERT INTO `marc_subfield_structure` VALUES ('943', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16369 INSERT INTO `marc_subfield_structure` VALUES ('943', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16370 INSERT INTO `marc_subfield_structure` VALUES ('943', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16371 INSERT INTO `marc_subfield_structure` VALUES ('943', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16372 INSERT INTO `marc_subfield_structure` VALUES ('943', 'r', 'Key for music', 'Key for music', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16373 INSERT INTO `marc_subfield_structure` VALUES ('943', 's', 'Version', 'Version', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16374 INSERT INTO `marc_subfield_structure` VALUES ('945', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16375 INSERT INTO `marc_subfield_structure` VALUES ('945', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16376 INSERT INTO `marc_subfield_structure` VALUES ('945', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16377 INSERT INTO `marc_subfield_structure` VALUES ('945', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16378 INSERT INTO `marc_subfield_structure` VALUES ('945', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16379 INSERT INTO `marc_subfield_structure` VALUES ('945', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16380 INSERT INTO `marc_subfield_structure` VALUES ('945', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16381 INSERT INTO `marc_subfield_structure` VALUES ('945', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16382 INSERT INTO `marc_subfield_structure` VALUES ('945', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16383 INSERT INTO `marc_subfield_structure` VALUES ('945', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16384 INSERT INTO `marc_subfield_structure` VALUES ('945', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16385 INSERT INTO `marc_subfield_structure` VALUES ('945', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16386 INSERT INTO `marc_subfield_structure` VALUES ('945', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16387 INSERT INTO `marc_subfield_structure` VALUES ('945', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16388 INSERT INTO `marc_subfield_structure` VALUES ('945', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16389 INSERT INTO `marc_subfield_structure` VALUES ('945', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16390 INSERT INTO `marc_subfield_structure` VALUES ('945', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16391 INSERT INTO `marc_subfield_structure` VALUES ('945', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16392 INSERT INTO `marc_subfield_structure` VALUES ('945', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16393 INSERT INTO `marc_subfield_structure` VALUES ('945', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16394 INSERT INTO `marc_subfield_structure` VALUES ('945', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16395 INSERT INTO `marc_subfield_structure` VALUES ('945', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16396 INSERT INTO `marc_subfield_structure` VALUES ('945', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16397 INSERT INTO `marc_subfield_structure` VALUES ('945', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16398 INSERT INTO `marc_subfield_structure` VALUES ('945', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16399 INSERT INTO `marc_subfield_structure` VALUES ('945', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16400 INSERT INTO `marc_subfield_structure` VALUES ('945', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16401 INSERT INTO `marc_subfield_structure` VALUES ('945', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16402 INSERT INTO `marc_subfield_structure` VALUES ('945', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16403 INSERT INTO `marc_subfield_structure` VALUES ('945', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16404 INSERT INTO `marc_subfield_structure` VALUES ('945', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16405 INSERT INTO `marc_subfield_structure` VALUES ('945', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16406 INSERT INTO `marc_subfield_structure` VALUES ('945', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16407 INSERT INTO `marc_subfield_structure` VALUES ('945', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16408 INSERT INTO `marc_subfield_structure` VALUES ('945', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16409 INSERT INTO `marc_subfield_structure` VALUES ('945', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16410 INSERT INTO `marc_subfield_structure` VALUES ('94c', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16411 INSERT INTO `marc_subfield_structure` VALUES ('94c', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16412 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'a', 'Title', 'Title', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16413 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'b', 'Remainder of title', 'Remainder of title', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16414 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'c', 'Statement of responsibility, etc', 'Statement of responsibility, etc', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16415 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'd', 'Designation of section/part/series (SE) [OBSOLETE]', 'Designation of section section/part/series (SE) [OBSOLETE]', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16416 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'e', 'Name of part/section/series (SE) [OBSOLETE]', 'Name of part/section/series (SE) [OBSOLETE]', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16417 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'f', 'Inclusive dates', 'Inclusive dates', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16418 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'g', 'Bulk dates', 'Bulk dates', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16419 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'h', 'Medium', 'Medium', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16420 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'k', 'Form', 'Form', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16421 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16422 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16423 INSERT INTO `marc_subfield_structure` VALUES ('94c', 's', 'Version', 'Version', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16424 INSERT INTO `marc_subfield_structure` VALUES ('946', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16425 INSERT INTO `marc_subfield_structure` VALUES ('946', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16426 INSERT INTO `marc_subfield_structure` VALUES ('946', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16427 INSERT INTO `marc_subfield_structure` VALUES ('946', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16428 INSERT INTO `marc_subfield_structure` VALUES ('946', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16429 INSERT INTO `marc_subfield_structure` VALUES ('946', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16430 INSERT INTO `marc_subfield_structure` VALUES ('946', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16431 INSERT INTO `marc_subfield_structure` VALUES ('946', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16432 INSERT INTO `marc_subfield_structure` VALUES ('946', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16433 INSERT INTO `marc_subfield_structure` VALUES ('946', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16434 INSERT INTO `marc_subfield_structure` VALUES ('946', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16435 INSERT INTO `marc_subfield_structure` VALUES ('946', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16436 INSERT INTO `marc_subfield_structure` VALUES ('946', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16437 INSERT INTO `marc_subfield_structure` VALUES ('946', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16438 INSERT INTO `marc_subfield_structure` VALUES ('946', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16439 INSERT INTO `marc_subfield_structure` VALUES ('946', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16440 INSERT INTO `marc_subfield_structure` VALUES ('946', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16441 INSERT INTO `marc_subfield_structure` VALUES ('946', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16442 INSERT INTO `marc_subfield_structure` VALUES ('946', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16443 INSERT INTO `marc_subfield_structure` VALUES ('946', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16444 INSERT INTO `marc_subfield_structure` VALUES ('946', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16445 INSERT INTO `marc_subfield_structure` VALUES ('946', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16446 INSERT INTO `marc_subfield_structure` VALUES ('946', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16447 INSERT INTO `marc_subfield_structure` VALUES ('946', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16448 INSERT INTO `marc_subfield_structure` VALUES ('946', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16449 INSERT INTO `marc_subfield_structure` VALUES ('946', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16450 INSERT INTO `marc_subfield_structure` VALUES ('946', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16451 INSERT INTO `marc_subfield_structure` VALUES ('946', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16452 INSERT INTO `marc_subfield_structure` VALUES ('946', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16453 INSERT INTO `marc_subfield_structure` VALUES ('946', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16454 INSERT INTO `marc_subfield_structure` VALUES ('946', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16455 INSERT INTO `marc_subfield_structure` VALUES ('946', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16456 INSERT INTO `marc_subfield_structure` VALUES ('946', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16457 INSERT INTO `marc_subfield_structure` VALUES ('946', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16458 INSERT INTO `marc_subfield_structure` VALUES ('946', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16459 INSERT INTO `marc_subfield_structure` VALUES ('946', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16460 INSERT INTO `marc_subfield_structure` VALUES ('947', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16461 INSERT INTO `marc_subfield_structure` VALUES ('947', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16462 INSERT INTO `marc_subfield_structure` VALUES ('947', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16463 INSERT INTO `marc_subfield_structure` VALUES ('947', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16464 INSERT INTO `marc_subfield_structure` VALUES ('947', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16465 INSERT INTO `marc_subfield_structure` VALUES ('947', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16466 INSERT INTO `marc_subfield_structure` VALUES ('947', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16467 INSERT INTO `marc_subfield_structure` VALUES ('947', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16468 INSERT INTO `marc_subfield_structure` VALUES ('947', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16469 INSERT INTO `marc_subfield_structure` VALUES ('947', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16470 INSERT INTO `marc_subfield_structure` VALUES ('947', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16471 INSERT INTO `marc_subfield_structure` VALUES ('947', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16472 INSERT INTO `marc_subfield_structure` VALUES ('947', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16473 INSERT INTO `marc_subfield_structure` VALUES ('947', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16474 INSERT INTO `marc_subfield_structure` VALUES ('947', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16475 INSERT INTO `marc_subfield_structure` VALUES ('947', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16476 INSERT INTO `marc_subfield_structure` VALUES ('947', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16477 INSERT INTO `marc_subfield_structure` VALUES ('947', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16478 INSERT INTO `marc_subfield_structure` VALUES ('947', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16479 INSERT INTO `marc_subfield_structure` VALUES ('947', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16480 INSERT INTO `marc_subfield_structure` VALUES ('947', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16481 INSERT INTO `marc_subfield_structure` VALUES ('947', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16482 INSERT INTO `marc_subfield_structure` VALUES ('947', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16483 INSERT INTO `marc_subfield_structure` VALUES ('947', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16484 INSERT INTO `marc_subfield_structure` VALUES ('947', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16485 INSERT INTO `marc_subfield_structure` VALUES ('947', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16486 INSERT INTO `marc_subfield_structure` VALUES ('947', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16487 INSERT INTO `marc_subfield_structure` VALUES ('947', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16488 INSERT INTO `marc_subfield_structure` VALUES ('947', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16489 INSERT INTO `marc_subfield_structure` VALUES ('947', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16490 INSERT INTO `marc_subfield_structure` VALUES ('947', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16491 INSERT INTO `marc_subfield_structure` VALUES ('947', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16492 INSERT INTO `marc_subfield_structure` VALUES ('947', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16493 INSERT INTO `marc_subfield_structure` VALUES ('947', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16494 INSERT INTO `marc_subfield_structure` VALUES ('947', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16495 INSERT INTO `marc_subfield_structure` VALUES ('947', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16496 INSERT INTO `marc_subfield_structure` VALUES ('948', '0', '0 (OCLC)', '0 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16497 INSERT INTO `marc_subfield_structure` VALUES ('948', '1', '1 (OCLC)', '1 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16498 INSERT INTO `marc_subfield_structure` VALUES ('948', '2', '2 (OCLC)', '2 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16499 INSERT INTO `marc_subfield_structure` VALUES ('948', '3', '3 (OCLC)', '3 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16500 INSERT INTO `marc_subfield_structure` VALUES ('948', '4', '4 (OCLC)', '4 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16501 INSERT INTO `marc_subfield_structure` VALUES ('948', '5', '5 (OCLC)', '5 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16502 INSERT INTO `marc_subfield_structure` VALUES ('948', '6', '6 (OCLC)', '6 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16503 INSERT INTO `marc_subfield_structure` VALUES ('948', '7', '7 (OCLC)', '7 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16504 INSERT INTO `marc_subfield_structure` VALUES ('948', '8', '8 (OCLC)', '8 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16505 INSERT INTO `marc_subfield_structure` VALUES ('948', '9', '9 (OCLC)', '9 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16506 INSERT INTO `marc_subfield_structure` VALUES ('948', 'a', 'Series part designator, SPT (RLIN)', 'Series part designator, SPT (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16507 INSERT INTO `marc_subfield_structure` VALUES ('948', 'b', 'b (OCLC)', 'b (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16508 INSERT INTO `marc_subfield_structure` VALUES ('948', 'c', 'c (OCLC)', 'c (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16509 INSERT INTO `marc_subfield_structure` VALUES ('948', 'd', 'd (OCLC)', 'd (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16510 INSERT INTO `marc_subfield_structure` VALUES ('948', 'e', 'e (OCLC)', 'e (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16511 INSERT INTO `marc_subfield_structure` VALUES ('948', 'f', 'f (OCLC)', 'f (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16512 INSERT INTO `marc_subfield_structure` VALUES ('948', 'g', 'g (OCLC)', 'g (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16513 INSERT INTO `marc_subfield_structure` VALUES ('948', 'h', 'h (OCLC)', 'h (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16514 INSERT INTO `marc_subfield_structure` VALUES ('948', 'i', 'i (OCLC)', 'i (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16515 INSERT INTO `marc_subfield_structure` VALUES ('948', 'j', 'j (OCLC)', 'j (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16516 INSERT INTO `marc_subfield_structure` VALUES ('948', 'k', 'k (OCLC)', 'k (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16517 INSERT INTO `marc_subfield_structure` VALUES ('948', 'l', 'l (OCLC)', 'l (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16518 INSERT INTO `marc_subfield_structure` VALUES ('948', 'm', 'm (OCLC)', 'm (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16519 INSERT INTO `marc_subfield_structure` VALUES ('948', 'n', 'n (OCLC)', 'n (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16520 INSERT INTO `marc_subfield_structure` VALUES ('948', 'o', 'o (OCLC)', 'o (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16521 INSERT INTO `marc_subfield_structure` VALUES ('948', 'p', 'p (OCLC)', 'p (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16522 INSERT INTO `marc_subfield_structure` VALUES ('948', 'q', 'q (OCLC)', 'q (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16523 INSERT INTO `marc_subfield_structure` VALUES ('948', 'r', 'r (OCLC)', 'r (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16524 INSERT INTO `marc_subfield_structure` VALUES ('948', 's', 's (OCLC)', 's (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16525 INSERT INTO `marc_subfield_structure` VALUES ('948', 't', 't (OCLC)', 't (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16526 INSERT INTO `marc_subfield_structure` VALUES ('948', 'u', 'u (OCLC)', 'u (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16527 INSERT INTO `marc_subfield_structure` VALUES ('948', 'v', 'v (OCLC)', 'v (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16528 INSERT INTO `marc_subfield_structure` VALUES ('948', 'w', 'w (OCLC)', 'w (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16529 INSERT INTO `marc_subfield_structure` VALUES ('948', 'x', 'x (OCLC)', 'x (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16530 INSERT INTO `marc_subfield_structure` VALUES ('948', 'y', 'y (OCLC)', 'y (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16531 INSERT INTO `marc_subfield_structure` VALUES ('948', 'z', 'z (OCLC)', 'z (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16532 INSERT INTO `marc_subfield_structure` VALUES ('949', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16533 INSERT INTO `marc_subfield_structure` VALUES ('949', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16534 INSERT INTO `marc_subfield_structure` VALUES ('949', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16535 INSERT INTO `marc_subfield_structure` VALUES ('949', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16536 INSERT INTO `marc_subfield_structure` VALUES ('949', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16537 INSERT INTO `marc_subfield_structure` VALUES ('949', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16538 INSERT INTO `marc_subfield_structure` VALUES ('949', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16539 INSERT INTO `marc_subfield_structure` VALUES ('949', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16540 INSERT INTO `marc_subfield_structure` VALUES ('949', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16541 INSERT INTO `marc_subfield_structure` VALUES ('949', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16542 INSERT INTO `marc_subfield_structure` VALUES ('949', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16543 INSERT INTO `marc_subfield_structure` VALUES ('949', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16544 INSERT INTO `marc_subfield_structure` VALUES ('949', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16545 INSERT INTO `marc_subfield_structure` VALUES ('949', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16546 INSERT INTO `marc_subfield_structure` VALUES ('949', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16547 INSERT INTO `marc_subfield_structure` VALUES ('949', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16548 INSERT INTO `marc_subfield_structure` VALUES ('949', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16549 INSERT INTO `marc_subfield_structure` VALUES ('949', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16550 INSERT INTO `marc_subfield_structure` VALUES ('949', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16551 INSERT INTO `marc_subfield_structure` VALUES ('949', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16552 INSERT INTO `marc_subfield_structure` VALUES ('949', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16553 INSERT INTO `marc_subfield_structure` VALUES ('949', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16554 INSERT INTO `marc_subfield_structure` VALUES ('949', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16555 INSERT INTO `marc_subfield_structure` VALUES ('949', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16556 INSERT INTO `marc_subfield_structure` VALUES ('949', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16557 INSERT INTO `marc_subfield_structure` VALUES ('949', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16558 INSERT INTO `marc_subfield_structure` VALUES ('949', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16559 INSERT INTO `marc_subfield_structure` VALUES ('949', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16560 INSERT INTO `marc_subfield_structure` VALUES ('949', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16561 INSERT INTO `marc_subfield_structure` VALUES ('949', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16562 INSERT INTO `marc_subfield_structure` VALUES ('949', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16563 INSERT INTO `marc_subfield_structure` VALUES ('949', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16564 INSERT INTO `marc_subfield_structure` VALUES ('949', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16565 INSERT INTO `marc_subfield_structure` VALUES ('949', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16566 INSERT INTO `marc_subfield_structure` VALUES ('949', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16567 INSERT INTO `marc_subfield_structure` VALUES ('949', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16568 INSERT INTO `marc_subfield_structure` VALUES ('94a', 'a', 'ATN', 'ATN', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16569 INSERT INTO `marc_subfield_structure` VALUES ('94a', 'b', 'ATN', 'ATN', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16570 INSERT INTO `marc_subfield_structure` VALUES ('94a', 'c', 'ATN', 'ATN', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16571 INSERT INTO `marc_subfield_structure` VALUES ('94a', 'd', 'ATN', 'ATN', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16572 INSERT INTO `marc_subfield_structure` VALUES ('94a', 'e', 'ATN', 'ATN', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16573 INSERT INTO `marc_subfield_structure` VALUES ('94b', 'a', 'ATC', 'ATC', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16574 INSERT INTO `marc_subfield_structure` VALUES ('94b', 'b', 'SNR', 'SNR', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16575 INSERT INTO `marc_subfield_structure` VALUES ('950', 'a', 'Classification number, LCAL (RLIN)', 'Classification number, LCAL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16576 INSERT INTO `marc_subfield_structure` VALUES ('950', 'b', 'Book number/undivided call number, LCAL (RLIN)', 'Book number/undivided call number, LCAL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16577 INSERT INTO `marc_subfield_structure` VALUES ('950', 'd', 'Additional free-text stamp above the call number, LCAL (RLIN)', 'Additional free-text stamp above the call number, LCAL (RLIN)', 1, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16578 INSERT INTO `marc_subfield_structure` VALUES ('950', 'e', 'Additional free-text or profiled stamp below the call number, LCAL (RLIN)', 'Additional free-text or profiled stamp below the call number, LCAL (RLIN)', 1, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16579 INSERT INTO `marc_subfield_structure` VALUES ('950', 'f', 'Location-level footnote, LFNT (RLIN)', 'Location-level footnote, LFNT (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16580 INSERT INTO `marc_subfield_structure` VALUES ('950', 'h', 'Location-level output transaction history, LHST (RLIN)', 'Location-level output transaction history, LHST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16581 INSERT INTO `marc_subfield_structure` VALUES ('950', 'i', 'Location-level extra card request, LEXT (RLIN)', 'Location-level extra card request, LEXT (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16582 INSERT INTO `marc_subfield_structure` VALUES ('950', 'l', 'Permanent shelving location, LOC (RLIN)', 'Permanent shelving location, LOC (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16583 INSERT INTO `marc_subfield_structure` VALUES ('950', 'n', 'Location-level additional note, LANT (RLIN)', 'Location-level additional note, LANT (RLIN)', 1, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16584 INSERT INTO `marc_subfield_structure` VALUES ('950', 'p', 'Location-level pathfinder, LPTH (RLIN)', 'Location-level pathfinder, LPTH (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16585 INSERT INTO `marc_subfield_structure` VALUES ('950', 't', 'Location-level field suppression, LFSP (RLIN)', 'Location-level field suppression, LFSP (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16586 INSERT INTO `marc_subfield_structure` VALUES ('950', 'u', 'Non-printing notes, LANT (RLIN)', 'Non-printing notes, LANT (RLIN)', 1, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16587 INSERT INTO `marc_subfield_structure` VALUES ('950', 'v', 'Volumes, LVOL (RLIN)', 'Volumes, LVOL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16588 INSERT INTO `marc_subfield_structure` VALUES ('950', 'w', 'Subscription status code, LANT (RLIN)', 'Subscription status code, LANT (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16589 INSERT INTO `marc_subfield_structure` VALUES ('950', 'y', 'Date, LVOL (RLIN)', 'Date, LVOL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16590 INSERT INTO `marc_subfield_structure` VALUES ('950', 'z', 'Retention, LVOL (RLIN)', 'Retention, LVOL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16591 INSERT INTO `marc_subfield_structure` VALUES ('951', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16592 INSERT INTO `marc_subfield_structure` VALUES ('951', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16593 INSERT INTO `marc_subfield_structure` VALUES ('951', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16594 INSERT INTO `marc_subfield_structure` VALUES ('951', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16595 INSERT INTO `marc_subfield_structure` VALUES ('951', 'a', 'Geographic name', 'Geographic name', 0, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16596 INSERT INTO `marc_subfield_structure` VALUES ('951', 'b', 'Geographic name following place entry element [OBSOLETE]', 'Geographic name following place entry element [OBSOLETE]', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16597 INSERT INTO `marc_subfield_structure` VALUES ('951', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16598 INSERT INTO `marc_subfield_structure` VALUES ('951', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16599 INSERT INTO `marc_subfield_structure` VALUES ('951', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16600 INSERT INTO `marc_subfield_structure` VALUES ('951', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16601 INSERT INTO `marc_subfield_structure` VALUES ('95c', 'a', 'Record ID (RLIN)', 'Record ID (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16602 INSERT INTO `marc_subfield_structure` VALUES ('95c', 'b', 'Institution name (RLIN)', 'Institution name (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16603 INSERT INTO `marc_subfield_structure` VALUES ('95r', '6', 'Linkage', 'Linkage', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
16604 INSERT INTO `marc_subfield_structure` VALUES ('95r', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
16605 INSERT INTO `marc_subfield_structure` VALUES ('95r', 'a', 'Country', 'Country', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
16606 INSERT INTO `marc_subfield_structure` VALUES ('95r', 'b', 'State, province, territory', 'State, province, territory', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
16607 INSERT INTO `marc_subfield_structure` VALUES ('95r', 'c', 'County, region, islands area', 'County, region, islands area', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
16608 INSERT INTO `marc_subfield_structure` VALUES ('95r', 'd', 'City', 'City', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
16609 INSERT INTO `marc_subfield_structure` VALUES ('955', 'a', 'Classification number, CCAL (RLIN)', 'Classification number, CCAL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16610 INSERT INTO `marc_subfield_structure` VALUES ('955', 'b', 'Book number/undivided call number, CCAL (RLIN)', 'Book number/undivided call number, CCAL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16611 INSERT INTO `marc_subfield_structure` VALUES ('955', 'c', 'Copy information and material description, CCAL + MDES (RLIN)', 'Copy information and material description, CCAL + MDES (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16612 INSERT INTO `marc_subfield_structure` VALUES ('955', 'h', 'Copy status--for earlier dates, CST (RLIN)', 'Copy status--for earlier dates, CST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16613 INSERT INTO `marc_subfield_structure` VALUES ('955', 'i', 'Copy status, CST (RLIN)', 'Copy status, CST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16614 INSERT INTO `marc_subfield_structure` VALUES ('955', 'l', 'Permanent shelving location, LOC (RLIN)', 'Permanent shelving location, LOC (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16615 INSERT INTO `marc_subfield_structure` VALUES ('955', 'q', 'Aquisitions control number, HNT (RLIN)', 'Aquisitions control number, HNT (RLIN)', 1, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16616 INSERT INTO `marc_subfield_structure` VALUES ('955', 'r', 'Circulation control number, HNT (RLIN)', 'Circulation control number, HNT (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16617 INSERT INTO `marc_subfield_structure` VALUES ('955', 's', 'Shelflist note, HNT (RLIN)', 'Shelflist note, HNT (RLIN)', 1, 0, '', 9, '', '', '', 1, 5, 'ASMP_VIDEORECORDINGS', '', '');
16618 INSERT INTO `marc_subfield_structure` VALUES ('955', 'u', 'Non-printing notes, HNT (RLIN)', 'Non-printing notes, HNT (RLIN)', 1, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16619 INSERT INTO `marc_subfield_structure` VALUES ('956', '2', 'Access method', 'Access method', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16620 INSERT INTO `marc_subfield_structure` VALUES ('956', '3', 'Materials specified', 'Materials specified', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16621 INSERT INTO `marc_subfield_structure` VALUES ('956', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16622 INSERT INTO `marc_subfield_structure` VALUES ('956', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16623 INSERT INTO `marc_subfield_structure` VALUES ('956', 'a', 'Host name', 'Host name', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16624 INSERT INTO `marc_subfield_structure` VALUES ('956', 'b', 'Access number', 'Access number', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16625 INSERT INTO `marc_subfield_structure` VALUES ('956', 'c', 'Compression information', 'Compression information', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16626 INSERT INTO `marc_subfield_structure` VALUES ('956', 'd', 'Path', 'Path', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16627 INSERT INTO `marc_subfield_structure` VALUES ('956', 'f', 'Electronic name', 'Electronic name', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16628 INSERT INTO `marc_subfield_structure` VALUES ('956', 'h', 'Processor of request', 'Processor of request', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16629 INSERT INTO `marc_subfield_structure` VALUES ('956', 'i', 'Instruction', 'Instruction', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16630 INSERT INTO `marc_subfield_structure` VALUES ('956', 'j', 'Bits per second', 'Bits per second', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16631 INSERT INTO `marc_subfield_structure` VALUES ('956', 'k', 'Password', 'Password', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16632 INSERT INTO `marc_subfield_structure` VALUES ('956', 'l', 'Logon', 'Logon', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16633 INSERT INTO `marc_subfield_structure` VALUES ('956', 'm', 'Contact for access assistance', 'Contact for access assistance', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16634 INSERT INTO `marc_subfield_structure` VALUES ('956', 'n', 'Name of location of host in subfield', 'Name of location of host in subfield', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16635 INSERT INTO `marc_subfield_structure` VALUES ('956', 'o', 'Operating system', 'Operating system', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16636 INSERT INTO `marc_subfield_structure` VALUES ('956', 'p', 'Port', 'Port', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16637 INSERT INTO `marc_subfield_structure` VALUES ('956', 'q', 'Electronic format type', 'Electronic format type', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16638 INSERT INTO `marc_subfield_structure` VALUES ('956', 'r', 'Settings', 'Settings', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16639 INSERT INTO `marc_subfield_structure` VALUES ('956', 's', 'File size', 'File size', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16640 INSERT INTO `marc_subfield_structure` VALUES ('956', 't', 'Terminal emulation', 'Terminal emulation', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16641 INSERT INTO `marc_subfield_structure` VALUES ('956', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 9, '', '', '', 1, -6, 'ASMP_VIDEORECORDINGS', '', '');
16642 INSERT INTO `marc_subfield_structure` VALUES ('956', 'v', 'Hours access method available', 'Hours access method available', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16643 INSERT INTO `marc_subfield_structure` VALUES ('956', 'w', 'Record control number', 'Record control number', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16644 INSERT INTO `marc_subfield_structure` VALUES ('956', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 9, '', '', '', 0, 6, 'ASMP_VIDEORECORDINGS', '', '');
16645 INSERT INTO `marc_subfield_structure` VALUES ('956', 'y', 'Link text', 'Link text', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16646 INSERT INTO `marc_subfield_structure` VALUES ('956', 'z', 'Public note', 'Public note', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16647 INSERT INTO `marc_subfield_structure` VALUES ('960', '3', 'Materials specified, MATL', 'Materials specified, MATL', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16648 INSERT INTO `marc_subfield_structure` VALUES ('960', 'a', 'Physical location, PLOC (RLIN)', 'Physical location, PLOC (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16649 INSERT INTO `marc_subfield_structure` VALUES ('967', 'a', 'GNR (RLIN)', 'GNR (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16650 INSERT INTO `marc_subfield_structure` VALUES ('967', 'c', 'PSI (RLIN)', 'PSI (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16651 INSERT INTO `marc_subfield_structure` VALUES ('980', '4', 'Relator code', 'Relator code', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16652 INSERT INTO `marc_subfield_structure` VALUES ('980', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16653 INSERT INTO `marc_subfield_structure` VALUES ('980', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16654 INSERT INTO `marc_subfield_structure` VALUES ('980', 'a', 'Personal name', 'Personal name', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16655 INSERT INTO `marc_subfield_structure` VALUES ('980', 'b', 'Numeration', 'Numeration', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16656 INSERT INTO `marc_subfield_structure` VALUES ('980', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16657 INSERT INTO `marc_subfield_structure` VALUES ('980', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16658 INSERT INTO `marc_subfield_structure` VALUES ('980', 'e', 'Relator term', 'Relator term', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16659 INSERT INTO `marc_subfield_structure` VALUES ('980', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16660 INSERT INTO `marc_subfield_structure` VALUES ('980', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16661 INSERT INTO `marc_subfield_structure` VALUES ('980', 'h', 'Medium', 'Medium', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16662 INSERT INTO `marc_subfield_structure` VALUES ('980', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16663 INSERT INTO `marc_subfield_structure` VALUES ('980', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16664 INSERT INTO `marc_subfield_structure` VALUES ('980', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16665 INSERT INTO `marc_subfield_structure` VALUES ('980', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16666 INSERT INTO `marc_subfield_structure` VALUES ('980', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16667 INSERT INTO `marc_subfield_structure` VALUES ('980', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16668 INSERT INTO `marc_subfield_structure` VALUES ('980', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16669 INSERT INTO `marc_subfield_structure` VALUES ('980', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16670 INSERT INTO `marc_subfield_structure` VALUES ('980', 'r', 'Key for music', 'Key for music', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16671 INSERT INTO `marc_subfield_structure` VALUES ('980', 's', 'Version', 'Version', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16672 INSERT INTO `marc_subfield_structure` VALUES ('980', 't', 'Title of a work', 'Title of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16673 INSERT INTO `marc_subfield_structure` VALUES ('980', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16674 INSERT INTO `marc_subfield_structure` VALUES ('980', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16675 INSERT INTO `marc_subfield_structure` VALUES ('981', '4', 'Relator code', 'Relator code', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16676 INSERT INTO `marc_subfield_structure` VALUES ('981', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16677 INSERT INTO `marc_subfield_structure` VALUES ('981', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16678 INSERT INTO `marc_subfield_structure` VALUES ('981', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16679 INSERT INTO `marc_subfield_structure` VALUES ('981', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16680 INSERT INTO `marc_subfield_structure` VALUES ('981', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16681 INSERT INTO `marc_subfield_structure` VALUES ('981', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16682 INSERT INTO `marc_subfield_structure` VALUES ('981', 'e', 'Relator term', 'Relator term', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16683 INSERT INTO `marc_subfield_structure` VALUES ('981', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16684 INSERT INTO `marc_subfield_structure` VALUES ('981', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16685 INSERT INTO `marc_subfield_structure` VALUES ('981', 'h', 'Medium', 'Medium', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16686 INSERT INTO `marc_subfield_structure` VALUES ('981', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16687 INSERT INTO `marc_subfield_structure` VALUES ('981', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16688 INSERT INTO `marc_subfield_structure` VALUES ('981', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16689 INSERT INTO `marc_subfield_structure` VALUES ('981', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16690 INSERT INTO `marc_subfield_structure` VALUES ('981', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16691 INSERT INTO `marc_subfield_structure` VALUES ('981', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16692 INSERT INTO `marc_subfield_structure` VALUES ('981', 'r', 'Key for music', 'Key for music', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16693 INSERT INTO `marc_subfield_structure` VALUES ('981', 's', 'Version', 'Version', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16694 INSERT INTO `marc_subfield_structure` VALUES ('981', 't', 'Title of a work', 'Title of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16695 INSERT INTO `marc_subfield_structure` VALUES ('981', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16696 INSERT INTO `marc_subfield_structure` VALUES ('981', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16697 INSERT INTO `marc_subfield_structure` VALUES ('982', '4', 'Relator code', 'Relator code', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16698 INSERT INTO `marc_subfield_structure` VALUES ('982', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16699 INSERT INTO `marc_subfield_structure` VALUES ('982', '8', 'Field link and sequence number ', 'Field link and sequence number ', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16700 INSERT INTO `marc_subfield_structure` VALUES ('982', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16701 INSERT INTO `marc_subfield_structure` VALUES ('982', 'b', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16702 INSERT INTO `marc_subfield_structure` VALUES ('982', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16703 INSERT INTO `marc_subfield_structure` VALUES ('982', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16704 INSERT INTO `marc_subfield_structure` VALUES ('982', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16705 INSERT INTO `marc_subfield_structure` VALUES ('982', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16706 INSERT INTO `marc_subfield_structure` VALUES ('982', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16707 INSERT INTO `marc_subfield_structure` VALUES ('982', 'h', 'Medium', 'Medium', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16708 INSERT INTO `marc_subfield_structure` VALUES ('982', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16709 INSERT INTO `marc_subfield_structure` VALUES ('982', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16710 INSERT INTO `marc_subfield_structure` VALUES ('982', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16711 INSERT INTO `marc_subfield_structure` VALUES ('982', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16712 INSERT INTO `marc_subfield_structure` VALUES ('982', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16713 INSERT INTO `marc_subfield_structure` VALUES ('982', 's', 'Version', 'Version', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16714 INSERT INTO `marc_subfield_structure` VALUES ('982', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16715 INSERT INTO `marc_subfield_structure` VALUES ('982', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16716 INSERT INTO `marc_subfield_structure` VALUES ('982', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16717 INSERT INTO `marc_subfield_structure` VALUES ('983', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16718 INSERT INTO `marc_subfield_structure` VALUES ('983', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16719 INSERT INTO `marc_subfield_structure` VALUES ('983', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16720 INSERT INTO `marc_subfield_structure` VALUES ('983', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16721 INSERT INTO `marc_subfield_structure` VALUES ('983', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16722 INSERT INTO `marc_subfield_structure` VALUES ('983', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16723 INSERT INTO `marc_subfield_structure` VALUES ('983', 'h', 'Medium', 'Medium', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16724 INSERT INTO `marc_subfield_structure` VALUES ('983', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16725 INSERT INTO `marc_subfield_structure` VALUES ('983', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16726 INSERT INTO `marc_subfield_structure` VALUES ('983', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16727 INSERT INTO `marc_subfield_structure` VALUES ('983', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16728 INSERT INTO `marc_subfield_structure` VALUES ('983', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16729 INSERT INTO `marc_subfield_structure` VALUES ('983', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16730 INSERT INTO `marc_subfield_structure` VALUES ('983', 'r', 'Key for music', 'Key for music', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16731 INSERT INTO `marc_subfield_structure` VALUES ('983', 's', 'Version', 'Version', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16732 INSERT INTO `marc_subfield_structure` VALUES ('983', 't', 'Title of a work', 'Title of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16733 INSERT INTO `marc_subfield_structure` VALUES ('983', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16734 INSERT INTO `marc_subfield_structure` VALUES ('984', 'a', 'Holding library identification number', 'Holding library identification number', 0, 0, '', 9, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
16735 INSERT INTO `marc_subfield_structure` VALUES ('984', 'b', 'Physical description codes', 'Physical description codes', 1, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16736 INSERT INTO `marc_subfield_structure` VALUES ('984', 'c', 'Call number', 'Call number', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16737 INSERT INTO `marc_subfield_structure` VALUES ('984', 'd', 'Volume or other numbering', 'Volume or other numbering', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16738 INSERT INTO `marc_subfield_structure` VALUES ('984', 'e', 'Dates', 'Dates', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16739 INSERT INTO `marc_subfield_structure` VALUES ('984', 'f', 'Completeness note', 'Completeness note', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16740 INSERT INTO `marc_subfield_structure` VALUES ('984', 'g', 'Referral note', 'Referral note', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16741 INSERT INTO `marc_subfield_structure` VALUES ('984', 'h', 'Retention note', 'Retention note', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16742 INSERT INTO `marc_subfield_structure` VALUES ('987', 'a', 'Romanization/conversion identifier', 'Romanization/conversion identifier', 0, 0, '', 9, '', '', '', NULL, -6, 'ASMP_VIDEORECORDINGS', '', '');
16743 INSERT INTO `marc_subfield_structure` VALUES ('987', 'b', 'Agency that converted, created or reviewed', 'Agency that converted, created or reviewed', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16744 INSERT INTO `marc_subfield_structure` VALUES ('987', 'c', 'Date of conversion or review', 'Date of conversion or review', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16745 INSERT INTO `marc_subfield_structure` VALUES ('987', 'd', 'Status code', 'Status code ', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16746 INSERT INTO `marc_subfield_structure` VALUES ('987', 'e', 'Version of conversion program used', 'Version of conversion program used', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16747 INSERT INTO `marc_subfield_structure` VALUES ('987', 'f', 'Note', 'Note', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16748 INSERT INTO `marc_subfield_structure` VALUES ('990', 'a', 'Link information for 9XX fields', 'Link information for 9XX fields', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16749 INSERT INTO `marc_subfield_structure` VALUES ('990', 'b', 'Link information for field corresponding to 9XX field', 'Link information for field corresponding to 9XX field', 1, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16750 INSERT INTO `marc_subfield_structure` VALUES ('995', 'a', 'Origine du document, texte libre', 'Origine du document, texte libre', 0, 0, '', 9, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
16751 INSERT INTO `marc_subfield_structure` VALUES ('995', 'b', 'Origine du document, donn&eacute;e cod&eacute;e', '', 0, 0, '', 9, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
16752 INSERT INTO `marc_subfield_structure` VALUES ('995', 'c', '&Eacute;tablissement pr&ecirc;teur ou d&eacute;posant, texte libre', '&Eacute;tablissement pr&ecirc;teur ou d&eacute;posant, texte libre', 0, 0, '', 9, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
16753 INSERT INTO `marc_subfield_structure` VALUES ('995', 'd', '&Eacute;tablissement pr&ecirc;teur ou d&eacute;posant, donn&eacute;e cod&eacute;e', '&Eacute;tablissement pr&ecirc;teur ou d&eacute;posant, donn&eacute;e cod&eacute;e', 0, 0, '', 9, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
16754 INSERT INTO `marc_subfield_structure` VALUES ('995', 'e', 'Genre d&eacute;taill&eacute;', 'Genre d&eacute;taill&eacute;', 0, 0, '', 9, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
16755 INSERT INTO `marc_subfield_structure` VALUES ('995', 'f', 'Code &agrave; barres, suite alphanum&eacute;rique int&eacute;grale', 'Code &agrave; barres, suite alphanum&eacute;rique int&eacute;grale', 0, 0, '', 9, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
16756 INSERT INTO `marc_subfield_structure` VALUES ('995', 'g', 'Code &agrave; barres, pr&eacute;fixe', 'Code &agrave; barres, pr&eacute;fixe', 0, 0, '', 9, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
16757 INSERT INTO `marc_subfield_structure` VALUES ('995', 'h', 'Code &agrave; barres, incr&eacute;mentation', 'Code &agrave; barres, incr&eacute;mentation', 0, 0, '', 9, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
16758 INSERT INTO `marc_subfield_structure` VALUES ('995', 'i', 'Code &agrave; barres, suffixe', 'Code &agrave; barres, suffixe', 0, 0, '', 9, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
16759 INSERT INTO `marc_subfield_structure` VALUES ('995', 'j', '&Eacute;tablissement pr&ecirc;teur ou d&eacute;posant, donn&eacute;e cod&eacute;e', '&Eacute;tablissement pr&ecirc;teur ou d&eacute;posant, donn&eacute;e cod&eacute;e', 0, 0, '', 9, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
16760 INSERT INTO `marc_subfield_structure` VALUES ('995', 'k', 'Cote', 'Cote', 0, 0, '', 9, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
16761 INSERT INTO `marc_subfield_structure` VALUES ('995', 'l', 'Volumaison', 'Volumaison', 0, 0, '', 9, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
16762 INSERT INTO `marc_subfield_structure` VALUES ('995', 'm', 'Date de pr&ecirc;t ou de d&eacute;p&ocirc;t', 'Date de pr&ecirc;t ou de d&eacute;p&ocirc;t', 0, 0, '', 9, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
16763 INSERT INTO `marc_subfield_structure` VALUES ('995', 'n', 'Date de restitution pr&eacute;vue', 'Date de restitution pr&eacute;vue', 0, 0, '', 9, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
16764 INSERT INTO `marc_subfield_structure` VALUES ('995', 'o', 'Cat&eacute;gorie de circulation', 'Cat&eacute;gorie de circulation', 0, 0, '', 9, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
16765 INSERT INTO `marc_subfield_structure` VALUES ('995', 'p', 'P&eacute;riodique', 'P&eacute;riodique', 0, 0, '', 9, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
16766 INSERT INTO `marc_subfield_structure` VALUES ('995', 'q', 'Public vis&eacute; (selon l\'&acirc;ge)', 'Public vis&eacute; (selon l\'&acirc;ge)', 0, 0, '', 9, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
16767 INSERT INTO `marc_subfield_structure` VALUES ('995', 'r', 'Type de document et support mat&eacute;riel', 'Type de document et support mat&eacute;riel', 0, 0, '', 9, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
16768 INSERT INTO `marc_subfield_structure` VALUES ('995', 's', '�&eacute;ment de tri', '�&eacute;ment de tri', 0, 0, '', 9, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
16769 INSERT INTO `marc_subfield_structure` VALUES ('995', 't', 'Genre', 'Genre', 0, 0, '', 9, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
16770 INSERT INTO `marc_subfield_structure` VALUES ('995', 'u', 'Note sur l\'exemplaire', 'Note sur l\'exemplaire', 0, 0, '', 9, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
16771 INSERT INTO `marc_subfield_structure` VALUES ('995', 'v', 'Note sur le num&eacute;ro de p&eacute;riodique', 'Note sur le num&eacute;ro de p&eacute;riodique', 0, 0, '', 9, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
16772 INSERT INTO `marc_subfield_structure` VALUES ('995', 'w', '�ablissement cible du document, texte libre', '�ablissement cible du document, texte libre', 0, 0, '', 9, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
16773 INSERT INTO `marc_subfield_structure` VALUES ('995', 'x', '&Eacute;tablissement cible du document, donn&eacute;e cod&eacute;e', '&Eacute;tablissement cible du document, donn&eacute;e cod&eacute;e', 0, 0, '', 9, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
16774 INSERT INTO `marc_subfield_structure` VALUES ('995', 'y', 'Ensemble cible du document , texte libre', 'Ensemble cible du document, texte libre', 0, 0, '', 9, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
16775 INSERT INTO `marc_subfield_structure` VALUES ('995', 'z', 'Ensemble cible du document, donn&eacute;e cod&eacute;e', 'Ensemble cible du document, donn&eacute;e cod&eacute;e', 0, 0, '', 9, '', '', '', NULL, 5, 'ASMP_VIDEORECORDINGS', '', '');
16776 INSERT INTO `marc_subfield_structure` VALUES ('998', 'b', 'Operator\'s initials, OID (RLIN)', 'Operator\'s initials, OID (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16777 INSERT INTO `marc_subfield_structure` VALUES ('998', 'c', 'Cataloger\'s initials, CIN (RLIN)', 'Cataloger\'s initials, CIN (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16778 INSERT INTO `marc_subfield_structure` VALUES ('998', 'd', 'First date, FD (RLIN)', 'First Date, FD (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16779 INSERT INTO `marc_subfield_structure` VALUES ('998', 'i', 'RINS (RLIN)', 'RINS (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16780 INSERT INTO `marc_subfield_structure` VALUES ('998', 'l', 'LI (RLIN)', 'LI (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16781 INSERT INTO `marc_subfield_structure` VALUES ('998', 'n', 'NUC (RLIN)', 'NUC (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16782 INSERT INTO `marc_subfield_structure` VALUES ('998', 'p', 'PROC (RLIN)', 'PROC (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16783 INSERT INTO `marc_subfield_structure` VALUES ('998', 's', 'CC (RLIN)', 'CC (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16784 INSERT INTO `marc_subfield_structure` VALUES ('998', 't', 'RTYP (RLIN)', 'RTYP (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16785 INSERT INTO `marc_subfield_structure` VALUES ('998', 'w', 'PLINK (RLIN)', 'PLINK (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16786 INSERT INTO `marc_subfield_structure` VALUES ('999', 'a', 'Classification number (OCLC) (R) ; Classification number, CALL (RLIN) (NR)', 'Classification number (OCLC) (R) ; Classification number, CALL (RLIN) (NR)', 1, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16787 INSERT INTO `marc_subfield_structure` VALUES ('999', 'b', 'Local cutter number (OCLC) ; Book number/undivided call number, CALL (RLIN)', 'Local cutter number (OCLC) ; Book number/undivided call number, CALL (RLIN)', 0, 0, '', 0, '', '', '', 0, -6, 'ASMP_VIDEORECORDINGS', '', '');
16788 INSERT INTO `marc_subfield_structure` VALUES ('999', 'e', 'Feature heading (OCLC)', 'Feature heading (OCLC)', 0, 0, '', 0, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16789 INSERT INTO `marc_subfield_structure` VALUES ('999', 'f', 'Filing suffix (OCLC); Footnote, FNT (RLIN)', 'Filing suffix (OCLC); Footnote, FNT (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16790 INSERT INTO `marc_subfield_structure` VALUES ('999', 'h', 'Output transaction history, HST (RLIN)', 'Output transaction history, HST (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16791 INSERT INTO `marc_subfield_structure` VALUES ('999', 'i', 'Output transaction instruction, INS (RLIN)', 'Output transaction instruction, INS (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16792 INSERT INTO `marc_subfield_structure` VALUES ('999', 'l', 'Extra card control statement, EXT (RLIN)', 'Extra card control statement, EXT (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16793 INSERT INTO `marc_subfield_structure` VALUES ('999', 'n', 'Additional local notes, ANT (RLIN)', 'Additional local notes, ANT (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16794 INSERT INTO `marc_subfield_structure` VALUES ('999', 'p', 'Pathfinder code, PTH (RLIN)', 'Pathfinder code, PTH (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16795 INSERT INTO `marc_subfield_structure` VALUES ('999', 't', 'Field suppresion, FSP (RLIN)', 'Field suppresion, FSP (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16796 INSERT INTO `marc_subfield_structure` VALUES ('999', 'v', 'Volumes, VOL (RLIN)', 'Volumes, VOL (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16797 INSERT INTO `marc_subfield_structure` VALUES ('999', 'y', 'Date, VOL (RLIN)', 'Date, VOL (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16798 INSERT INTO `marc_subfield_structure` VALUES ('999', 'z', 'Retention, VOL (RLIN)', 'Retention, VOL (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16799 INSERT INTO `marc_subfield_structure` VALUES ('u01', 'a', 'Operator\'s initials, OID (RLIN)', 'Operator\'s initials, OID (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16800 INSERT INTO `marc_subfield_structure` VALUES ('u01', 'd', 'UAD (RLIN)', 'UAD (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16801 INSERT INTO `marc_subfield_structure` VALUES ('u01', 'f', 'FPST (RLIN)', 'FPST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16802 INSERT INTO `marc_subfield_structure` VALUES ('u01', 'h', 'CPST (RLIN)', 'FPST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16803 INSERT INTO `marc_subfield_structure` VALUES ('u01', 'i', 'CPST (RLIN)', 'FPST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16804 INSERT INTO `marc_subfield_structure` VALUES ('u01', 's', 'UST (RLIN)', 'UST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16805 INSERT INTO `marc_subfield_structure` VALUES ('u01', 't', 'UTYP (RLIN)', 'UTYP (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16806 INSERT INTO `marc_subfield_structure` VALUES ('u02', '2', 'Source of number or code', 'Source of number or code', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16807 INSERT INTO `marc_subfield_structure` VALUES ('u02', 'a', 'Standard number or code', 'Standard number or code', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16808 INSERT INTO `marc_subfield_structure` VALUES ('u02', 'b', 'Additional codes following the standard number', 'Additional codes following the standard number', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16809 INSERT INTO `marc_subfield_structure` VALUES ('u02', 'c', 'Terms of availability', 'Terms of availability', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16810 INSERT INTO `marc_subfield_structure` VALUES ('u02', 'z', 'Canceled/invalid standard number or code', 'Canceled/invalid standard number or code', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16811 INSERT INTO `marc_subfield_structure` VALUES ('u08', 'n', 'LSI', 'LSI', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16812 INSERT INTO `marc_subfield_structure` VALUES ('u08', 'o', 'SID', 'SID', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16813 INSERT INTO `marc_subfield_structure` VALUES ('u08', 'p', 'DP', 'DP', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16814 INSERT INTO `marc_subfield_structure` VALUES ('u08', 'r', 'RUSH', 'RUSH', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16815 INSERT INTO `marc_subfield_structure` VALUES ('u10', 'a', 'REQ', 'REQ', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16816 INSERT INTO `marc_subfield_structure` VALUES ('u10', 'b', 'SID', 'REQ', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16817 INSERT INTO `marc_subfield_structure` VALUES ('u10', 'c', 'REQ', 'REQ', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16818 INSERT INTO `marc_subfield_structure` VALUES ('u10', 'd', 'REQ', 'REQ', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16819 INSERT INTO `marc_subfield_structure` VALUES ('u10', 'e', 'REQ', 'REQ', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16820 INSERT INTO `marc_subfield_structure` VALUES ('u10', 's', 'REQ', 'REQ', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16821 INSERT INTO `marc_subfield_structure` VALUES ('u11', 'a', 'Department report request, DRR (DRRH for earlier occurrences)', 'DRR (DRRH for earlier occurrences)', 1, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16822 INSERT INTO `marc_subfield_structure` VALUES ('u20', 'a', 'SUPN', 'SUPN', 1, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16823 INSERT INTO `marc_subfield_structure` VALUES ('u20', 'b', 'SUPN', 'SUPN', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16824 INSERT INTO `marc_subfield_structure` VALUES ('u20', 'c', 'SUPN', 'SUPN', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16825 INSERT INTO `marc_subfield_structure` VALUES ('u20', 'd', 'SUPN', 'SUPN', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16826 INSERT INTO `marc_subfield_structure` VALUES ('u20', 'e', 'SUPN', 'SUPN', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16827 INSERT INTO `marc_subfield_structure` VALUES ('u20', 'x', 'SUPN', 'SUPN', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16828 INSERT INTO `marc_subfield_structure` VALUES ('u21', 'a', 'SHIP', 'SHIP', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16829 INSERT INTO `marc_subfield_structure` VALUES ('u21', 'b', 'BILL', 'BILL', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16830 INSERT INTO `marc_subfield_structure` VALUES ('u21', 'c', 'DAC', 'DAC', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16831 INSERT INTO `marc_subfield_structure` VALUES ('u21', 'n', 'LSAC', 'LSAC', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16832 INSERT INTO `marc_subfield_structure` VALUES ('u22', 'a', 'SICO', 'SICO', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16833 INSERT INTO `marc_subfield_structure` VALUES ('u22', 'b', 'SICO', 'SICO', 1, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16834 INSERT INTO `marc_subfield_structure` VALUES ('u22', 'c', 'SCAT', 'SCAT', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16835 INSERT INTO `marc_subfield_structure` VALUES ('u25', 'a', 'Supplier report(s), SRPT', 'Supplier report(s), SRPT', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16836 INSERT INTO `marc_subfield_structure` VALUES ('u30', 'a', 'NCC [OBSOLETE]', 'NCC [OBSOLETE]', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16837 INSERT INTO `marc_subfield_structure` VALUES ('u30', 'i', 'ICI', 'ICI', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16838 INSERT INTO `marc_subfield_structure` VALUES ('u30', 'm', 'MCI', 'MCI', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16839 INSERT INTO `marc_subfield_structure` VALUES ('u31', 'a', 'NCC', 'NCC', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16840 INSERT INTO `marc_subfield_structure` VALUES ('u31', 'b', 'NCS', 'NCS', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16841 INSERT INTO `marc_subfield_structure` VALUES ('u33', 'a', 'ICL', 'ICL', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16842 INSERT INTO `marc_subfield_structure` VALUES ('u33', 'd', 'ICAD', 'ICAD', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16843 INSERT INTO `marc_subfield_structure` VALUES ('u34', 'a', 'EPCL', 'EPCL', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16844 INSERT INTO `marc_subfield_structure` VALUES ('u34', 'r', 'ERI', 'ERI', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16845 INSERT INTO `marc_subfield_structure` VALUES ('u40', 'd', 'EPDT [OBSOLETE]', 'EPDT [OBSOLETE]', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16846 INSERT INTO `marc_subfield_structure` VALUES ('u40', 'f', 'EFRQ', 'EFRQ', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16847 INSERT INTO `marc_subfield_structure` VALUES ('u40', 's', 'EPST', 'EPST', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16848 INSERT INTO `marc_subfield_structure` VALUES ('u40', 't', 'ETYP', 'ETYP', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16849 INSERT INTO `marc_subfield_structure` VALUES ('u50', 'a', 'Acquisitions notes, AQNT', 'Acquisitions notes, AQNT', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16850 INSERT INTO `marc_subfield_structure` VALUES ('u51', 'a', 'Selection notes, SLNT', 'Selection notes, SLNT', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16851 INSERT INTO `marc_subfield_structure` VALUES ('u52', 'a', 'INT', 'INT', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16852 INSERT INTO `marc_subfield_structure` VALUES ('u52', 'b', 'INT', 'NT', 1, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16853 INSERT INTO `marc_subfield_structure` VALUES ('u53', 'a', 'CLNT', 'CLNT', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16854 INSERT INTO `marc_subfield_structure` VALUES ('u53', 'b', 'CLNT', 'CLNT', 1, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16855 INSERT INTO `marc_subfield_structure` VALUES ('u54', 'a', 'Notes to serials department, SRNT', 'Notes to serials department, SRNT', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16856 INSERT INTO `marc_subfield_structure` VALUES ('u55', 'a', 'Cataloging notes, CTNT', 'Cataloging notes, CTNT', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16857 INSERT INTO `marc_subfield_structure` VALUES ('u5f', 'a', 'Accounting notes, ACNT', 'Accounting notes, ACNT', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16858 INSERT INTO `marc_subfield_structure` VALUES ('u70', 'a', 'QTY', 'QTY', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16859 INSERT INTO `marc_subfield_structure` VALUES ('u70', 'b', 'MAT', 'MAT', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16860 INSERT INTO `marc_subfield_structure` VALUES ('u70', 'l', 'MLOC', 'MLOC', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16861 INSERT INTO `marc_subfield_structure` VALUES ('u71', 'a', 'Fund account, FUND', 'Fund account, FUND', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16862 INSERT INTO `marc_subfield_structure` VALUES ('u75', 'a', 'ITEM', 'ITEM', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16863 INSERT INTO `marc_subfield_structure` VALUES ('u75', 'c', 'CIRC', 'CIRC', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16864 INSERT INTO `marc_subfield_structure` VALUES ('u75', 'h', 'IPST', 'IPST', 1, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16865 INSERT INTO `marc_subfield_structure` VALUES ('u75', 'i', 'ITEM', 'ITEM', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16866 INSERT INTO `marc_subfield_structure` VALUES ('u75', 'l', 'SLOC', 'SLOC', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16867 INSERT INTO `marc_subfield_structure` VALUES ('u7f', 'a', 'LPRI', 'LPRI', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16868 INSERT INTO `marc_subfield_structure` VALUES ('u7f', 'b', 'CURR', 'CURR', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16869 INSERT INTO `marc_subfield_structure` VALUES ('u7f', 'k', 'CVRT [OBSOLETE]', 'CVRT [OBSOLETE]', 1, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16870 INSERT INTO `marc_subfield_structure` VALUES ('u7f', 'p', 'LPD', 'LPD', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16871 INSERT INTO `marc_subfield_structure` VALUES ('u7f', 'r', 'EDRT', 'EDRT', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16872 INSERT INTO `marc_subfield_structure` VALUES ('u90', 'h', 'TAPE', 'TAPE', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16873 INSERT INTO `marc_subfield_structure` VALUES ('u90', 'i', 'TAPE', 'TAPE', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16874 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'a', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16875 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'b', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16876 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'c', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16877 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'd', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16878 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'e', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16879 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'f', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16880 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'g', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16881 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'h', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16882 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'n', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'ASMP_VIDEORECORDINGS', '', '');
16883
16884
16885