/* **********************************************

Created by Kyle Banerjee, Oregon State University
This program may be modified and distributed freely.

*************************************************** */
var GeogCutter = new Array();
var GeogCode = new Array();
var Country = new Array();
var LangCode = new Array();
var Marc = new Array();
var Fixed = new Array();
var AACR = new Array();


function ProcessForm(FormValue, sVal) {
	
	if (sVal > -1) {
		LoadFixed();
		sCutter = Fixed[sVal];
		}

	else {
	sCutter = "";
	
	sInput = FormValue.sUserInput.value;
	sInput = sInput.toUpperCase();

	if (FormValue.sSearchType[0].checked) {
		sCutter = Cutter(sInput);
		}

	if (FormValue.sSearchType[1].checked) {
		sCutter = CutterGeog(sInput);
		}

	if (FormValue.sSearchType[2].checked) {
		sCutter = GetGeogCodes(sInput);
		}

	if (FormValue.sSearchType[3].checked) {
		sCutter = GetCountryCodes(sInput);
		}

	if (FormValue.sSearchType[4].checked) {
		sCutter = GetLangCodes(sInput);
		}

	if (FormValue.sSearchType[5].checked) {
		sCutter = GetAACR(sInput);
		}

	if (FormValue.sSearchType[6].checked) {
		sCutter = FindMarc(sInput, "(");
		}
	}

FormValue.sResult.value = sCutter;

/* *****************************************
 Use lower box if Authority data is sought
 ***************************************** */

	if (sVal > 28) {
		FormValue.sResult.value = "";
		FormValue.sResult2.value = sCutter;
		}

}

function Cutter(sInput)  {
	var skip = 1;
	var sNextDigit;
	var Table2Array = new Array();
	var Table3Array = new Array();

	if (sInput.length < 2) 
		{
		sCutter = sInput;
		return;
		}

	if (sInput.length > 1) {
		sFirstChar = sInput.substr(0, 1);
		sSecondChar = sInput.substr(1, 1);
		iTotalLength = sInput.length;
	
		sCutter = sFirstChar;
				
		/* ****************************************
		Set up arrays determing which tables to use
		****************************************** */

		sValueLocator ="ABCDEFGHIJKLMNOPQRSTUVWXYZ01234567890";
		sTableFinder = "1444144414444414342414444455555555555";
		sValidNumbers = "23456789Q";

		Table2Array[1] = "22233333333445566788999999XXXXXXXXXX";
		Table2Array[2] = "22334445555566666667899999XXXXXXXXXX";
		Table2Array[3] = "QQQQQQQQQQQQQQQQQQQQUUUUUUXXXXXXXXXX";
		Table2Array[4] = "33334444555555666777888899XXXXXXXXXX";
		Table2Array[5] = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX";
		Table3Array = "33334444555566677778889999";

		/* ******************************
		Locate correct table
	  	 ****************************** */		
	
		for (iTable = 0; iTable < 36; iTable++) {
	
			if (sValueLocator.substr(iTable, 1) == sInput.substr(0, 1)) {
				iWhichTable = sTableFinder.substr(iTable, 1);
				}
			}

		/* **************************************
		Look up second character on correct table
		***************************************** */

		for (iChar = 0; iChar < 36; iChar++) {
			if (sValueLocator.substr(iChar, 1) == sInput.substr(1, 1)) {

			/* *****************************************************
				Get Cutter Value -- Accepts only values from 2-9
			   ***************************************************** */	
				sNextDigit = Table2Array[iWhichTable].substr(iChar, 1);

				for (x = 0; x < 9; x++) {
					if (sNextDigit == sValidNumbers.substr(x, 1)) {						
						sCutter = sCutter + sNextDigit;
						}
					}
						
				}
			}

		/* *****************
		Handle SCH exception
		****************** */
		if (sInput.substr(0, 3) == "SCH") {
			sCutter = "S3";
			}


		/* *****************************
		Process third character onwards
		****************************** */
		startCounter = 2;

		if (sInput.substr(0, 3) == "SCH") {
			startCounter++;
			}

		for (iCounter = startCounter; iCounter < iTotalLength; iCounter++) {
			for (iTable = 0; iTable < 36; iTable++) {
	
				if (sValueLocator.substr(iTable, 1) == sInput.substr(iCounter, 1)) {

					/* ******************************
						Get Cutter Value
  					   ****************************** */	
					sNextDigit = Table3Array.substr(iTable, 1);
					sCutter = sCutter + sNextDigit;
					}
				}
					
			}
			
		}	
	
	/* **********************************************************
	Detect special cases. Otherwise, just return calculated value
	************************************************************ */
	if (iWhichTable == 5) {
		sCutter = "Use A12 - A19 for numerals";
		}

	if (sCutter.substr(1, 1) == "U") {
		sCutter = "Q" + sCutter.substr(2)
		}	

	for (x = 1; x < sCutter.length; x++)	{
		if (sCutter.substr(x, 1) == "Q") {
			sCutter = "Use 2 - 29 for Qa - Qt";
			}
	return sCutter;
	}
}

//########################################################################

function CutterGeog(sInput) {
	LoadGeogCutters();
	sCutter = "";
	x = 0;

	LenCheck = sInput.length;
	
	while (x <= 628) {
		sCutterCheck = GeogCutter[x];
		sCutterCheck = sCutterCheck.toUpperCase();
		
		for (y = 0; y <= GeogCutter[x].length - LenCheck; y++) {
			if (sInput == sCutterCheck.substr(y, LenCheck)) {
				sCutter += GeogCutter[x] + "\n";
				y = GeogCutter[x].length - LenCheck;
				}
			}
		x++;
		}
	if (sCutter.length < 1) {
		sCutter = "No matching entries found";
		}

return sCutter;
}

//########################################################################

function LangCutter(FormValue, sVal) {
sCutter = "  .x\tOriginal work\n  .x12\tPolyglot*\n  .x13\tEnglish translation\n  .x14\tFrench translation\n  .x15\tGerman translation\n  .x16\tItalian translation\n  .x17\tRussian translation\n  .x18\tSpanish translation\n\n* The Cutter for polyglot is assigned when a work is written in several languages.";

FormValue.sResult.value = sCutter;
}

//########################################################################

function GetGeogCodes(sInput) {
	LoadGeogCodes();
	sCutter = "";
	x = 1;

	LenCheck = sInput.length;
	
	while (x <= 1225) {

		sCutterCheck = GeogCode[x];
		sCutterCheck = sCutterCheck.toUpperCase();

                iFoundUSE = sCutterCheck.indexOf("USE");
                iFoundInputString = sCutterCheck.indexOf(sInput);

                /***************************************************
                Ignores part of USE references to avoid false hits
                ****************************************************/

                if (iFoundInputString >= 0) {

                        if (iFoundInputString < iFoundUSE) {
                                sCutter += GeogCode[x] + "\n";
                                }

				if (iFoundUSE < 1) {
					sCutter += GeogCode[x] + "\n";
					}
                        }		
		x++;
		}
	if (sCutter.length < 1) {
		sCutter = "No matching entries found";
		}

return sCutter;

}

//########################################################################

function GetCountryCodes(sInput) {
	LoadCountryCodes();
	sCutter = "";
	x = 0;

	LenCheck = sInput.length;
	
	while (x <= 359) {

		sCutterCheck = Country[x];
		sCutterCheck = sCutterCheck.toUpperCase();

                iFoundUSE = sCutterCheck.indexOf("USE");
                iFoundInputString = sCutterCheck.indexOf(sInput);

                /***************************************************
                Ignores part of USE references to avoid false hits
                ****************************************************/

                if (iFoundInputString >= 0) {

                        if (iFoundInputString < iFoundUSE) {
                                sCutter += Country[x] + "\n";
                                }

				if (iFoundUSE < 1) {
					sCutter += Country[x] + "\n";
					}
                        }		
		x++;
		}
	if (sCutter.length < 1) {
		sCutter = "No matching entries found";
		}

return sCutter;

}


//#######################################################################

function GetLangCodes(sInput) {
	LoadLangCodes();	
	sCutter = "";
	x = 0;

	LenCheck = sInput.length;
	
	while (x <= 461) {
		sCutterCheck = LangCode[x];
		sCutterCheck = sCutterCheck.toUpperCase();
		
		for (y = 0; y <= LangCode[x].length - LenCheck; y++) {
			if (sInput == sCutterCheck.substr(y, LenCheck)) {
				sCutter += LangCode[x] + "\n";
				y = LangCode[x].length - LenCheck;
				}
			}
		x++;
		}
	if (sCutter.length < 1) {
		sCutter = "No matching entries found";
		}

return sCutter;
}

//########################################################################

function GetAACR(sInput) {
	LoadAACR();
	var x
	sCutter = ""

	for (x in AACR) {
		sCheck = AACR[x];
		sCheck = sCheck.toUpperCase();

		if (sCheck.indexOf(sInput) >= 0) {
			sCutter = sCutter + AACR[x] + "\n";
			}
		}

	if (sCutter == "") {
		sCutter = "No entries found.";
		}
	return sCutter;
}

//########################################################################

function FindMarc(sInput, sDelim) {
	LoadMarc();
	sCutter = "";
	var x;

	if (sInput.length < 2) {
		return "Search string must be at least 2 characters long";
		}

	for (x in Marc) {

		/* ************************************************
		Identifies relevant entries based on type of search
		************************************************* */ 

		sCheck = Marc[x];
		sCheck = sCheck.toUpperCase();
		iEnd = sCheck.indexOf(sDelim);
		sCheck = sCheck.substr(0, iEnd);

		if (sCheck.indexOf(sInput) >= 0) {
			sCutter = sCutter + Marc[x] + "\n\n";
			}		

		}

		if (sCutter == "") {
			sCutter = "No entries found.";
			}
	sCutter = CleanOutput(sCutter);
	return sCutter;
	}

function CleanOutput(sInput) {
	sCleaned = "";

	/* *****************************************
	Substitutes delimiter symbols from file with 
	appropriate string constants
	****************************************** */
	for (x = 0; x < sInput.length; x++)	{
		sNextChar = sInput.substr(x, 1);

		if (sNextChar == "Ü")	{
			sNextChar = "\n  Indicators:";
			}

		if (sNextChar == "ß")	{
			sNextChar = "\n\n  Subfield Codes:";
			}

		/* ********************************************
		Only prints "Example:" constant when one exists
		********************************************* */
		if (sNextChar == "Ý")	{
			if (sInput.substr(x + 1, 1) == "Ý")	{
				sNextChar = "\n";
				x++;
				}
				else	{
					sNextChar = "\nExample:\n\n";
					}
			}

		if (sNextChar == "\n")	{
			if (sInput.substr(x + 1, 1) == "|" || sInput.substr(x + 2, 1) == "\t" || sInput.substr(x + 2, 1) == "-") {
				sNextChar = "\n\t";
				}

			if (sInput.substr(x + 1, 1) == "F" || sInput.substr(x + 1, 1) == "S")	{
				sNextChar = "\n     ";
				}
			}
		sCleaned = sCleaned + sNextChar;		
		}

	return sCleaned;
	}

//########################################################################

function LoadGeogCutters() {
GeogCutter[0] = "Abyssinia see Ethiopia";
GeogCutter[1] = "Adair, Camp* --- A3";
GeogCutter[2] = "Afghanistan --- A3";
GeogCutter[3] = "Africa --- A35";
GeogCutter[4] = "Africa, Central --- A352";
GeogCutter[5] = "Africa, East --- A353";
GeogCutter[6] = "Africa, Eastern --- A354";
GeogCutter[7] = "Africa, French-Speaking West --- A3545";
GeogCutter[8] = "Africa, North --- A355";
GeogCutter[9] = "Africa, Northeast --- A3553";
GeogCutter[10] = "Africa, Northwest --- A3554";
GeogCutter[11] = "Africa, South see South Africa";
GeogCutter[12] = "Africa, Southern --- A356";
GeogCutter[13] = "Africa, Sub-Saharan --- A357";
GeogCutter[14] = "Africa, West --- A358";
GeogCutter[15] = "Alabama --- A2";
GeogCutter[16] = "Alaska --- A4";
GeogCutter[17] = "Albania --- A38";
GeogCutter[18] = "Albany* --- A4";
GeogCutter[19] = "Alberta --- A3";
GeogCutter[20] = "Algeria --- A4";
GeogCutter[21] = "Alpine* --- A46";
GeogCutter[22] = "Alps --- A43";
GeogCutter[23] = "America --- A45";
GeogCutter[24] = "American Samoa --- A46";
GeogCutter[25] = "Amity* --- A49";
GeogCutter[26] = "Andorra --- A48";
GeogCutter[27] = "Angola --- A5";
GeogCutter[28] = "Anguilla --- A54";
GeogCutter[29] = "Antarctica --- A6";
GeogCutter[30] = "Antigua and Barbuda --- A63";
GeogCutter[31] = "Antigua see Antigua and Barbuda";
GeogCutter[32] = "Arab countries --- A65";
GeogCutter[33] = "Arctic regions --- A68";
GeogCutter[34] = "Argentina --- A7";
GeogCutter[35] = "Arizona --- A6";
GeogCutter[36] = "Arkansas --- A8";
GeogCutter[37] = "Armenia --- A75";
GeogCutter[38] = "Armenia (Republic) --- A76";
GeogCutter[39] = "Aruba --- A77";
GeogCutter[40] = "Ashland* --- A8";
GeogCutter[41] = "Asia --- A78";
GeogCutter[42] = "Asia, Central --- A783";
GeogCutter[43] = "Asia, East see East Asia";
GeogCutter[44] = "Asia, South see South Asia";
GeogCutter[45] = "Asia, Southeastern --- A785";
GeogCutter[46] = "Asia, Southwestern see Middle East";
GeogCutter[47] = "Astoria district* --- * --- N61:3A8";
GeogCutter[48] = "Astoria* --- * --- A85";
GeogCutter[49] = "Australasia --- A788";
GeogCutter[50] = "Australia --- A8";
GeogCutter[51] = "Austria --- A9";
GeogCutter[52] = "Azerbaijan --- A98";
GeogCutter[53] = "Bahamas --- B24";
GeogCutter[54] = "Bahrain --- B26";
GeogCutter[55] = "Baker district (BLM)* --- B3";
GeogCutter[56] = "Baker/Baker City* --- B3";
GeogCutter[57] = "Balkan Peninsula --- B28";
GeogCutter[58] = "Baltic States --- B29";
GeogCutter[59] = "Bangladesh --- B3";
GeogCutter[60] = "Barbados --- B35";
GeogCutter[61] = "Barbuda see Antigua and Barbuda";
GeogCutter[62] = "Barlow Road (West Linn)* --- B37";
GeogCutter[63] = "Basin & Range province* --- B385";
GeogCutter[64] = "Basin grazing district* --- B38";
GeogCutter[65] = "Beaverton* --- B4";
GeogCutter[66] = "Belarus --- B38";
GeogCutter[67] = "Belgium --- B4";
GeogCutter[68] = "Belize --- B42";
GeogCutter[69] = "Bend* --- B44";
GeogCutter[70] = "Benelux Countries --- B425";
GeogCutter[71] = "Bengal --- B43";
GeogCutter[72] = "Benin --- B45";
GeogCutter[73] = "Bermuda --- B46";
GeogCutter[74] = "Bhutan --- B47";
GeogCutter[75] = "Bolivia --- B5";
GeogCutter[76] = "Bonaire --- B52";
GeogCutter[77] = "Bosnia and Hercegovina --- B54";
GeogCutter[78] = "Botswana --- B55";
GeogCutter[79] = "Bowen Valley* --- B6 ";
GeogCutter[80] = "Brazil --- B6";
GeogCutter[81] = "British Columbia --- B8";
GeogCutter[82] = "British Guiana see Guyana";
GeogCutter[83] = "British Honduras see Belize";
GeogCutter[84] = "British Isles --- B65";
GeogCutter[85] = "Brookings/Brookings Harbor* --- B7";
GeogCutter[86] = "Brothers planning area* --- B7";
GeogCutter[87] = "Brunei --- B7";
GeogCutter[88] = "Bulgaria --- B9";
GeogCutter[89] = "Bull of the Woods Wilderness area* --- B85";
GeogCutter[90] = "Bullrun Rock* --- B8";
GeogCutter[91] = "Burkina Faso --- B92";
GeogCutter[92] = "Burma --- B93";
GeogCutter[93] = "Burns district* --- B82";
GeogCutter[94] = "Burns* --- B8";
GeogCutter[95] = "Burundi --- B94";
GeogCutter[96] = "Byzantine Empire --- B97";
GeogCutter[97] = "California --- C2";
GeogCutter[98] = "Cambodia --- C16";
GeogCutter[99] = "Cameroon --- C17";
GeogCutter[100] = "Canada --- C2";
GeogCutter[101] = "Canary Islands --- C23";
GeogCutter[102] = "Canby* --- C2";
GeogCutter[103] = "Canyonville area* --- C34";
GeogCutter[104] = "Canyonville* --- C36";
GeogCutter[105] = "Cape Verde --- C25";
GeogCutter[106] = "Caribbean Area --- C27";
GeogCutter[107] = "Caroline Islands --- C275";
GeogCutter[108] = "Cascade Mountain Range* --- C35";
GeogCutter[109] = "Cascade Range forest reserve* --- C3";
GeogCutter[110] = "Caucasus --- C28";
GeogCutter[111] = "Cayman Islands --- C29";
GeogCutter[112] = "Central African Republic --- C33";
GeogCutter[113] = "Central America --- C35";
GeogCutter[114] = "Central Europe --- C36";
GeogCutter[115] = "Central Oregon* --- C45";
GeogCutter[116] = "Ceylon see Sri Lanka";
GeogCutter[117] = "Chad --- C45";
GeogCutter[118] = "Channel Islands --- C48";
GeogCutter[119] = "Chetco Basin* --- C5";
GeogCutter[120] = "Chile --- C5";
GeogCutter[121] = "China --- C6";
GeogCutter[122] = "Clackamas-Marion fire protection * --- C57district";
GeogCutter[123] = "Coast* --- C6";
GeogCutter[124] = "Colombia --- C7";
GeogCutter[125] = "Colorado --- C6";
GeogCutter[126] = "Columbia Gorge Nat'l Scenic Area* --- C635";
GeogCutter[127] = "Columbia Gorge* --- C63";
GeogCutter[128] = "Columbia Wilderness Area* --- C638";
GeogCutter[129] = "Commonwealth countries --- C723";
GeogCutter[130] = "Communist countries --- C725";
GeogCutter[131] = "Comoros --- C73";
GeogCutter[132] = "Congo (Brazzaville) --- C74";
GeogCutter[133] = "Connecticut --- C8";
GeogCutter[134] = "Cook Islands --- C76";
GeogCutter[135] = "Coos Bay area* --- C66";
GeogCutter[136] = "Coos Bay* --- C5";
GeogCutter[137] = "Coos fire protection district* --- C67";
GeogCutter[138] = "Corvallis* --- C6";
GeogCutter[139] = "Costa Rica --- C8";
GeogCutter[140] = "Côte d'Ivoire --- C85";
GeogCutter[141] = "Craig Mountain Cone area* --- C71";
GeogCutter[142] = "Crater Lake (.)* --- C74";
GeogCutter[143] = "Crater Lake* --- C73";
GeogCutter[144] = "Croatia --- C87";
GeogCutter[145] = "Crooked River grazing district* --- C76";
GeogCutter[146] = "Cuba --- C9";
GeogCutter[147] = "Curaçao --- C92";
GeogCutter[148] = "Cyprus --- C93";
GeogCutter[149] = "Czech Republic --- C94";
GeogCutter[150] = "Czechoslovakia --- C95";
GeogCutter[151] = "Dahomey see Benin";
GeogCutter[152] = "Dallas* --- D34";
GeogCutter[153] = "Dalles area* --- D34";
GeogCutter[154] = "Dalles City (historic The Dalles)* --- D35";
GeogCutter[155] = "Delaware --- D3";
GeogCutter[156] = "Denmark --- D4";
GeogCutter[157] = "Deschutes drainage basin* --- D45";
GeogCutter[158] = "Deschutes National Forest* --- D48";
GeogCutter[159] = "Deschutes River area* --- D49";
GeogCutter[160] = "Desert Trail* --- D4";
GeogCutter[161] = "Developing countries --- D44";
GeogCutter[162] = "Diamond Peak Wilderness* --- D5";
GeogCutter[163] = "District of Columbia see Washington (D.C.)";
GeogCutter[164] = "Djibouti --- D5";
GeogCutter[165] = "Dominica --- D6";
GeogCutter[166] = "Dominican Republic --- D65";
GeogCutter[167] = "Douglas fire protection district* --- D6";
GeogCutter[168] = "Drain-Yoncalla area* --- D7";
GeogCutter[169] = "Drift Creek* --- D75";
GeogCutter[170] = "Dutch East Indies see Indonesia";
GeogCutter[171] = "Dutch Guiana see Surinam";
GeogCutter[172] = "Eagle Cap Wilderness* --- E23";
GeogCutter[173] = "East Asia --- E18";
GeogCutter[174] = "Eastern Oregon protection district* --- E237";
GeogCutter[175] = "Ecuador --- E2";
GeogCutter[176] = "Egypt --- E3";
GeogCutter[177] = "El Salvador see Salvador";
GeogCutter[178] = "Ellice Islands see Tuvalu";
GeogCutter[179] = "England see Great Britain";
GeogCutter[180] = "Eola Hills area* --- * --- E6";
GeogCutter[181] = "Equatorial Guinea --- E6";
GeogCutter[182] = "Eritrea --- E65";
GeogCutter[183] = "Estonia --- E75";
GeogCutter[184] = "Ethiopia --- E8";
GeogCutter[185] = "Eugene district* --- E8";
GeogCutter[186] = "Eugene/Eugene-Springfield* --- E8";
GeogCutter[187] = "Eurasia --- E83";
GeogCutter[188] = "Europe --- E85";
GeogCutter[189] = "Europe, Central see Central Europe        ";
GeogCutter[190] = "Europe, Eastern --- E852";
GeogCutter[191] = "Europe, Northern --- E853";
GeogCutter[192] = "Europe, Southern --- E854";
GeogCutter[193] = "Europe, Western see Europe";
GeogCutter[194] = "European Economic Community countries --- E86";
GeogCutter[195] = "European Free Trade Association countries --- E87";
GeogCutter[196] = "European Union countries see Europe";
GeogCutter[197] = "Falkland Islands --- F3";
GeogCutter[198] = "Faroe Islands --- F32";
GeogCutter[199] = "Fiji Islands --- F4";
GeogCutter[200] = "Finland --- F5";
GeogCutter[201] = "Florida --- F6";
GeogCutter[202] = "Forest Grove unit* --- N61:3F6";
GeogCutter[203] = "Forest Grove* --- F6";
GeogCutter[204] = "Former Soviet republics --- F6";
GeogCutter[205] = "Formosa see Taiwan";
GeogCutter[206] = "Fort Stevens area* --- F6";
GeogCutter[207] = "France --- F8";
GeogCutter[208] = "Fremont National Forest* --- F74";
GeogCutter[209] = "French Guiana --- F9";
GeogCutter[210] = "French Polynesia --- F93";
GeogCutter[211] = "Gabon --- G2";
GeogCutter[212] = "Galapagos Islands --- G23";
GeogCutter[213] = "Gambia --- G25";
GeogCutter[214] = "Georgia --- G4";
GeogCutter[215] = "Georgia (Republic) --- G28";
GeogCutter[216] = "Germany --- G3";
GeogCutter[217] = "German Democratic Republic see Germany";
GeogCutter[218] = "East Germany see Germany";
GeogCutter[219] = "Federal Republic of Germany see Germany";
GeogCutter[220] = "West Germany see Germany";
GeogCutter[221] = "Ghana --- G4";
GeogCutter[222] = "Gibraltar --- G5";
GeogCutter[223] = "Gilbert Islands see Kiribati";
GeogCutter[224] = "Glenddale quad* --- G54";
GeogCutter[225] = "Gold Beach area* --- G65";
GeogCutter[226] = "Goose & Summer Lakes basin* --- G68";
GeogCutter[227] = "Goose Lake basin* --- G681";
GeogCutter[228] = "Grande Ronde drainage basin* --- G7";
GeogCutter[229] = "Grande Ronde Valley area* --- G75";
GeogCutter[230] = "Grants Pass area* --- G73";
GeogCutter[231] = "Grants Pass* --- G7";
GeogCutter[232] = "Great Britain --- G7";
GeogCutter[233] = "Greece --- G8";
GeogCutter[234] = "Greenland --- G83";
GeogCutter[235] = "Grenada --- G84";
GeogCutter[236] = "Guadeloupe --- G845";
GeogCutter[237] = "Guam --- G85";
GeogCutter[238] = "Guatemala --- G9";
GeogCutter[239] = "Guiana --- G915";
GeogCutter[240] = "Guinea --- G92";
GeogCutter[241] = "Guinea-Bissau --- G93";
GeogCutter[242] = "Guyana --- G95";
GeogCutter[243] = "Haiti --- H2";
GeogCutter[244] = "Harney basin* --- H3";
GeogCutter[245] = "Hawaii --- H3";
GeogCutter[246] = "Hispaniola --- H55";
GeogCutter[247] = "Holland see Netherlands";
GeogCutter[248] = "Honduras --- H8";
GeogCutter[249] = "Hong Kong --- H85";
GeogCutter[250] = "Hood River drainage basin* --- H6";
GeogCutter[251] = "Hungary --- H9";
GeogCutter[252] = "Iceland --- I2";
GeogCutter[253] = "Idaho --- I2";
GeogCutter[254] = "Illinois --- I3";
GeogCutter[255] = "India --- I4";
GeogCutter[256] = "Indiana --- I6";
GeogCutter[257] = "Indochina --- I48";
GeogCutter[258] = "Indonesia --- I5";
GeogCutter[259] = "Inner Mongolia see China";
GeogCutter[260] = "Iowa --- I8";
GeogCutter[261] = "Iran --- I7";
GeogCutter[262] = "Iraq --- I72";
GeogCutter[263] = "Ireland --- I73";
GeogCutter[264] = "Islamic countries --- I74";
GeogCutter[265] = "Islamic Empire --- I742";
GeogCutter[266] = "Islands of the Indian Ocean --- I743";
GeogCutter[267] = "Israel --- I75";
GeogCutter[268] = "Italy --- I8";
GeogCutter[269] = "Ivory Coast, see Côte d'Ivoire";
GeogCutter[270] = "Jackson area* --- M2:2J3";
GeogCutter[271] = "Jackson forest* --- J3";
GeogCutter[272] = "Jacksonville* --- J3";
GeogCutter[273] = "Jamaica --- J25";
GeogCutter[274] = "Japan --- J3";
GeogCutter[275] = "Java see Indonesia";
GeogCutter[276] = "Jerusalem --- J4";
GeogCutter[277] = "John Day drainage basin* --- J65";
GeogCutter[278] = "John Day River* --- J67";
GeogCutter[279] = "John Day* --- J6";
GeogCutter[280] = "Jordan --- J6";
GeogCutter[281] = "Jugoslavia see Yugoslavia";
GeogCutter[282] = "Jutland see Denmark";
GeogCutter[283] = "Kalmiopsis Wilderness* --- K3";
GeogCutter[284] = "Kampuchea see Cambodia";
GeogCutter[285] = "Kansas --- K2";
GeogCutter[286] = "Kazakhstan --- K3";
GeogCutter[287] = "Keating* --- K4";
GeogCutter[288] = "Kentucky --- K4";
GeogCutter[289] = "Kenya --- K4";
GeogCutter[290] = "Kerguelen Islands --- K43";
GeogCutter[291] = "Kiribati --- K5";
GeogCutter[292] = "Klamath drainage basin* --- K55";
GeogCutter[293] = "Klamath Falls area* --- K52";
GeogCutter[294] = "Klamath Falls* --- K55";
GeogCutter[295] = "Klamath-Lake forest protection district* --- K55";
GeogCutter[296] = "Korea --- K6";
GeogCutter[297] = "Korea (Democratic People's Republic) see Korea (North)";
GeogCutter[298] = "Korea (North) --- K7";
GeogCutter[299] = "Korea (Republic) see Korea";
GeogCutter[300] = "Korea (South) see Korea";
GeogCutter[301] = "Kuwait --- K9";
GeogCutter[302] = "Kyrgyzstan --- K98";
GeogCutter[303] = "La Grande* --- L33";
GeogCutter[304] = "Lakeview district (BLM)* --- L3";
GeogCutter[305] = "Lane forest protection district* --- L34";
GeogCutter[306] = "Langlois* --- L38";
GeogCutter[307] = "Laos --- L28";
GeogCutter[308] = "LaPine* --- L36";
GeogCutter[309] = "Latin America --- L29";
GeogCutter[310] = "Latvia --- L35";
GeogCutter[311] = "Lebanon --- L4";
GeogCutter[312] = "Lebanon* --- L42";
GeogCutter[313] = "Lesotho --- L5";
GeogCutter[314] = "Liberia --- L7";
GeogCutter[315] = "Libya --- L75";
GeogCutter[316] = "Liechtenstein --- L76";
GeogCutter[317] = "Linn protection district* --- L5";
GeogCutter[318] = "Lithuania --- L78";
GeogCutter[319] = "Lost Forest wilderness study area* --- L6";
GeogCutter[320] = "Louisiana --- L8";
GeogCutter[321] = "Lower Willamette drainage basin* --- W54";
GeogCutter[322] = "Luxembourg --- L9";
GeogCutter[323] = "Macao --- M25";
GeogCutter[324] = "Macaronesia --- M26";
GeogCutter[325] = "Macedonia --- M27";
GeogCutter[326] = "Macedonia (Republic) --- M275";
GeogCutter[327] = "Madagascar --- M28";
GeogCutter[328] = "Madras* --- M31";
GeogCutter[329] = "Maine --- M2";
GeogCutter[330] = "Malagasy Republic see Madagascar";
GeogCutter[331] = "Malawi --- M3";
GeogCutter[332] = "Malay Archipelago --- M35";
GeogCutter[333] = "Malaya see Malaysia";
GeogCutter[334] = "Malaysia --- M4";
GeogCutter[335] = "Maldives --- M415";
GeogCutter[336] = "Malheur Lake* --- M32";
GeogCutter[337] = "Malheur National Forest* --- M34";
GeogCutter[338] = "Malheur Project area* --- M31";
GeogCutter[339] = "Malheur River drainage basin* --- M3";
GeogCutter[340] = "Mali --- M42";
GeogCutter[341] = "Malta --- M43";
GeogCutter[342] = "Manitoba --- M3";
GeogCutter[343] = "Marshall Islands --- M433";
GeogCutter[344] = "Martinique --- M435";
GeogCutter[345] = "Maryland --- M3";
GeogCutter[346] = "Massachusetts --- M4";
GeogCutter[347] = "Mauritania --- M44";
GeogCutter[348] = "Mauritius --- M45";
GeogCutter[349] = "McDonald Forest* --- M2";
GeogCutter[350] = "McKenzie River* --- M24";
GeogCutter[351] = "McMinnville* --- M35";
GeogCutter[352] = "Medford* --- M4";
GeogCutter[353] = "Melanesia --- M5";
GeogCutter[354] = "Mexican-American Border Region --- M58";
GeogCutter[355] = "Mexico --- M6";
GeogCutter[356] = "Michigan --- M5";
GeogCutter[357] = "Micronesia --- M625";
GeogCutter[358] = "Mid-coast drainage basin* --- M5";
GeogCutter[359] = "Middle East --- M628";
GeogCutter[360] = "Middle Willamette drainage basin* --- W53";
GeogCutter[361] = "Minnesota --- M6";
GeogCutter[362] = "Mississippi --- M7";
GeogCutter[363] = "Missouri --- M8";
GeogCutter[364] = "Moldova --- M629";
GeogCutter[365] = "Monaco --- M63";
GeogCutter[366] = "Mongolia --- M65";
GeogCutter[367] = "Mongolia (Mongolian People's Republic) see Mongolia";
GeogCutter[368] = "Monmouth* --- M75";
GeogCutter[369] = "Montana --- M9";
GeogCutter[370] = "Montenegro see Yugoslavia";
GeogCutter[371] = "Montserrat --- M7";
GeogCutter[372] = "Morocco --- M8";
GeogCutter[373] = "Mountain Lakes wilderness* --- M67";
GeogCutter[374] = "Mozambique --- M85";
GeogCutter[375] = "Mt Hood & vicinity* --- H68";
GeogCutter[376] = "Mt Hood National Forest* --- H66";
GeogCutter[377] = "Mt Hood Wilderness* --- H67";
GeogCutter[378] = "Mt Jefferson area* --- J45";
GeogCutter[379] = "Mt Jefferson Wilderness* --- J4";
GeogCutter[380] = "Mt. Washington Wilderness* --- W38";
GeogCutter[381] = "Myanmar see Burma";
GeogCutter[382] = "Myrtle Creek* --- M9";
GeogCutter[383] = "Namibia --- N3";
GeogCutter[384] = "Nauru --- N32";
GeogCutter[385] = "Near East see Middle East";
GeogCutter[386] = "Nebraska --- N2";
GeogCutter[387] = "Nehalem River* --- N35";
GeogCutter[388] = "Nepal --- N35";
GeogCutter[389] = "Nestucca River* --- N5";
GeogCutter[390] = "Netherlands --- N4";
GeogCutter[391] = "Netherlands Antilles --- N42";
GeogCutter[392] = "Nevada --- N3";
GeogCutter[393] = "New Brunswick --- N5";
GeogCutter[394] = "New Caledonia --- N425";
GeogCutter[395] = "New Guinea --- N43";
GeogCutter[396] = "New Hampshire --- N4";
GeogCutter[397] = "New Hebrides see Vanuatu";
GeogCutter[398] = "New Jersey --- N5";
GeogCutter[399] = "New Mexico --- .N6";
GeogCutter[400] = "New York --- N7";
GeogCutter[401] = "New Zealand --- N45";
GeogCutter[402] = "Newberry Crater/Volcano* --- N4";
GeogCutter[403] = "Newfoundland --- N6";
GeogCutter[404] = "Newport* --- N4";
GeogCutter[405] = "Nicaragua --- N5";
GeogCutter[406] = "Niger --- N55";
GeogCutter[407] = "Nigeria --- N6";
GeogCutter[408] = "North America --- N7";
GeogCutter[409] = "North Carolina --- N8";
GeogCutter[410] = "North coast drainage basin* --- N6";
GeogCutter[411] = "North Dakota --- N9";
GeogCutter[412] = "North Fork John Day wilderness* --- N7";
GeogCutter[413] = "Northeast Oregon district* --- N64";
GeogCutter[414] = "Northern Ireland see Great Britain";
GeogCutter[415] = "Northern Rhodesia see Zambia";
GeogCutter[416] = "Northwest Oregon protection district* --- N61";
GeogCutter[417] = "Northwest Territories --- N7";
GeogCutter[418] = "Norway --- N8";
GeogCutter[419] = "Nova Scotia --- N8";
GeogCutter[420] = "Nyasaland see Malawi";
GeogCutter[421] = "Oceania --- O3";
GeogCutter[422] = "Ochoco Creek* --- O33";
GeogCutter[423] = "Ochoco National Forest* --- O34";
GeogCutter[424] = "Ohio --- O3";
GeogCutter[425] = "Oklahoma --- O5";
GeogCutter[426] = "Olallie Scenic Area* --- O43";
GeogCutter[427] = "Oman --- O5";
GeogCutter[428] = "Ontario --- O6";
GeogCutter[429] = "Oregon --- O7";
GeogCutter[430] = "Oregon Caves* --- O66";
GeogCutter[431] = "Oregon City* --- O74";
GeogCutter[432] = "Oregon Dunes National Recreation Area* --- O68";
GeogCutter[433] = "Oregon Islands wilderness* --- O7";
GeogCutter[434] = "Oregon State University Campus* --- C6:2O7";
GeogCutter[435] = "Oregon Trail* --- O72";
GeogCutter[436] = "Outer Mongolia see Mongolia";
GeogCutter[437] = "Owyhee basin* --- O9";
GeogCutter[438] = "Pacific Area --- P16";
GeogCutter[439] = "Pakistan --- P18";
GeogCutter[440] = "Palau --- P185";
GeogCutter[441] = "Palestine --- P19";
GeogCutter[442] = "Panama --- P2";
GeogCutter[443] = "Papua New Guinea --- P26";
GeogCutter[444] = "Paraguay --- P3";
GeogCutter[445] = "Paul Dunn forest* --- P32";
GeogCutter[446] = "Peavy arboretum* --- M2:2P4";
GeogCutter[447] = "Pennsylvania --- .P4";
GeogCutter[448] = "Persia see Iran";
GeogCutter[449] = "Persian Gulf Region --- P35";
GeogCutter[450] = "Peru --- P4";
GeogCutter[451] = "Philippines --- P6";
GeogCutter[452] = "Poland --- P7";
GeogCutter[453] = "Pole Canyon* --- P58";
GeogCutter[454] = "Polynesia --- P75";
GeogCutter[455] = "Port Orford* --- O74";
GeogCutter[456] = "Portland* --- P67";
GeogCutter[457] = "Portugal --- P8";
GeogCutter[458] = "Powder drainage basin* --- P6";
GeogCutter[459] = "Powell Butte* --- P62";
GeogCutter[460] = "Prince Edward Island --- P8";
GeogCutter[461] = "Prineville* --- P74";
GeogCutter[462] = "Prussia see Germany";
GeogCutter[463] = "Prussia, East (Poland and Russia) --- P85";
GeogCutter[464] = "Puerto Rico --- P9";
GeogCutter[465] = "Qatar --- Q2";
GeogCutter[466] = "Quartzville Mining District* --- Q3";
GeogCutter[467] = "Quebec (Province) --- Q3";
GeogCutter[468] = "Rastus Mountain* --- R3";
GeogCutter[469] = "Red Buttes Wilderness* --- R44";
GeogCutter[470] = "Réunion --- R4";
GeogCutter[471] = "Rhode Island --- R4";
GeogCutter[472] = "Rhodesia, Northern see Zambia";
GeogCutter[473] = "Rhodesia, Southern see Zimbabwe";
GeogCutter[474] = "Rogue River National Forest* --- R64";
GeogCutter[475] = "Rogue River* --- R6";
GeogCutter[476] = "Rogue-Umpqua Divide Wilderness* --- R645";
GeogCutter[477] = "Roman Empire --- R57";
GeogCutter[478] = "Romania --- R6";
GeogCutter[479] = "Roseburg district (BLM)* --- R66";
GeogCutter[480] = "Roseburg* --- R6";
GeogCutter[481] = "Round Mtn.* --- R68";
GeogCutter[482] = "Rumania see Romania";
GeogCutter[483] = "Russia --- R8";
GeogCutter[484] = "Russia (Federation) see Russia";
GeogCutter[485] = "Rwanda --- R95";
GeogCutter[486] = "Sahel --- S15";
GeogCutter[487] = "Saint Kitts-Nevis --- S16";
GeogCutter[488] = "Saint Lucia --- S17";
GeogCutter[489] = "Saint Vincent --- S18";
GeogCutter[490] = "Salem* --- S3";
GeogCutter[491] = "Salvador --- S2";
GeogCutter[492] = "Samoan Islands --- S24";
GeogCutter[493] = "San Marino --- S27";
GeogCutter[494] = "Sandy River* --- S25";
GeogCutter[495] = "Santiam Pass* --- S3";
GeogCutter[496] = "Sao Tome and Principe --- S3";
GeogCutter[497] = "Saskatchewan --- S2";
GeogCutter[498] = "Saudi Arabia --- S33";
GeogCutter[499] = "Sawtooth Ridge* --- S2";
GeogCutter[500] = "Scandinavia --- S34";
GeogCutter[501] = "Scotland see Great Britain";
GeogCutter[502] = "Senegal --- S38";
GeogCutter[503] = "Serbia see Yugoslavia";
GeogCutter[504] = "Seychelles --- S45";
GeogCutter[505] = "Siam see Thailand";
GeogCutter[506] = "Siberia see Russia";
GeogCutter[507] = "Sierra Leone --- S5";
GeogCutter[508] = "Siletz River* --- S5";
GeogCutter[509] = "Siltcoos Lake* --- S52";
GeogCutter[510] = "Silver Creek Falls State Park* --- S54";
GeogCutter[511] = "Singapore --- S55";
GeogCutter[512] = "Siskiyou National Forest* --- S57";
GeogCutter[513] = "Siuslaw National Forest* --- S59";
GeogCutter[514] = "Sky Lakes* --- S6";
GeogCutter[515] = "Slovakia --- S56";
GeogCutter[516] = "Slovenia --- S57";
GeogCutter[517] = "Solomon Islands --- S575";
GeogCutter[518] = "Somalia --- S58";
GeogCutter[519] = "South Africa --- S6";
GeogCutter[520] = "South America --- S63";
GeogCutter[521] = "South Asia --- S64";
GeogCutter[522] = "South Carolina --- S6";
GeogCutter[523] = "South coast basin* --- S63";
GeogCutter[524] = "South Dakota --- S8";
GeogCutter[525] = "Southeast Oregon* --- S64";
GeogCutter[526] = "Southern Cone of South America, see South America";
GeogCutter[527] = "Southwest Oregon* --- S65";
GeogCutter[528] = "Soviet Union --- S65";
GeogCutter[529] = "Spain --- S7";
GeogCutter[530] = "Sri Lanka --- S72";
GeogCutter[531] = "St. Helens* --- S2";
GeogCutter[532] = "Steens Mountain* --- S7";
GeogCutter[533] = "Strawberry Mountain* --- S75";
GeogCutter[534] = "Sudan --- S73";
GeogCutter[535] = "Sudan (Region) --- S74";
GeogCutter[536] = "Sunriver* --- S87";
GeogCutter[537] = "Suplee-Izee area* --- S9";
GeogCutter[538] = "Surinam --- S75";
GeogCutter[539] = "Swaziland --- S78";
GeogCutter[540] = "Sweden --- S8";
GeogCutter[541] = "Switzerland --- S9";
GeogCutter[542] = "Syria --- S95";
GeogCutter[543] = "Taiwan --- T28";
GeogCutter[544] = "Tajikistan --- T3";
GeogCutter[545] = "Tamil Nadu see India";
GeogCutter[546] = "Tanganyika see Tanzania";
GeogCutter[547] = "Tanzania --- T34";
GeogCutter[548] = "Tasmania see Australia";
GeogCutter[549] = "Tennessee --- T2";
GeogCutter[550] = "Terres australes et antarctiques françaises --- T47";
GeogCutter[551] = "Texas --- T4";
GeogCutter[552] = "Thailand --- T5";
GeogCutter[553] = "Three Sisters Wilderness* --- T47";
GeogCutter[554] = "Three Sisters* --- T45";
GeogCutter[555] = "Tibet --- T55";
GeogCutter[556] = "Tillamook Burn* --- T54";
GeogCutter[557] = "Tillamook district* --- N61:3T5";
GeogCutter[558] = "Tobago see Trinidad and Tobago";
GeogCutter[559] = "Togo --- T6";
GeogCutter[560] = "Tonga --- T63";
GeogCutter[561] = "Transvaal see South Africa";
GeogCutter[562] = "Trinidad and Tobago --- T7";
GeogCutter[563] = "Trinidad see Trinidad and Tobago";
GeogCutter[564] = "Tropics --- T73";
GeogCutter[565] = "Tualatin Valley* --- T83";
GeogCutter[566] = "Tubuai Islands --- T77";
GeogCutter[567] = "Tunisia --- T8";
GeogCutter[568] = "Turkey --- T9";
GeogCutter[569] = "Turkmenistan --- T93";
GeogCutter[570] = "Turks and Caicos Islands --- T94";
GeogCutter[571] = "Tuvalu --- T95";
GeogCutter[572] = "Uganda --- U33";
GeogCutter[573] = "Ukraine --- U38";
GeogCutter[574] = "Umatilla basin* --- U41";
GeogCutter[575] = "Umatilla National Forest* --- U43";
GeogCutter[576] = "Umpqua drainage basin* --- U46";
GeogCutter[577] = "Umpqua National Forest* --- U463";
GeogCutter[578] = "United Arab Emirates --- U5";
GeogCutter[579] = "United States --- U6";
GeogCutter[580] = "University of Oregon Campus* --- E8:2U5";
GeogCutter[581] = "Upper coast drainage basin* --- U6";
GeogCutter[582] = "Upper Volta see Burkina Faso";
GeogCutter[583] = "Upper Willamette drainage basin* --- W52";
GeogCutter[584] = "Uruguay --- U8";
GeogCutter[585] = "Utah --- U8";
GeogCutter[586] = "Uzbekistan --- U9";
GeogCutter[587] = "Vale district (BLM)* --- V3";
GeogCutter[588] = "Vanuatu --- V26";
GeogCutter[589] = "Vatican City --- V3";
GeogCutter[590] = "Venezuela --- V4";
GeogCutter[591] = "Vermont --- V5";
GeogCutter[592] = "Vietnam --- V5";
GeogCutter[593] = "Vietnam (Democratic Republic) see Vietnam";
GeogCutter[594] = "Virgin Islands --- V6";
GeogCutter[595] = "Virgin Islands of the United States --- V63";
GeogCutter[596] = "Virginia --- V8";
GeogCutter[597] = "Virtue Flatt* --- V5";
GeogCutter[598] = "Waldo Lake* --- W33";
GeogCutter[599] = "Waldport* --- W18";
GeogCutter[600] = "Wales see Great Britain";
GeogCutter[601] = "Wallowa-Whitman National Forest* --- W34";
GeogCutter[602] = "Warm Springs Indian Reservation* --- W37";
GeogCutter[603] = "Washington (D.C.) --- W18";
GeogCutter[604] = "Washington (State) --- W2";
GeogCutter[605] = "Wenaha-Tucannon Wilderness* --- W43";
GeogCutter[606] = "West Indies, British --- W47";
GeogCutter[607] = "West Indies, French --- W48";
GeogCutter[608] = "West Linn* --- W45";
GeogCutter[609] = "West Virginia --- W4";
GeogCutter[610] = "Western Australia see Australia";
GeogCutter[611] = "Western Oregon* --- W4";
GeogCutter[612] = "Western Samoa --- W5";
GeogCutter[613] = "Whitehorse Caldera* --- W48";
GeogCutter[614] = "Willamette National Forest* --- W51";
GeogCutter[615] = "Willamette River* --- W5";
GeogCutter[616] = "Wilson River* --- W542";
GeogCutter[617] = "Winema National Forest* --- W545";
GeogCutter[618] = "Wisconsin --- W6";
GeogCutter[619] = "Wyoming --- W8";
GeogCutter[620] = "Yaquina Bay* --- Y3";
GeogCutter[621] = "Yemen --- Y4";
GeogCutter[622] = "Yemen (People's Democratic Republic) see Yemen";
GeogCutter[623] = "Yugoslavia --- Y8";
GeogCutter[624] = "Yukon (Territory) --- Y8";
GeogCutter[625] = "Zaire --- Z28";
GeogCutter[626] = "Zambezi River Region --- Z32";
GeogCutter[627] = "Zambia --- Z33";
GeogCutter[628] = "Zimbabwe --- Z55";

}

//#####################################################################

function LoadGeogCodes() {

GeogCode[1] = "Abu Dhabi (United Arab Emirates : Emirate)\n  USE  Abu Z.aby (United Arab Emirates : Emirate)";
GeogCode[2] = "Abu Z.aby (United Arab Emirates : Emirate)\n  Assigned code:\n     a-ts --- United Arab Emirates";
GeogCode[3] = "Abyssinia\n  USE  Ethiopia";
GeogCode[4] = "Adamawa (Emirate)\n  Assigned codes:\n     f-cm --- Cameroon\n     f-nr --- Nigeria";
GeogCode[5] = "Aden (Protectorate)\n     Coded a-ys (Yemen (People's Democratic Republic) before Oct. 1992 \n  Assigned code:\n     a-ye --- Yemen";
GeogCode[6] = "Aden, Gulf of\n  Assigned code:\n     mr --- Red Sea";
GeogCode[7] = "Aden\n     Coded a-ys (Yemen (People's Democratic Republic) before Oct. 1992 \n  Assigned code:\n     a-ye --- Yemen";
GeogCode[8] = "Admiralty Islands (Papua New Guinea)\n  Assigned code:\n     a-pp --- Papua New Guinea";
GeogCode[9] = "Adriatic Sea\n  Assigned code:\n     mm --- Mediterranean Sea";
GeogCode[10] = "Aegean Islands (Greece and Turkey)\n  Assigned codes:\n     e-gr --- \n     a-tu --- Turkey";
GeogCode[11] = "Aegean Sea\n  Assigned codes:\n     e-gr --- \n     a-tu --- Turkey";
GeogCode[12] = "Afars and Issas, French Territory of the\n  USE  Djibouti";
GeogCode[13] = "Afghanistan --- a-af";
GeogCode[14] = "Africa --- f";
GeogCode[15] = "Africa, Central --- fc";
GeogCode[16] = "Africa, East\n  Assigned code:\n     fe --- Africa, Eastern";
GeogCode[17] = "Africa, Eastern --- fe";
GeogCode[18] = "Africa, Equatorial\n  USE  Africa, French-speaking Equatorial";
GeogCode[19] = "Africa, French-speaking Equatorial --- fq";
GeogCode[20] = "Africa, French-speaking West\n  Assigned code:\n     fw --- Africa, West";
GeogCode[21] = "Africa, Italian East\n  USE  Africa, Northeast";
GeogCode[22] = "Africa, North --- ff";
GeogCode[23] = "Africa, Northeast --- fh";
GeogCode[24] = "Africa, Northwest\n  Assigned codes:\n     ff --- Africa, North\n     fw --- Africa, West";
GeogCode[25] = "Africa, South\n  USE  South Africa";
GeogCode[26] = "Africa, Southern --- fs";
GeogCode[27] = "Africa, Southwest\n  USE  Namibia";
GeogCode[28] = "Africa, Sub-Saharan --- fb";
GeogCode[29] = "Africa, West --- fw";
GeogCode[30] = "Alabama --- n-us-al";
GeogCode[31] = "Alaska --- n-us-ak";
GeogCode[32] = "Alaska, Gulf of (Alaska)\n  Assigned code:\n     pn --- North Pacific Ocean";
GeogCode[33] = "Albania --- e-aa";
GeogCode[34] = "Alberta --- n-cn-ab";
GeogCode[35] = "Alderney\n  Assigned code:\n     e-uk-ui --- Great Britain Miscellaneous Island Dependencies";
GeogCode[36] = "Algeria --- f-ae";
GeogCode[37] = "Alps --- ea";
GeogCode[38] = "Amazon River --- sa";
GeogCode[39] = "America, Central\n  USE  Central America";
GeogCode[40] = "America\n  Assigned codes:\n     n --- North America\n     s --- South America";
GeogCode[41] = "American Samoa --- poas";
GeogCode[42] = "Amur River (China and Russia) --- aa";
GeogCode[43] = "Andaman and Nicobar Islands (India)\n  Assigned code:\n     a-ii --- India";
GeogCode[44] = "Andean Area\n  USE  Andes";
GeogCode[45] = "Andes --- sn";
GeogCode[46] = "Andorra --- e-an";
GeogCode[47] = "Anglo-Egyptian Sudan\n  USE  Sudan";
GeogCode[48] = "Angola --- f-ao";
GeogCode[49] = "Anguilla --- nwxa\n     Coded nwxi (Saint Kitts and Nevis) before Mar. 1988";
GeogCode[50] = "Anhwei Province (China) --- a-cc-an";
GeogCode[51] = "Antarctic Ocean --- t";
GeogCode[52] = "Antarctic regions \n  USE  Antarctica";
GeogCode[53] = "Antarctica --- t\n     Coded also t-ay (Antarctica) before Mar. 1988";
GeogCode[54] = "Antigua and Barbuda --- nwaq";
GeogCode[55] = "Antigua\n  Assigned code:\n     nwaq --- Antigua and Barbuda";
GeogCode[56] = "Antilles, Greater\n     Coded nwga (Greater Antilles) before Mar. 1988\n  USE  West Indies";
GeogCode[57] = "Antilles, Lesser --- nwla";
GeogCode[58] = "Appalachian Mountains --- n-usa";
GeogCode[59] = "Appalachian Mountains, Southern\n  Assigned code:\n     n-usa --- Appalachian Mountains";
GeogCode[60] = "Appalachian Region\n  Assigned code:\n     n-usa --- Appalachian Mountains";
GeogCode[61] = "Aqaba, Gulf of\n  Assigned code:\n     mr --- Red Sea";
GeogCode[62] = "Arab Republic of Yemen\n  USE  Yemen";
GeogCode[63] = "Arab countries --- ma";
GeogCode[64] = "Arabia, Southern\n  Assigned codes:\n     a-mk --- Oman\n     a-ye --- Yemen";
GeogCode[65] = "Arabia\n  USE  Arabian Peninsula";
GeogCode[66] = "Arabian Peninsula --- ar";
GeogCode[67] = "Arabian Sea --- au";
GeogCode[68] = "Arabic countries\n  USE  Arab countries";
GeogCode[69] = "Arafura Sea\n  Assigned code:\n     ps --- South Pacific Ocean";
GeogCode[70] = "Aran Islands (Ireland)\n  Assigned code:\n     e-ie --- Ireland";
GeogCode[71] = "Archipel des Marquises (French Polynesia)\n  USE  Marquesas Islands (French Polynesia)";
GeogCode[72] = "Arctic Ocean --- r";
GeogCode[73] = "Arctic regions --- r";
GeogCode[74] = "Argentina --- s-ag";
GeogCode[75] = "Arizona --- n-us-az";
GeogCode[76] = "Arkansas --- n-us-ar";
GeogCode[77] = "Armenia (Republic) --- a-ai\n     Coded e-ur-ai (Armenia (Republic)) before June 1998";
GeogCode[78] = "Armenia\n  Assigned codes:\n     a-ai --- Armenia (Republic)\n     a-ir --- Iran\n     a-tu --- Turkey";
GeogCode[79] = "Armenian S.S.R.\n  USE  Armenia (Republic)";
GeogCode[80] = "Aruba\n  Assigned code:\n     nwco --- Curaçao";
GeogCode[81] = "Ascension Island (Atlantic Ocean) --- lsai";
GeogCode[82] = "Ashanti\n  USE  Ghana";
GeogCode[83] = "Ashmore and Cartier Islands --- u-ac";
GeogCode[84] = "Asia --- a";
GeogCode[85] = "Asia Minor\n  USE  Turkey";
GeogCode[86] = "Asia and Europe (treated collectively)\n  USE  Eurasia";
GeogCode[87] = "Asia, Central --- ac";
GeogCode[88] = "Asia, East\n  USE  East Asia";
GeogCode[89] = "Asia, South --- az";
GeogCode[90] = "Asia, Southeastern --- as";
GeogCode[91] = "Asia, Southwestern\n  USE  Middle East";
GeogCode[92] = "Asia, Western\n  USE  Middle East";
GeogCode[93] = "Atlantic Coast (U.S.)\n  Assigned code:\n     n-us --- United States";
GeogCode[94] = "Atlantic Ocean --- l";
GeogCode[95] = "Atlantic States, South\n  USE  South Atlantic States";
GeogCode[96] = "Atlantic States\n  Assigned code:\n     n-us --- United States";
GeogCode[97] = "Atlas Mountains --- fa";
GeogCode[98] = "Austral Islands (French Polynesia)\n  Assigned code:\n     pofp --- French Polynesia";
GeogCode[99] = "Australasia --- u";
GeogCode[100] = "Australia --- u-at";
GeogCode[101] = "Australian Capital Territory\n  Assigned code:\n     u-at-ne --- New South Wales";
GeogCode[102] = "Austria --- e-au";
GeogCode[103] = "Azad Jammu and Kashmir\n  USE  Azad Kashmir";
GeogCode[104] = "Azad Kashmir\n  Assigned code:\n     a-pk --- Pakistan";
GeogCode[105] = "Azerbaijan  --- a-aj\n     Coded e-ur-aj (Azerbaijan) before June 1998";
GeogCode[106] = "Azerbaijan S.S.R.\n  USE  Azerbaijan";
GeogCode[107] = "Azores --- lnaz";
GeogCode[108] = "Açores\n  USE  Azores";
GeogCode[109] = "Babylonia\n  Assigned code:\n     a-iq --- Iraq";
GeogCode[110] = "Bahamas --- nwbf";
GeogCode[111] = "Bahrain --- a-ba";
GeogCode[112] = "Bahrein\n  USE  Bahrain";
GeogCode[113] = "Balearic Islands (Spain)\n  Assigned code:\n     e-sp --- Spain";
GeogCode[114] = "Balkan Peninsula --- ed";
GeogCode[115] = "Baltic Sea\n  Assigned code:\n     ln --- North Atlantic Ocean";
GeogCode[116] = "Baltic States --- eb";
GeogCode[117] = "Banaba (Kiribati)\n  Assigned code:\n     pokb --- Kiribati";
GeogCode[118] = "Bangladesh --- a-bg";
GeogCode[119] = "Banks Islands (Vanuatu)\n  Assigned code:\n     ponn --- Vanuatu";
GeogCode[120] = "Barbados --- nwbb";
GeogCode[121] = "Barbuda\n     Coded nwbc (Barbuda) before Mar. 1988\n  Assigned code:\n     nwaq --- Antigua and Barbuda";
GeogCode[122] = "Barents Sea\n  Assigned code:\n     r --- Arctic Ocean";
GeogCode[123] = "Basutoland\n  USE  Lesotho";
GeogCode[124] = "Bay of Bengal\n  USE  Bengal, Bay of";
GeogCode[125] = "Bay of Fundy\n  USE  Fundy, Bay of";
GeogCode[126] = "Bear Island (Norway)\n  Assigned code:\n     lnsb --- Svalbard (Norway)";
GeogCode[127] = "Beaufort Sea\n  Assigned code:\n     r --- Arctic Ocean";
GeogCode[128] = "Bechuanaland\n  USE  Botswana";
GeogCode[129] = "Beijing (China)\n  USE  Peking (China)";
GeogCode[130] = "Belarus --- e-bw\n     Coded e-ur-bw (Belarus) before June 1998";
GeogCode[131] = "Belau\n  USE  Palau";
GeogCode[132] = "Belgian Congo\n  USE  Congo (Democratic Republic)";
GeogCode[133] = "Belgium --- e-be";
GeogCode[134] = "Belize --- ncbh";
GeogCode[135] = "Belorussian S.S.R.\n  USE  Belarus";
GeogCode[136] = "Benelux countries --- el";
GeogCode[137] = "Bengal, Bay of --- ab";
GeogCode[138] = "Benin --- f-dm";
GeogCode[139] = "Bering Sea\n  Assigned code:\n     pn --- North Pacific Ocean";
GeogCode[140] = "Berlin (Germany)\n     Coded e-gx (Germany) for Berlin as a whole; e-ge (Germany (East)) for East Berlin; or e-gw (Germany (West)) for West Berlin before Jan. 1991 \n  Assigned code:\n     e-gx --- Germany";
GeogCode[141] = "Bermuda Islands --- lnbm";
GeogCode[142] = "Bermuda Triangle\n  Assigned code:\n     ln --- North Atlantic Ocean";
GeogCode[143] = "Bhutan --- a-bt";
GeogCode[144] = "Biafra\n     Coded f-by (Biafra) before Mar. 1988\n  Assigned code:\n     f-nr --- Nigeria";
GeogCode[145] = "Bikini Atoll (Marshall Islands)\n  Assigned code:\n     poxe --- Marshall Islands";
GeogCode[146] = "Bioco (Equatorial Guinea)\n  USE  Fernando Po (Equatorial Guinea)";
GeogCode[147] = "Bioko (Equatorial Guinea)\n  USE  Fernando Po (Equatorial Guinea)";
GeogCode[148] = "Bismarck Archipelago (Papua New Guinea)\n  Assigned code:\n     a-pp --- Papua New Guinea";
GeogCode[149] = "Bjørnøya (Norway)\n  USE  Bear Island (Norway)";
GeogCode[150] = "Black Sea --- mb";
GeogCode[151] = "Blue Ridge Mountains\n  Assigned code:\n     n-usa --- Appalachian Mountains";
GeogCode[152] = "Bo Hai (China)\n  USE  Po Hai (China)";
GeogCode[153] = "Bohai (China)\n  USE  Po Hai (China)";
GeogCode[154] = "Bolivia --- s-bo";
GeogCode[155] = "Bonaire\n  Assigned code:\n     nwco --- Curaçao";
GeogCode[156] = "Bophuthatswana (South Africa)\n  Assigned code:\n     f-sa --- South Africa";
GeogCode[157] = "Borneo --- a-bn";
GeogCode[158] = "Bosnia and Hercegovina --- e-bn";
GeogCode[159] = "Botswana --- f-bs";
GeogCode[160] = "Bougainville Island (Papua New Guinea)\n  Assigned code:\n     a-pp --- Papua New Guinea";
GeogCode[161] = "Bouvet Island --- lsbv";
GeogCode[162] = "Brazil --- s-bl";
GeogCode[163] = "Brazzaville\n  USE  Congo (Brazzaville)";
GeogCode[164] = "British Columbia --- n-cn-bc";
GeogCode[165] = "British Commonwealth countries\n  USE  Commonwealth countries";
GeogCode[166] = "British Dominions\n  USE  Commonwealth countries";
GeogCode[167] = "British East Africa\n  USE  Africa, East";
GeogCode[168] = "British Guiana\n  USE  Guyana";
GeogCode[169] = "British Honduras\n  USE  Belize";
GeogCode[170] = "British Indian Ocean Territory --- i-bi";
GeogCode[171] = "British Isles\n  Assigned codes:\n     e-uk --- Great Britain\n     e-ie --- Ireland";
GeogCode[172] = "British North Borneo\n  USE  Sabah";
GeogCode[173] = "British Solomon Islands\n  USE  Solomon Islands";
GeogCode[174] = "British Somaliland\n  USE  Somalia";
GeogCode[175] = "British Togoland\n  USE  Togoland (British)";
GeogCode[176] = "British Virgin Islands --- nwvb";
GeogCode[177] = "British West Africa\n  USE  Africa, West";
GeogCode[178] = "Brownsea Island (England)\n  Assigned code:\n     e-uk-en --- England";
GeogCode[179] = "Brunei --- a-bx";
GeogCode[180] = "Bulgaria --- e-bu";
GeogCode[181] = "Burkina Faso --- f-uv";
GeogCode[182] = "Burma --- a-br";
GeogCode[183] = "Burundi --- f-bd";
GeogCode[184] = "Byelorussian S.S.R. \n  USE  Belarus";
GeogCode[185] = "Byzantine Empire\n  Assigned code:\n     mm --- Mediterranean Region";
GeogCode[186] = "Cabo Verde\n  USE  Cape Verde";
GeogCode[187] = "Caicos Islands\n  USE  Turks and Caicos Islands";
GeogCode[188] = "Calf of Man\n  Assigned code:\n     e-uk-ui --- Great Britain Miscellaneous Island Dependencies";
GeogCode[189] = "California --- n-us-ca";
GeogCode[190] = "Cambodia --- a-cb";
GeogCode[191] = "Cameroon --- f-cm";
GeogCode[192] = "Cameroons, French\n  USE  Cameroon";
GeogCode[193] = "Cameroons, Southern\n  USE  Cameroon";
GeogCode[194] = "Cameroun\n  USE  Cameroon";
GeogCode[195] = "Canada --- n-cn";
GeogCode[196] = "Canada, Eastern\n  Assigned code:\n     n-cn --- Canada";
GeogCode[197] = "Canada, Northern\n  Assigned code:\n     n-cn --- Canada";
GeogCode[198] = "Canada, Western\n  Assigned codes:\n     n-cn-bc --- British Columbia\n     n-cnp --- Prairie Provinces";
GeogCode[199] = "Canadian Northwest\n  USE  Northwest, Canadian";
GeogCode[200] = "Canal Zone --- nccz";
GeogCode[201] = "Canary Islands --- lnca";
GeogCode[202] = "Canton and Enderbury Islands\n     Coded pocp (Canton and Enderbury Islands) before Mar. 1988\n  Assigned code:\n     pokb --- Kiribati";
GeogCode[203] = "Cape Verde --- lncv";
GeogCode[204] = "Caribbean Area --- cc";
GeogCode[205] = "Caribbean Island Dependencies of the United States\n  USE  United States Miscellaneous Caribbean Islands";
GeogCode[206] = "Caribbean Sea --- cc";
GeogCode[207] = "Caribbean Sea Region\n  USE  Caribbean Area";
GeogCode[208] = "Caroline Islands --- poci";
GeogCode[209] = "Carpathian Mountains\n  Assigned code:\n     ee --- Europe, Eastern";
GeogCode[210] = "Carpentaria, Gulf of (N.T. and Qld.)\n     Coded ps (South Pacific Ocean) before June 1998\n  Assigned code:\n     u-at-no --- Northern Territory\n     u-at-qn --- Queensland";
GeogCode[211] = "Caspian Sea --- ak";
GeogCode[212] = "Caucasus --- e-urk";
GeogCode[213] = "Caucasus, Northern (Russia) --- e-urr";
GeogCode[214] = "Cayman Islands --- nwcj";
GeogCode[215] = "Celebes (Indonesia)\n  Assigned code:\n     a-io --- Indonesia";
GeogCode[216] = "Central Africa\n  USE  Africa, Central";
GeogCode[217] = "Central African Empire\n  USE  Central African Republic";
GeogCode[218] = "Central African Republic --- f-cx";
GeogCode[219] = "Central America --- nc";
GeogCode[220] = "Central Asia\n  USE  Asia, Central";
GeogCode[221] = "Central Black Earth Region (Russia)\n  USE  Central Chernozem Region (Russia)";
GeogCode[222] = "Central Black Soil Region (Russia)\n  USE  Central Chernozem Region (Russia)";
GeogCode[223] = "Central Chernozem Region (Russia) --- e-urc";
GeogCode[224] = "Central Europe --- ec";
GeogCode[225] = "Ceuta (Spain)\n  Assigned code:\n     f-sh --- Spanish North Africa";
GeogCode[226] = "Ceylon\n  USE  Sri Lanka";
GeogCode[227] = "Ch'ang Chiang (China)\n  USE  Yangtze River (China)";
GeogCode[228] = "Chad --- f-cd";
GeogCode[229] = "Chad, Lake\n  Assigned code:\n     fq --- Africa, French-speaking Equatorial";
GeogCode[230] = "Chagos Islands\n  USE  British Indian Ocean Territory";
GeogCode[231] = "Channel Islands\n  Assigned code:\n     e-uk-ui  --- Great Britain Miscellaneous Island Dependencies";
GeogCode[232] = "Chekiang Province (China) --- a-cc-ch";
GeogCode[233] = "Chesapeake Bay (Md. and Va.)\n  Assigned codes:\n     n-us-md --- Maryland\n     n-us-va --- Virginia";
GeogCode[234] = "Chihli, Gulf of (China)\n  USE  Po Hai (China)";
GeogCode[235] = "Chile --- s-cl";
GeogCode[236] = "China --- a-cc";
GeogCode[237] = "Chishima-retto (Russia)\n  USE  Kuril Islands (Russia)";
GeogCode[238] = "Christmas Island (Indian Ocean) --- i-xa";
GeogCode[239] = "Christmas Island (Pacific Ocean)\n  USE  Kiritimati (Kiribati)";
GeogCode[240] = "Circumcaribbean\n     Coded cr (Circumcaribbean) before Mar. 1988\n  USE  Caribbean Area";
GeogCode[241] = "Cocos (Keeling) Islands --- i-xb";
GeogCode[242] = "Cold regions --- q";
GeogCode[243] = "Colombia --- s-ck";
GeogCode[244] = "Colorado --- n-us-co";
GeogCode[245] = "Colorado River (Colo.-Mexico)\n  Assigned codes:\n     n-mx --- Mexico\n     n-usp  --- West (U.S.)";
GeogCode[246] = "Colorado River Delta (Mexico)\n  Assigned code:\n     n-mx --- Mexico";
GeogCode[247] = "Columbia River\n  Assigned code:\n     n-usp  --- West (U.S.)";
GeogCode[248] = "Commonwealth countries --- b";
GeogCode[249] = "Commonwealth nations\n  USE  Commonwealth countries";
GeogCode[250] = "Commonwealth of Independent States countries\n  USE  Soviet Union";
GeogCode[251] = "Commonwealth of the Northern Mariana Islands\n  USE  Mariana Islands";
GeogCode[252] = "Communauté francaise\n  USE  French Community";
GeogCode[253] = "Communist countries --- v\n     Coded v (Communist countries) before June 1998\n  Assigned codes:\n     e-ur --- Soviet Union\n     ee  --- Europe, Eastern";
GeogCode[254] = "Comoro Islands\n  USE  Comoros";
GeogCode[255] = "Comoros --- i-cq";
GeogCode[256] = "Confederate States of America\n  Assigned code:\n     n-usu --- Southern States";
GeogCode[257] = "Congo (Brazzaville) --- f-cf";
GeogCode[258] = "Congo (Democratic Republic) --- f-cg";
GeogCode[259] = "Congo (Kingdom)\n  USE  Kongo Kingdom";
GeogCode[260] = "Congo (Kinshasa)\n  USE  Congo (Democratic Republic)";
GeogCode[261] = "Congo (Leopoldville)\n  USE  Congo (Democratic Republic)";
GeogCode[262] = "Congo River --- fg";
GeogCode[263] = "Connecticut --- n-us-ct";
GeogCode[264] = "Cook Islands --- pocw";
GeogCode[265] = "Corsica (France)\n  Assigned code:\n     e-fr --- France";
GeogCode[266] = "Costa Rica --- nccr";
GeogCode[267] = "Crete (Greece)\n  Assigned code:\n     e-gr --- Greece";
GeogCode[268] = "Croatia --- e-ci\n     Coded e-yu (Yugoslavia) before Oct. 1992";
GeogCode[269] = "Cuba --- nwcu";
GeogCode[270] = "Cumberland Mountains\n  Assigned code:\n     n-usu --- Southern States";
GeogCode[271] = "Curaçao --- nwco";
GeogCode[272] = "Cyprus --- a-cy";
GeogCode[273] = "Czech Republic --- e-xr\n     Coded e-cs (Czechoslovakia) before May 1993";
GeogCode[274] = "Czech Socialist Republic (Czechoslovakia)\n  USE  Czech Republic";
GeogCode[275] = "Czechoslovakia --- e-cs\n     Includes the Czech Republic and Slovakia treated collectively";
GeogCode[276] = "Côte d'Ivoire --- f-iv";
GeogCode[277] = "D'Entrecasteaux Islands (Papua New Guinea)\n  Assigned code:\n     a-pp --- Papua New Guinea";
GeogCode[278] = "Dahomey\n  USE  Benin";
GeogCode[279] = "Danube River --- eo";
GeogCode[280] = "Delaware --- n-us-de";
GeogCode[281] = "Democratic German Republic\n  USE  Germany (East)";
GeogCode[282] = "Denmark --- e-dk";
GeogCode[283] = "Desolation Islands\n  USE  Kerguelen Islands";
GeogCode[284] = "Developing countries --- d";
GeogCode[285] = "Diego Garcia\n  Assigned code:\n     i-bi --- British Indian Ocean Territory";
GeogCode[286] = "District of Columbia\n  USE  Washington (D.C.)";
GeogCode[287] = "Djibouti --- f-ft";
GeogCode[288] = "Dodecanese (Greece)\n  USE  D¸dekan-sos (Greece)";
GeogCode[289] = "Dominica --- nwdq";
GeogCode[290] = "Dominican Republic --- nwdr";
GeogCode[291] = "Dubai\n  USE  Dubayy (United Arab Emirates : Emirate)";
GeogCode[292] = "Dubayy (United Arab Emirates : Emirate)\n  Assigned code:\n     a-ts --- United Arab Emirates";
GeogCode[293] = "Dutch East Indies\n  USE  Indonesia";
GeogCode[294] = "Dutch Guiana\n  USE  Surinam";
GeogCode[295] = "Dutch West Indies\n  USE  Netherlands Antilles";
GeogCode[296] = "Dza-chu\n  USE  Mekong River";
GeogCode[297] = "D¸dekan-sos (Greece)\n  Assigned code:\n     e-gr --- Greece";
GeogCode[298] = "East (Far East)\n  USE  East Asia";
GeogCode[299] = "East (Near East)\n  USE  Middle East";
GeogCode[300] = "East Africa Protectorate\n  USE  Kenya";
GeogCode[301] = "East Africa, Portuguese\n  USE  Mozambique";
GeogCode[302] = "East Africa\n  USE  Africa, East";
GeogCode[303] = "East African Horn\n  USE  Africa, Northeast";
GeogCode[304] = "East Asia --- ae";
GeogCode[305] = "East Berlin\n  USE  Berlin (Germany)";
GeogCode[306] = "East China Sea --- an";
GeogCode[307] = "East Germany\n  USE  Germany (East)";
GeogCode[308] = "East Indies\n  Assigned codes:\n     az --- Asia, South\n     as --- Asia, Southeastern";
GeogCode[309] = "East Pakistan (Pakistan)\n  USE  Bangladesh";
GeogCode[310] = "East Siberian Region (Russia)\n  USE  Siberia, Eastern (Russia)";
GeogCode[311] = "East Timor (Indonesia)\n  USE  Timor Timur (Indonesia)";
GeogCode[312] = "East\n  USE  Orient";
GeogCode[313] = "Easter Island --- poea";
GeogCode[314] = "Eastern Africa\n  USE  Africa, Eastern";
GeogCode[315] = "Eastern Canada\n  USE  Canada, EasternCopyright (c)1998 by the Library of Congress except within the USA. Copyright (c)1998 Folio Corporation.  All rights reserved.";
GeogCode[316] = "Eastern Europe\n  USE  Europe, Eastern";
GeogCode[317] = "Eastern Hemisphere --- xa";
GeogCode[318] = "Eastern Mediterranean\n  USE  Middle East";
GeogCode[319] = "Eastern Siberia (Russia)\n  USE  Siberia, Eastern (Russia)";
GeogCode[320] = "Ecuador --- s-ec";
GeogCode[321] = "Egypt --- f-ua";
GeogCode[322] = "Eire\n  USE  Ireland";
GeogCode[323] = "El Salvador --- nces";
GeogCode[324] = "Ellice Islands\n  USE  Tuvalu";
GeogCode[325] = "Emerging nations\n  USE  Developing countries";
GeogCode[326] = "Enderbury and Canton Islands\n  USE  Canton and Enderbury Islands";
GeogCode[327] = "England --- e-uk-en";
GeogCode[328] = "English Channel\n  Assigned code:\n     ln --- North Atlantic Ocean";
GeogCode[329] = "Equatorial Guinea --- f-eg";
GeogCode[330] = "Eritrea --- f-ea\n     Coded f-et (Ethiopia) before Nov. 1993";
GeogCode[331] = "Estonia --- e-er";
GeogCode[332] = "Ethiopia --- f-et";
GeogCode[333] = "Eurasia --- me";
GeogCode[334] = "Europe --- e";
GeogCode[335] = "Europe and Asia (treated collectively)\n  USE  Eurasia";
GeogCode[336] = "Europe, Central --- ec";
GeogCode[337] = "Europe, East Central\n     Coded et (Europe, East Central) before Mar. 1988\n  USE  Europe, Central";
GeogCode[338] = "Europe, Eastern --- ee";
GeogCode[339] = "Europe, Northern --- en";
GeogCode[340] = "Europe, Southeastern\n  USE  Balkan Peninsula";
GeogCode[341] = "Europe, Southern --- es";
GeogCode[342] = "Europe, Western --- ew";
GeogCode[343] = "European Economic Community countries\n  Assigned code:\n     e --- Europe";
GeogCode[344] = "European Union countries\n  Assigned code:\n     e --- Europe";
GeogCode[345] = "Faeroe Islands\n  USE  Faroe Islands";
GeogCode[346] = "Falkland Islands --- lsfk";
GeogCode[347] = "Far East (Russia)\n  USE  Russian Far East (Russia)";
GeogCode[348] = "Far East\n  USE  East Asia";
GeogCode[349] = "Far Eastern Region (Russia)\n  USE  Russian Far East (Russia)";
GeogCode[350] = "Far West (U.S.)\n  USE  West (U.S.)";
GeogCode[351] = "Faroe Islands --- lnfa";
GeogCode[352] = "Federal Capital Territory\n  USE  Australian Capital Territory";
GeogCode[353] = "Federal German Republic\n  USE  Germany (West)";
GeogCode[354] = "Federated States of Micronesia\n  USE  Micronesia (Federated States)";
GeogCode[355] = "Federation of Rhodesia and Nyasaland\n  USE  Rhodesia and Nyasaland";
GeogCode[356] = "Federation of South Arabia\n  Assigned code:\n     a-ye --- Yemen";
GeogCode[357] = "Fernando Po (Equatorial Guinea)\n  Assigned code:\n     f-eg --- Equatorial Guinea";
GeogCode[358] = "Fiji --- pofj";
GeogCode[359] = "Finland --- e-fi";
GeogCode[360] = "Florida --- n-us-fl";
GeogCode[361] = "Former Soviet republics\n  USE  Soviet Union";
GeogCode[362] = "Former Yugoslav republics\n  USE  Yugoslavia";
GeogCode[363] = "Formosa\n  USE  Taiwan";
GeogCode[364] = "France --- e-fr";
GeogCode[365] = "French Cameroons\n  USE  Cameroon";
GeogCode[366] = "French Community --- h";
GeogCode[367] = "French Congo\n  USE  Congo (Brazzaville)";
GeogCode[368] = "French Equatorial Africa\n  USE  Africa, French-speaking Equatorial";
GeogCode[369] = "French Guiana --- s-fg";
GeogCode[370] = "French Guinea\n  USE  Guinea";
GeogCode[371] = "French India\n  Assigned code:\n     a-ii --- India";
GeogCode[372] = "French Indochina\n  USE  Indochina";
GeogCode[373] = "French Morocco\n  USE  Morocco";
GeogCode[374] = "French Polynesia --- pofp";
GeogCode[375] = "French Somaliland\n  USE  Djibouti";
GeogCode[376] = "French Southern Indian Ocean Islands\n  USE  Terres australes et antarctiques françaises";
GeogCode[377] = "French Southern and Antarctic Lands\n  USE  Terres australes et antarctiques françaises";
GeogCode[378] = "French Sudan\n  USE  Mali";
GeogCode[379] = "French Territory of the Afars and Issas\n  USE  Djibouti";
GeogCode[380] = "French Togoland\n  USE  Togo";
GeogCode[381] = "French Union\n  USE  French Community";
GeogCode[382] = "French West Africa\n  USE  Africa, French-speaking West";
GeogCode[383] = "French West Indies\n  USE  West Indies, French";
GeogCode[384] = "French-speaking Equatorial Africa\n  USE  Africa, French-speaking Equatorial";
GeogCode[385] = "French-speaking West Africa\n  USE  Africa, French-speaking West";
GeogCode[386] = "Friendly Islands\n  USE  Tonga";
GeogCode[387] = "Froides, Îles\n  USE  Prince Edward Islands";
GeogCode[388] = "Frostbelt (U.S.)\n  USE  Snowbelt States";
GeogCode[389] = "Fukien Province (China) --- a-cc-fu";
GeogCode[390] = "Fundy, Bay of\n  Assigned code:\n     ln --- North Atlantic Ocean";
GeogCode[391] = "Futuna Islands (Wallis and Futuna Islands)\n  Assigned code:\n     powf --- Wallis and Futuna Islands";
GeogCode[392] = "Gabon --- f-go";
GeogCode[393] = "Galapagos Islands --- pogg";
GeogCode[394] = "Gambia --- f-gm";
GeogCode[395] = "Gambier Islands\n  Assigned code:\n     pofp --- French Polynesia";
GeogCode[396] = "Gaza Strip --- awgz";
GeogCode[397] = "Georges Bank\n  Assigned code:\n     ln --- North Atlantic Ocean";
GeogCode[398] = "Georgia (Republic) --- a-gs\n     Coded e-ur-gs (Georgia (Republic)) before June 1998";
GeogCode[399] = "Georgia (Soviet Union)\n  USE  Georgia (Republic)";
GeogCode[400] = "Georgia --- n-us-ga";
GeogCode[401] = "Georgian S.S.R. \n  USE  Georgia (Republic)";
GeogCode[402] = "German Democratic Republic\n  USE  Germany (East)";
GeogCode[403] = "German East Africa\n  USE  Tanzania";
GeogCode[404] = "German Federal Republic\n  USE  Germany";
GeogCode[405] = "Germany (East) --- e-ge\n     For the eastern part of Germany before 1949 or after 1990 and for the German Democratic Republic between 1949-1990";
GeogCode[406] = "Germany (West) --- e-gw\n     For the western part of Germany before 1949 or after 1990 and for the Federal Republic of Germany between 1949-1990";
GeogCode[407] = "Germany --- e-gx\n     For Germany as a whole regardless of time period; includes Germany (East) and Germany (West) as a whole between 1949 and 1990";
GeogCode[408] = "Germany, Eastern\n  USE  Germany (East)";
GeogCode[409] = "Germany, Northern\n  Assigned code:\n     e-gx --- Germany";
GeogCode[410] = "Germany, Southern\n  Assigned code:\n     e-gx --- Germany";
GeogCode[411] = "Germany, Western\n  USE  Germany (West)";
GeogCode[412] = "Ghana (Empire)\n  Assigned code:\n     fw --- Africa, West";
GeogCode[413] = "Ghana --- f-gh";
GeogCode[414] = "Gibraltar --- e-gi";
GeogCode[415] = "Gibraltar, Strait of\n  Assigned codes:\n     e-gi --- Gibraltar\n     mm --- Mediterranean Sea";
GeogCode[416] = "Gilbert Islands\n  USE  Kiribati";
GeogCode[417] = "Gilbert and Ellice Islands Colony\n     Coded pogn (Gilbert and Ellice Islands) before Mar. 1988\n  Assigned codes:\n     pokb --- Kiribati\n     potv --- Tuvalu";
GeogCode[418] = "Gold Coast\n  USE  Ghana";
GeogCode[419] = "Great Barrier Reef (Qld.)\n  Assigned code:\n     u-at-qn ---  Queensland";
GeogCode[420] = "Great Basin\n  Assigned code:\n     n-usp --- West (U.S.)";
GeogCode[421] = "Great Britain --- e-uk";
GeogCode[422] = "Great Britain Miscellaneous Island Dependencies --- e-uk-ui";
GeogCode[423] = "Great Lakes --- nl";
GeogCode[424] = "Great Lakes States\n  USE  Lake States";
GeogCode[425] = "Great Plains --- np";
GeogCode[426] = "Great Rift Valley --- fr";
GeogCode[427] = "Greater Antilles\n     Coded nwga (Greater Antilles) before Mar. 1988\n  USE  West Indies";
GeogCode[428] = "Greece --- e-gr";
GeogCode[429] = "Greenland --- n-gl";
GeogCode[430] = "Grenada --- nwgd";
GeogCode[431] = "Grenadines\n     Coded nwgs (Grenadines) before Mar. 1988\n  Assigned code:\n     nwxm --- Saint Vincent and the Grenadines";
GeogCode[432] = "Guadalcanal Island (Solomon Islands)\n  Assigned code:\n     pobp --- Solomon Islands";
GeogCode[433] = "Guadeloupe --- nwgp";
GeogCode[434] = "Guam --- pogu";
GeogCode[435] = "Guatemala --- ncgt";
GeogCode[436] = "Guernsey\n  Assigned code:\n     e-uk-ui --- Great Britain Miscellaneous Island Dependencies";
GeogCode[437] = "Guiana, British\n  USE  Guyana";
GeogCode[438] = "Guiana, Dutch\n  USE  Surinam";
GeogCode[439] = "Guiana, French\n  USE  French Guiana";
GeogCode[440] = "Guinea --- f-gv";
GeogCode[441] = "Guinea, Equatorial\n  USE  Equatorial Guinea";
GeogCode[442] = "Guinea, French\n  USE  Guinea";
GeogCode[443] = "Guinea, Gulf of\n  Assigned code:\n     ls --- South Atlantic Ocean";
GeogCode[444] = "Guinea, Portuguese\n  USE  Guinea-Bissau";
GeogCode[445] = "Guinea, Spanish\n  USE  Equatorial Guinea";
GeogCode[446] = "Guinea-Bissau --- f-pg";
GeogCode[447] = "Guinée\n  USE  Guinea";
GeogCode[448] = "Gulf States\n  Assigned code:\n     n-usu --- Southern States";
GeogCode[449] = "Gulf of Aden\n  USE  Aden, Gulf of";
GeogCode[450] = "Gulf of Alaska (Alaska)\n  USE  Alaska, Gulf of (Alaska)";
GeogCode[451] = "Gulf of Aqaba\n  USE  Aqaba, Gulf of";
GeogCode[452] = "Gulf of Carpentaria (N.T. and Qld.)\n  USE  Carpentaria, Gulf of (N.T. and Qld.)";
GeogCode[453] = "Gulf of Guinea\n  USE  Guinea, Gulf of";
GeogCode[454] = "Gulf of Mexico\n  USE  Mexico, Gulf of";
GeogCode[455] = "Gulf of Oman\n  USE  Oman, Gulf of";
GeogCode[456] = "Gulf of Thailand\n  USE  Thailand, Gulf of";
GeogCode[457] = "Guyana --- s-gy";
GeogCode[458] = "Hainan Island (China)\n  USE  Hainan Province (China)";
GeogCode[459] = "Hainan Province (China) --- a-cc-ha\n     Coded a-cc-kn (Kwangtung Province (China)) before June 1998";
GeogCode[460] = "Haiti --- nwht";
GeogCode[461] = "Hawaii --- n-us-hi";
GeogCode[462] = "Heard Island (Heard and McDonald Islands)\n  Assigned code:\n     i-hm --- Heard and McDonald Islands";
GeogCode[463] = "Heard and McDonald Islands (Heard and McDonald (slands) --- i-hm";
GeogCode[464] = "Hei Ho (China and Russia)\n  USE  Amur River (China and Russia)";
GeogCode[465] = "Hei-lung Chiang (China and Russia)\n  USE  Amur River (China and Russia)";
GeogCode[466] = "Heilungkiang Province (China) --- a-cc-he";
GeogCode[467] = "Himalaya Mountains --- ah";
GeogCode[468] = "Hispaniola --- nwhi";
GeogCode[469] = "Ho-pei sheng (China)\n  USE  Hopeh Province (China)";
GeogCode[470] = "Hoang Ho (China)\n  USE  Yellow River (China)";
GeogCode[471] = "Holland\n  USE  Netherlands";
GeogCode[472] = "Holy Roman Empire\n  Assigned code:\n     e --- Europe";
GeogCode[473] = "Holy See\n  USE  Vatican City";
GeogCode[474] = "Homelands (South Africa)\n  Assigned code:\n     f-sa --- South Africa";
GeogCode[475] = "Honan Province (China) --- a-cc-ho";
GeogCode[476] = "Honduras --- ncho";
GeogCode[477] = "Hong Kong (China) a-cc-hk\n     Coded a-hk (Hong Kong) before June 1998";
GeogCode[478] = "Hong Kong\n  USE  Hong Kong (China)";
GeogCode[479] = "Hoorn Islands\n  USE  Futuna Islands (Wallis and Futuna Islands)";
GeogCode[480] = "Hopeh Province (China) --- a-cc-hp";
GeogCode[481] = "Hsi Chiang (China)\n  USE  West River (China)";
GeogCode[482] = "Hsi-sha Islands\n  USE  Paracel Islands";
GeogCode[483] = "Hsin-chiang-wei-wu-erh tzu chih ch'ü (China)\n  USE  Sinkiang Uighur Autonomous Region (China)";
GeogCode[484] = "Hu-pei (China)\n  USE  Hupeh Province (China)";
GeogCode[485] = "Huang Hai\n  USE  Yellow Sea";
GeogCode[486] = "Huang Ho (China)\n  USE  Yellow River (China)";
GeogCode[487] = "Hudson Bay --- n-cnh";
GeogCode[488] = "Hunan Province (China) --- a-cc-hu";
GeogCode[489] = "Hungary --- e-hu";
GeogCode[490] = "Hupeh Province (China) --- a-cc-hh";
GeogCode[491] = "Huthera (Tanzania)\n  USE  Pemba (Tanzania)";
GeogCode[492] = "Hwang Ho (China)\n  USE  Yellow River (China)";
GeogCode[493] = "Iberian Peninsula\n     Coded ei (Iberian Peninsula) before Mar. 1988\n  Assigned codes:\n     e-po --- Portugal\n     e-sp --- Spain";
GeogCode[494] = "Iceland --- e-ic";
GeogCode[495] = "Idaho --- n-us-id";
GeogCode[496] = "Ifni\n     Coded f-if (Ifni) before Mar. 1988\n  Assigned code:\n     f-mr --- Morocco";
GeogCode[497] = "Illinois --- n-us-il";
GeogCode[498] = "India --- a-ii";
GeogCode[499] = "India, French\n  USE  French India";
GeogCode[500] = "Indian Ocean --- i";
GeogCode[501] = "Indian Ocean Islands, French\n  USE  Terres australes et antarctiques françaises";
GeogCode[502] = "Indian Ocean Territory, British\n  USE  British Indian Ocean Territory";
GeogCode[503] = "Indian Territory\n  Assigned code:\n     n-us-ok --- Oklahoma";
GeogCode[504] = "Indiana --- n-us-in";
GeogCode[505] = "Indies, East\n  USE  East Indies";
GeogCode[506] = "Indies, West\n  USE  West Indies";
GeogCode[507] = "Indochina --- ai";
GeogCode[508] = "Indonesia --- a-io";
GeogCode[509] = "Inner Mongolia (China) --- a-cc-im";
GeogCode[510] = "Intercontinental areas (Eastern Hemisphere) --- m";
GeogCode[511] = "Intercontinental areas (Western Hemisphere) --- c";
GeogCode[512] = "Iowa --- n-us-ia";
GeogCode[513] = "Iran --- a-ir";
GeogCode[514] = "Iraq --- a-iq";
GeogCode[515] = "Ireland (Eire)\n  USE  Ireland";
GeogCode[516] = "Ireland --- e-ie";
GeogCode[517] = "Ireland, Northern\n  USE  Northern Ireland";
GeogCode[518] = "Irian Barat (Indonesia)\n  USE  Irian Jaya (Indonesia)";
GeogCode[519] = "Irian Jaya (Indonesia)\n  Assigned code:\n     a-io --- Indonesia";
GeogCode[520] = "Irish Republic\n  USE  Ireland";
GeogCode[521] = "Irish Sea\n  Assigned code:\n     ln --- North Atlantic Ocean";
GeogCode[522] = "Isla de Pascua\n  USE  Easter Island";
GeogCode[523] = "Islamic Empire\n  Assigned codes:\n     aw --- Middle East\n     ff --- Africa, North\n     e-sp --- Spain";
GeogCode[524] = "Islamic countries\n  Assigned codes:\n     f --- Africa\n     a --- Asia";
GeogCode[525] = "Island Dependencies of Great Britain\n  USE  Great Britain Miscellaneous Island Dependencies";
GeogCode[526] = "Island Dependencies of the United States in the Caribbean\n  USE  United States Miscellaneous Caribbean Islands";
GeogCode[527] = "Island Dependencies of the United States in the Pacific\n  USE  United States Miscellaneous Pacific Islands";
GeogCode[528] = "Islands of the Aegean\n  USE  Aegean Islands (Greece and Turkey)";
GeogCode[529] = "Islands of the Atlantic\n  Assigned code:\n     l --- Atlantic Ocean";
GeogCode[530] = "Islands of the Indian Ocean\n  Assigned code:\n     i --- Indian Ocean";
GeogCode[531] = "Islands of the Mediterranean\n  Assigned code:\n     mm --- Mediterranean Sea";
GeogCode[532] = "Islands of the Pacific\n  Assigned code:\n     po --- Oceania";
GeogCode[533] = "Islands of the South China Sea\n  Assigned code:\n     ao --- South China Sea";
GeogCode[534] = "Islas Marquesas de Mendoza (French Polynesia)\n  USE  Marquesas Islands (French Polynesia)";
GeogCode[535] = "Isle of Man\n  Assigned code:\n     e-uk-ui --- Great Britain Miscellaneous Island Dependencies";
GeogCode[536] = "Isle of Wight (England)\n  Assigned code:\n     e-uk-en --- England";
GeogCode[537] = "Israel --- a-is";
GeogCode[538] = "Italian East Africa\n  USE  Africa, Northeast";
GeogCode[539] = "Italian Somaliland\n  USE  Somalia";
GeogCode[540] = "Italy --- e-it";
GeogCode[541] = "Ivory Coast\n  USE  Côte d'Ivoire";
GeogCode[542] = "Jamaica --- nwjm";
GeogCode[543] = "Jammu and Kashmir (India)\n  Assigned code:\n     a-ii --- India";
GeogCode[544] = "Jan Mayen Island --- lnjn";
GeogCode[545] = "Japan --- a-ja";
GeogCode[546] = "Java (Indonesia)\n  Assigned code:\n     a-io --- Indonesia";
GeogCode[547] = "Jersey (Channel Islands)\n  Assigned code:\n     e-uk-ui --- Great Britain Miscellaneous Island Dependencies";
GeogCode[548] = "Jerusalem\n  Assigned code:\n     a-is --- Israel     and/or\n     awba --- West Bank";
GeogCode[549] = "Johnston Island --- poji";
GeogCode[550] = "Jordan --- a-jo";
GeogCode[551] = "Judaea and Samaria\n  USE  West Bank";
GeogCode[552] = "Kalimantan Barat (Indonesia)\n  Assigned code:\n     a-io --- Indonesia";
GeogCode[553] = "Kampuchea\n  USE  Cambodia";
GeogCode[554] = "Kansas --- n-us-ks";
GeogCode[555] = "Kansu Province (China) --- a-cc-ka";
GeogCode[556] = "Kashmir and Jammu (India)\n  USE  Jammu and Kashmir (India)";
GeogCode[557] = "Kashmir\n  USE  Azad Kashmir";
GeogCode[558] = "Kazakh S.S.R.\n  USE  Kazakhstan";
GeogCode[559] = "Kazakhstan --- a-kz\n     Coded e-ur-kz (Kazakhstan) before June 1998";
GeogCode[560] = "Kazakstan\n  USE  Kazakhstan";
GeogCode[561] = "Keeling Islands\n  USE  Cocos (Keeling) Islands";
GeogCode[562] = "Kentucky --- n-us-ky";
GeogCode[563] = "Kenya --- f-ke";
GeogCode[564] = "Kerguelen Islands\n  Assigned code:\n     i-fs --- Terres australes et antarctiques françaises";
GeogCode[565] = "Kermadec Islands --- poki";
GeogCode[566] = "Khmer Republic\n  USE  Cambodia";
GeogCode[567] = "Kiangsi Province (China) --- a-cc-ki";
GeogCode[568] = "Kiangsu Province (China) --- a-cc-ku";
GeogCode[569] = "Kievan Rus\n     Coded e-ur (Soviet Union) before June 1998\n  Assigned code:\n     e-bw --- Belarus\n     e-ru --- Russia (Federation)\n     e-un --- Ukraine";
GeogCode[570] = "Kirghiz S.S.R.\n  USE  Kyrgyzstan";
GeogCode[571] = "Kiribati --- pokb\n     Coded pogn (Gilbert and Ellice Islands) or poln (Line Islands) before Mar. 1988";
GeogCode[572] = "Kirin Province (China) --- a-cc-kr";
GeogCode[573] = "Kiritimati (Kiribati)\n  Assigned code:\n     pokb --- Kiribati";
GeogCode[574] = "Kongo Kingdom\n  Assigned codes:\n     f-ao --- Angola\n     f-cf --- Congo (Brazzaville)\n     f-cg --- Congo (Democratic Republic)";
GeogCode[575] = "Korea (North) --- a-kn";
GeogCode[576] = "Korea (Republic)\n  USE  Korea (South)";
GeogCode[577] = "Korea (South) --- a-ko";
GeogCode[578] = "Korea --- a-kr";
GeogCode[579] = "Korean People's Republic\n  USE  Korea (North)";
GeogCode[580] = "Kosrae (Micronesia)\n  Assigned code:\n     pomi --- Micronesia (Federated States)";
GeogCode[581] = "Kuang-hsi Chuang tsu tzu chih ch'ü (China)\n  USE  Kwangsi Chuang Autonomous Region (China)";
GeogCode[582] = "Kunlun Mountains --- a-cck";
GeogCode[583] = "Kuril Islands (Russia)\n     Coded e-ur-ru (Russia Federationion) before June 1998\n  Assigned code:\n     e-ru --- Russia (Federation)";
GeogCode[584] = "Kurile Islands (Russia)\n  USE  Kuril Islands (Russia)";
GeogCode[585] = "Kuri°skie ostrova (Russia)\n  USE  Kuril Islands (Russia)";
GeogCode[586] = "Kusaie (Micronesia)\n  USE  Kosrae (Micronesia)";
GeogCode[587] = "Kuwait --- a-ku";
GeogCode[588] = "Kwang Sea\n  USE  Yellow Sea";
GeogCode[589] = "Kwangsi Chuang Autonomous Region (China) --- a-cc-kc";
GeogCode[590] = "Kwangtung Province (China) --- a-cc-kn";
GeogCode[591] = "Kweichow Province (China) --- a-cc-kw";
GeogCode[592] = "Kwenlun Mountains\n  USE  Kunlun Mountains";
GeogCode[593] = "Kyrgyzstan --- a-kg\n     Coded e-ur-kg (Krygystan) before June 1998";
GeogCode[594] = "La Plata River (Argentina and Uruguay)\n  USE  Rio de la Plata (Argentina and Uruguay)";
GeogCode[595] = "Labrador (Nfld.)\n  Assigned code:\n     n-cn-nf --- Newfoundland";
GeogCode[596] = "Laccadive, Minicoy, and Amindivi Islands (India)\n  USE  Lakshadweep (India)";
GeogCode[597] = "Lake States --- nl";
GeogCode[598] = "Lakshadweep (India)\n  Assigned code:\n     a-ii --- India";
GeogCode[599] = "Lan-ts'ang Chiang\n  USE  Mekong River";
GeogCode[600] = "Lancang Jiang\n  USE  Mekong River";
GeogCode[601] = "Laos --- a-ls";
GeogCode[602] = "Lapland\n  Assigned codes:\n     e-fi --- Finland\n     e-no --- Norway\n     e-sw --- Sweden";
GeogCode[603] = "Latin America --- cl";
GeogCode[604] = "Latin Orient\n  Assigned code:\n     aw --- Middle East";
GeogCode[605] = "Latvia --- e-lv\n     Coded e-ur-lv (Latvia) before June 1998";
GeogCode[606] = "Lebanon --- a-le";
GeogCode[607] = "Leeward Islands (West Indies) --- nwli";
GeogCode[608] = "Lesotho --- f-lo";
GeogCode[609] = "Lesser Antilles\n  USE  Antilles, Lesser";
GeogCode[610] = "Lesser Sunda Islands (Indonesia)\n  Assigned code:\n     a-io --- Indonesia";
GeogCode[611] = "Levant\n  USE  Middle East";
GeogCode[612] = "Liaoning Province (China) --- a-cc-lp";
GeogCode[613] = "Liberia --- f-lb";
GeogCode[614] = "Libya --- f-ly";
GeogCode[615] = "Liechtenstein --- e-lh";
GeogCode[616] = "Line Islands --- poln";
GeogCode[617] = "Lithuania --- e-li\n     Coded e-ur-li (Lithuania) before June 1998";
GeogCode[618] = "Long River (China)\n  USE  Yangtze River (China)";
GeogCode[619] = "Loro Sae (Indonesia)\n  USE  Timor Timur (Indonesia)";
GeogCode[620] = "Louisiade Archipelago (Papua New Guinea)\n  Assigned code:\n     a-pp --- Papua New Guinea";
GeogCode[621] = "Louisiana --- n-us-la";
GeogCode[622] = "Low countries\n  USE  Benelux countries";
GeogCode[623] = "Loyalty Islands (New Caledonia)\n  Assigned code:\n     ponl --- New Caledonia";
GeogCode[624] = "Luxembourg --- e-lu";
GeogCode[625] = "Luzon (Philippines)\n  Assigned code:\n     a-ph --- Philippines";
GeogCode[626] = "Macao --- a-cc-mh";
GeogCode[627] = "Macedonia (Bulgaria)\n  Assigned code:\n     e-bu --- Bulgaria";
GeogCode[628] = "Macedonia (Greece)\n  Assigned code:\n     e-gr --- Greece";
GeogCode[629] = "Macedonia (Republic) --- e-xn\n     Coded e-yu (Yugoslavia) before Oct. 1992";
GeogCode[630] = "Macedonia\n  Assigned codes:\n     e-bu --- Bulgaria\n     e-gr --- \n     e-xn --- Macedonia (Republic)";
GeogCode[631] = "Macias Nguema (Equatorial Guinea)\n  USE  Fernando Po (Equatorial Guinea)";
GeogCode[632] = "Madagascar --- f-mg";
GeogCode[633] = "Madeira Islands --- lnma";
GeogCode[634] = "Madura Island (Indonesia)\n  Assigned code:\n     a-io --- Indonesia";
GeogCode[635] = "Maine --- n-us-me";
GeogCode[636] = "Mainland China\n  USE  China";
GeogCode[637] = "Malagasy Republic\n  USE  Madagascar";
GeogCode[638] = "Malawi --- f-mw";
GeogCode[639] = "Malay Archipelago\n  Assigned code:\n     as --- Asia, Southeastern";
GeogCode[640] = "Malay Peninsula\n  Assigned codes:\n     am --- Malaya\n     a-th --- Thailand";
GeogCode[641] = "Malaya --- am";
GeogCode[642] = "Malaysia --- a-my";
GeogCode[643] = "Maldives --- i-xc";
GeogCode[644] = "Mali (Empire)\n  Assigned code:\n     fw --- Africa, West";
GeogCode[645] = "Mali --- f-ml";
GeogCode[646] = "Malta --- e-mm";
GeogCode[647] = "Maluku (Indonesia)\n  Assigned code:\n     a-io --- Indonesia";
GeogCode[648] = "Malvinas Islands\n  USE  Falkland Islands";
GeogCode[649] = "Man, Isle of\n  USE  Isle of Man";
GeogCode[650] = "Manchuria (China)\n  Assigned code:\n     a-cc --- China";
GeogCode[651] = "Manitoba --- n-cn-mb";
GeogCode[652] = "Mariana Islands --- poxd";
GeogCode[653] = "Marie-Galante\n  Assigned code:\n     nwgp --- Guadeloupe";
GeogCode[654] = "Maritime Provinces --- n-cnm";
GeogCode[655] = "Marquesas Islands (French Polynesia)\n  Assigned code:\n     pofp --- French Polynesia";
GeogCode[656] = "Marshall Islands --- poxe";
GeogCode[657] = "Martinique --- nwmq";
GeogCode[658] = "Maryland --- n-us-md";
GeogCode[659] = "Massachusetts --- n-us-ma";
GeogCode[660] = "Mauritania --- f-mu";
GeogCode[661] = "Mauritius --- i-mf";
GeogCode[662] = "Mayotte --- i-my\n     Coded i-cq (Comoros) before Mar. 1988";
GeogCode[663] = "McDonald Island\n  Assigned code:\n     i-hm --- Heard and McDonald Islands";
GeogCode[664] = "Mediterranean Region --- mm";
GeogCode[665] = "Mediterranean Region, Eastern\n  USE  Middle East";
GeogCode[666] = "Mediterranean Sea --- mm";
GeogCode[667] = "Mekong River --- ag";
GeogCode[668] = "Melanesia --- pome";
GeogCode[669] = "Melilla (Spain)\n  Assigned code:\n     f-sh --- Spanish North Africa";
GeogCode[670] = "Mendaña\n  USE  Marquesas Islands (French Polynesia)";
GeogCode[671] = "Mexico --- n-mx";
GeogCode[672] = "Mexico, Gulf of --- nm";
GeogCode[673] = "Michigan --- n-us-mi";
GeogCode[674] = "Micronesia (Federated States) --- pomi\n     Coded pott (Micronesia) before Mar. 1988";
GeogCode[675] = "Micronesia --- pott";
GeogCode[676] = "Middle America\n     Coded cm (Middle America) before Mar. 1988\n  USE  Central America";
GeogCode[677] = "Middle Atlantic States --- n-usl";
GeogCode[678] = "Middle Congo\n  USE  Congo (Brazzaville)";
GeogCode[679] = "Middle East --- aw";
GeogCode[680] = "Middle States\n  USE  Middle Atlantic States";
GeogCode[681] = "Middle West --- n-usc";
GeogCode[682] = "Mideast\n  USE  Middle East";
GeogCode[683] = "Midway Islands --- poxf";
GeogCode[684] = "Midwest\n  USE  Middle West";
GeogCode[685] = "Mindanao Island (Philippines)\n  Assigned code:\n     a-ph --- Philippines";
GeogCode[686] = "Minnesota --- n-us-mn";
GeogCode[687] = "Miquelon\n  Assigned code:\n     n-xl --- Saint Pierre and Miquelon";
GeogCode[688] = "Mississippi --- n-us-ms";
GeogCode[689] = "Mississippi River --- n-usm";
GeogCode[690] = "Missouri --- n-us-mo";
GeogCode[691] = "Missouri River --- n-uss";
GeogCode[692] = "Moldavia\n  Assigned code:\n     e-rm --- Romania";
GeogCode[693] = "Moldavian S.S.R.\n  USE  Moldova";
GeogCode[694] = "Moldova --- e-mv\n     Coded e-ur-mv (Moldova) before June 1998";
GeogCode[695] = "Moluccas\n  USE  Maluku (Indonesia)";
GeogCode[696] = "Monaco --- e-mc";
GeogCode[697] = "Mongolia (Inner Mongolia)\n  USE  Inner Mongolia (China)";
GeogCode[698] = "Mongolia --- a-mp";
GeogCode[699] = "Mongolian People's Republic\n  USE  Mongolia";
GeogCode[700] = "Montana --- n-us-mt";
GeogCode[701] = "Montenegro\n  Assigned code:\n     e-yu --- Yugoslavia";
GeogCode[702] = "Montserrat --- nwmj";
GeogCode[703] = "Morocco --- f-mr";
GeogCode[704] = "Mozambique --- f-mz";
GeogCode[705] = "Muscat and Oman\n  USE  Oman";
GeogCode[706] = "Namibia --- f-sx";
GeogCode[707] = "Nansha Islands\n  USE  Spratly Islands";
GeogCode[708] = "Nauru --- ponu";
GeogCode[709] = "Near East\n  USE  Middle East";
GeogCode[710] = "Nebraska --- n-us-nb";
GeogCode[711] = "Negros Island (Philippines)\n  Assigned code:\n     a-ph --- Philippines";
GeogCode[712] = "Nepal --- a-np";
GeogCode[713] = "Netherlands --- e-ne";
GeogCode[714] = "Netherlands Antilles --- nwna";
GeogCode[715] = "Netherlands East Indies\n  USE  Indonesia";
GeogCode[716] = "Netherlands West Indies\n  USE  Netherlands Antilles";
GeogCode[717] = "Nevada --- n-us-nv";
GeogCode[718] = "Nevis\n  Assigned code:\n     nwxi --- Saint Kitts and Nevis";
GeogCode[719] = "New Britain Island (Papua New Guinea)\n  Assigned code:\n     a-pp --- Papua New Guinea";
GeogCode[720] = "New Brunswick --- n-cn-nk";
GeogCode[721] = "New Caledonia --- ponl";
GeogCode[722] = "New England --- n-usn";
GeogCode[723] = "New France\n  Assigned code:\n     n --- North America";
GeogCode[724] = "New Guinea (Territory)\n  Assigned code:\n     a-pp --- Papua New Guinea";
GeogCode[725] = "New Guinea --- a-nw";
GeogCode[726] = "New Guinea Island\n  USE  New Guinea";
GeogCode[727] = "New Hampshire --- n-us-nh";
GeogCode[728] = "New Hebrides\n  USE  Vanuatu";
GeogCode[729] = "New Ireland Island (Papua New Guinea)\n  Assigned code:\n     a-pp --- Papua New Guinea";
GeogCode[730] = "New Jersey --- n-us-nj";
GeogCode[731] = "New Mexico --- n-us-nm";
GeogCode[732] = "New South Wales --- u-at-ne";
GeogCode[733] = "New York (State) --- n-us-ny";
GeogCode[734] = "New Zealand --- u-nz";
GeogCode[735] = "Newfoundland --- n-cn-nf";
GeogCode[736] = "Nicaragua --- ncnq";
GeogCode[737] = "Niger --- f-ng";
GeogCode[738] = "Niger River --- fi";
GeogCode[739] = "Nigeria --- f-nr";
GeogCode[740] = "Nile River --- fl";
GeogCode[741] = "Ninghsia Province (China)\n  USE  Ningsia Hui Autonomous Region  (China)";
GeogCode[742] = "Ningsia Hui Autonomous Region (China) a-cc-nn";
GeogCode[743] = "Niue --- poxh";
GeogCode[744] = "Non-Black Earth Region (Russia)\n  USE  Non-Chernozem Region (Russia)";
GeogCode[745] = "Non-Chernozem Region (Russia)\n     Coded e-ur-ru (Russia Federation) before June 1998\n  Assigned code:\n     e-ru --- Russia (Federation)";
GeogCode[746] = "Norfolk Island\n  Assigned code:\n     u-at --- Australia";
GeogCode[747] = "North Africa\n  USE  Africa, North";
GeogCode[748] = "North America --- n";
GeogCode[749] = "North Atlantic Ocean --- ln";
GeogCode[750] = "North Borneo\n  USE  Sabah";
GeogCode[751] = "North Carolina --- n-us-nc";
GeogCode[752] = "North Caucasus (Russia)\n  USE  Caucasus, Northern (Russia)";
GeogCode[753] = "North Central States\n  USE  Middle West";
GeogCode[754] = "North Dakota --- n-us-nd";
GeogCode[755] = "North Korea\n  USE  Korea (North)";
GeogCode[756] = "North Pacific Ocean --- pn";
GeogCode[757] = "North Sea\n  Assigned code:\n     ln --- North Atlantic Ocean";
GeogCode[758] = "North Vietnam\n  USE  Vietnam";
GeogCode[759] = "Northeast (U.S.)\n  USE  Northeastern States";
GeogCode[760] = "Northeast Africa\n  USE  Africa, Northeast";
GeogCode[761] = "Northeast Passage\n  Assigned code:\n     r --- Arctic regions";
GeogCode[762] = "Northeastern States --- n-use";
GeogCode[763] = "Northern Canada\n  USE  Canada, Northern";
GeogCode[764] = "Northern Caucasus (Russia)\n  USE  Caucasus, Northern (Russia)";
GeogCode[765] = "Northern Europe\n  USE  Europe, Northern";
GeogCode[766] = "Northern Hemisphere --- xb";
GeogCode[767] = "Northern Ireland --- e-uk-ni";
GeogCode[768] = "Northern Mariana Islands\n  USE  Mariana Islands";
GeogCode[769] = "Northern Rhodesia\n  USE  Zambia";
GeogCode[770] = "Northern Russia\n  USE  Russia, Northerm";
GeogCode[771] = "Northern Soviet Union\n  USE  Russia, Northern";
GeogCode[772] = "Northern Territory --- u-at-no";
GeogCode[773] = "Northwest (U.S.)\n     Coded n-usw (Northwest (U.S.)) before Mar. 1988\n  USE  Northwest, Pacific";
GeogCode[774] = "Northwest Africa\n  USE  Africa, Northwest";
GeogCode[775] = "Northwest Passage\n  Assigned code:\n     r --- Arctic regions";
GeogCode[776] = "Northwest Territories --- n-cn-nt";
GeogCode[777] = "Northwest, Canadian\n  Assigned code:\n     n-cn --- Canada";
GeogCode[778] = "Northwest, Old\n  Assigned code:\n     n-usc --- Middle West";
GeogCode[779] = "Northwest, Pacific\n  Assigned codes:\n     n-usp --- West (U.S.)  and if appropriate\n     n-cn-bc  --- British Columbia";
GeogCode[780] = "Northwestern Soviet Union\n  USE  Soviet Union, Northwestern";
GeogCode[781] = "Northwestern States\n  Assigned codes:\n     n-usc --- Middle West\n     n-usp --- West (U.S.)";
GeogCode[782] = "Norway --- e-no";
GeogCode[783] = "Norwegian Sea\n  Assigned code:\n     ln --- North Atlantic Ocean";
GeogCode[784] = "Nova Scotia --- n-cn-ns";
GeogCode[785] = "Nunavut --- n-cn-nu";
GeogCode[786] = "Nyasaland\n  USE  Malawi";
GeogCode[787] = "Ocean Island (Kiribati)\n  USE  Banaba";
GeogCode[788] = "Oceania --- po";
GeogCode[789] = "Oceania, French\n  USE  French Polynesia";
GeogCode[790] = "Oceanica\n  USE  Oceania";
GeogCode[791] = "Ohio --- n-us-oh";
GeogCode[792] = "Ohio River --- n-uso";
GeogCode[793] = "Okinawa Island (Japan)\n     Coded a-ok (Okinawa) before 1984\n  Assigned code:\n     a-ja --- Japan";
GeogCode[794] = "Oklahoma --- n-us-ok";
GeogCode[795] = "Oman --- a-mk";
GeogCode[796] = "Oman, Gulf of\n  Assigned code:\n     au --- Arabian Sea";
GeogCode[797] = "Ontario --- n-cn-on";
GeogCode[798] = "Oregon --- n-us-or";
GeogCode[799] = "Orient\n  Assigned code:\n     a --- Asia";
GeogCode[800] = "Orkney (Scotland)\n  Assigned code:\n     e-uk-st --- Scotland";
GeogCode[801] = "Outer Mongolia\n  USE  Mongolia";
GeogCode[802] = "Ozark Mountains\n  Assigned codes:\n     n-us-ar --- Arkansas\n     n-us-mo --- Missouri\n     n-us-ok --- Oklahoma";
GeogCode[803] = "Pacific Area\n  Assigned code:\n     p --- Pacific Ocean";
GeogCode[804] = "Pacific Coast (North America)\n  Assigned code:\n     n --- North America";
GeogCode[805] = "Pacific Island Dependencies of the United States\n  USE  United States Miscellaneous Pacific Islands";
GeogCode[806] = "Pacific Islands (Ter.)\n  USE  Pacific Islands (Trust Territory)";
GeogCode[807] = "Pacific Islands (Trust Territory)\n  Assigned code:\n     poup --- United States Miscellaneous Pacific Islands";
GeogCode[808] = "Pacific Northwest\n  USE  Northwest, Pacific";
GeogCode[809] = "Pacific Ocean --- p";
GeogCode[810] = "Pacific Ocean, North\n  USE  North Pacific Ocean";
GeogCode[811] = "Pacific Ocean, South\n  USE  South Pacific Ocean";
GeogCode[812] = "Pacific States\n  Assigned codes:\n     n-us-ca --- California\n     n-us-or --- Oregon\n     n-us-wa --- Washington (State)";
GeogCode[813] = "Pacific and Mountain States\n  USE  West (U.S.)";
GeogCode[814] = "Pakistan --- a-pk";
GeogCode[815] = "Palau --- popl\n     Coded poci (Caroline Islands) before Mar. 1988";
GeogCode[816] = "Palestine\n  Assigned code:\n     a-is --- Israel";
GeogCode[817] = "Panama --- ncpn";
GeogCode[818] = "Panama Canal Zone\n  USE  Canal Zone";
GeogCode[819] = "Panay Island (Philippines)\n  Assigned code:\n     a-ph --- Philippines";
GeogCode[820] = "Pannonia\n  Assigned codes:\n     e-au --- Austria\n     e-hu --- Hungary\n     e-yu --- Yugoslavia";
GeogCode[821] = "Papua New Guinea --- a-pp";
GeogCode[822] = "Papua\n  Assigned code:\n     a-pp --- Papua New Guinea";
GeogCode[823] = "Paracel Islands --- aopf";
GeogCode[824] = "Paraguay --- s-py";
GeogCode[825] = "Pascua Island\n  USE  Easter Island";
GeogCode[826] = "Peiping (China)\n  USE  Peking (China)";
GeogCode[827] = "Peking (China) --- a-cc-pe";
GeogCode[828] = "Pelew\n  USE  Palau";
GeogCode[829] = "Pemba (Zanzibar)\n  Assigned code:\n     f-tz --- Tanzania";
GeogCode[830] = "Pennsylvania --- n-us-pa";
GeogCode[831] = "People's Democratic Republic of Algeria\n  USE  Algeria";
GeogCode[832] = "People's Democratic Republic of Yemen\n  USE  Yemen";
GeogCode[833] = "People's Republic of Angola\n  USE  Angola";
GeogCode[834] = "People's Republic of Benin\n  USE  Benin";
GeogCode[835] = "People's Republic of Bulgaria\n  USE  Bulgaria";
GeogCode[836] = "People's Republic of China\n  USE  China";
GeogCode[837] = "People's Republic of Croatia\n  USE  Croatia";
GeogCode[838] = "People's Republic of Mozambique\n  USE  Mozambique";
GeogCode[839] = "People's Socialist Republic of Albania\n  USE  Albania";
GeogCode[840] = "Persia\n  USE  Iran";
GeogCode[841] = "Persian Gulf --- ap";
GeogCode[842] = "Persian Gulf States\n  Assigned code:\n     ar --- Arabian Peninsula";
GeogCode[843] = "Peru --- s-pe";
GeogCode[844] = "Pescadores Islands\n  Assigned code:\n     a-ch --- Taiwan";
GeogCode[845] = "Philippine Islands\n  USE  Philippines";
GeogCode[846] = "Philippine Sea\n  Assigned code:\n     pn --- North Pacific Ocean";
GeogCode[847] = "Philippines --- a-ph";
GeogCode[848] = "Phoenix Islands (Kiribati)\n  Assigned code:\n     pokb --- Kiribati";
GeogCode[849] = "Pirineos\n  USE  Pyrenees";
GeogCode[850] = "Pitcairn Island --- popc";
GeogCode[851] = "Plata, Rio de la (Argentina and Uruguay)\n  USE  Rio del la Plata (Argentina and Uruguay)";
GeogCode[852] = "Plate River (Argentina and Uruguay)\n  USE  Rio de la Plata (Argentina and Uruguay)";
GeogCode[853] = "Pleasant Island\n  USE  Nauru";
GeogCode[854] = "Po Gulf (China)\n  USE  Po Hai (China)";
GeogCode[855] = "Po Hai (China) --- a-ccp";
GeogCode[856] = "Pohnpei (Micronesia)\n  Assigned codes:\n     pomi --- Micronesia (Federated States)";
GeogCode[857] = "Poland --- e-pl";
GeogCode[858] = "Polar regions\n  Assigned codes:\n     t --- Antarctica\n     r --- Arctic regions";
GeogCode[859] = "Polynesia --- pops";
GeogCode[860] = "Polynesia, French\n  USE  French Polynesia";
GeogCode[861] = "Ponape (Micronesia)\n  USE  Pohnpei (Micronesia)";
GeogCode[862] = "Portugal --- e-po";
GeogCode[863] = "Portuguese East Africa\n  USE  Mozambique";
GeogCode[864] = "Portuguese Guinea\n  USE  Guinea-Bissau";
GeogCode[865] = "Portuguese Timor\n  USE  Timor Timur (Indonesia)";
GeogCode[866] = "Portuguese West Africa\n  USE  Angola";
GeogCode[867] = "Prairie Provinces --- n-cnp";
GeogCode[868] = "Pratas Islands\n  Assigned code:\n     a-cc-kn --- Kwangtung Province (China)";
GeogCode[869] = "Prince Edward Island --- n-cn-pi";
GeogCode[870] = "Prince Edward Islands\n  Assigned code:\n     f-sa --- South Africa";
GeogCode[871] = "Prussia (Germany)\n  Assigned code:\n     e-gx --- Germany";
GeogCode[872] = "Puerto Rico --- nwpr";
GeogCode[873] = "Pyrenees --- ep";
GeogCode[874] = "Qatar --- a-qa";
GeogCode[875] = "Queensland --- u-at-qn";
GeogCode[876] = "Québec (Province) --- n-cn-qu";
GeogCode[877] = "R.S.F.S.R.\n  USE  Russia (Federation)";
GeogCode[878] = "Red Sea --- mr";
GeogCode[879] = "Reka Amur (China and Russia)\n  USE  Amur River (China and Russia)";
GeogCode[880] = "Republic of Cape Verde\n  USE  Cape Verde";
GeogCode[881] = "Republic of Ireland\n  USE  Ireland";
GeogCode[882] = "Republic of Palau\n  USE  Palau";
GeogCode[883] = "Republic of Vanuatu\n  USE  Vanuatu";
GeogCode[884] = "Republique de Guinée\n  USE  Guinea";
GeogCode[885] = "Rhine River --- er";
GeogCode[886] = "Rhode Island --- n-us-ri";
GeogCode[887] = "Rhodesia and Nyasaland\n  Assigned codes:\n     f-mw --- Malawi\n     f-za --- Zambia\n     f-rh --- Zimbabwe";
GeogCode[888] = "Rhodesia, Southern\n  USE  Zimbabwe";
GeogCode[889] = "Rhodesia\n  Assigned codes:\n     f-za --- Zambia\n     f-rh --- Zimbabwe";
GeogCode[890] = "Rift Valley\n  USE  Great Rift Valley";
GeogCode[891] = "Rio Zambezi\n  USE  Zambezi River";
GeogCode[892] = "Rio de la Plata (Argentina and Uruguay) --- sp";
GeogCode[893] = "Rocky Mountains --- nr";
GeogCode[894] = "Roman Empire\n  USE  Rome";
GeogCode[895] = "Romania --- e-rm";
GeogCode[896] = "Rome\n  Assigned codes:\n     ff --- Africa, North\n     e --- Europe\n     aw --- Middle East";
GeogCode[897] = "Ruanda-Urundi\n  Assigned codes:\n     f-bd --- Burundi\n     f-rw --- Rwanda";
GeogCode[898] = "Rumania\n  USE  Romania";
GeogCode[899] = "Russia (Federation) --- e-ru\n     Coded e-ur-ru (Russia (Federation)) before June 1998";
GeogCode[900] = "Russia, Northern\n     Coded e-ur-ru (Russia (Federation)) before June 1998\n  Assigned code:\n     e-ru --- Russia (Federation)";
GeogCode[901] = "Russia\n  Assigned code:\n     e-ur --- Soviet Union";
GeogCode[902] = "Russian Empire\n  USE  Russia";
GeogCode[903] = "Russian Far East (Russia) --- e-urf";
GeogCode[904] = "Russian Republic\n  USE  Russia (Federation)";
GeogCode[905] = "Russian S.F.S.R. \n  USE  Russia (Federation)";
GeogCode[906] = "Russian Soviet Federated Socialist Republic\n  USE  Russia (Federation)";
GeogCode[907] = "Rwanda --- f-rw";
GeogCode[908] = "Rwanda-Urundi\n  USE  Ruanda-Urundi";
GeogCode[909] = "Ryukyu Islands, Southern\n     Coded pory (Ryukyu Islands, Southern) before 1984\n  Assigned code:\n     a-ja --- Japan";
GeogCode[910] = "Ryukyu Islands\n  Assigned code:\n     a-ja --- Japan";
GeogCode[911] = "Réunion --- i-re";
GeogCode[912] = "Río Muni\n  USE  Equatorial Guinea";
GeogCode[913] = "Saba (Netherlands Antilles) --- nwsd";
GeogCode[914] = "Sabah\n  Assigned code:\n     a-my --- Malaysia";
GeogCode[915] = "Sahara --- fd";
GeogCode[916] = "Sahara Desert\n  USE  Sahara";
GeogCode[917] = "Sahel\n  Assigned code:\n     f --- Africa";
GeogCode[918] = "Saint Bartholomew\n  USE  Saint-Barthélemy";
GeogCode[919] = "Saint Barts\n  USE  Saint-Barthélemy";
GeogCode[920] = "Saint Christopher-Nevis\n  USE  Saint Kitts and Nevis";
GeogCode[921] = "Saint Eustatius (Netherlands Antilles) --- nweu";
GeogCode[922] = "Saint Helena --- lsxj";
GeogCode[923] = "Saint Kitts and Nevis --- nwxi";
GeogCode[924] = "Saint Kitts-Nevis-Anguilla\n  Assigned codes:\n     nwxa --- Anguilla\n     nwxi --- Saint Kitts and Nevis";
GeogCode[925] = "Saint Kitts\n  Assigned code:\n     nwxi --- Saint Kitts and Nevis";
GeogCode[926] = "Saint Lawrence River\n  Assigned codes:\n     n-cn --- Canada\n     n-us --- United States";
GeogCode[927] = "Saint Lucia --- nwxk";
GeogCode[928] = "Saint Martin --- nwst";
GeogCode[929] = "Saint Pierre and Miquelon --- n-xl";
GeogCode[930] = "Saint Vincent and the Grenadines --- nwxm";
GeogCode[931] = "Saint Vincent\n  Assigned code:\n     nwxm --- Saint Vincent and the Grenadines";
GeogCode[932] = "Saint-Barthélemy\n     Coded nwsb (Saint-Barthelemy) before  Mar. 1988\n  Assigned code:\n     nwgp --- Guadeloupe";
GeogCode[933] = "Sakha (Russia)\n  Assigned code:\n     e-ru --- Russia (Federation)";
GeogCode[934] = "Sakhalin Ula (China and Russia)\n  USE  Amur River (China and Russia)";
GeogCode[935] = "Salvador\n  USE  El Salvador";
GeogCode[936] = "Salvage Islands (Madeira Islands)\n  USE  Selvagens Islands (Madeira Islands)";
GeogCode[937] = "Salvages (Madeira Islands)\n  USE  Selvagens Islands (Madeira Islands)";
GeogCode[938] = "Samar (Philippines)\n  Assigned code:\n     a-ph --- Philippines";
GeogCode[939] = "Samoa  --- pows";
GeogCode[940] = "Samoa (Islands)\n  USE  Samoan Islands";
GeogCode[941] = "Samoa, American\n  USE  American Samoa";
GeogCode[942] = "Samoan Islands --- posh";
GeogCode[943] = "San Marino --- e-sm";
GeogCode[944] = "Sandwich Islands, South\n  USE  South Georgia and South Sandwich Islands";
GeogCode[945] = "Santa Cruz Islands (Solomon Islands)\n     Coded posc (Santa Cruz Islands) before Mar. 1988\n  Assigned code:\n     pobp --- Solomon Islands";
GeogCode[946] = "Sao Tome and Principe --- f-sf";
GeogCode[947] = "Sarawak\n  Assigned code:\n     a-my --- Malaysia";
GeogCode[948] = "Sardinia (Italy)\n  Assigned code:\n     e-it --- Italy";
GeogCode[949] = "Saskatchewan --- n-cn-sn";
GeogCode[950] = "Saudi Arabia --- a-su";
GeogCode[951] = "Scandinavia --- ev";
GeogCode[952] = "Scotland --- e-uk-st";
GeogCode[953] = "Selvagens Islands (Madeira Islands)\n  Assigned code:\n     lnma --- Madeira Islands";
GeogCode[954] = "Senegal --- f-sg";
GeogCode[955] = "Serbia\n  Assigned code:\n     e-yu --- Yugoslavia";
GeogCode[956] = "Seychelles --- i-se";
GeogCode[957] = "Shan States\n  Assigned code:\n     a-br --- Burma";
GeogCode[958] = "Shanghai (China) --- a-cc-sm";
GeogCode[959] = "Shansi Province (China) --- a-cc-sh";
GeogCode[960] = "Shantung Province (China) --- a-cc-sp";
GeogCode[961] = "Shensi Province (China) --- a-cc-ss";
GeogCode[962] = "Shetland (Scotland)\n  Assigned code:\n     e-uk-st --- Scotland";
GeogCode[963] = "Shinnan Islands\n  USE  Spratly Islands";
GeogCode[964] = "Si River (China)\n  USE  West River (China)";
GeogCode[965] = "Si-kiang (China)\n  USE  West River (China)";
GeogCode[966] = "Siam, Gulf of\n  USE  Thailand, Gulf of";
GeogCode[967] = "Siam\n  USE  Thailand";
GeogCode[968] = "Siberia (Russia) --- e-urs";
GeogCode[969] = "Siberia, Eastern (Russia) --- e-ure";
GeogCode[970] = "Siberia, Northeastern (Russia)\n  Assigned code:\n     e-urs --- Siberia (Russia)";
GeogCode[971] = "Siberia, Western (Russia) --- e-urw";
GeogCode[972] = "Sicily (Italy)\n  Assigned code:\n     e-it --- Italy";
GeogCode[973] = "Sierra Leone --- f-sl";
GeogCode[974] = "Sikkim (India)\n     Coded a-sk (Sikkim) before Mar. 1988\n  Assigned code:\n     a-ii --- India";
GeogCode[975] = "Singapore --- a-si";
GeogCode[976] = "Sinkiang Uighur Autonomous Region (China) --- a-cc-su";
GeogCode[977] = "Sint Eustatius (Netherlands Antilles)\n  USE  Saint Eustatius (Netherlands Antilles)";
GeogCode[978] = "Sint Maarten\n  USE  Saint Martin";
GeogCode[979] = "Skagerrak (Denmark and Norway)\n  Assigned code:\n     ln --- North Atlantic Ocean";
GeogCode[980] = "Slovak Socialist Republic (Czechoslovakia)\n  USE  Slovakia";
GeogCode[981] = "Slovakia --- e-xo\n     Coded e-cs (Czechoslovakia) before May 1993";
GeogCode[982] = "Slovenia --- e-xv\n     Coded e-yu (Yugoslavia) before Oct. 1992";
GeogCode[983] = "Snowbelt States\n  Assigned code:\n     n-us --- United States";
GeogCode[984] = "Society Islands (French Polynesia)\n  Assigned code:\n     pofp --- French Polynesia";
GeogCode[985] = "Socotra (Yemen)\n     Coded i-xo (Socotra Island) before Mar. 1988; Coded a-ys (Yemen (People's Democratic Republic) before Oct. 1992\n  Assigned code:\n     a-ye --- Yemen";
GeogCode[986] = "Sokotra (Yemen)\n  USE  Socotra (Yemen)";
GeogCode[987] = "Solomon Islands --- pobp\n     Coded also posn (Solomon Islands) before Mar. 1988";
GeogCode[988] = "Somali Republic\n  USE  Somalia";
GeogCode[989] = "Somalia --- f-so";
GeogCode[990] = "Somaliland, French\n  USE  Djibouti";
GeogCode[991] = "Song Tíên Giang\n  USE  Mekong River";
GeogCode[992] = "Songhai Empire\n  Assigned codes:\n     f-ml --- Mali\n     f-ng --- Niger\n     f-nr --- Nigeria";
GeogCode[993] = "South Africa --- f-sa";
GeogCode[994] = "South America --- s";
GeogCode[995] = "South Arabia, Federation of\n  USE  Federation of South Arabia";
GeogCode[996] = "South Asia\n  USE  Asia, South";
GeogCode[997] = "South Atlantic Ocean --- ls";
GeogCode[998] = "South Atlantic States\n  Assigned code:\n     n-usu --- Southern States";
GeogCode[999] = "South Australia --- u-at-sa";
GeogCode[1000] = "South Carolina --- n-us-sc";
GeogCode[1001] = "South China Sea --- ao";
GeogCode[1002] = "South Dakota --- n-us-sd";
GeogCode[1003] = "South Georgia and South Sandwich Islands --- lsxs\n     Coded lsfk (Falkland Islands) before Oct. 1992";
GeogCode[1004] = "South Korea\n  USE  Korea (South)";
GeogCode[1005] = "South Orkney Islands\n  Assigned code:\n     lsfk --- Falkland Islands";
GeogCode[1006] = "South Pacific Ocean --- ps";
GeogCode[1007] = "South Sandwich Islands\n     Coded lsfk (Falkland Islands) before Oct. 1992\n  USE  South Georgia and South Sandwich Islands";
GeogCode[1008] = "South Shetland Islands (Antarctica)\n     Coded lsfk (Falkland Islands) before Mar. 1998\n  Assigned code:\n     t --- Antarctica";
GeogCode[1009] = "South Vietnam\n     Coded a-vs (Viet Nam, South) before Mar. 1988\n  USE  Vietnam (Republic)";
GeogCode[1010] = "South-West Africa\n  USE  Namibia";
GeogCode[1011] = "Southeast Asia\n  USE  Asia, Southeastern";
GeogCode[1012] = "Southeastern Asia\n  USE  Asia, Southeastern";
GeogCode[1013] = "Southeastern Europe\n  USE  Balkan Peninsula";
GeogCode[1014] = "Southern Africa\n  USE  Africa, Southern";
GeogCode[1015] = "Southern Cameroons\n  USE  Cameroon";
GeogCode[1016] = "Southern Europe\n  USE  Europe, Southern";
GeogCode[1017] = "Southern Hemisphere --- xc";
GeogCode[1018] = "Southern Rhodesia\n  USE  Zimbabwe";
GeogCode[1019] = "Southern Soviet Union\n  USE  Soviet Union, Southern";
GeogCode[1020] = "Southern States --- n-usu";
GeogCode[1021] = "Southern Yemen\n  USE  Yemen";
GeogCode[1022] = "Southwest, New --- n-ust";
GeogCode[1023] = "Southwest, Old\n  Assigned code:\n     n-usu --- Southern States";
GeogCode[1024] = "Southwestern States\n  Assigned codes:\n     n-usu --- Southern States\n     n-ust --- Southwest, New";
GeogCode[1025] = "Soviet Central Asia\n  USE  Asia, Central";
GeogCode[1026] = "Soviet Far East (Russia)\n     Coded e-uro (Soviet Central Asia) before 1994\n  USE  Russian Far East (Russia)";
GeogCode[1027] = "Soviet Union --- e-ur";
GeogCode[1028] = "Soviet Union, Northern\n  USE  Russia, Northern";
GeogCode[1029] = "Soviet Union, Northwestern --- e-urn";
GeogCode[1030] = "Soviet Union, Southern\n  Assigned code:\n     e-ur --- Soviet Union";
GeogCode[1031] = "Soviet Union, Western\n  Assigned code:\n     e-ur --- Soviet Union";
GeogCode[1032] = "Spain --- e-sp";
GeogCode[1033] = "Spanish Guinea\n  USE  Equatorial Guinea";
GeogCode[1034] = "Spanish Main\n  Assigned code:\n     cc --- Caribbean Area";
GeogCode[1035] = "Spanish North Africa --- f-sh";
GeogCode[1036] = "Spanish Sahara\n  USE  Western Sahara";
GeogCode[1037] = "Spanish Territories in Northern Morocco\n  USE  Spanish North Africa";
GeogCode[1038] = "Spitsbergen Island (Norway)\n  Assigned code:\n     lnsb --- Svalbard (Norway)";
GeogCode[1039] = "Spratly Islands --- aoxp";
GeogCode[1040] = "Sri Lanka --- a-ce";
GeogCode[1041] = "St. Barthélémy\n  USE  Saint-Barthélemy";
GeogCode[1042] = "St. Christopher-Nevis-Anguilla\n  USE  Saint Kitts-Nevis-Anguilla";
GeogCode[1043] = "St. Eustatius (Netherlands Antilles)\n  USE  Saint Eustatius (Netherlands Antilles)";
GeogCode[1044] = "St. Helena\n  USE  Saint Helena";
GeogCode[1045] = "St. Lucia\n  USE  Saint Lucia";
GeogCode[1046] = "St. Martin\n  USE  Saint Martin";
GeogCode[1047] = "St. Pierre and Miquelon\n  USE  Saint Pierre and Miquelon";
GeogCode[1048] = "St. Vincent\n  USE  Saint Vincent";
GeogCode[1049] = "Statia (Netherlands Antilles)\n  USE  Saint Eustatius (Netherlands Antilles)";
GeogCode[1050] = "Strait of Gibraltar\n  USE  Gibraltar, Strait of";
GeogCode[1051] = "Straits Settlements\n  Assigned codes:\n     a-my --- Malaysia\n     a-si --- Singapore";
GeogCode[1052] = "Sub-Saharan Africa\n  USE  Africa, Sub-Saharan";
GeogCode[1053] = "Sudan (Region) --- fn";
GeogCode[1054] = "Sudan --- f-sj";
GeogCode[1055] = "Sudan, French\n  USE  Mali";
GeogCode[1056] = "Suez Canal (Egypt) --- fu";
GeogCode[1057] = "Sulawesi (Indonesia)\n  USE  Celebes (Indonesia)";
GeogCode[1058] = "Sumatra (Indonesia)\n  Assigned code:\n     a-io --- Indonesia";
GeogCode[1059] = "Sunbelt States\n  Assigned codes:\n     n-usu --- Southern States\n     n-ust --- Southwest, New\n  and if appropriate\n     n-us-hi  Hawaii";
GeogCode[1060] = "Sunda Islands, Lesser (Indonesia)\n  USE  Lesser Sunda Islands (Indonesia)";
GeogCode[1061] = "Surinam --- s-sr";
GeogCode[1062] = "Suriname\n  USE  Surinam";
GeogCode[1063] = "Svalbard (Norway) --- lnsb";
GeogCode[1064] = "Swan Islands (Honduras) --- nwsv";
GeogCode[1065] = "Swaziland --- f-sq";
GeogCode[1066] = "Sweden --- e-sw";
GeogCode[1067] = "Switzerland --- e-sz";
GeogCode[1068] = "Syria --- a-sy";
GeogCode[1069] = "Szechwan Province (China) --- a-cc-sz";
GeogCode[1070] = "São Thomé e Príncipe\n  USE  Sao Tome and Principe";
GeogCode[1071] = "T.A.A.F.\n  USE  Terres australes et antarctiques françaises";
GeogCode[1072] = "Tadzhik Soviet Socialist Republic\n  USE  Tajikistan";
GeogCode[1073] = "Taiwan --- a-ch";
GeogCode[1074] = "Tajik S.S.R.\n  USE  Tajikistan";
GeogCode[1075] = "Tajikistan --- a-ta\n     Coded e-ur-ta (Tajikistan) before June 1998";
GeogCode[1076] = "Tanganyika\n  Assigned code:\n     f-tz --- Tanzania";
GeogCode[1077] = "Tangier (Morocco)\n  Assigned code:\n     f-mr --- Morocco";
GeogCode[1078] = "Tanzania --- f-tz";
GeogCode[1079] = "Tasmania --- u-at-tm";
GeogCode[1080] = "Tennessee --- n-us-tn";
GeogCode[1081] = "Terres australes et antarctiques françaises --- i-fs";
GeogCode[1082] = "Texas --- n-us-tx";
GeogCode[1083] = "Thailand --- a-th";
GeogCode[1084] = "Thailand, Gulf of --- af";
GeogCode[1085] = "Thian Shan\n  USE  Tien Shan";
GeogCode[1086] = "Third World\n  USE  Developing countries";
GeogCode[1087] = "Tian Shan\n  USE  Tien Shan";
GeogCode[1088] = "Tibesti Mountains\n  Assigned codes:\n     f-cd --- Chad\n     f-ly --- Libya\n     f-ng --- Niger";
GeogCode[1089] = "Tibet (China) --- a-cc-ti";
GeogCode[1090] = "Tibetan Autonomous Region (China)\n  USE  Tibet (China)";
GeogCode[1091] = "Tien Mountains\n  USE  Tien Shan";
GeogCode[1092] = "Tien Shan --- at";
GeogCode[1093] = "Tientsin (China) --- a-cc-tn";
GeogCode[1094] = "Timor Island (Indonesia)\n  Assigned code:\n     a-io --- Indonesia";
GeogCode[1095] = "Timor Sea\n  Assigned code:\n     i --- Indian Ocean";
GeogCode[1096] = "Timor Timur (Indonesia)\n     Coded a-pt (Portuguese Timor) before Apr. 21, 1980\n  Assigned code:\n     a-io --- Indonesia";
GeogCode[1097] = "Timor, Portuguese\n  USE  Timor Timur (Indonesia)";
GeogCode[1098] = "Tobago\n  Assigned code:\n     nwtr --- Trinidad and Tobago";
GeogCode[1099] = "Togo --- f-tg";
GeogCode[1100] = "Togoland (British)\n  Assigned code:\n     f-gh --- Ghana";
GeogCode[1101] = "Togoland (French)\n  USE  Togo";
GeogCode[1102] = "Togoland\n  Assigned codes:\n     f-gh --- Ghana\n     f-tg --- Togo";
GeogCode[1103] = "Tokelau --- potl";
GeogCode[1104] = "Tonga --- poto";
GeogCode[1105] = "Tonga Islands\n  USE  Tonga";
GeogCode[1106] = "Torres Strait Islands (Qld.)\n  Assigned code:\n     u-at-qn --- Queensland";
GeogCode[1107] = "Transcaucasia\n     Coded e-ur-ai (Armenia (Republic)), e-ur-aj (Azerbaijan), e-ur-gs (Georgia (Republic)) before June 1998\n  Assigned codes:\n     e-ur-ai --- Armenia (Republic)\n     e-ur-aj --- Azerbaijan\n     e-ur-gs --- Georgia (Republic)";
GeogCode[1108] = "Transjordan\n  USE  Jordan";
GeogCode[1109] = "Trinidad and Tobago --- nwtr";
GeogCode[1110] = "Trinidad\n  Assigned code:\n     nwtr --- Trinidad and Tobago";
GeogCode[1111] = "Tristan da Cunha --- lstd";
GeogCode[1112] = "Trobriand Islands (Papua New Guinea)\n  Assigned code:\n     a-pp --- Papua New Guinea";
GeogCode[1113] = "Tropics --- w";
GeogCode[1114] = "Trucial States\n  USE  United Arab Emirates";
GeogCode[1115] = "Truk (Micronesia)\n  Assigned code:\n     pomi --- Micronesia (Federated States)";
GeogCode[1116] = "Trust Territory of the Pacific Islands\n  USE  Pacific Islands (Trust Territory)";
GeogCode[1117] = "Tsinghai Province (China) --- a-cc-ts";
GeogCode[1118] = "Tuamotu Archipelago (French Polynesia)\n  Assigned code:\n     pofp --- French Polynesia";
GeogCode[1119] = "Tubuai Islands (French Polynesia)\n  USE  Austral Islands (French Polynesia)";
GeogCode[1120] = "Tunisia --- f-ti";
GeogCode[1121] = "Turkey --- a-tu";
GeogCode[1122] = "Turkmen S.S.R.\n  USE  Turkmenistan";
GeogCode[1123] = "Turkmenistan --- a-tk\n     Coded e-ur-tk (Turkmenistan) before June 1998";
GeogCode[1124] = "Turks and Caicos Islands --- nwtc";
GeogCode[1125] = "Tuvalu --- potv\n     Coded pogn (Gilbert and Ellice Islands) before Mar. 1988";
GeogCode[1126] = "U.S.S.R.\n  USE  Soviet Union";
GeogCode[1127] = "Ubangi Shari\n  USE  Central African Republic";
GeogCode[1128] = "Uganda --- f-ug";
GeogCode[1129] = "Ukraine --- e-un\n     Coded e-ur-un (Ukraine) before June 1998";
GeogCode[1130] = "Underdeveloped areas\n  USE  Developing countries";
GeogCode[1131] = "Union Islands\n  USE  Tokelau";
GeogCode[1132] = "Union of South Africa\n  USE  South Africa";
GeogCode[1133] = "United Arab Emirates --- a-ts";
GeogCode[1134] = "United Arab Republic\n  Assigned codes:\n     f-ua --- Egypt\n     a-sy --- Syria";
GeogCode[1135] = "United Kingdom Miscellaneous Island Dependencies\n  USE  Great Britain Miscellaneous Island Dependencies";
GeogCode[1136] = "United Kingdom\n  USE  Great Britain";
GeogCode[1137] = "United States --- n-us";
GeogCode[1138] = "United States Miscellaneous Caribbean Islands --- nwuc";
GeogCode[1139] = "United States Miscellaneous Pacific Islands --- poup";
GeogCode[1140] = "Upper Volta\n  USE  Burkina Faso";
GeogCode[1141] = "Ural Mountains (Russia) --- e-uru";
GeogCode[1142] = "Uruguay --- s-uy";
GeogCode[1143] = "Utah --- n-us-ut";
GeogCode[1144] = "Uvea Island (Wallis and Futuna Islands)\n  Assigned code:\n     powf --- Wallis and Futuna Islands";
GeogCode[1145] = "Uzbek S.S.R. \n  USE  Uzbekistan";
GeogCode[1146] = "Uzbekistan --- a-uz\n     Coded e-ur-uz (Uzbekistan) before June 1998";
GeogCode[1147] = "Vanuatu --- ponn";
GeogCode[1148] = "Vatican City --- e-vc";
GeogCode[1149] = "Venezuela --- s-ve";
GeogCode[1150] = "Vermont --- n-us-vt";
GeogCode[1151] = "Victoria --- u-at-vi";
GeogCode[1152] = "Vietnam (Republic)\n     Coded a-vn (Viet Nam, South) before Mar. 1988\n  Assigned code:\n     a-vt --- Vietnam";
GeogCode[1153] = "Vietnam --- a-vt\n     Coded a-vn (Viet Nam, North) before Mar. 1988";
GeogCode[1154] = "Vietnam, North\n  USE  Vietnam";
GeogCode[1155] = "Vietnam, South\n  USE  Vietnam (Republic)";
GeogCode[1156] = "Virgin Islands (American)\n  USE  Virgin Islands of the United States";
GeogCode[1157] = "Virgin Islands (Danish)\n  USE  Virgin Islands of the United States";
GeogCode[1158] = "Virgin Islands (Great Britain)\n  USE  British Virgin Islands";
GeogCode[1159] = "Virgin Islands (Presidency)\n  USE  British Virgin Islands";
GeogCode[1160] = "Virgin Islands of the United States --- nwvi";
GeogCode[1161] = "Virgin Islands, British\n  USE  British Virgin Islands";
GeogCode[1162] = "Virgin Islands\n     Coded nwvr (Virgin Islands) before Mar. 1988\n  USE  British Virgin Islands";
GeogCode[1163] = "Virginia --- n-us-va";
GeogCode[1164] = "Volga River (Russia) --- e-urp";
GeogCode[1165] = "Volgo-Viatskii Region (Russia)\n     Coded e-urv (Volgo-Viatskii Region, RSFSR) before Mar. 1988\n  Assigned code:\n     e-ru --- Russia (Federation)";
GeogCode[1166] = "Volta River (Ghana) --- fv";
GeogCode[1167] = "Wake Island --- powk";
GeogCode[1168] = "Wales --- e-uk-wl";
GeogCode[1169] = "Wallis and Futuna Islands --- powf";
GeogCode[1170] = "Washington (D.C.) --- n-us-dc";
GeogCode[1171] = "Washington (State) --- n-us-wa";
GeogCode[1172] = "Washington Region\n  Assigned codes:\n     n-us-md --- Maryland\n     n-us-va --- Virginia\n     n-us-dc --- Washington (D.C.)";
GeogCode[1173] = "West (Canada)\n  USE  Northwest, Canadian";
GeogCode[1174] = "West (U.S.) --- n-usp";
GeogCode[1175] = "West Africa, Portuguese\n  USE  Angola";
GeogCode[1176] = "West Africa\n  USE  Africa, West";
GeogCode[1177] = "West Bank --- awba\n     Coded a-is (Israel) and/or a-jo (Jordan) before Mar. 1988";
GeogCode[1178] = "West Bank of the Jordan River\n  USE  West Bank";
GeogCode[1179] = "West Berlin\n  USE  Berlin (Germany)\n  for the western part of Germany:\n  USE  Germany (West)\n  for Germany as a whole:\n  USE  Germany";
GeogCode[1180] = "West Indies --- nw";
GeogCode[1181] = "West Indies, Dutch\n  USE  Netherlands Antilles";
GeogCode[1182] = "West Indies, French\n  Assigned code:\n     nwla --- Antilles, Lesser";
GeogCode[1183] = "West Irian\n  USE  Irian Jaya (Indonesia)";
GeogCode[1184] = "West New Guinea\n  USE  Irian Jaya (Indonesia)";
GeogCode[1185] = "West Pakistan\n  USE  Pakistan";
GeogCode[1186] = "West River (China) --- a-ccs";
GeogCode[1187] = "West Spitsbergen (Norway)\n  USE  Spitsbergen Island (Norway)";
GeogCode[1188] = "West Virginia --- n-us-wv";
GeogCode[1189] = "Western Australia --- u-at-we";
GeogCode[1190] = "Western Canada\n  USE  Canada, Western";
GeogCode[1191] = "Western Europe\n  USE  Europe, Western";
GeogCode[1192] = "Western Hemisphere --- xd";
GeogCode[1193] = "Western Sahara --- f-ss";
GeogCode[1194] = "Western Samoa\n  USE  Samoa";
GeogCode[1195] = "Western Siberia (Russia)\n  USE  Siberia, Western (Russia)";
GeogCode[1196] = "Western Soviet Union\n  USE  Soviet Union, Western";
GeogCode[1197] = "Western States (U.S.)\n  USE  West (U.S.)";
GeogCode[1198] = "White Russia\n  USE  Belarus";
GeogCode[1199] = "Wight, Isle of (England)\n  USE  Isle of Wight (England)";
GeogCode[1200] = "Windward Islands --- nwwi";
GeogCode[1201] = "Wisconsin --- n-us-wi";
GeogCode[1202] = "Woodlark Islands (Papua New Guinea)\n  Assigned code:\n     a-pp --- Papua New Guinea";
GeogCode[1203] = "Wyoming n-us-wy";
GeogCode[1204] = "Yakutia (Russia)\n  USE  Sakha (Russia)";
GeogCode[1205] = "Yangtze River (China) --- a-ccg";
GeogCode[1206] = "Yap (Micronesia)\n  Assigned code:\n     pomi --- Micronesia (Federated States)";
GeogCode[1207] = "Yellow River (China) --- a-ccy";
GeogCode[1208] = "Yellow Sea --- ay";
GeogCode[1209] = "Yemen (People's Democratic Republic)\n     Coded a-ys (Yemen (People's Democratic Republic) before Oct. 1992\n  USE  Yemen";
GeogCode[1210] = "Yemen --- a-ye";
GeogCode[1211] = "Yemen Arab Republic\n  USE  Yemen";
GeogCode[1212] = "Yugoslavia --- e-yu\n     Includes Serbia and Montenegro";
GeogCode[1213] = "Yukon Territory --- n-cn-yk";
GeogCode[1214] = "Yunnan Province (China) --- a-cc-yu";
GeogCode[1215] = "Zaire\n  USE  Congo (Democratic Republic)";
GeogCode[1216] = "Zambezi River --- fz";
GeogCode[1217] = "Zambia --- f-za";
GeogCode[1218] = "Zanzibar\n  Assigned code:\n     f-tz --- Tanzania";
GeogCode[1219] = "Zimbabwe --- f-rh";
GeogCode[1220] = "ÍÀkutskaíà A.S.S.R. (Russia)\n  USE  Sakha (Russia)";
GeogCode[1221] = "Îles Comores\n  USE  Comoros";
GeogCode[1222] = "Îles Froides\n  USE  Prince Edward Islands";
GeogCode[1223] = "Îles Kerguélen\n  USE  Kerguelen Islands";
GeogCode[1224] = "Îles Marquises de Mendoça (French Polynesia)\n  USE  Marquesas Islands (French Polynesia)";
GeogCode[1225] = "Îles Saint-Pierre et Miquelon\n  USE  Saint Pierre and Miquelon";
}

//#######################################################################

function LoadCountryCodes() {

Country[0] = "aa --- Albania ";
Country[1] = "abc --- Alberta ";
Country[2] = "[discontinued code]  ac --- Ashmore and Cartier Islands ";
Country[3] = "ae --- Algeria ";
Country[4] = "af --- Afghanistan ";
Country[5] = "ag --- Argentina ";
Country[6] = "[discontinued code]  ai --- Anguilla ";
Country[7] = "ai --- Armenia (Republic) ";
Country[8] = "[discontinued code]  air --- Armenian S.S.R. ";
Country[9] = "aj --- Azerbaijan ";
Country[10] = "[discontinued code]  ajr --- Azerbaijan S.S.R. ";
Country[11] = "aku --- Alaska ";
Country[12] = "alu --- Alabama ";
Country[13] = "am --- Anguilla ";
Country[14] = "an --- Andorra ";
Country[15] = "ao --- Angola ";
Country[16] = "aq --- Antigua and Barbuda ";
Country[17] = "aru --- Arkansas ";
Country[18] = "as --- American Samoa ";
Country[19] = "at --- Australia ";
Country[20] = "au --- Austria ";
Country[21] = "aw --- Aruba ";
Country[22] = "ay --- Antarctica ";
Country[23] = "azu --- Arizona ";
Country[24] = "ba --- Bahrain ";
Country[25] = "bb --- Barbados ";
Country[26] = "bcc --- British Columbia ";
Country[27] = "bd --- Burundi ";
Country[28] = "be --- Belgium ";
Country[29] = "bf --- Bahamas ";
Country[30] = "bg --- Bangladesh ";
Country[31] = "bh --- Belize ";
Country[32] = "bi --- British Indian Ocean Territory ";
Country[33] = "bl --- Brazil ";
Country[34] = "bm --- Bermuda Islands ";
Country[35] = "bn --- Bosnia and Hercegovina ";
Country[36] = "bo --- Bolivia ";
Country[37] = "bp --- Solomon Islands ";
Country[38] = "br --- Burma ";
Country[39] = "bs --- Botswana ";
Country[40] = "bt --- Bhutan ";
Country[41] = "bu --- Bulgaria ";
Country[42] = "bv --- Bouvet Island ";
Country[43] = "bw --- Belarus ";
Country[44] = "[discontinued code]  bwr --- Byelorussian S.S.R. ";
Country[45] = "bx --- Brunei ";
Country[46] = "cau --- California ";
Country[47] = "cb --- Cambodia ";
Country[48] = "cc --- China ";
Country[49] = "cd --- Chad ";
Country[50] = "ce --- Sri Lanka ";
Country[51] = "cf --- Congo (Brazzaville) ";
Country[52] = "cg --- Congo (Democratic Republic) ";
Country[53] = "ch --- China (Republic : 1949- ) ";
Country[54] = "ci --- Croatia ";
Country[55] = "cj --- Cayman Islands ";
Country[56] = "ck --- Colombia ";
Country[57] = "cl --- Chile ";
Country[58] = "cm --- Cameroon ";
Country[59] = "[discontinued code]  cn --- Canada ";
Country[60] = "cou --- Colorado ";
Country[61] = "[discontinued code]  cp --- Canton and Enderbury Islands ";
Country[62] = "cq --- Comoros ";
Country[63] = "cr --- Costa Rica ";
Country[64] = "[discontinued code]  cs --- Czechoslovakia ";
Country[65] = "ctu --- Connecticut ";
Country[66] = "cu --- Cuba ";
Country[67] = "cv --- Cape Verde ";
Country[68] = "cw --- Cook Islands ";
Country[69] = "cx --- Central African Republic ";
Country[70] = "cy --- Cyprus ";
Country[71] = "[discontinued code]  cz --- Canal Zone ";
Country[72] = "dcu --- District of Columbia ";
Country[73] = "deu --- Delaware ";
Country[74] = "dk --- Denmark ";
Country[75] = "dm --- Benin ";
Country[76] = "dq --- Dominica ";
Country[77] = "dr --- Dominican Republic ";
Country[78] = "ea --- Eritrea ";
Country[79] = "ec --- Ecuador ";
Country[80] = "eg --- Equatorial Guinea ";
Country[81] = "enk --- England ";
Country[82] = "er --- Estonia ";
Country[83] = "[discontinued code]  err --- Estonia ";
Country[84] = "es --- El Salvador ";
Country[85] = "et --- Ethiopia ";
Country[86] = "fa --- Faroe Islands ";
Country[87] = "fg --- French Guiana ";
Country[88] = "fi --- Finland ";
Country[89] = "fj --- Fiji ";
Country[90] = "fk --- Falkland Islands ";
Country[91] = "flu --- Florida ";
Country[92] = "fm --- Micronesia (Federated States) ";
Country[93] = "fp --- French Polynesia ";
Country[94] = "fr --- France ";
Country[95] = "fs --- Terres australes et antarctiques françaises ";
Country[96] = "ft --- Djibouti ";
Country[97] = "gau --- Georgia ";
Country[98] = "gb --- Kiribati ";
Country[99] = "gd --- Grenada ";
Country[100] = "[discontinued code]  ge --- Germany (East) ";
Country[101] = "gh --- Ghana ";
Country[102] = "gi --- Gibraltar ";
Country[103] = "gl --- Greenland ";
Country[104] = "gm --- Gambia ";
Country[105] = "[discontinued code]  gn --- Gilbert and Ellice Islands ";
Country[106] = "go --- Gabon ";
Country[107] = "gp --- Guadeloupe ";
Country[108] = "gr --- Greece ";
Country[109] = "gs --- Georgia (Republic) ";
Country[110] = "[discontinued code]  gsr --- Georgian S.S.R. ";
Country[111] = "gt --- Guatemala ";
Country[112] = "gu --- Guam ";
Country[113] = "gv --- Guinea ";
Country[114] = "gw --- Germany ";
Country[115] = "gy --- Guyana ";
Country[116] = "gz --- Gaza Strip ";
Country[117] = "hiu --- Hawaii ";
Country[118] = "[discontinued code]  hk --- Hong Kong ";
Country[119] = "hm --- Heard and McDonald Islands ";
Country[120] = "ho --- Honduras ";
Country[121] = "ht --- Haiti ";
Country[122] = "hu --- Hungary ";
Country[123] = "iau --- Iowa ";
Country[124] = "ic --- Iceland ";
Country[125] = "idu --- Idaho ";
Country[126] = "ie --- Ireland ";
Country[127] = "ii --- India ";
Country[128] = "ilu --- Illinois ";
Country[129] = "inu --- Indiana ";
Country[130] = "io --- Indonesia ";
Country[131] = "iq --- Iraq ";
Country[132] = "ir --- Iran ";
Country[133] = "is --- Israel ";
Country[134] = "it --- Italy ";
Country[135] = "[discontinued code]  iu --- Israel-Syria Demilitarized Zones ";
Country[136] = "iv --- Côte d'Ivoire ";
Country[137] = "[discontinued code]  iw --- Israel-Jordan Demilitarized Zones ";
Country[138] = "iy --- Iraq-Saudi Arabia Neutral Zone ";
Country[139] = "ja --- Japan ";
Country[140] = "ji --- Johnston Atoll ";
Country[141] = "jm --- Jamaica ";
Country[142] = "[discontinued code]  jn --- Jan Mayen ";
Country[143] = "jo --- Jordan ";
Country[144] = "ke --- Kenya ";
Country[145] = "kg --- Kyrgyzstan ";
Country[146] = "[discontinued code]  kgr --- Kirghiz S.S.R. ";
Country[147] = "kn --- Korea (North) ";
Country[148] = "ko --- Korea (South) ";
Country[149] = "ksu --- Kansas ";
Country[150] = "ku --- Kuwait ";
Country[151] = "kyu --- Kentucky ";
Country[152] = "kz --- Kazakhstan ";
Country[153] = "[discontinued code]  kzr --- Kazakh S.S.R. ";
Country[154] = "lau --- Louisiana ";
Country[155] = "lb --- Liberia ";
Country[156] = "le --- Lebanon ";
Country[157] = "lh --- Liechtenstein ";
Country[158] = "li --- Lithuania ";
Country[159] = "[discontinued code]  lir --- Lithuania ";
Country[160] = "[discontinued code]  ln --- Central and Southern Line Islands ";
Country[161] = "lo --- Lesotho ";
Country[162] = "ls --- Laos ";
Country[163] = "lu --- Luxembourg ";
Country[164] = "lv --- Latvia ";
Country[165] = "[discontinued code]  lvr --- Latvia ";
Country[166] = "ly --- Libya ";
Country[167] = "mau --- Massachusetts ";
Country[168] = "mbc --- Manitoba ";
Country[169] = "mc --- Monaco ";
Country[170] = "mdu --- Maryland ";
Country[171] = "meu --- Maine ";
Country[172] = "mf --- Mauritius ";
Country[173] = "mg --- Madagascar ";
Country[174] = "mh --- Macao ";
Country[175] = "miu --- Michigan ";
Country[176] = "mj --- Montserrat ";
Country[177] = "mk --- Oman ";
Country[178] = "ml --- Mali ";
Country[179] = "mm --- Malta ";
Country[180] = "mnu --- Minnesota ";
Country[181] = "mou --- Missouri ";
Country[182] = "mp --- Mongolia ";
Country[183] = "mq --- Martinique ";
Country[184] = "mr --- Morocco ";
Country[185] = "msu --- Mississippi ";
Country[186] = "mtu --- Montana ";
Country[187] = "mu --- Mauritania ";
Country[188] = "mv --- Moldova ";
Country[189] = "[discontinued code]  mvr --- Moldavian S.S.R. ";
Country[190] = "mw --- Malawi ";
Country[191] = "mx --- Mexico ";
Country[192] = "my --- Malaysia ";
Country[193] = "mz --- Mozambique ";
Country[194] = "na --- Netherlands Antilles ";
Country[195] = "nbu --- Nebraska ";
Country[196] = "ncu --- North Carolina ";
Country[197] = "ndu --- North Dakota ";
Country[198] = "ne --- Netherlands ";
Country[199] = "nfc --- Newfoundland ";
Country[200] = "ng --- Niger ";
Country[201] = "nhu --- New Hampshire ";
Country[202] = "nik --- Northern Ireland ";
Country[203] = "nju --- New Jersey ";
Country[204] = "nkc --- New Brunswick ";
Country[205] = "nl --- New Caledonia ";
Country[206] = "[discontinued code]  nm --- Northern Mariana Islands ";
Country[207] = "nmu --- New Mexico ";
Country[208] = "nn --- Vanuatu ";
Country[209] = "no --- Norway ";
Country[210] = "np --- Nepal ";
Country[211] = "nq --- Nicaragua ";
Country[212] = "nr --- Nigeria ";
Country[213] = "nsc --- Nova Scotia ";
Country[214] = "ntc --- Northwest Territories ";
Country[215] = "nu --- Nauru ";
Country[216] = "nvu --- Nevada ";
Country[217] = "nw --- Northern Mariana Islands ";
Country[218] = "nx --- Norfolk Island ";
Country[219] = "nyu --- New York (State) ";
Country[220] = "nz --- New Zealand ";
Country[221] = "ohu --- Ohio ";
Country[222] = "oku --- Oklahoma ";
Country[223] = "onc --- Ontario ";
Country[224] = "oru --- Oregon ";
Country[225] = "ot --- Mayotte ";
Country[226] = "pau --- Pennsylvania ";
Country[227] = "pc --- Pitcairn Island ";
Country[228] = "pe --- Peru ";
Country[229] = "pf --- Paracel Islands ";
Country[230] = "pg --- Guinea-Bissau ";
Country[231] = "ph --- Philippines ";
Country[232] = "pic --- Prince Edward Island ";
Country[233] = "pk --- Pakistan ";
Country[234] = "pl --- Poland ";
Country[235] = "pn --- Panama ";
Country[236] = "po --- Portugal ";
Country[237] = "pp --- Papua New Guinea ";
Country[238] = "pr --- Puerto Rico ";
Country[239] = "[discontinued code]  pt --- Portuguese Timor ";
Country[240] = "pw --- Palau ";
Country[241] = "py --- Paraguay ";
Country[242] = "qa --- Qatar ";
Country[243] = "quc --- Québec (Province) ";
Country[244] = "re --- Réunion ";
Country[245] = "rh --- Zimbabwe ";
Country[246] = "riu --- Rhode Island ";
Country[247] = "rm --- Romania ";
Country[248] = "ru --- Russia (Federation) ";
Country[249] = "[discontinued code]  rur --- Russian S.F.S.R. ";
Country[250] = "rw --- Rwanda ";
Country[251] = "[discontinued code]  ry --- Ryukyu Islands, Southern ";
Country[252] = "sa --- South Africa ";
Country[253] = "[discontinued code]  sb --- Svalbard ";
Country[254] = "scu --- South Carolina ";
Country[255] = "sdu --- South Dakota ";
Country[256] = "se --- Seychelles ";
Country[257] = "sf --- Sao Tome and Principe ";
Country[258] = "sg --- Senegal ";
Country[259] = "sh --- Spanish North Africa ";
Country[260] = "si --- Singapore ";
Country[261] = "sj --- Sudan ";
Country[262] = "[discontinued code]  sk --- Sikkim ";
Country[263] = "sl --- Sierra Leone ";
Country[264] = "sm --- San Marino ";
Country[265] = "snc --- Saskatchewan ";
Country[266] = "so --- Somalia ";
Country[267] = "sp --- Spain ";
Country[268] = "sq --- Swaziland ";
Country[269] = "sr --- Surinam ";
Country[270] = "ss --- Western Sahara ";
Country[271] = "stk --- Scotland ";
Country[272] = "su --- Saudi Arabia ";
Country[273] = "[discontinued code]  sv --- Swan Islands ";
Country[274] = "sw --- Sweden ";
Country[275] = "sx --- Namibia ";
Country[276] = "sy --- Syria ";
Country[277] = "sz --- Switzerland ";
Country[278] = "ta --- Tajikistan ";
Country[279] = "[discontinued code]  tar --- Tajik S.S.R. ";
Country[280] = "tc --- Turks and Caicos Islands ";
Country[281] = "tg --- Togo ";
Country[282] = "th --- Thailand ";
Country[283] = "ti --- Tunisia ";
Country[284] = "tk --- Turkmenistan ";
Country[285] = "[discontinued code]  tkr --- Turkmen S.S.R. ";
Country[286] = "tl --- Tokelau ";
Country[287] = "tnu --- Tennessee ";
Country[288] = "to --- Tonga ";
Country[289] = "tr --- Trinidad and Tobago ";
Country[290] = "ts --- United Arab Emirates ";
Country[291] = "[discontinued code]  tt --- Trust Territory of the Pacific Islands ";
Country[292] = "tu --- Turkey ";
Country[293] = "tv --- Tuvalu ";
Country[294] = "txu --- Texas ";
Country[295] = "tz --- Tanzania ";
Country[296] = "ua --- Egypt ";
Country[297] = "uc --- United States Misc. Caribbean Islands ";
Country[298] = "ug --- Uganda ";
Country[299] = "[discontinued code]  ui --- United Kingdom Misc. Islands ";
Country[300] = "uik --- United Kingdom Misc. Islands ";
Country[301] = "[discontinued code]  uk --- United Kingdom ";
Country[302] = "un --- Ukraine ";
Country[303] = "[discontinued code]  unr --- Ukraine ";
Country[304] = "up --- United States Misc. Pacific Islands ";
Country[305] = "[discontinued code]  ur --- Soviet Union ";
Country[306] = "[discontinued code]  us --- United States ";
Country[307] = "utu --- Utah ";
Country[308] = "uv --- Burkina Faso ";
Country[309] = "uy --- Uruguay ";
Country[310] = "uz --- Uzbekistan ";
Country[311] = "[discontinued code]  uzr --- Uzbek S.S.R. ";
Country[312] = "vau --- Virginia ";
Country[313] = "vb --- British Virgin Islands ";
Country[314] = "vc --- Vatican City ";
Country[315] = "ve --- Venezuela ";
Country[316] = "vi --- Virgin Islands of the United States ";
Country[317] = "vm --- Vietnam ";
Country[318] = "[discontinued code]  vn --- Vietnam, North ";
Country[319] = "vp --- Various places ";
Country[320] = "[discontinued code]  vs --- Vietnam, South ";
Country[321] = "vtu --- Vermont ";
Country[322] = "wau --- Washington (State) ";
Country[323] = "[discontinued code]  wb --- West Berlin ";
Country[324] = "wf --- Wallis and Futuna ";
Country[325] = "wiu --- Wisconsin ";
Country[326] = "wj --- West Bank of the Jordan River ";
Country[327] = "wk --- Wake Island ";
Country[328] = "wlk --- Wales ";
Country[329] = "ws --- Samoa ";
Country[330] = "wvu --- West Virginia ";
Country[331] = "wyu --- Wyoming ";
Country[332] = "xa --- Christmas Island (Indian Ocean) ";
Country[333] = "xb --- Cocos (Keeling) Islands ";
Country[334] = "xc --- Maldives ";
Country[335] = "xd --- Saint Kitts-Nevis ";
Country[336] = "xe --- Marshall Islands ";
Country[337] = "xf --- Midway Islands ";
Country[338] = "xh --- Niue ";
Country[339] = "[discontinued code]  xi --- Saint Kitts-Nevis-Anguilla ";
Country[340] = "xj --- Saint Helena ";
Country[341] = "xk --- Saint Lucia ";
Country[342] = "xl --- Saint Pierre and Miquelon ";
Country[343] = "xm --- Saint Vincent and the Grenadines ";
Country[344] = "xn --- Macedonia ";
Country[345] = "xo --- Slovakia ";
Country[346] = "xp --- Spratly Island ";
Country[347] = "xr --- Czech Republic ";
Country[348] = "xs --- South Georgia and the South Sandwich Islands ";
Country[349] = "xv --- Slovenia ";
Country[350] = "xx --- No place, unknown, or undetermined ";
Country[351] = "xxc --- Canada ";
Country[352] = "xxk --- United Kingdom ";
Country[353] = "[discontinued code]  xxr --- Soviet Union ";
Country[354] = "xxu --- United States ";
Country[355] = "ye --- Yemen ";
Country[356] = "ykc --- Yukon Territory ";
Country[357] = "[discontinued code]  ys --- Yemen (People's Democratic Republic) ";
Country[358] = "yu --- Yugoslavia ";
Country[359] = "za --- Zambia ";

}

//##########################################################

function LoadLangCodes() {
LangCode[0] = "aar --- Afar ";
LangCode[1] = "abk --- Abkhaz ";
LangCode[2] = "ace --- Achinese ";
LangCode[3] = "ach --- Acoli ";
LangCode[4] = "ada --- Adangme ";
LangCode[5] = "afa --- Afroasiatic (Other) ";
LangCode[6] = "afh --- Afrihili (Artificial language) ";
LangCode[7] = "afr --- Afrikaans ";
LangCode[8] = "[discontinued code] ajm --- Aljamía ";
LangCode[9] = "aka --- Akan ";
LangCode[10] = "akk --- Akkadian ";
LangCode[11] = "alb --- Albanian ";
LangCode[12] = "ale --- Aleut ";
LangCode[13] = "alg --- Algonquian (Other) ";
LangCode[14] = "amh --- Amharic ";
LangCode[15] = "ang --- English, Old (ca. 450-1100) ";
LangCode[16] = "apa --- Apache languages ";
LangCode[17] = "ara --- Arabic ";
LangCode[18] = "arc --- Aramaic ";
LangCode[19] = "arm --- Armenian ";
LangCode[20] = "arn --- Mapuche ";
LangCode[21] = "arp --- Arapaho ";
LangCode[22] = "art --- Artificial (Other) ";
LangCode[23] = "arw --- Arawak ";
LangCode[24] = "asm --- Assamese ";
LangCode[25] = "ath --- Athapascan (Other) ";
LangCode[26] = "aus --- Australian languages ";
LangCode[27] = "ava --- Avaric ";
LangCode[28] = "ave --- Avestan ";
LangCode[29] = "awa --- Awadhi ";
LangCode[30] = "aym --- Aymara ";
LangCode[31] = "aze --- Azerbaijani ";
LangCode[32] = "bad --- Banda ";
LangCode[33] = "bai --- Bamileke languages ";
LangCode[34] = "bak --- Bashkir ";
LangCode[35] = "bal --- Baluchi ";
LangCode[36] = "bam --- Bambara ";
LangCode[37] = "ban --- Balinese ";
LangCode[38] = "baq --- Basque ";
LangCode[39] = "bas --- Basa ";
LangCode[40] = "bat --- Baltic (Other) ";
LangCode[41] = "bej --- Beja ";
LangCode[42] = "bel --- Belarusian ";
LangCode[43] = "bem --- Bemba ";
LangCode[44] = "ben --- Bengali ";
LangCode[45] = "ber --- Berber (Other) ";
LangCode[46] = "bho --- Bhojpuri ";
LangCode[47] = "bih --- Bihari ";
LangCode[48] = "bik --- Bikol ";
LangCode[49] = "bin --- Bini ";
LangCode[50] = "bis --- Bislama ";
LangCode[51] = "bla --- Siksika ";
LangCode[52] = "bnt --- Bantu (Other) ";
LangCode[53] = "bos --- Bosnian ";
LangCode[54] = "bra --- Braj ";
LangCode[55] = "bre --- Breton ";
LangCode[56] = "btk --- Batak ";
LangCode[57] = "bua --- Buriat ";
LangCode[58] = "bug --- Bugis ";
LangCode[59] = "bul --- Bulgarian ";
LangCode[60] = "bur --- Burmese ";
LangCode[61] = "cad --- Caddo ";
LangCode[62] = "cai --- Central American Indian (Other) ";
LangCode[63] = "[discontinued code] cam --- Khmer ";
LangCode[64] = "car --- Carib ";
LangCode[65] = "cat --- Catalan ";
LangCode[66] = "cau --- Caucasian (Other) ";
LangCode[67] = "ceb --- Cebuano ";
LangCode[68] = "cel --- Celtic (Other) ";
LangCode[69] = "cha --- Chamorro ";
LangCode[70] = "chb --- Chibcha ";
LangCode[71] = "che --- Chechen ";
LangCode[72] = "chg --- Chagatai ";
LangCode[73] = "chi --- Chinese ";
LangCode[74] = "chk --- Truk ";
LangCode[75] = "chm --- Mari ";
LangCode[76] = "chn --- Chinook jargon ";
LangCode[77] = "cho --- Choctaw ";
LangCode[78] = "chp --- Chipewyan ";
LangCode[79] = "chr --- Cherokee ";
LangCode[80] = "chu --- Church Slavic ";
LangCode[81] = "chv --- Chuvash ";
LangCode[82] = "chy --- Cheyenne ";
LangCode[83] = "cmc --- Chamic languages ";
LangCode[84] = "cop --- Coptic ";
LangCode[85] = "cor --- Cornish ";
LangCode[86] = "cos --- Corsican ";
LangCode[87] = "cpe --- Creoles and Pidgins, English-based (Other) ";
LangCode[88] = "cpf --- Creoles and Pidgins, French-based (Other) ";
LangCode[89] = "cpp --- Creoles and Pidgins, Portuguese-based (Other) ";
LangCode[90] = "cre --- Cree ";
LangCode[91] = "crp --- Creoles and Pidgins (Other) ";
LangCode[92] = "cus --- Cushitic (Other) ";
LangCode[93] = "cze --- Czech ";
LangCode[94] = "dak --- Dakota ";
LangCode[95] = "dan --- Danish ";
LangCode[96] = "day --- Dayak ";
LangCode[97] = "del --- Delaware ";
LangCode[98] = "den --- Slave ";
LangCode[99] = "dgr --- Dogrib ";
LangCode[100] = "din --- Dinka ";
LangCode[101] = "div --- Divehi ";
LangCode[102] = "doi --- Dogri ";
LangCode[103] = "dra --- Dravidian (Other) ";
LangCode[104] = "dua --- Duala ";
LangCode[105] = "dum --- Dutch, Middle (ca. 1050-1350) ";
LangCode[106] = "dut --- Dutch ";
LangCode[107] = "dyu --- Dyula ";
LangCode[108] = "dzo --- Dzongkha ";
LangCode[109] = "efi --- Efik ";
LangCode[110] = "egy --- Egyptian ";
LangCode[111] = "eka --- Ekajuk ";
LangCode[112] = "elx --- Elamite ";
LangCode[113] = "eng --- English ";
LangCode[114] = "enm --- English, Middle (1100-1500) ";
LangCode[115] = "epo --- Esperanto ";
LangCode[116] = "[discontinued code] esk --- Eskimo languages ";
LangCode[117] = "[discontinued code] esp --- Esperanto ";
LangCode[118] = "est --- Estonian ";
LangCode[119] = "[discontinued code] eth --- Ethiopic ";
LangCode[120] = "ewe --- Ewe ";
LangCode[121] = "ewo --- Ewondo ";
LangCode[122] = "fan --- Fang ";
LangCode[123] = "fao --- Faroese ";
LangCode[124] = "[discontinued code] far --- Faroese ";
LangCode[125] = "fat --- Fanti ";
LangCode[126] = "fij --- Fijian ";
LangCode[127] = "fin --- Finnish ";
LangCode[128] = "fiu --- Finno-Ugrian (Other) ";
LangCode[129] = "fon --- Fon ";
LangCode[130] = "fre --- French ";
LangCode[131] = "[discontinued code] fri --- Frisian ";
LangCode[132] = "frm --- French, Middle (ca. 1400-1600) ";
LangCode[133] = "fro --- French, Old (ca. 842-1400) ";
LangCode[134] = "fry --- Frisian ";
LangCode[135] = "ful --- Fula ";
LangCode[136] = "fur --- Friulian ";
LangCode[137] = "gaa --- Gã ";
LangCode[138] = "[discontinued code] gae --- Scottish Gaelic ";
LangCode[139] = "[discontinued code] gag --- Galician ";
LangCode[140] = "[discontinued code] gal --- Oromo ";
LangCode[141] = "gay --- Gayo ";
LangCode[142] = "gba --- Gbaya ";
LangCode[143] = "nds --- Germanic (Other) ";
LangCode[144] = "geo --- Georgian ";
LangCode[145] = "ger --- German ";
LangCode[146] = "gez --- Ethiopic ";
LangCode[147] = "gil --- Gilbertese ";
LangCode[148] = "gla --- Scottish Gaelic ";
LangCode[149] = "gle --- Irish ";
LangCode[150] = "glg --- Galician ";
LangCode[151] = "glv --- Manx ";
LangCode[152] = "gmh --- German, Middle High (ca. 1050-1500) ";
LangCode[153] = "goh --- German, Old High (ca. 750-1050) ";
LangCode[154] = "gon --- Gondi ";
LangCode[155] = "gor --- Gorontalo ";
LangCode[156] = "got --- Gothic ";
LangCode[157] = "grb --- Grebo ";
LangCode[158] = "grc --- Greek, Ancient (to 1453) ";
LangCode[159] = "gre --- Greek, Modern (1453- ) ";
LangCode[160] = "grn --- Guarani ";
LangCode[161] = "[discontinued code] gua --- Guarani ";
LangCode[162] = "guj --- Gujarati ";
LangCode[163] = "gwi --- Gwich'in ";
LangCode[164] = "hai --- Haida ";
LangCode[165] = "hau --- Hausa ";
LangCode[166] = "haw --- Hawaiian ";
LangCode[167] = "heb --- Hebrew ";
LangCode[168] = "her --- Herero ";
LangCode[169] = "hil --- Hiligaynon ";
LangCode[170] = "him --- Himachali ";
LangCode[171] = "hin --- Hindi ";
LangCode[172] = "hit --- Hittite ";
LangCode[173] = "hmn --- Hmong ";
LangCode[174] = "hmo --- Hiri Motu ";
LangCode[175] = "hun --- Hungarian ";
LangCode[176] = "hup --- Hupa ";
LangCode[177] = "iba --- Iban ";
LangCode[178] = "ibo --- Igbo ";
LangCode[179] = "ice --- Icelandic ";
LangCode[180] = "ijo --- Ijo ";
LangCode[181] = "iku --- Inuktitut ";
LangCode[182] = "ile --- Interlingue ";
LangCode[183] = "ilo --- Iloko ";
LangCode[184] = "ina --- Interlingua (International Auxiliary Language Association) ";
LangCode[185] = "inc --- Indic (Other) ";
LangCode[186] = "ind --- Indonesian ";
LangCode[187] = "ine --- Indo-European (Other) ";
LangCode[188] = "[discontinued code] int --- Interlingua (International Auxiliary Language Association) ";
LangCode[189] = "ipk --- Inupiaq ";
LangCode[190] = "ira --- Iranian (Other) ";
LangCode[191] = "[discontinued code] iri --- Irish ";
LangCode[192] = "iro --- Iroquoian (Other) ";
LangCode[193] = "ita --- Italian ";
LangCode[194] = "jav --- Javanese ";
LangCode[195] = "jpn --- Japanese ";
LangCode[196] = "jpr --- Judeo-Persian ";
LangCode[197] = "jrb --- Judeo-Arabic ";
LangCode[198] = "kaa --- Kara-Kalpak ";
LangCode[199] = "kab --- Kabyle ";
LangCode[200] = "kac --- Kachin ";
LangCode[201] = "kal --- Kalâtdlisut ";
LangCode[202] = "kam --- Kamba ";
LangCode[203] = "kan --- Kannada ";
LangCode[204] = "kar --- Karen ";
LangCode[205] = "kas --- Kashmiri ";
LangCode[206] = "kau --- Kanuri ";
LangCode[207] = "kaw --- Kawi ";
LangCode[208] = "kaz --- Kazakh ";
LangCode[209] = "kha --- Khasi ";
LangCode[210] = "khi --- Khoisan (Other) ";
LangCode[211] = "khm --- Khmer ";
LangCode[212] = "kho --- Khotanese ";
LangCode[213] = "kik --- Kikuyu ";
LangCode[214] = "kin --- Kinyarwanda ";
LangCode[215] = "kir --- Kyrgyz ";
LangCode[216] = "kmb --- Kimbundu ";
LangCode[217] = "kok --- Konkani ";
LangCode[218] = "kom --- Komi ";
LangCode[219] = "kon --- Kongo ";
LangCode[220] = "kor --- Korean ";
LangCode[221] = "kos --- Kusaie ";
LangCode[222] = "kpe --- Kpelle ";
LangCode[223] = "kro --- Kru ";
LangCode[224] = "kru --- Kurukh ";
LangCode[225] = "kua --- Kuanyama ";
LangCode[226] = "kum --- Kumyk ";
LangCode[227] = "kur --- Kurdish ";
LangCode[228] = "[discontinued code] kus --- Kusaie ";
LangCode[229] = "kut --- Kutenai ";
LangCode[230] = "lad --- Ladino ";
LangCode[231] = "lah --- Lahnda ";
LangCode[232] = "lam --- Lamba ";
LangCode[233] = "[discontinued code] lan --- Occitan (post-1500) ";
LangCode[234] = "lao --- Lao ";
LangCode[235] = "[discontinued code] lap --- Sami ";
LangCode[236] = "lat --- Latin ";
LangCode[237] = "lav --- Latvian ";
LangCode[238] = "lez --- Lezgian ";
LangCode[239] = "lin --- Lingala ";
LangCode[240] = "lit --- Lithuanian ";
LangCode[241] = "lol --- Mongo-Nkundu ";
LangCode[242] = "loz --- Lozi ";
LangCode[243] = "ltz --- Letzeburgesch ";
LangCode[244] = "lua --- Luba-Lulua ";
LangCode[245] = "lub --- Luba-Katanga ";
LangCode[246] = "lug --- Ganda ";
LangCode[247] = "lui --- Luiseño ";
LangCode[248] = "lun --- Lunda ";
LangCode[249] = "luo --- Luo (Kenya and Tanzania) ";
LangCode[250] = "lus --- Lushai ";
LangCode[251] = "mac --- Macedonian ";
LangCode[252] = "mad --- Madurese ";
LangCode[253] = "mag --- Magahi ";
LangCode[254] = "mah --- Marshall ";
LangCode[255] = "mai --- Maithili ";
LangCode[256] = "mak --- Makasar ";
LangCode[257] = "mal --- Malayalam ";
LangCode[258] = "man --- Mandingo ";
LangCode[259] = "mao --- Maori ";
LangCode[260] = "map --- Austronesian (Other) ";
LangCode[261] = "mar --- Marathi ";
LangCode[262] = "mas --- Masai ";
LangCode[263] = "[discontinued code] max --- Manx ";
LangCode[264] = "may --- Malay ";
LangCode[265] = "mdr --- Mandar ";
LangCode[266] = "men --- Mende ";
LangCode[267] = "mga --- Irish, Middle (ca. 1100-1550) ";
LangCode[268] = "mic --- Micmac ";
LangCode[269] = "min --- Minangkabau ";
LangCode[270] = "mis --- Miscellaneous languages ";
LangCode[271] = "mkh --- Mon-Khmer (Other) ";
LangCode[272] = "[discontinued code] mla --- Malagasy ";
LangCode[273] = "mlg --- Malagasy ";
LangCode[274] = "mlt --- Maltese ";
LangCode[275] = "mnc --- Manchu ";
LangCode[276] = "mni --- Manipuri ";
LangCode[277] = "mno --- Manobo languages ";
LangCode[278] = "moh --- Mohawk ";
LangCode[279] = "mol --- Moldavian ";
LangCode[280] = "mon --- Mongolian ";
LangCode[281] = "mos --- Mooré ";
LangCode[282] = "mul --- Multiple languages ";
LangCode[283] = "mun --- Munda (Other) ";
LangCode[284] = "mus --- Creek ";
LangCode[285] = "mwr --- Marwari ";
LangCode[286] = "myn --- Mayan languages ";
LangCode[287] = "nah --- Nahuatl ";
LangCode[288] = "nai --- North American Indian (Other) ";
LangCode[289] = "nau --- Nauru ";
LangCode[290] = "nav --- Navajo ";
LangCode[291] = "nbl --- Ndebele (South Africa) ";
LangCode[292] = "nde --- Ndebele (Zimbabwe) ";
LangCode[293] = "ndo --- Ndonga ";
LangCode[294] = "nep --- Nepali ";
LangCode[295] = "new --- Newari ";
LangCode[296] = "nia --- Nias ";
LangCode[297] = "nic --- Niger-Kordofanian (Other) ";
LangCode[298] = "niu --- Niuean ";
LangCode[299] = "non --- Old Norse ";
LangCode[300] = "nor --- Norwegian ";
LangCode[301] = "nso --- Northern Sotho ";
LangCode[302] = "nub --- Nubian languages ";
LangCode[303] = "nya --- Nyanja ";
LangCode[304] = "nym --- Nyamwezi ";
LangCode[305] = "nyn --- Nyankole ";
LangCode[306] = "nyo --- Nyoro ";
LangCode[307] = "nzi --- Nzima ";
LangCode[308] = "oci --- Occitan (post-1500) ";
LangCode[309] = "oji --- Ojibwa ";
LangCode[310] = "ori --- Oriya ";
LangCode[311] = "orm --- Oromo ";
LangCode[312] = "osa --- Osage ";
LangCode[313] = "oss --- Ossetic ";
LangCode[314] = "ota --- Turkish, Ottoman ";
LangCode[315] = "oto --- Otomian languages ";
LangCode[316] = "paa --- Papuan (Other) ";
LangCode[317] = "pag --- Pangasinan ";
LangCode[318] = "pal --- Pahlavi ";
LangCode[319] = "pam --- Pampanga ";
LangCode[320] = "pan --- Panjabi ";
LangCode[321] = "pap --- Papiamento ";
LangCode[322] = "pau --- Palauan ";
LangCode[323] = "peo --- Old Persian (ca. 600-400 B.C.) ";
LangCode[324] = "per --- Persian ";
LangCode[325] = "phi --- Philippine (Other) ";
LangCode[326] = "phn --- Phoenician ";
LangCode[327] = "pli --- Pali ";
LangCode[328] = "pol --- Polish ";
LangCode[329] = "pon --- Ponape ";
LangCode[330] = "por --- Portuguese ";
LangCode[331] = "pra --- Prakrit languages ";
LangCode[332] = "pro --- Provençal (to 1500) ";
LangCode[333] = "pus --- Pushto ";
LangCode[334] = "que --- Quechua ";
LangCode[335] = "raj --- Rajasthani ";
LangCode[336] = "rap --- Rapanui ";
LangCode[337] = "rar --- Rarotongan ";
LangCode[338] = "roa --- Romance (Other) ";
LangCode[339] = "roh --- Raeto-Romance ";
LangCode[340] = "rom --- Romany ";
LangCode[341] = "rum --- Romanian ";
LangCode[342] = "run --- Rundi ";
LangCode[343] = "rus --- Russian ";
LangCode[344] = "sad --- Sandawe ";
LangCode[345] = "sag --- Sango ";
LangCode[346] = "sah --- Yakut ";
LangCode[347] = "sai --- South American Indian (Other) ";
LangCode[348] = "sal --- Salishan languages ";
LangCode[349] = "sam --- Samaritan Aramaic ";
LangCode[350] = "san --- Sanskrit ";
LangCode[351] = "[discontinued code] sao --- Samoan ";
LangCode[352] = "sas --- Sasak ";
LangCode[353] = "sat --- Santali ";
LangCode[354] = "scc --- Serbian ";
LangCode[355] = "sco --- Scots ";
LangCode[356] = "scr --- Croatian ";
LangCode[357] = "sel --- Selkup ";
LangCode[358] = "sem --- Semitic (Other) ";
LangCode[359] = "sga --- Irish, Old (to 1100) ";
LangCode[360] = "sgn --- Sign languages ";
LangCode[361] = "shn --- Shan ";
LangCode[362] = "[discontinued code] sho --- Shona ";
LangCode[363] = "sid --- Sidamo ";
LangCode[364] = "sin --- Sinhalese ";
LangCode[365] = "sio --- Siouan (Other) ";
LangCode[366] = "sit --- Sino-Tibetan (Other) ";
LangCode[367] = "sla --- Slavic (Other) ";
LangCode[368] = "slo --- Slovak ";
LangCode[369] = "slv --- Slovenian ";
LangCode[370] = "sme --- Northern Sami ";
LangCode[371] = "smi --- Sami ";
LangCode[372] = "smo --- Samoan ";
LangCode[373] = "sna --- Shona ";
LangCode[374] = "snd --- Sindhi ";
LangCode[375] = "[discontinued code] snh --- Sinhalese ";
LangCode[376] = "snk --- Soninke ";
LangCode[377] = "sog --- Sogdian ";
LangCode[378] = "som --- Somali ";
LangCode[379] = "son --- Songhai ";
LangCode[380] = "sot --- Sotho ";
LangCode[381] = "spa --- Spanish ";
LangCode[382] = "srd --- Sardinian ";
LangCode[383] = "srr --- Serer ";
LangCode[384] = "ssa --- Nilo-Saharan (Other) ";
LangCode[385] = "[discontinued code] sso --- Sotho ";
LangCode[386] = "ssw --- Swazi ";
LangCode[387] = "suk --- Sukuma ";
LangCode[388] = "sun --- Sundanese ";
LangCode[389] = "sus --- Susu ";
LangCode[390] = "sux --- Sumerian ";
LangCode[391] = "swa --- Swahili ";
LangCode[392] = "swe --- Swedish ";
LangCode[393] = "[discontinued code] swz --- Swazi ";
LangCode[394] = "syr --- Syriac ";
LangCode[395] = "[discontinued code] tag --- Tagalog ";
LangCode[396] = "tah --- Tahitian ";
LangCode[397] = "tai --- Tai (Other) ";
LangCode[398] = "[discontinued code] taj --- Tajik ";
LangCode[399] = "tam --- Tamil ";
LangCode[400] = "[discontinued code] tar --- Tatar ";
LangCode[401] = "tat --- Tatar ";
LangCode[402] = "tel --- Telugu ";
LangCode[403] = "tem --- Temne ";
LangCode[404] = "ter --- Terena ";
LangCode[405] = "tet --- Tetum ";
LangCode[406] = "tgk --- Tajik ";
LangCode[407] = "tgl --- Tagalog ";
LangCode[408] = "tha --- Thai ";
LangCode[409] = "tib --- Tibetan ";
LangCode[410] = "tig --- Tigré ";
LangCode[411] = "tir --- Tigrinya ";
LangCode[412] = "tiv --- Tiv ";
LangCode[413] = "tkl --- Tokelauan ";
LangCode[414] = "tli --- Tlingit ";
LangCode[415] = "tmh --- Tamashek ";
LangCode[416] = "tog --- Tonga (Nyasa) ";
LangCode[417] = "ton --- Tongan ";
LangCode[418] = "tpi --- Tok Pisin ";
LangCode[419] = "[discontinued code] tru --- Truk ";
LangCode[420] = "tsi --- Tsimshian ";
LangCode[421] = "tsn --- Tswana ";
LangCode[422] = "tso --- Tsonga ";
LangCode[423] = "[discontinued code] tsw --- Tswana ";
LangCode[424] = "tuk --- Turkmen ";
LangCode[425] = "tum --- Tumbuka ";
LangCode[426] = "tur --- Turkish ";
LangCode[427] = "tut --- Altaic (Other) ";
LangCode[428] = "tvl --- Tuvaluan ";
LangCode[429] = "twi --- Twi ";
LangCode[430] = "tyv --- Tuvinian ";
LangCode[431] = "uga --- Ugaritic ";
LangCode[432] = "uig --- Uighur ";
LangCode[433] = "ukr --- Ukrainian ";
LangCode[434] = "umb --- Umbundu ";
LangCode[435] = "und --- Undetermined ";
LangCode[436] = "urd --- Urdu ";
LangCode[437] = "uzb --- Uzbek ";
LangCode[438] = "vai --- Vai ";
LangCode[439] = "ven --- Venda ";
LangCode[440] = "vie --- Vietnamese ";
LangCode[441] = "vol --- Volapük ";
LangCode[442] = "vot --- Votic ";
LangCode[443] = "wak --- Wakashan languages ";
LangCode[444] = "wal --- Walamo ";
LangCode[445] = "war --- Waray ";
LangCode[446] = "was --- Washo ";
LangCode[447] = "wel --- Welsh ";
LangCode[448] = "wen --- Sorbian languages ";
LangCode[449] = "wol --- Wolof ";
LangCode[450] = "xho --- Xhosa ";
LangCode[451] = "yao --- Yao ";
LangCode[452] = "yap --- Yapese ";
LangCode[453] = "yid --- Yiddish ";
LangCode[454] = "yor --- Yoruba ";
LangCode[455] = "ypk --- Yupik languages ";
LangCode[456] = "zap --- Zapotec ";
LangCode[457] = "zen --- Zenaga ";
LangCode[458] = "zha --- Zhuang ";
LangCode[459] = "znd --- Zande ";
LangCode[460] = "zul --- Zulu ";
LangCode[461] = "zun --- Zuni ";
}

//#############################################################

function LoadMarc() {
Marc[0] = "010   Library of Congress Control Number  (NR)Ü  Blankß\n|a\tLC control number  (NR)\n|b\tNUCMC control number  (R)\n|z\tCancelled/invalid LC control number  (R)ÝÝ";
Marc[1] = "013   Patent Control Information  (R)Ü  Blankß\n|a\tNumber  (NR)\n|b\tCountry   (NR)\n|c\tType of number  (NR)\n|d\tDate  (R)\n|e\tStatus  (R)\n|f\tParty to document  (R)ÝÝ";
Marc[2] = "015   National Bibliography Number  (NR)Ü  Blankß\n|a\tNational bibliography number  (R)ÝÝ";
Marc[3] = "016  National Bibliographic Agency Control Number  (R)Ü\nFirst\tNational bibliographic agency\n#\tNational Library of Canada\n7\tAgency identified in subfield |2\nSecond\tUndefined\n#\tUndefinedß\n|a\tRecord control number  (NR)\n|z\tCancelled or invalid record control number  (R)\n|2\tSource  (NR)ÝÝ";
Marc[4] = "017   Copyright Registration Number  (R)Ü  Blankß\n|a\tCopyright registration number  (R)\n|b\tSource (agency assigning number)  (NR)ÝÝ";
Marc[5] = "018   Copyright Article-Fee Code  (NR)Ü  Blankß\n|a\tCopyright article-fee code  (NR)ÝÝ";
Marc[6] = "020   International Standard Book Number  (R)Ü  Blankß\n|a\tInternational Standard Book Number  (NR)\n|c\tTerms of availability  (NR)\n|z\tCancelled/invalid ISBN  (R)Ý020\t##|a0394170660 (Random House : pbk.) :|c$4.95\n020\t##|a0877790019 (black leather)|z0877780116 :|c$14.00";
Marc[7] = "022   International Standard Serial Number  (R)Ü\nFirst\tLevel of international interest\n#\tLevel of international interest not designated\n0\tSerial of international interest; full record registered with the ISSN Network\n1\tSerial not of international interest; abbreviated record registered with the ISSN Network\nSecond\tUndefined\n#\tUndefinedß\n|a\tInternational Standard Serial Number  (NR)\n|y\tIncorrect ISSN  (R)\n|z\tCancelled ISSN  (R)Ý022\t0#|a0046-225X|y0046-2254";
Marc[8] = "024   Other Standard Identifier  (R)Ü\nFirst\tType of standard number or code\n0\tInternational Standard Recording Code\n1\tUniversal Product Code\n2\tInternational Standard Music Number\n3\tInternational Article Number\n4\tSerial Item and Contribution Identifier\n7\tSource specified in subfield |2\n8\tUnspecified type of standard number or code\nSecond\tDifference indicator\n#\tNo information provided\n0\tNo difference\n1\tDifferenceß\n|a\tStandard number or code  (NR)\n|c\tTerms of availability  (NR)\n|d\tAdditional codes following the standard number or code  (NR)\n|z\tCancelled/invalid standard number or code  (R)\n|2\tSource of number or code  (NR)Ý024\t2#|aM571100511|c$20.00";
Marc[9] = "025   Overseas Acquisition Number  (R)Ü  Blankß\n|a\tOverseas acquisition number  (R)ÝÝ";
Marc[10] = "027   Standard Technical Report Number  (R)Ü  Blankß\n|a\tStandard Technical Report Number  (NR)\n|z\tCancelled/invalid STRN  (R)ÝÝ";
Marc[11] = "028   Publisher Number  (R)Ü\nFirst\tType of publisher number\n0\tIssue number\n1\tMatrix number\n2\tPlate number\n3\tOther publisher number\n4\tVideorecording number\n\nSecond\tNote/added entry controller\n0\tNo note, no added entry\n1\tNote, added entry required\n2\tNote, no added entry\n3\tNo note, added entry requiredß\n|a\tPublisher number  (NR)\n|b\tSource  (NR)Ý028\t11|a256A090|bDeutsche Grammophon Gesellschaft";
Marc[12] = "030   CODEN Designation  (R)Ü  Blankß\n|a\tCODEN  (NR)\n|z\tCancelled/invalid CODEN  (R)Ý030\t##|aASIRAF|zASITAF";
Marc[13] = "032   Postal Registration Number  (R)Ü  Blankß\n|a\tPostal registration number  (NR)\n|b\tSource (agency assigning number)  (NR)Ý032\t##|a686310|bUSPS";
Marc[14] = "033   Date/Time and Place of an Event  (R)Ü\nFirst\t\tType of date in subfield |a\n#\t\tNo date information\n0\t\tSingle date\n1\t\tMultiple single dates\n2\t\tRange of dates\nSecond\t\tType of event\n#\t\tNo information provided\n0\t\tCapture\n1\t\tBroadcast\n2\t\tFindingß\n|a\t\tFormatted date/time  (R)\n|b\t\tGeographic classification area code  (R)\n|c\t\tGeographic classification subarea code  (R)\n|3\t\tMaterials specified  (NR)\n|6\t\tLinkage  (NR)Ý033\t20|a197601--|a197606--|b6714|cR7|b6714|cV4";
Marc[15] = "034   Coded Cartographic Mathematical Data  (R)Ü\nFirst\tType of scale\n0\tScale indeterminable/No scale recorded\n1\tSingle scale\n3\tRange of scales\nSecond\tType of ring\n#\tNot applicable\n0\tOuter ring\n1\tExclusion ringß\n|a\tCategory of scale  (NR)\n\tCodes\n\t\ta\tLinear scale\n\t\tb\tAngular scale\n\t\tz\tOther type of scale\n|b\tConstant ratio linear horizontal scale  (R)\n|c\tConstant ratio linear vertical scale  (R)\n|d\tCoordinates - westernmost longitude  (NR)\n|e\tCoordinates - easternmost longitude  (NR)\n|f\tCoordinates - northernmost latitude  (NR)\n|g\tCoordinates - southernmost latitude  (NR)\n|h\tAngular scale  (R)\n|j\tDeclination - northern limit  (NR)\n|k\tDeclination - southern limit  (NR)\n|m\tRight ascension - eastern limit  (NR)\n|n\tRight ascension - western limit  (NR)\n|p\tEquinox  (NR)\n|s\tG-ring latitude (R)\n|t\tG-ring longitude (R)Ý034\t1#|aa|b75000|dW0950500|eW0950500|fN0303000|gN0303000";
Marc[16] = "035   System Control Number  (R)Ü  Blankß\n|a\tSystem control number  (NR)\n|z\tCancelled/invalid system control number  (R)Ý035\t##|a(OCoLC)814782|z(OCoLC)7374506";
Marc[17] = "036   Original Study Number for Computer Data Files  (NR)Ü  Blankß\n|a\tOriginal study number  (NR)\n|b\tSource (agency assigning number)  (NR)Ý036\t##|aCPS 495441|bCenter for Political Studies, University of Michigan, Ann Arbor.";
Marc[18] = "037   Source of Acquisition  (R)Ü  Blankß\n|a\tStock number  (NR)\n|b\tSource or stock number/acquisition  (NR)\n|c\tTerms of availability  (R)\n|f\tForm of issue  (R)\n|g\tAdditional format characteristics (R) [Provisional]\n|n\tNote (R)Ý037\t##|aPB-363547|bNTIS|fpaper copy|c$4.00|fmicrofiche|c$3.00";
Marc[19] = "040   Cataloging Source  (NR)Ü  Blankß\n|a\tOriginal cataloging agency  (NR)\n|b\tLanguage of cataloging  (NR)\n|c\tTranscribing agency  (NR)\n|d\tModifying agency  (R)\n|e\tDescription conventions  (NR)Ý040\t##|aCaNSHD|beng|cCaOONL";
Marc[20] = "041   Language Code  (NR)Ü\nFirst\tTranslation indication\n0\tItem not a translation/does not include a translation\n1\tItem is or includes a translation\nSecond\tUndefined\n#\tUndefinedß\n|a\tLanguage code of text/sound track or separate title  (NR)\n|b\tLanguage code of summary or abstract/overprinted title or subtitle  (NR)\n|d\tLanguage code of sung or spoken text  (NR)\n|e\tLanguage code of librettos  (NR)\n|f\tLanguage code of table of contents  (NR)\n|g\tLanguage code of accompanying material other than librettos  (NR)\n|h\tLanguage code of original and/or intermediate translations of text  (R)Ý041\t1#|afre|hgerrus";
Marc[21] = "042   Authentication Code  (NR)Ü  Blankß\n|a\tAuthentication code  (R)\nCodes\ndc\tDublin Core\ndhca\tDance Heritage Coalition Access Project\ngamma\tGeorgia Archives & Manuscripts Automated Access Project\ngils\tGovernment Information Location Service\nisds/c\tISSN Network/Canada\nlc\tLibrary of Congress\nlcac\tLC Annotated Children's Cataloging Program\nlccopycat\tLC Copy Cataloging\nlccopycat-nm\tLC Copy Cataloging-Near Match\nlcd\tCONSER full authority application\nlcderive\tLC derived cataloging\nlchlas\tLC Handbook of Latin American Studies\nlcllh\tLC Law Library Hispanic\nlcnccp\tLC National Coordinated Cataloging Program\nlcnitrate\tLC Nitrate Film\nlcnuc\tNational Union Catalog\nlcode\tLC Overseas Data Entry\nmsc\tCONSER minimal authority application\nnlc\tNational Library of Canada\nnsdp\tNational Serials Data Program\nntccf\tLC National Translations Center Citation File\npcc\tProgram for Cooperative Cataloging\npremarc\tLC PreMARC Retrospective Conversion Project\nxisds/c\tISSN Network/Canada does not consider item a serial\nxlc\tLC does not consider item a serial\nxnlc\tNLC does not consider item a serial\nxnsdp\tNSDP does not consider item a serialÝ042\t##|anlc|aisds/c|ansdp";
Marc[22] = "043   Geographic Area Code  (NR)Ü  Blankß\n|a\tGeographic area code  (R)\n|b\tLocal GAC code (R)\n|2\tSource of local code (R)Ý043\t##|an-us---|ae-fr---|aa-ja---";
Marc[23] = "044   Country of Publishing/Producing Entity Code  (NR)Ü  Blankß\n|a\tCountry of publishing/producing entity code  (R)\n|b\tLocal subentity code (R)\n|c\tISO subentity code (R)\n|2\tSource of local code (R)Ý044\t##|ait|afr|asp";
Marc[24] = "045   Time Period of Content  (NR)Ü\nFirst\tType of time period in subfield |b or |c\n#\tSubfield |b or |c not present\n0\tSingle date/time\n1\tMultiple single dates/times\n2\tRange of dates/times\nSecond\tUndefined\n#\tUndefinedß\n|a\tTime period code  (R)\n|b\tFormatted 9999 B.C. through A.D. time period  (R)\n|c\tFormatted pre-9999 B.C. time period  (R)Ý045\t2#|d186405|bd186408";
Marc[25] = "046   Type of Date Code, Date 1, Date 2 (B.C. Dates)  (NR)Ü  Blankß\n|a\tType of date code  (NR)\nCodes\nt\tPublication date and copyright date\ni\tInclusive dates of collection\nk\tRange of years of bulk of collection\nm\tMultiple dates\nn\tDate unknown; assumed to be B.C.\np\tDate of distribution/release/issue and production/recording session when different\nq\tQuestionable date\nr\tReprint/reissue date and original date\ns\tSingle known date/probable date\n|b\tDate 1 (B.C. date)  (NR)\n|c\tDate 1 (A.D. date)  (NR)\n|d\tDate 2 (B.C. date)  (NR)\n|e\tDate 2 (A.D. date)  (NR)Ý046\t##|ak|b1000|d500";
Marc[26] = "047   Form of Musical Composition Code  (NR)Ü  Blankß\n|a\tForm of musical composition code  (R)Ý047\t##|arg|app";
Marc[27] = "048   Number of Musical Instruments or Voices Code  (R)Ü  Blankß\n|a\tPerformer or ensemble  (R)\n|b\tSoloist  (R)Ý048\t##|bva02|bvc01|bvd01|bvf02|aca04|aoc";
Marc[28] = "050   Library of Congress Call Number  (R)Ü\nFirst\tExistence in LC collection\n#\tNo information provided\n0\tItem is in LC\n1\tItem is not in LC\nSecond\tSource of call number\n0\tAssigned by LC\n4\tAssigned by agency other than LCß\n|a\tClassification number  (R)\n|b\tItem number  (NR)\n|3\tMaterials specified  (NR)Ý050\t00|aZ7164.N3|bL34 no. 9|aZ7165.R42|aHC517.R42";
Marc[29] = "051   Library of Congress Copy, Issue, Offprint Statement  (R)Ü  Blankß\n|a\tClassification number  (NR)\n|b\tItem number  (NR)\n|c\tCopy information  (NR)Ý051\t##|aMicrofilm|b3741 HV|cMicrofilm.";
Marc[30] = "052   Geographic Classification Code  (R)Ü  Blankß\n|a\tGeographic classification area code  (NR)\n|b\tGeographic classification subarea code  (R)Ý052\t##|a4034|bR4|bR8";
Marc[31] = "055   Call Numbers/Class Numbers Assigned in Canada  (R)Ü\nFirst\tExistence in NLC collection\n#\tInformation not provided\n0\tWork held by NLC\n1\tWork not held by NLC\nSecond\tType, completeness, source of class/call number\n0\tLC-based call number assigned by NLC\n1\tComplete LC class number assigned by NLC\n2\tIncomplete LC class number assigned by NLC\n3\tLC-based call number assigned by the contributing library\n4\tComplete LC class number assigned by the contributing library\n5\tIncomplete LC class number assigned by the contributing library\n6\tOther call number assigned by NLC\n7\tOther class number assigned by NLC\n8\tOther call number assigned by the contributing library\n9\tOther class number assigned by the contributing libraryß\n|a\tClassification number  (NR)\n|b\tItem number  (NR)\n|2\tSource of call/class number  (NR)\n@e";
Marc[32] = "060   National Library of Medicine Call Number  (R)Ü\nFirst\tExistence in NLM collection\n#\tNo information provided\n0\tItem is in NLM\n1\tItem is not in NLM\nSecond\tSource of call number\n0\tAssigned by NLM\n4\tAssigned by agency other than NLMß\n|a\tClassification number  (R)\n|b\tItem number  (NR)ÝÝ";
Marc[33] = "061   National Library of Medicine Copy Statement  (R)Ü  Blankß\n|a\tClassification number  (R)\n|b\tItem number  (NR)\n|c\tCopy information  (NR)ÝÝ";
Marc[34] = "066   Character Set Present  (NR)Ü  Blankß\n|a\tNon-ASCII G0 default character set designation  (NR)\n|b\tNon-ANSEL G1 default character set designation  (NR)\n|c\tAlternate graphic character set identification  (R)Ý066\t##|a(N";
Marc[35] = "070   National Agricultural Library Call Number  (R)Ü\nFirst\tExistence in NAL collection\n0\tItem is in NAL\n1\tItem is not in NAL\nSecond\tUndefined\n#\tUndefinedß\n|a\tClassification number  (R)\n|b\tItem number  (NR)ÝÝ";
Marc[36] = "071   National Agricultural Library Copy Statement  (R)Ü  Blankß\n|a\tClassification number  (R)\n|b\tItem number  (NR)\n|c\tCopy information  (NR)ÝÝ";
Marc[37] = "072   Subject  Category Code  (R)Ü\nFirst\tUndefined\n#\tUndefined\nSecond\tCode source\n0\tNational Agricultural Library subject category code list\n7\tCode source specified in subfield |2ß\n|a\tSubject category code  (NR)\n|x\tSubject category code subdivision  (R)\n|2\tCode source  (NR)ÝÝ";
Marc[38] = "074   GPO Item Number  (R)Ü  Blankß\n|a\tGPO item number  (NR)\n|z\tCancelled/invalid GPO item number  (R)ÝÝ";
Marc[39] = "080   Universal Decimal Classification Number  (NR)Ü  Blankß\n|a\tUniversal Decimal Classification number  (R)\n082   Dewey Decimal Call Number  (R)Ü\nFirst\tType of edition\n0\tFull edition\n1\tAbridged edition\nSecond\tSource of call number\n#\tNo information provided\n0\tAssigned by LC\n4\tAssigned by agency other than LCß\n|a\tClassification number  (R)\n|b\tItem number  (NR)\n|2\tEdition number  (NR)Ý082\t04|a220.47|220";
Marc[40] = "084   Other Call Number  (R)Ü  Blankß\n|a\tClassification number  (R)\n|b\tItem number (NR)\n|2\tSource of number  (NR)ÝÝ";
Marc[41] = "086   Government Document Call Number  (R)Ü\nFirst\tNumber source\n#\tSource specified in subfield |2\n0\tSuperintendent of Documents Classification System\n1\tGovernment of Canada Publications: Outline of Classification\nSecond\tUndefined\n#\tUndefinedß\n|a\tClassification number  (NR)\n|z\tCancelled/invalid classification number  (R)\n|2\tNumber source  (NR)Ý086\t##|aHEU/G74.3C49|2ordocs";
Marc[42] = "088   Report Number  (R)Ü  Blankß\n|a\tReport number  (NR)\n|z\tCancelled/invalid report number (R)Ý088\t##|aNASA-RP-1124-REV-3|zNASA-RP-1124-REV-2";
Marc[43] = "100   Main Entry-Personal Name  (NR)Ü\nFirst\tType of personal name entry element\n0\tForename\n1\tSurname\n3\tFamily name\nSecond\tUndefined\n#\tUndefinedß\n|a\tPersonal name  (NR)\n|b\tNumeration  (NR)\n|c\tTitles and other words associated with a name  (R)\n|d\tDates associated with a name  (NR)\n|e\tRelator term  (R)\n|f\tDate of a work  (NR)\n|g\tMiscellaneous information  (NR)\n|k\tForm subheading  (R)\n|l\tLanguage of a work  (NR)\n|n\tNumber of part/section of a work  (R)\n|p\tName of part/section of a work  (R)\n|q\tFuller form of name  (NR)\n|t\tTitle of a work  (NR)\n|u\tAffiliation  (NR)\n|4\tRelator code  (R)Ý100\t1#|aFowler, T. M.|q(Thaddeus Mortimer),|d1842-1922.";
Marc[44] = "110   Main Entry-Corporate Name  (NR)Ü\nFirst\tType of corporate name entry element\n0\tInverted name\n1\tJurisdiction name\n2\tName in direct order\nSecond\tUndefined\n#\tUndefinedß\n|a\tCorporate name or jurisdiction name as entry element  (NR)\n|b\tSubordinate unit  (R)\n|c\tLocation of meeting  (NR)\n|d\tDate of meeting or treaty signing  (R)\n|e\tRelator term  (R)\n|f\tDate of a work  (NR)\n|g\tMiscellaneous information  (NR)\n|k\tForm subheading  (R)\n|l\tLanguage of a work  (NR)\n|n\tNumber of part/section/meeting  (R)\n|p\tName of part/section of a work  (R)\n|t\tTitle of a work  (NR)\n|u\tAffiliation  (NR)\n|4\tRelator code  (R)Ý110\t2#|aCatholic Church.|bProvince of Baltimore (Md.).|bProvincial Council|n(10th :|d1869)";
Marc[45] = "111   Main Entry-Meeting Name  (NR)Ü\nFirst\tType of meeting name entry element\n0\tInverted name\n1\tJurisdiction name\n2\tName in direct order\nSecond\tUndefined\n#\tUndefinedß\n|a\tMeeting name or jurisdiction name as entry element  (NR)\n|c\tLocation of meeting  (NR)\n|d\tDate of meeting  (NR)\n|e\tSubordinate unit  (R)\n|f\tDate of a work  (NR)\n|g\tMiscellaneous information  (NR)\n|k\tForm subheading  (R)\n|l\tLanguage of a work  (NR)\n|n\tNumber of part/section/meeting  (R)\n|p\tName of part/section of a work  (R)\n|q\tName of meeting following jurisdiction name entry element  (NR)\n|t\tTitle of a work  (NR)\n|u\tAffiliation  (NR)\n|4\tRelator code  (R)Ý111\t2#|aInternational American Conference|n(8th :|d1938 :|cLima, Peru).|eDelegation from Mexico.";
Marc[46] = "130   Main Entry-Uniform Title  (NR)Ü\nFirst\tNonfiling characters\n0-9\tNumber of nonfiling characters present\nSecond\tUndefined\n#\tUndefinedß\n|a\tUniform title  (NR)\n|d\tDate of treaty signing  (R)\n|f\tDate of a work  (NR)\n|g\tMiscellaneous information  (NR)\n|h\tMedium  (NR)\n|k\tForm subheading  (R)\n|l\tLanguage of a work  (NR)\n|m\tMedium of performance for music  (R)\n|n\tNumber of part/section of a work  (R)\n|o\tArranged statement for music  (NR)\n|p\tName of part/section of a work  (R)\n|r\tKey for music  (NR)\n|s\tVersion  (NR)\n|t\tTitle of a work  (NR)Ý130\t0#|aBible.|pO.T.|pFive Scrolls.|lHebrew.|sBiblioteca apostolica vaticana.|kManuscript.|nUrbiniti Hebraicus 1.|f1980.";
Marc[47] = "210   Abbreviated Key Title  (NR)Ü\nFirst\tTitle added entry\n0\tNo title added entry\n1\tTitle added entry\nSecond\tUndefined\n#\tUndefinedß\n|a\tAbbreviated key title  (NR)\n|b\tQualifying information  (NR)Ý210\t0#|aAnnu. rep. - Dep. Public Welfare|b(Chic.)";
Marc[48] = "222   Key Title  (R)Ü\nFirst\tUndefined\n#\tUndefined\nSecond\tNonfiling characters\n0-9\tNumber of nonfiling characters presentß\n|a\tKey title  (NR)\n|b\tQualifying information  (NR)Ý222\t#0|aEconomic education bulletin|b(Great Barrington)";
Marc[49] = "240   Uniform Title  (NR)Ü\nFirst\tUniform title printed or displayed\n0\tNot printed or displayed\n1\tPrinted or displayed\nSecond\tNonfiling characters\n0-9\tNumber of nonfiling characters presentß\n|a\tUniform title  (NR)\n|d\tDate of treaty signing  (R)\n|f\tDate of a work  (NR)\n|g\tMiscellaneous information  (NR)\n|h\tMedium  (NR)\n|k\tForm subheading  (R)\n|l\tLanguage of a work  (NR)\n|m\tMedium of performance for music  (R)\n|n\tNumber of part/section of a work  (R)\n|o\tArranged statement for music  (NR)\n|p\tName of part/section of a work  (R)\n|r\tKey for music  (NR)\n|s\tVersion  (NR)Ý240\t10|aInstitutiones.|nLiber 2.|nCapitulum 5.|lEnglish";
Marc[50] = "242   Translation of Title by Cataloging Agency  (R)Ü\nFirst\tTitle added entry\n0\tNo title added entry\n1\tTitle added entry\nSecond\tNonfiling characters\n0-9\tNumber of nonfiling characters presentß\n|a\tTitle  (NR)\n|b\tRemainder of title  (NR)\n|c\tRemainder of title page transcription/statement of responsibility  (NR)\n|h\tMedium  (NR)\n|n\tNumber of part/section of a work  (R)\n|p\tName of part/section of a work  (R)\n|y\tLanguage code of translated title  (NR)Ý242\t04|aThe Arab East.|yeng";
Marc[51] = "243   Collective Uniform Title  (NR)Ü\nFirst\tUniform title printed or displayed\n0\tNot printed or displayed\n1\tPrinted or displayed\nSecond\tNonfiling characters\n0-9\tNumber of nonfiling characters presentß\n|a\tUniform title  (NR)\n|d\tDate of treaty signing  (R)\n|f\tDate of a work  (NR)\n|g\tMiscellaneous information  (NR)\n|h\tMedium  (NR)\n|k\tForm subheading  (R)\n|l\tLanguage of a work  (NR)\n|m\tMedium of performance for music  (R)\n|n\tNumber of part/section of a work  (R)\n|o\tArranged statement for music  (NR)\n|p\tName of part/section of a work  (R)\n|r\tKey for music  (NR)\n|s\tVersion  (NR)Ý243\t10|aOrchestra music.|kSelections";
Marc[52] = "245   Title Statement  (NR)Ü\nFirst\tTitle added entry\n0\tNo title added entry\n1\tTitle added entry\nSecond\tNonfiling characters\n0-9\tNumber of nonfiling characters presentß\n|a\tTitle  (NR)\n|b\tRemainder of title  (NR)\n|c\tRemainder of title page transcription/statement of responsibility  (NR)\n|f\tInclusive dates  (NR)\n|g\tBulk dates  (NR)\n|h\tMedium  (NR)\n|k\tForm   (R)\n|n\tNumber of part/section of a work  (R)\n|p\tName of part/section of a work  (R)\n|s\tVersion  (NR)Ý245\t00|aJournal of the Faculty of Science, the University of Tokyo.|nSection IV,|pZoology =|bTokyo Daigaku Rigakubu kiyo.  Dai 4-rui, Dobutseugaku.\n245\t00|aRetail et volaille /|cBureau des statistiques de Québec = Livestock and poultry / Quebec  Bureau of Statistics.";
Marc[53] = "246   Varying Form of Title  (R)Ü\nFirst\tNote controller/title added entry\n0\tNote, no title added entry\n1\tNote, title added entry\n2\tNo note, no title added entry\n3\tNo note, title added entry\nSecond\tType of title\n#\tNo information provided\n0\tPortion of title\n1\tParallel title\n2\tDistinctive title\n3\tOther title\n4\tCover title\n5\tAdded title page title\n6\tCaption title\n7\tRunning title\n8\tSpine titleß\n|a\tTitle proper/short title  (NR)\n|b\tRemainder of title  (NR)\n|f\tDesignation of volume and issue number and/or date of a work  (NR)\n|g\tMiscellaneous information  (NR)\n|h\tMedium  (NR)\n|i\tDisplay text  (NR)\n|n\tNumber of part/section of a work  (R)\n|p\tName of part/section of a work  (R)\n|5\tInstitution to which field applies  (NR)Ý246\t1#|iAlternate issues published with title:|aChicago daily telegraph";
Marc[54] = "247   Former Title or Title Variations  (R)Ü\nFirst\tTitle added entry\n0\tNo title added entry\n1\tTitle added entry\nSecond\tNote controller\n0\tDisplay note\n1\tDo not display noteß\n|a\tTitle proper/short title  (NR)\n|b\tRemainder of title  (NR)\n|f\tDesignation of volume and issue number and/or date of a work  (NR)\n|g\tMiscellaneous information  (NR)\n|h\tMedium  (NR)\n|n\tNumber of part/section of a work  (R)\n|p\tName of part/section of a work  (R)\n|x\tInternational Standard Serial Number  (NR)Ý247\t10|aJournalism bulletin|fMar. 1924-Nov. 1927";
Marc[55] = "250   Edition Statement  (NR)Ü  Blankß\n|a\tEdition statement  (NR)\n|b\tRemainder of edition statement  (NR)Ý250\t##|a4th ed. /|brevised by J.G. Le Mesurier and E. McIntosh, Repr. with corrections.\n250\t##|aCanadian ed. =|bEd. canadienne.";
Marc[56] = "254   Musical Presentation Statement  (NR)Ü  Blankß\n|a\tMusical presentation statement  (NR)Ý254\t##|aScore and set of parts.";
Marc[57] = "255   Cartographic Mathematical Data  (R)Ü  Blankß\n|a\tStatement of scale  (NR)\n|b\tStatement of projection  (NR)\n|c\tStatement of coordinates  (NR)\n|d\tStatement of zone  (NR)\n|e\tStatement of equinox  (NR)\n|f\tOuter G-ring coordinate pairs (NR)\n|g\tExclusion G-ring coordinate pairs (NR)Ý255\t##|aScale [ca. 1:13,835,000]. 1 cm. = 138 km. 1 in. = 218 miles ;|bChamberlin trimetric proj.";
Marc[58] = "256   Computer File Characteristics  (NR)Ü  Blankß\n|a\tComputer file characteristics  (NR)Ý256\t##|aComputer data (2 files : 876,000, 775,000 records).";
Marc[59] = "257   Country of Producing Entity for Archival Films  (NR)Ü  Blankß\n|a\tCountry of producing entity for archival films  (NR)Ý257\t##|aItaly ; France.";
Marc[60] = "260   Publication, Distribution, etc. (Imprint)  (NR)Ü  Blankß\n|a\tPlace of publication, distribution, etc.  (R)\n|b\tName of publisher, distributor, etc.  (R)\n|c\tDate of publication, distribution, etc.  (R)\n|d\tPlate or publisher's number for music (Pre-AARC2)  (R)\n|e\tPlace of manufacture  (NR)\n|f\tManufacturer  (NR)\n|g\tDate of manufacture  (NR)Ý260\t##|a[Philadelphia :]|bUnited States Pharacopeial Convention :|a[s.l.] :|bDistributed by Mack Pub. Co.,|c1980-";
Marc[61] = "261   Imprint Statement for Films (Pre-AACR 1 Revised)  (NR)Ü  Blankß\n|a\tProducing company  (R)\n|b\tReleasing company (primary distributor)  (R)\n|d\tDate of production, release, etc.  (R)\n|e\tContractual producer  (R)\n|f\tPlace of production, release, etc.  (R)ÝÝ";
Marc[62] = "262   Imprint Statement for Sound Recordings (Pre-AACR 2)  (NR)Ü  Blankß\n|a\tPlace of production, release, etc.  (NR)\n|b\tPublisher or trade name  (NR)\n|c\tDate of production, release, etc.  (NR)\n|k\tSerial identification  (NR)\n|l\tMatrix and/or take number  (NR)ÝÝ";
Marc[63] = "263   Projected Publication Date  (NR)Ü  Blankß\n|a\tProjected publication date  (NR)Ý263\t##|a9412";
Marc[64] = "270   Address  (R)Ü\nFirst\tLevel\n#\tNo level specified\n1\tPrimary\n2\tSecondary\nSecond\tType of address\n#\tNo type specified\n0\tMailing\n7\tType specified in subfield |iß\n|a\tAddress  (R)\n|b\tCity  (NR)\n|c\tState or province  (NR)\n|d\tCountry  (NR)\n|e\tPostal code  (NR)\n|f\tTitle preceding attention name  (NR)\n|g\tAttention name  (NR)\n|h\tTitle following attention name  (NR)\n|i\tType of address  (NR)\n|j\tSpecialized telephone number  (R)\n|k\tTelephone number  (R)\n|l\tFax number  (R)\n|m\tElectronic mail address  (R)\n|n\tTDD or TTY number  (R)\n|p\tContact person  (R)\n|q\tTitle of contact person  (R)\n|r\tHours  (R)\n|z\tPublic note  (R)\n|4\tRelator code  (R)Ý270\t##|gGeorge Smith|hDirector|a8899 South Lobo St.|bVancouver|cBC|dCanada|eV2N 1Z5|j1-800-543-1234|k1-604-947-1255|l1-604-947-0505|mGSMITHBC";
Marc[65] = "300   Physical Description  (R)Ü  Blankß\n|a\tExtent  (R)\n|b\tOther physical details  (NR)\n|c\tDimensions  (R)\n|e\tAccompanying material  (NR)\n|f\tType of unit  (R)\n|g\tSize of unit  (R)\n|3\tMaterials specified  (NR)Ý300\t##|a271 p. :|bill. ;|c21 cm. +|eatlas (37 p., 19 leaves of plates : 19  col. maps ; 37 cm.)\n300\t##|a1 sound cassette (85 min.) :|b3 3/4 ips, mono. ;|c7 1/4 x 3 1/2 in., 1/4 in. tape.";
Marc[66] = "306   Playing Time  (NR)Ü  Blankß\n|a\tPlaying time  (R)Ý306\t##|a014500";
Marc[67] = "307   Hours, Etc.  (R)Ü\nFirst\tDisplay constant controller\n#\tHours\n8\tNo display constant generated\nSecond\tUndefined\n#\tUndefinedß\n|a\tHours  (NR)\n|b\tAdditional information  (NR)Ý307\t##|aM, 8:30-6:00; Tu, 8:30-7:00; W-F, 8:30-6:00;|bnot available on weekends.";
Marc[68] = "310   Current Publication Frequency  (NR)Ü  Blankß\n|a\tCurrent publication frequency  (NR)\n|b\tDate of current publication frequency  (NR)Ý310\t##|aBimonthly (monthly June-July)";
Marc[69] = "321   Former Publication Frequency  (R)Ü  Blankß\n|a\tFormer publication frequency  (NR)\n|b\tDates of former publication frequency  (NR)Ý321\t##|aTen no. a year,|b1982-1984";
Marc[70] = "340   Physical Medium  (R)Ü  Blankß\n|a\tMaterial base and configuration  (R)\n|b\tDimensions  (R)\n|c\tMaterials applied to surface  (R)\n|d\tInformation recording technique  (R)\n|e\tSupport  (R)\n|f\tProduction rate/ratio  (R)\n|h\tLocation within medium  (R)\n|i\tTechnical specifications of medium  (R)\n|3\tMaterials specified  (NR)Ý340\t##|acanvas|b30 x 57 cm.|ccolored oil-base paints|ewood.";
Marc[71] = "342   Geospatial Reference Data  (R)  [Provisional]Ü\nFirst\tGeospatial reference dimension\n0\tHorizontal coordinate system\n1\tVertical coordinate system\nSecond\tGeospatial reference method\n0\tGeographic\n1\tMap projection\n2\tGrid coordinate system\n3\tLocal planar\n4\tLocal\n5\tGeodetic model\n6\tAltitude\n7\tMethod specified in |2\n8\tDepthß\n|a\tName  (NR)\n|b\tCoordinate or distance units  (NR)\n|c\tLatitude resolution  (NR)\n|d\tLongitude resolution  (NR)\n|e\tStandard parallel or oblique line latitude  (R)\n|f\tOblique line longitude  (R)\n|g\tLongitude of central meridian or projection center  (NR)\n|h\tLatitude of projection origin or projection center  (NR)\n|i\tFalse easting  (NR)\n|j\tFalse northing  (NR)\n|k\tScale factor  (NR)\n|l\tHeight of perspective point above surface  (NR)\n|m\tAzimuthal angle  (NR)\n|n\tAzimuth measure point longitude or straight vertical longitude from pole  (NR)\n|o\tLandsat number and path number  (NR)\n|p\tZone identifier  (NR)\n|q\tEllipsoid name  (NR)\n|r\tSemi-major axis  (NR)\n|s\tDenominator of flattening ratio  (NR)\n|t\tVertical resolution  (NR)\n|u\tVertical encoding method  (NR)\n|v\tLocal planar, local, or other projection or grid description  (NR)\n|w\tLocal planar or local georeference information  (NR)\n|2\tReference method used  (NR)Ý342\t16|aNational geodetic vertical datum of 1929|v1|bmeters|wImplicit coordinates.\n342\t05|aWorld Geodetic System 1984 (WGS-84)|c0.0000001|d0.0000001|bDegrees, Minutes, and Decimal seconds|qWorld Geodetic System 1984 (WGS-84)|r6378137.0|s298.257223563";
Marc[72] = "343   Planar Coordinate Data  (R)  [Provisional]Ü  Blankß\n|a\tPlanar coordinate encoding method  (NR)\n|b\tPlanar distance units  (NR)\n|c\tAbscissa resolution  (NR)\n|d\tOrdinate resolution  (NR)\n|e\tDistance resolution  (NR)\n|f\tBearing resolution  (NR)\n|g\tBearing units  (NR)\n|h\tBearing reference direction  (NR)\n|i\tBearing reference meridian  (NR)Ý343\t##|aCoordinate pair|e30.0|f0.0001|gDegrees, minutes and decimal seconds|hNorth|bU.S. feet.";
Marc[73] = "351   Organization and Arrangement of Materials  (R)Ü  Blankß\n|a\tOrganization  (R)\n|b\tArrangement  (R)\n|c\tHierarchical level  (NR)\n|3\tMaterials specified  (NR)Ý351\t##|3Permits for fishery operations, 1914-24|cSubseries;|bAlphabetical by state then by year of renewal and within year by permit number.";
Marc[74] = "352   Digital Graphic Representation  (R)  [Provisional]Ü  Blankß\n|a\tDirect reference method  (NR)\n|b\tObject type  (R)\n|c\tObject count  (R)\n|d\tRow count  (NR)\n|e\tColumn count  (NR)\n|f\tVertical count  (NR)\n|g\tVPF topology level  (NR)\n|i\tIndirect reference description  (NR)Ý352\t##|aVector;|bNetwork chain, non-planar graph.";
Marc[75] = "355   Security Classification Control  (R)Ü\nFirst\tControlled element\n0\tDocument\n1\tTitle\n2\tAbstract\n3\tContents note\n4\tAuthor\n8\tOther element\nSecond\tUndefined\n#\tUndefinedß\n|a\tSecurity classification  (NR)\n|b\tHandling instructions  (R)\n|c\tExternal dissemination information  (R)\n|d\tDowngrading or declassification event  (NR)\n|e\tClassification system (NR)\n|f\tCountry of origin code  (NR)\n|g\tDowngrading date (NR)\n|h\tDeclassification date (NR)\n|j\tAuthorization (R)Ý355\t0#|aConfidential|bNOCONTRACT|cUK|g990101";
Marc[76] = "357   Originator Dissemination Control  (NR)Ü  Blankß\n|a\tOriginator control term  (NR)\n|b\tOriginating agency  (R)\n|c\tAuthorized recipients of material  (R)\n|g\tOther restrictions  (R)Ý357\t##|aPROPIN|bLockport Aviation|cNorthfield Avionics Project 11234 |cAir Frames Inc., Project 11234 Support Team";
Marc[77] = "362   Dates of Publication and/or Volume Designation  (R)Ü\nFirst\tFormat of date\n0\tFormatted style\n1\tUnformatted note\nSecond\tUndefined\n#\tUndefinedß\n|a\tDates of publication and/or sequential designation  (NR)\n|z\tSource of information  (NR)Ý362\t0#|a72/1 ([Feb. 1972])-\n362\t1#|aBegan with vol. 4, published in 1947.";
Marc[78] = "400   Series Statement/Added Entry-Personal Name  (R)Ü\nFirst\tType of personal name entry element\n0\tForename\n1\tSurname\n3\tFamily name\nSecond\tPronoun represents main entry\n0\tMain entry not represented by pronoun\n1\tMain entry represented by pronounß\n|a\tPersonal name  (NR)\n|b\tNumeration  (NR)\n|c\tTitles and other words associated with a name  (R)\n|d\tDates associated with a name  (NR)\n|e\tRelator term  (R)\n|f\tDate of a work  (NR)\n|g\tMiscellaneous information  (NR)\n|k\tForm subheading  (R)\n|l\tLanguage of a work  (NR)\n|n\tNumber of part/section of a work  (R)\n|p\tName of part/section of a work  (R)\n|t\tTitle of a work  (NR)\n|u\tAffiliation  (NR)\n|v\tVolume number/sequential designation  (NR)\n|x\tInternational Standard Serial Number  (NR)\n|4\tRelator code  (R)\n|6\tLinkage (NR)ÝÝ";
Marc[79] = "410   Series Statement/Added Entry-Corporate Name  (R)Ü\nFirst\tType of corporate name entry element\n0\tInverted name\n1\tJurisdiction name\n2\tName in direct order\nSecond\tPronoun represents main entry\n0\tMain entry not represented by pronoun\n1\tMain entry represented by pronounß\n|a\tCorporate name or jurisdiction name as entry element (NR)\n|b\tSubordinate unit  (R)\n|c\tLocation of meeting  (NR)\n|d\tDate of meeting or treaty signing  (R)\n|e\tRelator term  (R)\n|f\tDate of a work  (NR)\n|g\tMiscellaneous information  (NR)\n|k\tForm subheading  (R)\n|l\tLanguage of a work  (NR)\n|n\tNumber of part/section/meeting  (R)\n|p\tName of part/section of a work  (R)\n|t\tTitle of a work  (NR)\n|u\tAffiliation  (NR)\n|v\tVolume number/sequential designation  (NR)\n|x\tInternational Standard Serial Number  (NR)\n|4\tRelator code  (R)ÝÝ";
Marc[80] = "411   Series Statement/Added Entry-Meeting Name  (R)Ü\nFirst\tType of meeting name entry element\n0\tInverted name\n1\tJurisdiction name\n2\tName in direct order\nSecond\tPronoun represents main entry\n0\tMain entry not represented by pronoun\n1\tMain entry represented by pronounß\n|a\tMeeting name or jurisdiction name as entry element  (NR)\n|c\tLocation of meeting  (NR)\n|d\tDate of meeting  (NR)\n|e\tSubordinate unit  (R)\n|f\tDate of a work  (NR)\n|g\tMiscellaneous information  (NR)\n|k\tForm subheading  (R)\n|l\tLanguage of a work  (NR)\n|n\tNumber of part/section/meeting  (R)\n|p\tName of part/section of a work  (R)\n|q\tName of meeting following jurisdiction name entry element  (NR)\n|t\tTitle of a work  (NR)\n|u\tAffiliation  (NR)\n|v\tVolume number/sequential designation  (NR)\n|x\tInternational Standard Serial Number  (NR)\n|4\tRelator code  (R)\n|6\tLinkage   (NR)ÝÝ";
Marc[81] = "440   Series Statement/Added Entry-Title  (R)Ü\nFirst\tUndefined\n#\tUndefined\nSecond\tNonfiling characters\n0-9\tNumber of nonfiling characters presentß\n|a\tTitle  (NR)\n|n\tNumber of part/section of a work  (R)\n|p\tName of part/section of a work  (R)\n|v\tVolume number/sequential designation  (NR)\n|x\tInternational Standard Serial Number  (NR)Ý440\t#0|aJanua linguarum.|pSeries maior,|x0075-3114 ;|v100";
Marc[82] = "490   Series Statement  (R)Ü\nFirst\tSpecifies whether series is traced\n0\tSeries not traced\n1\tSeries traced differently\nSecond\tUndefined\n#\tUndefinedß\n|a\tSeries statement  (R)\n|l\tLibrary of Congress call number  (NR)\n|v\tVolume number/sequential designation  (R)\n|x\tInternational Standard Serial Number  (NR)Ý490\t1#|aDepartment of State publication ;|v7846.|aDepartment and Foreign Service series ;|v128\n490\t1#|aPapers and documents of the I.C.I. Series C, Bibliographies ;|vno. 3 =|aTravaux et documents de l'I.C.I. Série C, Bibliographies ;|vno 3";
Marc[83] = "500   General Note  (R)Ü  Blankß\n|a\tGeneral note  (NR)\n|3\tMaterials specified  (NR)\n|5\tInstitution to which field applies  (NR)ÝÝ";
Marc[84] = "501   With Note  (R)Ü  Blankß\n|a\tWith note  (NR)\n|5\tInstitution to which field applies  (NR)Ý501\t##|aWith:  The reformed school / John Dury.  London : Printed for R. Wasnothe, [1850]";
Marc[85] = "502   Dissertation Note  (R)Ü  Blankß\n|a\tDissertation note  (NR)Ý502\t##|aThesis (M.A.)--University College, London, 1969.";
Marc[86] = "504   Bibliography, Etc. Note  (R)Ü  Blankß\n|a\tBibliography, etc. note  (NR)\n|b\tNumber of references  (NR)Ý504\t##|aIncludes bibliographies and index.";
Marc[87] = "505   Formatted Contents Note  (R)Ü\nFirst\tDisplay constant controller\n0\tContents\n1\tIncomplete contents\n2\tPartial contents\n8\tNo display constant generated\nSecond\tLevel of content designation\n#\tBasic\n0\tEnhancedß\n|a\tFormatted contents note  (NR)\n|g\tMiscellaneous information  (R)\n|r\tStatement of responsibility  (R)\n|t\tTitle  (R)Ý505\t00|tQuark models /|rJ. Rosner --|tIntroduction to gauge theories of the strong, weak, and electromagnetic interactions /|rC. Quigg.";
Marc[88] = "506   Restrictions on Access Note  (R)Ü  Blankß\n|a\tTerms governing access  (NR)\n|b\tJurisdiction  (R)\n|c\tPhysical access provisions  (R)\n|d\tAuthorized users  (R)\n|e\tAuthorization  (R)\n|3\tMaterials specified  (NR)\n|5\tInstitution to which field applies   (NR)Ý506\t##|aPrior to 1981, distribution was limited to federal judicial personnel.";
Marc[89] = "507   Scale Note for Graphic Material  (NR)Ü  Blankß\n|a\tRepresentative fraction of scale note  (NR)\n|b\tRemainder of scale note  (NR)Ý507\t##|aScale 1:500,000;|b1 in. equals 8 miles.";
Marc[90] = "508   Creation/Production Credits Note  (NR)Ü  Blankß\n|a\tCreation/production credits note  (NR)Ý508\t##|aEducational consultant, Roseanne Gillis.";
Marc[91] = "510   Citation/References Note  (R)Ü\nFirst\tCoverage/location in source\n0\tCoverage unknown\n1\tCoverage complete\n2\tCoverage is selective\n3\tLocation in source not given\n4\tLocation in source given\nSecond\tUndefined\n#\tUndefinedß\n|a\tName of source  (NR)\n|b\tDates of coverage of source (NR)\n|c\tLocation within source  (NR)\n|x\tInternational Standard Serial Number  (NR)\n|3\tMaterials specified  (NR)Ý510\t4#|aTV guide (Philadelphia),|c112181, p. 48";
Marc[92] = "511   Participant or Performer Note  (R)Ü\nFirst\tDisplay constant controller\n0\tNo display constant generated\n1\tCast\nSecond\tUndefined\n#\tUndefinedß\n|a\tParticipant or performer note  (NR)Ý511\t1#|aAnne Baxter (Louise), Maria Perschy (Angela), Gustavo Rojo (Bill), Reginald Gilliam  (Mr. Johnson), [Catherine Elliot?] (Aunt Sallie), Ben Tatar (waiter).";
Marc[93] = "513   Type of Report and Period Covered Note  (R)Ü  Blankß\n|a\tType of report  (NR)\n|b\tPeriod covered  (NR)Ý513\t##|aInterim report;|bJan.-July 1977.";
Marc[94] = "514   Data Quality Note  (NR)  [Provisional]Ü  Blankß\n|a\tAttribute accuracy report  (NR)\n|b\tAttribute accuracy value  (R)\n|c\tAttribute accuracy explanation  (R)\n|d\tLogical consistency report  (NR)\n|e\tCompleteness report  (NR)\n|f\tHorizontal position accuracy report  (NR)\n|g\tHorizontal position accuracy value  (R)\n|h\tHorizontal position accuracy explanation  (R)\n|i\tVertical positional accuracy report  (NR)\n|j\tVertical positional accuracy value  (R)\n|k\tVertical positional accuracy explanation  (R)\n|m\tCloud cover  (NR)Ý514\t##|aThe map layer that displays Special Feature Symbols shows the approximate location of small (less than 2 acres in size) areas of soils ... [subfield |a shortened in this example]  |dQuarter quadrangles edited and joined internally and to surrounding quads. All known errors corrected.|eThe combination of spatial linework layer, Special Feature Symbols layer, and attribute data are considered a complete SSURGO dataset.|fThe actual on ground transition between the area represented by the Special Feature Symbol and the surrounding soils generally is very narrow with a well defined edge. The center of the feature area was compiled and digitized as a point. The same standards for compilation and digitizing used for line data were applied to the development of the Special Feature Symbols layer.";
Marc[95] = "515   Numbering Peculiarities Note  (R)Ü  Blankß\n|a\tNumbering peculiarities note  (NR)Ý515\t##|aSome issues lack volume numbering.\n515\t##|aSuspended 1926-1929, 1936.";
Marc[96] = "516   Type of Computer File or Data Note  (R)Ü\nFirst\tDisplay constant controller\n#\tNo information provided\n8\tNo display constant generated\nSecond\tUndefined\n#\tUndefinedß\n|a\tType of computer file or data note  (NR)Ý516\t##|aNumeric (Spatial data: Point)";
Marc[97] = "518   Date/Time and Place of an Event Note  (R)Ü  Blankß\n|a\tDate/time and place of an event note  (NR)\n|3\tMaterials specified  (NR)Ý518\t##|aRecorded in Vienna in 1961, previously released as WST 17035.";
Marc[98] = "520   Summary, Etc.  (R)Ü\nFirst\tDisplay constant controller\n#\tNo information provided\n0\tSubject\n1\tReview\n2\tScope and content\n3\tAbstract\n8\tNo display constant generated\nSecond\tUndefined\n#\tUndefinedß\n|a\tSummary, etc. note  (NR)\n|b\tExpansion of summary note  (NR)\n|3\tMaterials specified  (NR)Ý520\t##|aPublic release motion pictures, 1915-37.|bIncludes films on control of rats, prairie dogs and porcupines; fish culture in the United States and pearl culture in Japan; inspection trip to Alaska by Service officials; life in a Boy Scout camp and Air Service bombing techniques in 1921.";
Marc[99] = "521   Target Audience Note  (R)Ü\nFirst\tDisplay constant controller\n#\tNo information provided\n0\tReading grade level\n1\tInterest age level\n2\tInterest grade level\n3\tSpecial audience characteristics\n4\tMotivation interest level\n8\tNo display constant generated\nSecond\tUndefined\n#\tUndefinedß\n|a\tTarget audience note  (R)\n|b\tSource  (NR)\n|3\tMaterials specified  (NR)Ý521\t2#|a7 & up.\n521\t3#|aVision impaired|afine motor skills impaired|aaudio learner|bLENOCA.";
Marc[100] = "522   Geographic Coverage Note  (NR)Ü\nFirst\tDisplay constant controller\n#\tNo information provided\n8\tNo display constant generated\nSecond\tUndefined\n#\tUndefinedß\n|a\tGeographic coverage note   (NR)Ý522\t8#|aCounty-level data from four Northwestern states (Idaho, Montana, Oregon, Washington).";
Marc[101] = "524   Preferred Citation of Described Materials Note  (R)Ü\nFirst\tDisplay constant controller\n#\tNo information provided\n8\tNo display constant generated\nSecond\tUndefined\n#\tUndefinedß\n|a\tPreferred citation of described materials note  (NR)\n|2\tSource of schema used  (NR)\n|3\tMaterials specified  (NR)Ý524\t##|aSmithsonian Archives Record Unit 54, Joseph Henry Collection, 1808, 1825-1878, Box 1,  Folder 6, Item 3.";
Marc[102] = "525   Supplement Note  (R)Ü  Blankß\n|a\tSupplement note   (NR)Ý525\t##|aSupplements accompany some issues.";
Marc[103] = "530   Additional Physical Form Available Note  (R)Ü  Blankß\n|a\tAdditional physical form available note  (NR)\n|b\tAvailability source  (NR)\n|c\tAvailability conditions  (NR)\n|d\tOrder number  (NR)\n|3\tMaterials specified  (NR)Ý530\t##|3Dispatches from U.S. consuls in Batavia, Java, Netherlands East Indies, 1818-1906|aAvailable in microfilm;|bNational Archives;|dM449;|cStanding order account required.";
Marc[104] = "533   Reproduction Note  (R)Ü  Blankß\n|a\tType of reproduction  (NR)\n|b\tPlace of reproduction  (R)\n|c\tAgency responsible for reproduction  (R)\n|d\tDate of reproduction  (NR)\n|e\tPhysical description of reproduction  (NR)\n|f\tSeries statement of reproduction  (R)\n|m\tDates of publication and/or sequential designation of issues reproduced  (R)\n|n\tNote about reproduction  (R)\n|3\tMaterials specified  (NR)\n|7\tFixed-length data elements of reproduction  (NR)\n\t/0\tType of date/Publication status\n\t/1-4\tDate 1\n\t/5-8\tDate 2\n\t/9-11\tPlace of publication, production, or execution\n\t/12\tFrequency\n\t/13\tRegularity\n\t/14\tForm of itemÝ533\t##|aMicrofiche.|b[Ottawa] :|cNational Archives of Canada,|d[1978?]|e2 microfiches  (132 fr.) ; 11 x 15 cm.|7s1978####oncn#b";
Marc[105] = "534   Original Version Note  (R)Ü  Blankß\n|p\tIntroductory phrase  (NR)\n|a\tMain entry of original  (NR)\n|t\tTitle statement of original  (NR)\n|b\tEdition statement of original  (NR)\n|m\tMaterial specific details  (NR)\n|c\tPublication, distribution, etc. of original  (NR)\n|e\tPhysical description, etc. of original  (NR)\n|f\tSeries statement of original  (R)\n|l\tLocation of original  (NR)\n|n\tNote about original  (R)\n|z\tInternational Standard Book Number  (R)\n|x\tInternational Standard Serial Number  (R)\n|k\tKey title of original  (R)Ý534\t##|pOriginally published:|cEnglewood Cliffs, N.J. : Prentice Hall, 1974.";
Marc[106] = "535   Location of Originals/Duplicates Note  (R)Ü\nFirst\tAdditional information about custodian\n1\tHolder of originals\n2\tHolder of duplicates\nSecond\tUndefined\n#\tUndefinedß\n|a\tCustodian  (NR)\n|b\tPostal address  (R)\n|c\tCountry  (R)\n|d\tTelecommunications address  (R)\n|g\tRepository location code  (NR)\n|3\tMaterials specified  (NR)Ý535\t2#|3Harrison papers|aNeils Bohr Library, Center for History of Physics, American Institute of Physics;|b335 East 45th Street, New York, NY 10017";
Marc[107] = "536   Funding Information Note  (R)Ü  Blankß\n|a\tText of note  (NR)\n|b\tContract number  (R)\n|c\tGrant number  (R)\n|d\tUndifferentiated number  (R)\n|e\tProgram element number (R)\n|f\tProject number (R)\n|g\tTask number (R)\n|h\tWork unit number (R)Ý536\t##|aSponsored by the Advanced Research Projects Agency through the Office of Naval Research. |bN00014-68-A-0245-0007|cARPA Order No. 2616";
Marc[108] = "538   System Details Note  (R)Ü  Blankß\n|a\tSystem details note  (NR)Ý538\t##|aSystem requirements: IBM 2740 terminal with special narrow platen and form feeding features.";
Marc[109] = "540   Terms Governing Use and Reproduction Note  (R)Ü  Blankß\n|a\tTerms governing use and reproduction  (NR)\n|b\tJurisdiction  (NR)\n|c\tAuthorization  (NR)\n|d\tAuthorized users  (NR)\n|3\tMaterials specified  (NR)\n|5\tInstitution to which field applies  (NR)Ý540\t##|3Recorded radio programs|aThere are copyright and contractual restrictions applying to the  reproduction of most of these recordings;|bDepartment of Treasury;|ccTreasury contracts 7-A130 through 39-A179.";
Marc[110] = "541   Immediate Source of Acquisition Note  (R)Ü  Blankß\n|a\tSource of acquisition  (NR)\n|b\tAddress  (NR)\n|c\tMethod of acquisition  (NR)\n|d\tDate of acquisition  (NR)\n|e\tAccession number  (NR)\n|f\tOwner  (NR)\n|h\tPurchase price  (NR)\n|n\tExtent  (R)\n|o\tType of unit  (R)\n|3\tMaterials specified  (NR)\n|5\tInstitution to which full applies  (NR)Ý541\t##|35 diaries|n25|ocubic feet;|aMerriwether, Stuart;|b458 Yonkers Road, Poughkeepsie, NY 12601;|cPurchase at auction;|d1981/09/24;|e81-325;|fJonathan P. Merriwether Estate; |h$7,850.";
Marc[111] = "544   Location of Other Archival Materials Note  (R)Ü\nFirst\tRelationship\n#\tNo information provided\n0\tAssociated materials\n1\tRelated materials\nSecond\tUndefined\n#\tUndefinedß\n|a\tCustodian  (R)\n|b\tAddress  (R)\n|c\tCountry  (R)\n|d\tTitle  (R)\n|e\tProvenance  (R)\n|n\tNote  (R)\n|3\tMaterials specified  (NR)Ý544\t##|dBurt Barnes papers;|eAlso located at;|aState Historical Society of Wisconsin.";
Marc[112] = "545   Biographical or Historical Data  (R)Ü\nFirst\tType of data\n#\tNo information provided\n0\tBiographical sketch\n1\tAdministrative history\nSecond\tUndefined\n#\tUndefinedß\n|a\tBiographical or historical data  (NR)\n|b\tExpansion  (NR)Ý545\t1#|aThe Office of Geography provides research and other staff services for the interdepartmental Board on Geographic Names and the Secretary of the Interior on foreign geographic nomenclature.|bThe Office inherited functions and records of earlier boards and committees engaged in similar work.  The earliest of these, the U.S. Board on Geographic Names, was created  by an Executive order of September 4, 1890, to ensure uniform usage throughout the executive departments of the Government ...";
Marc[113] = "546   Language Note  (R)Ü  Blankß\n|a\tLanguage note  (NR)\n|b\tInformation code or alphabet  (R)\n|3\tMaterials specified  (NR)Ý546\t##|aEnglish, French, or German.\n041\t0#|aengfreger";
Marc[114] = "547   Former Title Complexity Note  (R)Ü  Blankß\n|a\tFormer title complexity note  (NR)Ý547\t##|aTitle varies: 1716?-1858, Notizie del mundo--1860-71, 1912-   Annuario pontificio (1872-1911, Gerarchia cattolica).";
Marc[115] = "550   Issuing Body Note  (R)Ü  Blankß\n|a\tIssuing body note  (NR)Ý550\t##|aVols. for 1921-1927 published under the auspices of the British Institute of International Affairs.";
Marc[116] = "551   Entity and Attribute Information Note  (R)  [Provisional]Ü\nFirst\tUndefined\n#\tUndefined\nSecond\tUndefined\n#\tUndefinedß\n|a\tEntity type label  (NR)\n|b\tEntity type definition and source  (NR)\n|c\tAttribute label  (NR)\n|d\tAttribute definition and source  (NR)\n|e\tEnumerated domain value  (R)\n|f\tEnumerated domain value definition and source  (R)\n|g\tRange domain minimum and maximum  (NR)\n|h\tCodeset name and source  (NR)\n|i\tUnrepresentable domain  (NR)\n|j\tAttribute units of measurement and resolution  (NR)\n|k\tBeginning date and ending date of attribute values  (NR)\n|l\tAttribute value accuracy  (NR)\n|m\tAttribute value accuracy explanation  (NR)\n|n\tAttribute measurement frequency  (NR)\n|o\tEntity and attribute overview  (R)\n|p\tEntity and attribute detail citation  (R)Ý551\t##|asoil type|bsoil mapping unit polygon (SCS)|cnumbered|dsoil category, user-defined|g1-4|jintegerk|k1940809-19940812|luntested";
Marc[117] = "555   Cumulative Index/Finding Aids Note  (R)Ü\nFirst\tDisplay constant controller\n#\tNo information provided\n0\tFinding aids\n8\tNo display constant generated\nSecond\tUndefined\n#\tUndefinedß\n|a\tCumulative index/finding aids note  (NR)\n|b\tAvailability source  (R)\n|c\tDegree of control  (NR)\n|d\tBibliographic reference  (NR)\n|3\tMaterials specified  (NR)Ý555\t0#|3Inventory|bavailable in library;|cfolder level control.\n556   Information About Documentation Note  (R)Ü\nFirst\tDisplay constant controller\n#\tNo information provided\n8\tNo display constant generated\nSecond\tUndefined\n#\tUndefinedß\n|a\tInformation about documentation note  (NR)\n|z\tInternational Standard Book Number  (R)Ý556\t8#|aDocumentation also available as FSWEC-77/0387-1.";
Marc[118] = "561   Ownership and Custodial History  (R)Ü  Blankß\n|a\tHistory  (NR)\n|3\tMaterials specified  (NR)\n|5\tInstitution to which field applies  (NR)Ý561\t##|aFrom the collection of L. McGarry,|b1948-1957.";
Marc[119] = "562   Copy and Version Identification Note  (R)Ü  Blankß\n|a\tIdentifying markings  (R)\n|b\tCopy identification  (R)\n|c\tVersion identification  (R)\n|d\tPresentation format  (R)\n|e\tNumber of copies  (R)\n|3\tMaterials specified  (NR)\n|5\tInstitution to which field applies  (NR)Ý562\t##|aAnnotation in Wilson's hand: Copy one of two sent to John Phipps, 27 March 1897;|bCopy identified as Declaration of Dissolution, Phipps copy.";
Marc[120] = "565   Case File Characteristics Note  (R)Ü\nFirst\tDisplay constant controller\n#\tNo information provided\n0\tCase file characteristics\n8\tNo display constant generated\nSecond\tUndefined\n#\tUndefinedß\n|a\tNumber of cases/variables  (NR)\n|b\tName of variable  (R)\n|c\tUnit of analysis  (R)\n|d\tUniverse of data  (R)\n|e\tFiling scheme or code  (R)\n|3\tMaterials specified  (NR)Ý565\t0#|3Product use survey|a3;|bsex;|bage;|bmarital status;|cretail customers;|dNortheast coast distribution area";
Marc[121] = "567   Methodology Note  (R)Ü\nFirst\tDisplay constant controller\n#\tNo information provided\n8\tNo display constant generated\nSecond\tUndefined\n#\tUndefinedß\n|a\tMethodology note  (NR)Ý567\t##|aThe model employs the integration of a set of coupled nonlinear ordinary differential equations  by simple Euler differentiating.";
Marc[122] = "580   Linking Entry Complexity Note  (R)Ü  Blankß\n|a\tLinking entry complexity note  (NR)Ý580\t##|aContinued in 1982 by: U.S. exports.  Schedule E commodity groupings by world area and country.\n785\t10|tU.S. exports.  Schedule E commodity groupings by world area and country |w(DLC)###84641135";
Marc[123] = "581   Publications About Described Materials Note   (R)Ü\nFirst\tDisplay constant controller\n#\tNo information provided\n8\tNo display constant generated\nSecond\tUndefined\n#\tUndefinedß\n|a\tPublications about described materials note  (NR)\n|z\tInternational Standard Book Number  (R)\n|3\tMaterials specified  (NR)Ý581\t8#|aInventory of American Sculpture: photocopy. 1982.";
Marc[124] = "583   Action Note  (R)Ü\nFirst\t\tUndefined\n#\t\tUndefined\nSecond\t\tUndefined\n#\t\tUndefinedß\n|a\tAction  (NR)\n|b\tAction identification  (R)\n|c\tTime of action  (R)\n|d\tAction interval  (R)\n|e\tContingency for action  (R)\n|f\tAuthorization  (R)\n|h\tJurisdiction  (R)\n|i\tMethod of action  (R)\n|j\tSite of action  (R)\n|k\tAction agent  (R)\n|l\tStatus  (R)\n|n\tExtent  (R)\n|o\tType of unit  (R)\n|x\tNonpublic note  (R)\n|z\tPublic note  (R)\n|3\tMaterials specified  (NR)\n|5\tInstitution to which field applies  (NR)Ý583\t##|aQueued for preservation;|c19861010;|ePriority;|fTitle IIC project|5DLC";
Marc[125] = "584   Accumulation and Frequency of Use  (R)Ü  Blankß\n|a\tAccumulation  (R)\n|b\tFrequency of use  (R)\n|3\tMaterials specified  (NR)\n|5\tInstitution to which field applies  (NR)Ý584\t##|3General subject files|a45 cu. ft. average annual accumulation 1970-1979.|a5.4 cu. ft. average monthly accumulation, 1979-82.|aCurrent average monthly accumulation is 2 cu. ft.";
Marc[126] = "585   Exhibitions Note  (R)Ü  Blankß\n|a\tExhibitions note  (NR)\n|3\tMaterials specified  (NR)\n|5\tInstitution to which field applies  (NR)ÝÝ";
Marc[127] = "586   Awards Note  (R)Ü\nFirst\tDisplay constant controller\n#\tNo information provided\n8\tNo display constant generated\nSecond\tUndefined\n#\tUndefinedß\n|a\tAwards note  (NR)\n|3\tMaterials specified  (NR)Ý586\t##|aAcademy Award for Best Picture, 1987";
Marc[128] = "600   Subject Added Entry-Personal Name  (R)Ü\nFirst\tType of personal name entry element\n0\tForename\n1\tSurname\n3\tFamily name\nSecond\tSubject heading system/thesaurus\n0\tLibrary of Congress Subject Headings/LC authority files\n1\tLC subject headings for children's literature\n2\tMedical Subject Headings/NLM authority files\n3\tNational Agricultural Library subject authority file\n4\tSource not specified\n5\tCanadian Subject Headings/NLC authority file\n6\tRépertoire des vedettes-matière/NLC authority file\n7\tSource specified in subfield |2ß\n|a\tPersonal name  (NR)\n|b\tNumeration  (NR)\n|c\tTitles and other words associated with a name  (R)\n|d\tDates associated with a name  (NR)\n|e\tRelator term  (R)\n|f\tDate of a work  (NR)\n|g\tMiscellaneous information  (NR)\n|h\tMedium  (NR)\n|k\tForm subheading  (R)\n|l\tLanguage of a work  (NR)\n|m\tMedium of performance for music  (R)\n|n\tNumber of part/section of a work  (R)\n|o\tArranged statement for music  (NR)\n|p\tName of part/section of a work  (R)\n|q\tFuller form of name  (NR)\n|r\tKey for music  (NR)\n|s\tVersion  (NR)\n|t\tTitle of a work  (NR)\n|u\tAffiliation  (NR)\n|v\tForm subdivision  (R)\n|x\tGeneral subdivision  (R)\n|y\tChronological subdivision  (R)\n|z\tGeographic subdivision  (R)\n|2\tSource of heading or term  (NR)\n|3\tMaterials specified  (NR)\n|4\tRelator code  (R)\n|6\tLinkage (NR)Ý600\t10|aNixon, Richard M.|q(Richard Milhouse),|d1913- |xPersonality.";
Marc[129] = "610   Subject Added Entry-Corporate Name  (R)Ü\nFirst\tType of corporate name entry element\n0\tInverted name\n1\tJurisdiction name\n2\tName in direct order\nSecond\tSubject heading system/thesaurus\n0\tLibrary of Congress Subject Headings/LC authority files\n1\tLC subject headings for children's literature\n2\tMedical Subject Headings/NLM authority files\n3\tNational Agricultural Library subject authority file\n4\tSource not specified\n5\tCanadian Subject Headings/NLC authority file\n6\tRépertoire des vedettes-matière/NLC authority file\n7\tSource specified in subfield |2ß\n|a\tCorporate name or jurisdiction name as entry element  (NR)\n|b\tSubordinate unit  (R)\n|c\tLocation of meeting  (NR)\n|d\tDate of meeting or treaty signing  (R)\n|e\tRelator term  (R)\n|f\tDate of a work  (NR)\n|g\tMiscellaneous information  (NR)\n|h\tMedium  (NR)\n|k\tForm subheading  (R)\n|l\tLanguage of a work  (NR)\n|m\tMedium of performance for music  (R)\n|n\tNumber of part/section/meeting  (R)\n|o\tArranged statement for music  (NR)\n|p\tName of part/section of a work  (R)\n|r\tKey for music  (NR)\n|s\tVersion  (NR)\n|t\tTitle of a work  (NR)\n|u\tAffiliation  (NR)\n|v\tForm subdivision  (R)\n|x\tGeneral subdivision  (R)\n|y\tChronological subdivision  (R)\n|z\tGeographic subdivision  (R)\n|2\tSource of heading or term  (NR)\n|3\tMaterials specified  (NR)\n|4\tRelator code  (R)Ý610\t10|aCanada.|bAgriculture Canada|xOfficials and employees.";
Marc[130] = "611   Subject Added Entry-Meeting Name  (R)Ü\nFirst\tType of meeting name entry element\n0\tInverted name\n1\tJurisdiction name\n2\tName in direct order\nSecond\tSubject heading system/thesaurus\n0\tLibrary of Congress Subject Headings/LC authority files\n1\tLC subject headings for children's literature\n2\tMedical Subject Headings/NLM authority files\n3\tNational Agricultural Library subject authority file\n4\tSource not specified\n5\tCanadian Subject Headings/NLC authority file\n6\tRépertoire des vedettes-matière/NLC authority file\n7\tSource specified in subfield |2ß\n|a\tMeeting name or jurisdiction name as entry element  (NR)\n|c\tLocation of meeting  (NR)\n|d\tDate of meeting  (NR)\n|e\tSubordinate unit  (R)\n|f\tDate of a work  (NR)\n|g\tMiscellaneous information  (NR)\n|h\tMedium  (NR)\n|k\tForm subheading  (R)\n|l\tLanguage of a work  (NR)\n|n\tNumber of part/section/meeting  (R)\n|p\tName of part/section of a work  (R)\n|q\tName of meeting following jurisdiction name entry element  (NR)\n|s\tVersion  (NR)\n|t\tTitle of a work  (NR)\n|u\tAffiliation  (NR)\n|v\tForm subdivision  (R)\n|x\tGeneral subdivision  (R)\n|y\tChronological subdivision  (R)\n|z\tGeographic subdivision  (R)\n|2\tSource of heading or term  (NR)\n|3\tMaterials specified  (NR)\n|4\tRelator code  (R)Ý611\t20|aEpsom Derby, England (Horse race)|xHistory|y20th century.";
Marc[131] = "630   Subject Added Entry-Uniform Title  (R)Ü\nFirst\tNonfiling characters\n0-9\tNumber of nonfiling characters present\nSecond\tSubject heading system/thesaurus\n0\tLibrary of Congress Subject Headings/LC authority files\n1\tLC subject headings for children's literature\n2\tMedical Subject Headings/NLM authority files\n3\tNational Agricultural Library subject authority file\n4\tSource not specified\n5\tCanadian Subject Headings/NLC authority file\n6\tRépertoire des vedettes-matière/NLC authority file\n7\tSource specified in subfield |2ß\n|a\tUniform title  (NR)\n|d\tDate of treaty signing  (R)\n|f\tDate of a work  (NR)\n|g\tMiscellaneous information  (NR)\n|h\tMedium  (NR)\n|k\tForm subheading  (R)\n|l\tLanguage of a work  (NR)\n|m\tMedium of performance for music  (R)\n|n\tNumber of part/section of a work  (R)\n|o\tArranged statement for music  (NR)\n|p\tName of part/section of a work  (R)\n|r\tKey for music  (NR)\n|s\tVersion  (NR)\n|t\tTitle of a work  (NR)\n|v\tForm subdivision  (R)\n|x\tGeneral subdivision  (R)\n|y\tChronological subdivision  (R)\n|z\tGeographic subdivision  (R)\n|2\tSource of heading or term  (NR)\n|3\tMaterials specified  (NR)Ý630\t00|aBible.|pN.T.|pRomans|xGeography|vMaps.";
Marc[132] = "650   Subject Added Entry-Topical Term  (R)Ü\nFirst\tLevel of subject\n#\tNo information provided\n0\tNo level specified\n1\tPrimary\n2\tSecondary\nSecond\tSubject heading system/thesaurus\n0\tLibrary of Congress Subject Headings\n1\tLC subject headings for children's literature\n2\tMedical Subject Headings\n3\tNational Agricultural Library subject authority file\n4\tSource not specified\n5\tCanadian Subject Headings\n6\tRépertoire des vedettes-matière\n7\tSource specified in subfield |2ß\n\tMain term portion\n|a\tTopical term or geographic name as entry element  (NR)\n|b\tTopical term following geographic name used as entry element  (NR)\n|c\tLocation of event  (NR)\n|d\tActive dates  (NR)\n|e\tRelator term  (NR)\n\tSubject subdivision portion\n|v\tForm subdivision  (R)\n|x\tGeneral subdivision  (R)\n|y\tChronological subdivision  (R)\n|z\tGeographic subdivision   (R)\n\tControl subfields\n|2\tSource of heading or term  (NR)\n|3\tMaterials specified  (NR)Ý650\t#0|aArchitecture, Modern|y19th century.";
Marc[133] = "651   Subject Added Entry-Geographic Name  (R)Ü\nFirst\tUndefined\n#\tUndefined\nSecond\tSubject heading system/thesaurus\n0\tLibrary of Congress Subject Headings/LC authority files\n1\tLC subject headings for children's literature\n2\tMedical Subject Headings/NLM authority files\n3\tNational Agricultural Library subject authority file\n4\tSource not specified\n5\tCanadian Subject Headings/NLC authority file\n6\tRépertoire des vedettes-matière/NLC authority file\n7\tSource specified in subfield |2ß\n\tName portion\n|a\tGeographic name  (NR)\n\tSubject subdivision portion\n|v\tForm subdivision (R)\n|x\tGeneral subdivision  (R)\n|y\tChronological subdivision  (R)\n|z\tGeographic subdivision   (R)\n\tControl subfields\n|2\tSource of heading or term  (NR)\n|3\tMaterials specified  (NR)Ý651\t#0|aRussia|xHistory|vMaps.";
Marc[134] = "653   Index Term-Uncontrolled  (R)Ü\nFirst\tLevel of index term\n#\tNo information provided\n0\tNo level specified\n1\tPrimary\n2\tSecondary\nSecond\tUndefined\n#\tUndefinedß\n|a\tUncontrolled term  (R)Ý653\t1#|afuel cells|amolten carbonate|apower generation";
Marc[135] = "654   Subject Added Entry-Faceted Topical Terms  (R)Ü\nFirst\tLevel of subject\n#\tNo information provided\n0\tNo level specified\n1\tPrimary\n2\tSecondary\nSecond\tUndefined\n#\tUndefinedß\n|a\tFocus term  (R)\n|b\tNon-focus term  (R)\n|c\tFacet/hierarchy designation  (R)\n|v\tForm subdivision (R)\n|y\tChronological subdivision  (R)\n|z\tGeographic subdivision  (R)\n|2\tSource of heading or term  (NR)\n|3\tMaterials specified  (NR)Ý654\t##|cd|bblue|cf|bBaroque|ct|apitchers|2aat";
Marc[136] = "655   Index Term-Genre/Form  (R)Ü\nFirst\tType of heading\n#\tBasic\n0\tFaceted\nSecond\tSource of term\n7\tSource specified in subfield |2ß\n|a\tGenre/form data or focus term  (NR)\n|b\tNon-focus term  (R)\n|c\tFacet/hierarchy designation (R)\n|v\tForm subdivision (R)\n|x\tGeneral subdivision  (R)\n|y\tChronological subdivision  (R)\n|z\tGeographic subdivision  (R)\n|2\tSource of term  (NR)\n|3\tMaterials specified  (NR)\n|5\tInstitution to which field applies (NR)Ý655\t07|cd|aBlack|cf|bHmong|cm|bcotton|ck|bcourtship|ct|aballs. |2aat";
Marc[137] = "656   Index Term-Occupation  (R)\nÜ\nFirst\tUndefined\n#\tUndefined\nSecond\tSource of term\n7\tSource specified in subfield |2ß\n|a\tOccupation  (NR)\n|k\tForm  (NR)\n|v\tForm subdivision (R)\n|x\tGeneral subdivision  (R)\n|y\tChronological subdivision  (R)\n|z\tGeographic subdivision  (R)\n|2\tSource of term  (NR)\n|3\tMaterials specified  (NR)Ý656\t#7|aMigrant laborers.|kSchool district case files.|2<thesaurus code>";
Marc[138] = "657   Index Term-Function  (R)Ü\nFirst\tUndefined\n#\tUndefined\nSecond\tSource of term\n7\tSource specified in subfield |2ß\n|a\tFunction  (NR)\n|v\tForm subdivision (R)\n|x\tGeneral subdivision  (R)\n|y\tChronological subdivision  (R)\n|z\tGeographic subdivision  (R)\n|2\tSource of term  (NR)\n|3\tMaterials specified  (NR)Ý657\t#7|aAnnual inventory|xLadies' apparel.|2<thesaurus code>";
Marc[139] = "658   Index Term-Curriculum Objective  (R)Ü  Blankß\n|a\tMain curriculum objective  (NR)\n|b\tSubordinate curriculum objective  (R)\n|c\tCurriculum code  (NR)\n|d\tCorrelation factor  (NR)\n|2\tSource of term or code  (NR)Ý658\t##|aMath manipulatives|dhighly correlated.|2<source code>";
Marc[140] = "700   Added Entry-Personal  (R)Ü\nFirst\tType of personal name entry element\n0\tForename\n1\tSurname\n3\tFamily name\nSecond\tType of added entry\n#\tNo information provided\n2\tAnalytical entryß\n|a\tPersonal name  (NR)\n|b\tNumeration  (NR)\n|c\tTitles and other words associated with a name (R)\n|d\tDates associated with a name  (NR)\n|e\tRelator term  (R)\n|f\tDate of a work  (NR)\n|g\tMiscellaneous information  (NR)\n|h\tMedium  (NR)\n|k\tForm subheading  (R)\n|l\tLanguage of a work  (NR)\n|m\tMedium of performance for music  (R)\n|n\tNumber of part/section of a work  (R)\n|o\tArranged statement for music  (NR)\n|p\tName of part/section of a work  (R)\n|q\tFuller form of name  (NR)\n|r\tKey for music  (NR)\n|s\tVersion  (NR)\n|t\tTitle of a work  (NR)\n|u\tAffiliation  (NR)\n|x\tInternational Standard Serial Number  (NR)\n|3\tMaterials specified  (NR)\n|4\tRelator code  (R)\n|5\tInstitution to which field applies  (NR)Ý700\t1#|aBizet, Georges,|d1869-1951.|tCarmen.|kSelections.|f1983.";
Marc[141] = "710   Added Entry-Corporate Name  (R)Ü\nFirst\tType of corporate name entry element\n0\tInverted name\n1\tJurisdiction name\n2\tName in direct order\nSecond\tType of added entry\n#\tNo information provided\n2\tAnalytical entryß\n|a\tCorporate name or jurisdiction name as entry element  (NR)\n|b\tSubordinate unit  (R)\n|c\tLocation of meeting  (NR)\n|d\tDate of meeting or treaty signing  (R)\n|e\tRelator term  (R)\n|f\tDate of a work  (NR)\n|g\tMiscellaneous information  (NR)\n|h\tMedium  (NR)\n|k\tForm subheading  (R)\n|l\tLanguage of a work  (NR)\n|m\tMedium of performance for music  (R)\n|n\tNumber of part/section/meeting  (R)\n|o\tArranged statement for music  (NR)\n|p\tName of part/section of a work  (R)\n|r\tKey for music  (NR)\n|s\tVersion  (NR)\n|t\tTitle of a work  (NR)\n|u\tAffiliation  (NR)\n|x\tInternational Standard Serial Number  (NR)\n|3\tMaterials specified  (NR)\n|4\tRelator code  (R)\n|5\tInstitution to which field applies  (NR)Ý710\t1#|aUnited States.|bArmy Map Service.|tEastern United States 1:250,000.";
Marc[142] = "711   Added Entry-Meeting Name  (R)Ü\nFirst\tType of meeting name entry element\n0\tInverted name\n1\tJurisdiction name\n2\tName in direct order\nSecond\tType of added entry\n#\tNo information provided\n2\tAnalytical entryß\n|a\tMeeting name or jurisdiction name as entry element  (NR)\n|c\tLocation of meeting  (NR)\n|d\tDate of meeting  (NR)\n|e\tSubordinate unit  (R)\n|f\tDate of a work  (NR)\n|g\tMiscellaneous information  (NR)\n|h\tMedium  (NR)\n|k\tForm subheading  (R)\n|l\tLanguage of a work  (NR)\n|n\tNumber of part/section/meeting  (R)\n|p\tName of part/section of a work  (R)\n|q\tName of meeting following jurisdiction name entry element  (NR)\n|s\tVersion  (NR)\n|t\tTitle of a work  (NR)\n|u\tAffiliation  (NR)\n|x\tInternational Standard Serial Number   (NR)\n|3\tMaterials specified  (NR)\n|4\tRelator code  (R)\n|5\tInstitution to which field applies  (NR)Ý711\t22|aUnited Nations Conference on the Law of the Sea|n(1st :|d1958 :|cGeneva, Switzerland).|tProceedings.|kSelections.|f1960.";
Marc[143] = "720   Added Entry-Uncontrolled Name  (R)Ü  Blankß\n|a\tName  (NR)\n|e\tRelator term  (R)\n|4\tRelator code  (R)Ý720\t##|aCAPCON Library Network|eauthor";
Marc[144] = "730   Added Entry-Uniform Title  (R)Ü\nFirst\tNonfiling characters\n0-9\tNumber of nonfiling characters present\nSecond\tType of added entry\n#\tNo information provided\n2\tAnalytical entryß\n|a\tUniform title  (NR)\n|d\tDate of treaty signing  (R)\n|f\tDate of a work  (NR)\n|g\tMiscellaneous information  (NR)\n|h\tMedium  (NR)\n|k\tForm subheading  (R)\n|l\tLanguage of a work  (NR)\n|m\tMedium of performance for music  (R)\n|n\tNumber of part/section of a work  (R)\n|o\tArranged statement for music  (NR)\n|p\tName of part/section of a work  (R)\n|r\tKey for music  (NR)\n|s\tVersion  (NR)\n|t\tTitle of a work  (NR)\n|x\tInternational Standard Serial Number  (NR)\n|3\tMaterials specified (NR)\n|5\tInstitution to which field applies  (NR)Ý730\t0#|aActualités-Service.|nNo 306 (Supplement 1)";
Marc[145] = "740   Added Entry-Uncontrolled Related/Analytical Title  (R)Ü\nFirst\tNonfiling characters\n0-9\tNumber of nonfiling characters present\nSecond\tType of added entry\n#\tNo information provided\n2\tAnalytical entryß\n|a\tUncontrolled related/analytical title  (NR)\n|h\tMedium  (NR)\n|n\tNumber of part/section of a work  (R)\n|p\tName of part/section of a work  (R)\n|5\tInstitution to which field applies  (NR)Ý740\t02|aDissolution of the family unit.|pDivorce, separation, and annulment.";
Marc[146] = "752   Added Entry-Hierarchical Place Name  (R)Ü  Blankß\n|a\tCountry  (NR)\n|b\tState, province, territory  (NR)\n|c\tCounty, region, islands area  (NR)\n|d\tCity  (NR)Ý752\t##|aEngland|cGreater Manchester|dManchester.";
Marc[147] = "753   System Details Access to Computer Files  (R)Ü  Blankß\n|a\tMake and model of machine  (NR)\n|b\tProgramming language  (NR)\n|c\tOperating system  (NR)Ý753\t##|aCompaq|bBasic|cDOS 3.2";
Marc[148] = "754   Added Entry-Taxonomic Identification  (R)Ü  Blankß\n|a\tTaxonomic name/taxonomic hierarchical category  (R)\n|2\tSource of taxonomic identification  (NR)Ý754\t##|aPlantae (Kingdom)|aSpermatophyta (Phylum)|aAngiospermae (Class)|aDicotyledoneae (Subclass)|aRosales (Order)|aRosaceae (Family)|aRosa (Genus)|asetigera (Species)|atomentosa (Variety).|2[code for Lyman David Benson's Plant Classification]\n[Taxonomic information for a special climbing rose.]";
Marc[149] = "760   Main Series Entry  (R)Ü\nFirst\tNote controller\n0\tDisplay note\n1\tDo not display note\nSecond\tDisplay constand controller\n#\tMain series\n8\tNo display constant generatedß\n|a\tMain entry heading  (NR)\n|b\tEdition  (NR)\n|c\tQualifying information  (NR)\n|d\tPlace, publisher, and date of publication  (NR)\n|g\tRelationship information  (R)\n|h\tPhysical description  (NR)\n|i\tDisplay text  (NR)\n|m\tMaterial-specific details  (NR)\n|n\tNote  (R)\n|o\tOther item identifier  (R)\n|s\tUniform title  (NR)\n|t\tTitle  (NR)\n|w\tRecord control number  (R)\n|x\tInternational Standard Serial Number  (NR)\n|y\tCODEN Designation  (NR)\n|6\tLinkage  (NR)\n|7\tControl subfield  (NR)\n\t/0 - Type of main entry heading\n\t/1 - Form of name\n\t/2 - Type of record\n\t/3 - Bibliographic levelÝ760\t0#|7c1as|aUnited States.  Geological Survey.|tWater supply papers";
Marc[150] = "762   Subseries Entry  (R)Ü\nFirst\tNote controller\n0\tDisplay note\n1\tDo not display note\nSecond\tDisplay constant controller\n#\tHas subseries\n8\tNo display constant generatedß\n|a\tMain entry heading  (NR)\n|b\tEdition  (NR)\n|c\tQualifying information  (NR)\n|d\tPlace, publisher, and date of publication  (NR)\n|g\tRelationship information  (R)\n|h\tPhysical description  (NR)\n|i\tDisplay text  (NR)\n|m\tMaterial-specific details  (NR)\n|n\tNote  (R)\n|o\tOther item identifier  (R)\n|s\tUniform title  (NR)\n|t\tTitle  (NR)\n|w\tRecord control number  (R)\n|x\tInternational Standard Serial Number  (NR)\n|y\tCODEN Designation  (NR)\n|6\tLinkage  (NR)\n|7\tControl subfield  (NR)\n\t/0 - Type of main entry heading\n\t/1 - Form of name\n\t/2 - Type of record\n\t/3 - Bibliographic levelÝ762\t0#|tQuality of surface waters of the United States";
Marc[151] = "765   Original Language Entry  (R)Ü\nFirst\tNote controller\n0\tDisplay note\n1\tDo not display note\nSecond \tDisplay constant controller\n#\tTranslation of\n8\tNo display constant generatedß\n|a\tMain entry heading  (NR)\n|b\tEdition  (NR)\n|c\tQualifying information  (NR)\n|d\tPlace, publisher, and date of publication  (NR)\n|g\tRelationship information  (R)\n|h\tPhysical description  (NR)\n|i\tDisplay text  (NR)\n|k\tSeries data for related item  (R)\n|m\tMaterial-specific details  (NR)\n|n\tNote  (R)\n|o\tOther item identifier  (R)\n|r\tReport number  (R)\n|s\tUniform title  (NR)\n|t\tTitle  (NR)\n|u\tStandard Technical Report Number  (NR)\n|w\tRecord control number  (R)\n|x\tInternational Standard Serial Number  (NR)\n|y\tCODEN Designation  (NR)\n|z\tInternational Standard Book Number  (R) \n|6\tLinkage  (NR)\n|7\tControl subfield  (NR)\n\t/0 - Type of main entry heading\n\t/1 - Form of name\n\t/2 - Type of record\n\t/3 - Bibliographic levelÝ765\t0#|tAstrofizicheskie issledovaniíà|w(DLC)###78648457|w(OCoLC)4798581";
Marc[152] = "767   Translation Entry  (R)Ü\nFirst\tNote controller\n0\tDisplay note\n1\tDo not display note\nSecond\tDisplay constant controller\n#\tTranslated as\n8\tNo display constant generatedß\n|a\tMain entry heading  (NR)\n|b\tEdition  (NR)\n|c\tQualifying information  (NR)\n|d\tPlace, publisher, and date of publication  (NR)\n|g\tRelationship information  (R)\n|h\tPhysical description  (NR)\n|i\tDisplay text  (NR)\n|k\tSeries data for related item  (R)\n|m\tMaterial-specific details  (NR)\n|n\tNote  (R)\n|o\tOther item identifier  (R)\n|r\tReport number  (R)\n|s\tUniform title  (NR)\n|t\tTitle  (NR)\n|u\tStandard Technical Report Number  (NR)\n|w\tRecord control number  (R)\n|x\tInternational Standard Serial Number  (NR)\n|y\tCODEN Designation  (NR)\n|z\tInternational Standard Book Number  (R) \n|6\tLinkage  (NR)\n|7\tControl subfield  (NR)\n\t/0 - Type of main entry heading\n\t/1 - Form of name\n\t/2 - Type of record\n\t/3 - Bibliographic levelÝ767\t0#|aAstrofizicheskie issledovaniíà.  English.|tBulletin of the Special Astrophysical Observatory-North Caucasus|x0190-2709 |w(DLC)86649325|w(OCoLC)4698159";
Marc[153] = "770   Supplement/Special Issue Entry  (R)Ü\nFirst\tNote controller\n0\tDisplay note\n1\tDo not display note\nSecond\tDisplay constant controller\n#\tHas supplement\n8\tNo display constant generatedß\n|a\tMain entry heading  (NR)\n|b\tEdition  (NR)\n|c\tQualifying information  (NR)\n|d\tPlace, publisher, and date of publication  (NR)\n|g\tRelationship information  (R)\n|h\tPhysical description  (NR)\n|i\tDisplay text  (NR)\n|k\tSeries data for related item  (R)\n|m\tMaterial-specific details  (NR)\n|n\tNote  (R)\n|o\tOther item identifier  (R)\n|r\tReport number  (R)\n|s\tUniform title  (NR)\n|t\tTitle  (NR)\n|u\tStandard Technical Report Number  (NR)\n|w\tRecord control number  (R)\n|x\tInternational Standard Serial Number  (NR)\n|y\tCODEN Designation  (NR)\n|z\tInternational Standard Book Number  (R) \n|6\tLinkage  (NR)\n|7\tControl subfield  (NR)\n\t/0 - Type of main entry heading\n\t/1 - Form of name\n\t/2 - Type of record\n\t/3 - Bibliographic levelÝ770\t0#|tDirectory: United States, territories, and Canada |w(DLC)###78646712|w(OCoLC)4579783\n[Record is for the parent title; link gives entry of a supplement.]";
Marc[154] = "772   Parent Record Entry  (R)Ü\nFirst\tNote controller\n0\tDisplay note\n1\tDo not display note\nSecond\tDisplay constant controller\n#\tSupplement to\n0\tParent\n8\tNo display constant generatedß\n|a\tMain entry heading  (NR)\n|b\tEdition  (NR)\n|c\tQualifying information  (NR)\n|d\tPlace, publisher, and date of publication  (NR)\n|g\tRelationship information  (R)\n|h\tPhysical description  (NR)\n|i\tDisplay text  (NR)\n|k\tSeries data for related item  (R)\n|m\tMaterial-specific details  (NR)\n|n\tNote  (R)\n|o\tOther item identifier  (R)\n|r\tReport number  (R)\n|s\tUniform title  (NR)\n|t\tTitle  (NR)\n|u\tStandard Technical Report Number  (NR)\n|w\tRecord control number  (R)\n|x\tInternational Standard Serial Number  (NR)\n|y\tCODEN Designation  (NR)\n|z\tInternational Standard Book Number  (R) \n|6\tLinkage  (NR)\n|7\tControl subfield  (NR)\n\t/0 - Type of main entry heading\n\t/1 - Form of name\n\t/2 - Type of record\n\t/3 - Bibliographic levelÝ772\t0#|aWorld agricultural situation (Washington, D.C. : 1970)|x0084-1358|w(DLC)sf#81008035";
Marc[155] = "773   Host Item Entry  (R)Ü\nFirst\tNote controller\n0\tDisplay note\n1\tDo not display note\nSecond\tUndefined\n#\tUndefinedß\n|a\tMain entry heading  (NR)\n|b\tEdition  (NR)\n|d\tPlace, publisher, and date of publication  (NR)\n|g\tRelationship information  (R)\n|h\tPhysical description  (NR)\n|i\tDisplay text  (NR)\n|k\tSeries data for related item  (R)\n|m\tMaterial-specific details  (NR)\n|n\tNote  (R)\n|o\tOther item identifier  (R)\n|p\tAbbreviated title  (NR)\n|r\tReport number  (R)\n|s\tUniform title  (NR)\n|t\tTitle  (NR)\n|u\tStandard Technical Report Number  (NR)\n|w\tRecord control number  (R)\n|x\tInternational Standard Serial Number  (NR)\n|y\tCODEN Designation  (NR)\n|z\tInternational Standard Book Number  (R) \n|6\tLinkage  (NR)\n|7\tControl subfield  (NR)\n\t/0 - Type of main entry heading\n\t/1 - Form of name\n\t/2 - Type of record\n\t/3 - Bibliographic levelÝ773\t0#|gVol. 2, no. 2 (Feb. 1976), p. 195-230|w(DLC)###75001234#\n[Host item identified by record number.]";
Marc[156] = "774   Constituent Unit Entry  (R)Ü\nFirst\tNote controller\n0\tDisplay note\n1\tDo not display note\nSecond\tDisplay constant controller\n#\tConstituent unit\n8\tNo display constant generatedß\n|a\tMain entry heading  (NR)\n|b\tEdition  (NR)\n|c\tQualifying information  (NR)\n|d\tPlace, publisher, and date of publication  (NR)\n|g\tRelationship information  (R)\n|h\tPhysical description  (NR)\n|i\tDisplay text  (NR)\n|k\tSeries data for related item  (R)\n|m\tMaterial-specific details  (NR)\n|n\tNote  (R)\n|o\tOther item identifier  (R)\n|r\tReport number  (R)\n|s\tUniform title  (NR)\n|t\tTitle  (NR)\n|u\tStandard Technical Report Number  (NR)\n|w\tRecord control number  (R)\n|x\tInternational Standard Serial Number  (NR)\n|y\tCODEN Designation  (NR)\n|z\tInternational Standard Book Number  (R) \n|6\tLinkage  (NR)\n|7\tControl subfield  (NR)\n\t/0 - Type of main entry heading\n\t/1 - Form of name\n\t/2 - Type of record\n\t/3 - Bibliographic levelÝ774\t0#|82c|oNYDA.1993.010.00131.|n[DIAPimage].|tView of Mill Brook Houses from one of the houses,|d89/05 ";
Marc[157] = "775   Other Edition Entry  (R)Ü\nFirst\tNote controller\n0\tDisplay note\n1\tDo not display note\nSecond\tDisplay constant controller\n#\tOther edition available\n8\tNo display constant generatedß\n|a\tMain entry heading  (NR)\n|b\tEdition  (NR)\n|c\tQualifying information  (NR)\n|d\tPlace, publisher, and date of publication  (NR)\n|e\tLanguage code  (NR)\n|f\tCountry code  (NR)\n|g\tRelationship information  (R)\n|h\tPhysical description  (NR)\n|i\tDisplay text  (NR)\n|k\tSeries data for related item  (R)\n|m\tMaterial-specific details  (NR)\n|n\tNote  (R)\n|o\tOther item identifier  (R)\n|r\tReport number  (R)\n|s\tUniform title  (NR)\n|t\tTitle  (NR)\n|u\tStandard Technical Report Number  (NR)\n|w\tRecord control number  (R)\n|x\tInternational Standard Serial Number  (NR)\n|y\tCODEN designation  (NR)\n|z\tInternational Standard Book Number  (R)\n|6\tLinkage  (NR)\n|7\tControl subfield  (NR)\n\t/0 - Type of main entry heading\n\t/1 - Form of name\n\t/2 - Type of record\n\t/3 - Bibliographic levelÝ580\t##|aIssued also in English: Cuba economic news.\n775\t1#|tCuba economic news|x0590-2932|eeng|w(OCoLC)2259984";
Marc[158] = "776   Additional Physical Form Entry  (R)Ü\nFirst\tNote controller\n0\tDisplay note\n1\tDo not display note\nSecond\tDisplay constant controller\n#\tAvailable in another form\n8\tNo display constant generatedß\n|a\tMain entry heading  (NR)\n|b\tEdition  (NR)\n|c\tQualifying information  (NR)\n|d\tPlace, publisher, and date of publication  (NR)\n|g\tRelationship information  (R)\n|h\tPhysical description  (NR)\n|i\tDisplay text  (NR)\n|k\tSeries data for related item  (R)\n|m\tMaterial-specific details  (NR)\n|n\tNote  (R)\n|o\tOther item identifier  (R)\n|r\tReport number  (R)\n|s\tUniform title  (NR)\n|t\tTitle  (NR)\n|u\tStandard Technical Report Number  (NR)\n|w\tRecord control number  (R)\n|x\tInternational Standard Serial Number  (NR)\n|y\tCODEN Designation  (NR)\n|z\tInternational Standard Book Number  (R) \n|6\tLinkage  (NR)\n|7\tControl subfield  (NR)\n\t/0 - Type of main entry heading\n\t/1 - Form of name\n\t/2 - Type of record\n\t/3 - Bibliographic levelÝ530\t##|aAlso available on microfilm from University Microfilms.\n776\t1#|tCollege English|x0010-0994|w(DLC)sc#84007753|w(OCoLC)3546316";
Marc[159] = "777   Issued With Entry   (R)Ü\nFirst\tNote controller\n0\tDisplay note\n1\tDo not display note\nSecond\tDisplay constant controller\n#\tIssued with\n8\tNo display constant generatedß\n|a\tMain entry heading  (NR)\n|b\tEdition  (NR)\n|c\tQualifying information  (NR)\n|d\tPlace, publisher, and date of publication  (NR)\n|g\tRelationship information  (R)\n|h\tPhysical description  (NR)\n|i\tDisplay text  (NR)\n|k\tSeries data for related item  (R)\n|m\tMaterial-specific details  (NR)\n|n\tNote  (R)\n|o\tOther item identifier  (R)\n|s\tUniform title  (NR)\n|t\tTitle  (NR)\n|w\tRecord control number  (R)\n|x\tInternational Standard Serial Number  (NR)\n|y\tCODEN Designation  (NR)\n|6\tLinkage  (NR)\n|7\tControl subfield  (NR)\n\t/0 - Type of main entry heading\n\t/1 - Form of name\n\t/2 - Type of record\n\t/3 - Bibliographic levelÝ580\t##|aAlternate biennial revisions for 1962/64-<1966/68> also included in:  The Drug, the nurse, the patient.\n777\t1#|tDrug, the nurse, the patient|w(DLC)###66015620|w(OCoLC)3995456\n[Related record]";
Marc[160] = "780   Preceding Entry  (R)Ü\nFirst\tNote controller\n0\tDisplay note\n1\tDo not display note\nSecond\tType of relationship\n0\tContinues\n1\tContinues in part\n2\tSupersedes\n3\tSupersedes in part\n4\tFormed by the union of ... and ...\n5\tAbsorbed\n6\tAbsorbed in part\n7\tSeparated fromß\n|a\tMain entry heading  (NR)\n|b\tEdition  (NR)\n|c\tQualifying information  (NR)\n|d\tPlace, publisher, and date of publication  (NR)\n|g\tRelationship information  (R)\n|h\tPhysical description  (NR)\n|i\tDisplay text  (NR)\n|k\tSeries data for related item  (R)\n|m\tMaterial-specific details  (NR)\n|n\tNote  (R)\n|o\tOther item identifier  (R)\n|r\tReport number  (R)\n|s\tUniform title  (NR)\n|t\tTitle  (NR)\n|u\tStandard Technical Report Number  (NR)\n|w\tRecord control number  (R)\n|x\tInternational Standard Serial Number  (NR)\n|y\tCODEN Designation  (NR)\n|z\tInternational Standard Book Number  (R) \n|6\tLinkage  (NR)\n|7\tControl subfield  (NR)\n\t/0 - Type of main entry heading\n\t/1 - Form of name\n\t/2 - Type of record\n\t/3 - Bibliographic levelÝ780\t01|tAnnales scientifiques de l'Université de Besançon|w(OCoLC)6179013ÝÝ";
Marc[161] = "785   Succeeding Entry  (R)Ü\nFirst\tNote controller\n0\tDisplay note\n1\tDo not display note\nSecond\tType of relationship\n0\tContinued by\n1\tContinued in part by\n2\tSuperseded by\n3\tSuperseded in part by\n4\tAbsorbed by\n5\tAbsorbed in part by\n6\tSplit into ... and ...\n7\tMerged with ... to form ...\n8\tChanged back toß\n|a\tMain entry heading  (NR)\n|b\tEdition  (NR)\n|c\tQualifying information  (NR)\n|d\tPlace, publisher, and date of publication  (NR)\n|g\tRelationship information  (R)\n|h\tPhysical description  (NR)\n|i\tDisplay text  (NR)\n|k\tSeries data for related item  (R)\n|m\tMaterial-specific details  (NR)\n|n\tNote  (R)\n|o\tOther item identifier  (R)\n|r\tReport number  (R)\n|s\tUniform title  (NR)\n|t\tTitle  (NR)\n|u\tStandard Technical Report Number  (NR)\n|w\tRecord control number  (R)\n|x\tInternational Standard Serial Number  (NR)\n|y\tCODEN Designation  (NR)\n|z\tInternational Standard Book Number  (R) \n|6\tLinkage  (NR)\n|7\tControl subfield  (NR)\n\t/0 - Type of main entry heading\n\t/1 - Form of name\n\t/2 - Type of record\n\t/3 - Bibliographic levelÝ580\t##|aSplit into: Hospital practice (Hospital and, Hospital practice Office)\n785\t16|aHospital practice (Hospital ed.)|x8755-4542|w(DLC)sn#84001694";
Marc[162] = "786   Data Source Entry  (R)  [Provisional]Ü\nFirst\tNote controller\n0\tDisplay note\n1\tDo not display note\nSecond\tDisplay constant controller\n#\tData source\n8\tNo display constant generatedß\n|a\tMain entry heading  (NR)\n|b\tEdition  (NR)\n|c\tQualifying information  (NR)\n|d\tPlace, publisher, and date of publication  (NR)\n|g\tRelationship information  (R)\n|h\tPhysical description  (NR)\n|i\tDisplay text  (NR)\n|j\tPeriod of content  (NR)\n|k\tSeries data for related item  (R)\n|m\tMaterial-specific details  (NR)\n|n\tNote  (R)\n|o\tOther item identifier  (R)\n|r\tReport number  (R)\n|s\tUniform title  (NR)\n|t\tTitle  (NR)\n|u\tStandard Technical Report Number  (NR)\n|v\tSource contribution  (NR)\n|w\tRecord control number  (R)\n|x\tInternational Standard Serial Number  (NR)\n|y\tCODEN Designation  (NR)\n|z\tInternational Standard Book Number  (R) \n|6\tLinkage  (NR)\n|7\tControl subfield  (NR)\n\t/0 - Type of main entry heading\n\t/1 - Form of name\n\t/2 - Type of record\n\t/3 - Bibliographic levelÝ786\t0#|aUnited States. Defense Mapping Agency.|tReno, NV-CA west digital terrain elevation data|vData for reformatting to DEM format";
Marc[163] = "787   Nonspecific Relationship Entry  (R)Ü\nFirst\tNote controller\n0\tDisplay note\n1\tDo not display note\nSecond\tDisplay constant controller\n#\tRelated item:\n8\tNo display constant generatedß\n|a\tMain entry heading  (NR)\n|b\tEdition  (NR)\n|c\tQualifying information  (NR)\n|d\tPlace, publisher, and date of publication  (NR)\n|g\tRelationship information  (R)\n|h\tPhysical description  (NR)\n|i\tDisplay text  (NR)\n|k\tSeries data for related item  (R)\n|m\tMaterial-specific details  (NR)\n|n\tNote  (R)\n|o\tOther item identifier  (R)\n|r\tReport number  (R)\n|s\tUniform title  (NR)\n|t\tTitle  (NR)\n|u\tStandard Technical Report Number  (NR)\n|w\tRecord control number  (R)\n|x\tInternational Standard Serial Number  (NR)\n|y\tCODEN Designation  (NR)\n|z\tInternational Standard Book Number  (R) \n|6\tLinkage  (NR)\n|7\tControl subfield  (NR)\n\t/0 - Type of main entry heading\n\t/1 - Form of name\n\t/2 - Type of record\n\t/3 - Bibliographic levelÝ580\t##|aCompanion publication to: Empire State report (1982).\n787\t1#|aEmpire State report (1982)|x0747-0711|w(DLC)###84647292 |w(OCoLC)8541622\n[Record being cataloged; link to related title.]";
Marc[164] = "800   Series Added Entry-Personal Name  (R)Ü\nFirst\tType of personal name entry element\n0\tForename\n1\tSurname\n3\tFamily name\nSecond\tUndefined\n#\tUndefinedß\n|a\tPersonal name  (NR)\n|b\tNumeration  (NR)\n|c\tTitles and other words associated with a name  (R)\n|d\tDates associated with a name  (NR)\n|e\tRelator term  (R)\n|f\tDate of a work  (NR)\n|g\tMiscellaneous information  (NR)\n|h\tMedium  (NR)\n|k\tForm subheading  (R)\n|l\tLanguage of a work  (NR)\n|m\tMedium of performance for music  (R)\n|n\tNumber of part/section of a work  (R)\n|o\tArranged statement for music  (NR)\n|p\tName of part/section of a work  (R)\n|q\tFuller form of name  (NR)\n|r\tKey for music  (NR)\n|s\tVersion  (NR)\n|t\tTitle of a work  (NR)\n|u\tAffiliation  (NR)\n|v\tVolume number/sequential designation  (NR)\n|4\tRelator code  (R)Ý800\t1#|aBerenholtz, Jim,|d1957-|tTeachings of the feathered serpent ;|vbk. 1";
Marc[165] = "810   Series Added Entry-Corporate Name  (R)Ü\nFirst\tType of corporate name entry element\n0\tInverted name\n1\tJurisdiction name\n2\tName in direct order\nSecond\tUndefined\n#\tUndefinedß\n|a\tCorporate name or jurisdiction name as entry element  (NR)\n|b\tSubordinate unit  (R)\n|c\tLocation of meeting  (NR)\n|d\tDate of meeting or treaty signing  (R)\n|e\tRelator term  (R)\n|f\tDate of a work  (NR)\n|g\tMiscellaneous information  (NR)\n|h\tMedium  (NR)\n|k\tForm subheading  (R)\n|l\tLanguage of a work  (NR)\n|m\tMedium of performance for music  (R)\n|n\tNumber of part/section/meeting  (R)\n|o\tArranged statement for music  (NR)\n|p\tName of part/section of a work  (R)\n|r\tKey for music  (NR)\n|s\tVersion  (NR)\n|t\tTitle of a work  (NR)\n|u\tAffiliation  (NR)\n|v\tVolume number/sequential designation  (NR)\n|4\tRelator code  (R)Ý490\t1#|aCIIL linguistic atlas series ;|v1\n810\t2#|aCentral Institute of Indian Languages.|tCIIL linguistic atlas series ;|v1.ÝÝ";
Marc[166] = "811   Series Added Entry-Meeting Name  (R)Ü\nFirst\tType of meeting name entry element\n0\tInverted name\n1\tJurisdiction name\n2\tName in direct order\nSecond\tUndefined\n#\tUndefinedß\n|a\tMeeting name or jurisdiction name as entry element  (NR)\n|c\tLocation of meeting  (NR)\n|d\tDate of meeting  (NR)\n|e\tSubordinate unit  (R)\n|f\tDate of a work  (NR)\n|g\tMiscellaneous information  (NR)\n|h\tMedium  (NR)\n|k\tForm subheading  (R)\n|l\tLanguage of a work  (NR)\n|n\tNumber of part/section/meeting  (R)\n|p\tName of part/section of a work  (R)\n|q\tName of meeting following jurisdiction name entry element  (NR)\n|s\tVersion  (NR)\n|t\tTitle of a work  (NR)\n|u\tAffiliation  (NR)\n|v\tVolume number/sequential designation  (NR)\n|4\tRelator code  (R)Ý490\t1#|aDelaware symposia on language studies ;|v4\n811\t2#|aDelaware Symposium on Language Studies.|tDelaware symposia on language studies ;|v4.";
Marc[167] = "830   Series Added Entry-Uniform Title  (R)Ü\nFirst\tUndefined\n#\tUndefined\nSecond\tNonfiling characters\n0-9\tNumber of nonfiling characters presentß\n|a\tUniform title  (NR)\n|d\tDate of treaty signing  (R)\n|f\tDate of a work  (NR)\n|g\tMiscellaneous information  (NR)\n|h\tMedium  (NR)\n|k\tForm subheading  (R)\n|l\tLanguage of a work  (NR)\n|m\tMedium of performance for music  (R)\n|n\tNumber of part/section of a work  (R)\n|o\tArranged statement for music  (NR)\n|p\tName of part/section of a work  (R)\n|r\tKey for music  (NR)\n|s\tVersion  (NR)\n|t\tTitle of a work  (NR)\n|v\tVolume number/sequential designation  (NR)Ý490\t1#|aBibliographies of modern authors,|x0749-470X ;|vno. 27\n830\t#0|aBibliographies of modern authors (San Bernardino, Calif.) ;|vno. 27.";
Marc[168] = "850   Holding Institution  (R)Ü\nFirst\tUndefined\n#\tUndefined\nSecond\tUndefined\n#\tUndefinedß\n|a\tHolding institution  (R)Ý850\t##|aAAP|aCU|aDLC|aMiU";
Marc[169] = "852   Location  (R)Ü\nFirst\tShelving scheme\n#\tNo information provided\n0\tLibrary of Congress classification\n1\tDewey Decimal classification\n2\tNational Library of Medicine classification\n3\tSuperintendent of Documents classification\n4\tShelving control number\n5\tTitle\n6\tShelved separately\n7\tSource specified in subfield |2\n8\tOther scheme\nSecond\t\tShelving order\n#\t\tNo information provided\n0\t\tNot enumeration\n1\t\tPrimary enumeration\n2\t\tAlternative enumerationß\n\tLocation\n|a\tLocation  (NR)\n|b\tSublocation or collection  (R)\n|c\tShelving location  (R)\n|e\tAddress  (R)\n|f\tCoded location qualifier  (R)\n|g\tNon-coded location qualifier  (R)\n\tShelving designation\n|h\tClassification part  (NR)\n|i\tItem part  (R)\n|j\tShelving control number  (NR)\n|k\tCall number prefix (NR)\n|l\tShelving form of title  (NR)\n|m\tCall number suffix (NR)\n\tNumbers/codes\n|n\tCountry code  (NR)\n|s\tCopyright article-fee code  (R)\n|t\tCopy number  (NR)\n\tDescriptors\n|p\tPiece designation  (NR)\n|q\tPiece physical condition  (NR)\n\tNotes\n|x\tNonpublic note  (R)\n|z\tPublic note  (R)\n\tControl subfield\n|2\tSource of classification or shelving scheme  (NR)\n|3\tMaterials specified  (NR)\n|6\tLinkage (NR)\n|8\tLink and sequence number  (NR)Ý852\t##|aNational Geographic Society|bPersonnel Dept.|e17th & M St., N.W., Washington, DC  USA";
Marc[170] = "856   Electronic Location and Access  (R)Ü\nFirst\tAccess method\n#\tNo information provided\n0\tEmail\n1\tFTP\n2\tRemote login (Telnet)\n3\tDial-up\n4\tHTTP\n7\tMethod specified in subfield |2\nSecond\tRelationship\n#\tNo information provided\n0\tResource\n1\tVersion of resource\n2\tRelated resource\n8\tNo display constant generatedß\n|a\tHost name  (R)\n|b\tAccess number  (R)\n|c\tCompression information  (R)\n|d\tPath  (R)\n|f\tElectronic name  (R)\n|g\tUniform Resource Name  (R)\n|h\tProcessor of request  (NR)\n|i\tInstruction  (R)\n|j\tBits per second  (NR)\n|k\tPassword  (NR)\n|l\tLogon  (NR)\n|m\tContact for access assistance  (R)\n|n\tName of location of host in subfield |a   (NR)\n|o\tOperating system  (NR)\n|p\tPort  (NR)\n|q\tElectronic format type  (NR)\n|r\tSettings  (NR)\n|s\tFile size  (R)\n|t\tTerminal emulation  (R)\n|u\tUniform Resource Locator  (R)\n|v\tHours access method available  (R)\n|w\tRecord control number  (R)\n|x\tNonpublic note  (R)\n|z\tPublic note  (R)\n|2\tAccess method   (NR)\n|3\tMaterials specified  (NR)Ý856\t40|uhttp://lcweb.loc.gov/catdir/semdigdocs/seminar.html\n856\t2#|apac.carl.org|b192.54.81.128|mCARL Situation Room|mhelp@CARL.org|nCARL Systems Inc., Denver, CO|v24 hours";
Marc[171] = "880   Alternate Graphic Representation  (R)Ü\nFirst\tSame as associated field\nSecond\tSame as associated fieldß\n|6\t\tLinkage  (NR)\n|a-z\t\tSame as associated field\n|0-5, 7-9\tSame as associated fieldÝ880  2#|6110-01/(2/r|aHeading in Hebrew script linked to associated field";
Marc[172] = "886   Foreign MARC Information Field  (R)Ü\nFirst\tType of field\n0\tLeader\n1\tVariable control fields (002-009)\n2\tVariable data fields (010-999)\nSecond\tUndefined\n#\tUndefinedß\n|a\tTag of the foreign MARC field  (NR)\n|b\tContent of the foreign MARC field  (NR)\n|2\tSource of data  (NR)\n|a-z\tForeign MARC subfield  (R)\n|0-9\tForeign MARC subfield  (R)Ý886\t2#|2unimrur|a709|b1#|aNapalkov (Litvak), Vladimir Nikolaevich: sm.";
}
//#############################################################

function LoadFixed() {
Fixed[0] = "Type of record\n\n   a    Language material\n   b    Archival and manuscripts control\n   c    Printed music\n   d    Manuscript music\n   e    Printed maps\n   f    Manuscript map\n   g    Projected media\n   i    Non-musical sound recording\n   j    Musical sound recordings\n   k    Two-dimensional nonprojectable graphic\n   m    Computer file\n   o    Kit\n   r    Three-dimensional artifact or naturally occurring object\n   t   Manuscript language material";
Fixed[1] = "Bibliographic level\n\n   a    Monographic component part\n   b    Serial component part\n   c    Collection\n   d    Subunit\n   m    Monograph\n   s    serial";
Fixed[2] = "Encoding Level\n\n   #    Full level\n   1    Full record, material not examined\n   2    Less-than-full level, material not examined\n   4    Core level\n   5    Partial (preliminary) level\n   7    Minimal level\n   8    Prepublication level\n   u    Unknown\n   z    Not applicable";
Fixed[3] = "Descriptive cataloguing form\n\n   #    Non-ISBD\n   a    AACR2\n   i    ISBD\n   u    unknown";
Fixed[4] = "Illustrations\n\n   #    No illustrations\n   a    Illustrations\n   b    Maps\n   c    Portraits\n   d    Charts\n   e    Plans\n   f    Plates\n   g    Music\n   h    Facsimiles\n   i    Coats of arms\n   j    Genealogical tables\n   k    Forms\n   l    Samples\n   m    Phonodisc, phonowire, etc.\n   o    Photographs\n   p    Illuminations\n   0    Target audience\n   #    Unknown or not specified";
Fixed[5] = "Target audience\n\n   a    Preschool\n   b    Primary\n   c    Elementary and junior high\n   d    Secondary (senior high)\n   e    Adult\n   f    Specialized\n   g    General\n   j    Juvenile";
Fixed[6] = "Form of item\n\n   #    None of the following\n   a    Microfilm\n   b    Microfiche\n   c    Microopaque\n   d    Large print\n   f    Braille\n   r    Regular print reproduction";
Fixed[7] = "Nature of contents\n\n   #    No specified nature of contents\n   a    Abstracts/summaries\n   b    Bibliographies\n   c    Catalogs\n   d    Dictionaries\n   e    Encyclopedias\n   f    Handbooks\n   g    Legal articles\n   i    Indexes\n   k    Discographies\n   l    Legislation\n   m    Theses\n   n    Surveys of literature in a subject area\n   o    Reviews\n   p    Programmed texts\n   q    Filmographies\n   r    Directories\n   s    Statistics\n   t    Technical reports\n   v    Legal cases and case notes\n   w    Law reports and digests";
Fixed[8] = "Government publication\n\n   #    Not a government publication\n   a    Autonomous or semi-autonomous component\n   c    Multilocal\n   f    Federal/national\n   i    International intergovernmental\n   l    Local\n   m    Multistate\n   o    Government publication--level undetermined\n   s    State, provincial, territorial, dependent, etc.\n   u    Unknown if item is government publication\n   z    Other";
Fixed[9] = "Conference publication\n\n   0    Not a conference publication\n   1    Conference publication";
Fixed[10] = "Festschrift\n\n   0    Not a festschrift\n   1    Festschrift";
Fixed[11] = "Index\n\n   0    No index\n   1    Index present";
Fixed[12] = "Fiction\n\n   0    Not fiction\n   1    Fiction\n   c    Comic strips\n   d    Dramas\n   e    Essays\n   f    Novels\n   h    Humor, satires, etc.  \n   i    Letters\n   j    Short stories\n   m   Mixed forms\n   p   Poetry\n   s    Speeches\n   u    Unknown";
Fixed[13] = "Biography\n\n   #    No biographical material autobiography\n   b    Individual biography\n   c    Collective biography\n   d    Contains biographical information";
Fixed[14] = "Type of date/publication status\n   b    No dates given; B.C. date involved\n   c    Serial item currently published\n   d    Serial item ceased publication\n   e    Detailed date\n   i    Inclusive dates of collection\n   k    Range of years of bulk of collection\n   n    Dates unknown\n   p    Date of distribution/release/issue and production/recording session\n        when different\n   q    Questionable date\n   r    Reprint/reissue date and original date\n   s    Single known date/probable date\n   t    Publication date and copyright date\n   u    Serial status unknown";
Fixed[15] = "Date\n\n   #    Date element is not applicable\n   u    Date element is totally or partially unknown";
Fixed[16] = "Type of Control\n\n   #    No specific type of control\n   a    Archival control";
Fixed[17] = "Place of publication, production, or execution\n\n   [Any valid code from the USMARC Code List for Countries]";
Fixed[18] = "Language\n\n   [Any valid code from the USMARC Code List for Language]";
Fixed[19] = "Modified record\n\n   #    Not modified\n   d    Dashed-on information omitted\n   o    Completely romanized/printed cards romanized\n   r    Completely romanized/printed cards in script\n   s    Shortened\n   x    Missing characters";
Fixed[20] = "Cataloging source\n\n   #    Library of Congress\n   a    National Agricultural Library\n   b    National Library of Medicine\n   c    Library of Congress cooperative cataloging program\n   d    Other sources\n   n    Report to New Serial Titles\n   u    Unknown";
Fixed[21] = "Frequency\n\n   #    No determinable frequency\n   a    Annual\n   b    Bimonthly\n   c    Semiweekly\n   d    Daily\n   e    Biweekly\n   f    Semiannual\n   g    Biennial\n   h    Triennial\n   i    Three times a week\n   j    Three times a month\n   m    Monthly\n   q    Quarterly\n   s    Semimonthly\n   t    Three times a year\n   u    Unknown\n   w    Weekly\n   z    Other";
Fixed[22] = "Regularity\n\n   n    Normalized irregular\n   r    Regular\n   u    Unknown\n   x    Completely irregular";
Fixed[23] = "ISSN center\n\n   #    No ISSN center code assigned\n   0    International Center\n   1    United States\n   4    Canada\n   z    Other";
Fixed[24] = "Type of serial\n\n   #    Other\n   m    Monographic series\n   n    Newspaper\n   p    Periodical";
Fixed[25] = "Form of original item\n\n   #    None of the following\n   a    Microfilm\n   b    Microfiche\n   c    Microopaque\n   d    Large print\n   e    Newspaper format\n   f    Braille";
Fixed[26] = "Nature of entire work\n\n   #    No specified nature of entire work\n   a    Abstracts/summaries\n   b    Bibliographies\n   c    Catalogs\n   d    Dictionaries\n   e    Encyclopedias\n   f    Handbooks\n   g    Legal articles\n   h    Biography\n   i    Indexes\n   k    Discographies\n   l    Legislation\n   n    Surveys of literature in a subject area\n   o    Reviews\n   p    Programmed texts\n   q    Filmographies\n   r    Directories\n   s    Statistics\n   t    Technical reports\n   v    Legal cases and case notes\n   w    Law reports and digests";
Fixed[27] = "Original alphabet or script of title\n \n   #    No alphabet or script given/no key title\n   a    Basic roman\n   b    Extended roman\n   c    Cyrillic\n   d    Japanese\n   e    Chinese\n   f    Arabic\n   g    Greek\n   h    Hebrew\n   i    Thai\n   j    Devanagari\n   k    Korean\n   l    Tamil\n   u    Unknown\n   z    Other";
Fixed[28] = "Successive/latest entry\n   0    Successive entry\n   1    Latest entry";
Fixed[29] = "Record status\n\n  a   Increase in encoding level\n  c   Corrected or revised\n  d   Deleted (other)\n  n   New\n  s   Deleted; heading split into two or more headings\n  x   Deleted; heading replaced by another heading";
Fixed[30] = "Type of record\n\n  z   Authority data";
Fixed[31] = "Encoding level\n\n  n   Complete authority record\n  o   Incomplete authority record";
Fixed[32] = "Direct or indirect geographic subdivision\n\n  #   Not subdivided geographically\n  d   Subdivided geographically--direct\n  i   Subdivided geographically--indirect\n  n   Not applicable";
Fixed[33] = "Romanization scheme\n\n  a   International standard\n  b   National standard\n  c   National library association standard\n  d   National library or bibliographic agency standard\n  e   Local standard\n  f   Standard of unknown origin\n  g   Conventional romanization or conventional form of name in language of cataloging agency\n  n   Not applicable";
Fixed[34] = "Kind of record\n\n  a   Established heading\n  b   Untraced reference\n  c   Traced reference\n  d   Subdivision\n  e   Node label\n  f   Established heading and subdivision\n  g   Reference and subdivision";
Fixed[35] = "Descriptive cataloging rules\n\n  a   Earlier rules\n  b   AACR 1\n  c   AACR 2\n  d   AACR 2 compatible heading\n  n   Not applicable\n  z   Other";
Fixed[36] = "Subject heading system/thesaurus\n\n  a   Library of Congress Subject Headings\n  b   LC subject headings for children's literature\n  c   Medical Subject Headings\n  d   National Agricultural Library subject authority\n         file\n  k   Canadian Subject Headings\n  n   Not applicable\n  r   Art and Architecture Thesaurus\n  v   Repertoire des vedettes-matiere\n  z   Other";
Fixed[37] = "Type of series\n\n  a   Monographic series\n  b   Multipart item\n  c   Series-like phrase\n  n   Not applicable\n  z   Other";
Fixed[38] = "Numbered or unnumbered series\n\n  a   Numbered\n  b   Unnumbered\n  c   Numbering varies\n  n   Not applicable";
Fixed[39] = "Type of subject subdivision\n\n  #   Value used in records before definition of this character position  [OBSOLETE]\n  a   Topical\n  b   Form\n  c   Chronological\n  d   Geographic\n  e   Language\n  n   Not applicable";
Fixed[40] = "Type of government agency\n\n  #   Not a government agency\n  a   Autonomous or semi-autonomous component of Malaysia\n  c   Multilocal\n  f   Federal/national\n  i   International intergovernmental\n  l   Local\n  m   Multistate\n  o   Government agency--type undetermined\n  s   State, provincial, territorial, dependent, etc.\n  u   Unknown if heading is government agency\n  z   Other";
Fixed[41] = "Reference evaluation\n\n  #   Value used in records before definition of this character position  [OBSOLETE]\n  a   Tracings are consistent with the heading\n  b   Tracings are not necessarily consistent with the heading\n  n   Not applicable";
Fixed[42] = "Record update in process\n\n  a   Record can be used\n  b   Record is being used";
Fixed[43] = "Undifferentiated personal name\n\n  a   Differentiated personal name\n  b   Undifferentiated personal name\n  n   Not applicable";
Fixed[44] = "Auth status\n\n  a   Fully established\n  b   Memorandum\n  c   Provisional\n  d   Preliminary\n  n   Not applicable";
Fixed[45] = "Modified record\n\n  #   Not modified\n  s   Shortened\n  x   Missing characters";
Fixed[46] = "Cataloging source\n\n  #   Library of Congress\n  a   National Agricultural Library\n  b   National Library of Medicine\n  c   Library of Congress cooperative cataloging program\n  d   Other sources\n  u   Unknown";
Fixed[47] = "Heading use code—subject added entry\n\n  a   Heading is appropriate for use as a subject added entry\n  b   Heading is not appropriate for use as a subject added entry";
Fixed[48] = "Heading use code—series added entry\n\n  a   Heading is appropriate for use as a series added entry\n  b   Heading is not appropriate for use as a series added entry";
Fixed[49] = "W control subfield in 4XX\n  LC standard in first col, OCLC standard in second col\n\n  nnnn #    Simple cross reference, do not supply |w value\n  nnan nna  Linking reference to a pre-AACR2 heading\n  nnaa nnaa Pre-AACR2 heading is not a valid AACR2 reference\n  nnen nne  Valid cross reference was also an earlier AACR2 heading\n  nnnb nnnb Reference not displayed";
Fixed[50]  = "W control subfield in 5XX\n  LC standard in first col, OCLC standard in second col\n\n  nnnn #    Simple cross reference, do not supply |w value\n  annn a    Earlier heading\n  bnnn b    Later heading\n  nnnc nnnc See also reference for pseudonyms (663 field used)\n  nnna nnna Reference not displayed\n  bnna bnna cf. RI26.3B-C(1b)\n\n  anna anna Unlikely to use";

}

//########################################

function LoadAACR() {
AACR[0] = "Alabama --- Ala.";
AACR[1] = "Alberta --- Alta.";
AACR[2] = "Arizona --- Ariz.";
AACR[3] = "Arkansas --- Ark.";
AACR[4] = "Australian Capital Territory --- A.C.T.";
AACR[5] = "British Columbia --- B.C.";
AACR[6] = "California --- Calif.";
AACR[7] = "Colorado --- Colo.";
AACR[8] = "Connecticut --- Conn.";
AACR[9] = "Delaware --- Del.";
AACR[10] = "District of Columbia --- D.C.";
AACR[11] = "Distrito Federal --- D.F.";
AACR[12] = "Florida --- Fla.";
AACR[13] = "Georgia --- Ga.";
AACR[14] = "Illinois --- Ill.";
AACR[15] = "Indiana --- Ind.";
AACR[16] = "Kansas --- Kan.";
AACR[17] = "Kentucky --- Ky.";
AACR[18] = "Louisiana --- La.";
AACR[19] = "Maine --- Me.";
AACR[20] = "Manitoba --- Man.";
AACR[21] = "Maryland --- Md.";
AACR[22] = "Massachusetts --- Mass.";
AACR[23] = "Michigan --- Mich.";
AACR[24] = "Minnesota --- Minn.";
AACR[25] = "Mississippi --- Miss.";
AACR[26] = "Missouri --- Mo.";
AACR[27] = "Montana --- Mont.";
AACR[28] = "Nebraska --- Neb.";
AACR[29] = "Nevada --- Nev.";
AACR[30] = "New Brunswick --- N.B.";
AACR[31] = "New Hampshire --- N.H.";
AACR[32] = "New Jersey --- N.J.";
AACR[33] = "New Mexico --- N.M.";
AACR[34] = "New South Wales --- N.S.W.";
AACR[35] = "New York --- N.Y.";
AACR[36] = "New Zealand --- N.Z.";
AACR[37] = "Newfoundland --- Nfld.";
AACR[38] = "North Carolina --- N.C.";
AACR[39] = "North Dakota --- N.D.";
AACR[40] = "Northern Territory --- N.T.";
AACR[41] = "Northwest Territories --- N.W.T.";
AACR[42] = "Nova Scotia --- N.S.";
AACR[43] = "Oklahoma --- Okla.";
AACR[44] = "Ontario --- Ont.";
AACR[45] = "Oregon --- Or.";
AACR[46] = "Pennsylvania --- Pa.";
AACR[47] = "Prince Edward Island --- P.E.I.";
AACR[48] = "Puerto Rico --- P.R.";
AACR[49] = "Queensland --- Qld.";
AACR[50] = "Rhode Island --- R.I.";
AACR[51] = "Russian Soviet Federated Socialist Republic --- R.S.F.S.R.";
AACR[52] = "Saskatchewan --- Sask.";
AACR[53] = "South Australia --- S. Aust.";
AACR[54] = "South Carolina --- S.C.";
AACR[55] = "South Dakota --- S.D.";
AACR[56] = "Tasmania --- Tas.";
AACR[57] = "Tennessee --- Tenn.";
AACR[58] = "Territory of Hawaii --- T.H.";
AACR[59] = "Texas --- Tex.";
AACR[60] = "Union of Soviet Socialist Republics --- U.S.S.R.";
AACR[61] = "United Kingdom --- U.K.";
AACR[62] = "United States --- U.S.";
AACR[63] = "Vermont --- Vt.";
AACR[64] = "Victoria --- Vic.";
AACR[65] = "Virgin Islands --- V.I.";
AACR[66] = "Virginia --- Va.";
AACR[67] = "Washington --- Wa.";
AACR[68] = "West Virginia --- W. Va.";
AACR[69] = "Western Australia --- W.A.";
AACR[70] = "Wisconsin --- Wis.";
AACR[71] = "Wyoming --- Wyo.";
AACR[72] = "Yukon Territory --- Yukon";
AACR[73] = "aastakaik --- aastak";
AACR[74] = "Abdruck --- abdr.";
AACR[75] = "abgedruckt --- abgedr.";
AACR[76] = "Abteilung, Abtheilung --- Abt.";
AACR[77] = "accompaniment --- acc.";
AACR[78] = "afdeling --- afd.";
AACR[79] = "aflevering --- afl.";
AACR[80] = "altitude --- alt.";
AACR[81] = "alto --- A";
AACR[82] = "and --- &";
AACR[83] = "and others --- et al.";
AACR[84] = "Anno Domini --- A.D.";
AACR[85] = "approximately --- approx.";
AACR[86] = "argang --- arg.";
AACR[87] = "argraffiad --- arg.";
AACR[88] = "arranged --- arr.";
AACR[89] = "arranger --- arr.";
AACR[90] = "atdolgozott --- atdolg.";
AACR[91] = "Auflage --- Aufl.";
AACR[92] = "augmente, -e --- augm.";
AACR[93] = "augmented --- aug.";
AACR[94] = "aumentada --- aum.";
AACR[95] = "aumentato --- aum.";
AACR[96] = "Ausgabe --- Ausg.";
AACR[97] = "avdeling --- avd.";
AACR[98] = "Band --- Bd.";
AACR[99] = "band --- bd.";
AACR[100] = "Bandchen --- Bdchn.";
AACR[101] = "Bande --- Bde.";
AACR[102] = "baritone --- Bar";
AACR[103] = "bass --- B";
AACR[104] = "Before Christ --- B.C.";
AACR[105] = "bilangan --- bil.";
AACR[106] = "binary coded decimal --- BCD";
AACR[107] = "bind --- bd.";
AACR[108] = "black and white --- b&w";
AACR[109] = "bogtrykkeri --- bogtr.";
AACR[110] = "boktrykkeri --- boktr.";
AACR[111] = "book --- bk.";
AACR[112] = "born --- b.";
AACR[113] = "bovitett --- bov.";
AACR[114] = "broj --- br.";
AACR[115] = "Brother, -s --- Bro., Bros.";
AACR[116] = "Buchdrucker, -ei --- Buchdr.";
AACR[117] = "Buchhandlung --- Buchh.";
AACR[118] = "bulletin --- bull.";
AACR[119] = "bytes per inch --- bpi";
AACR[120] = "capitolo --- cap.";
AACR[121] = "cast --- c.";
AACR[122] = "centimetre, -s --- cm.";
AACR[123] = "century --- cent.";
AACR[124] = "cetakan --- cet.";
AACR[125] = "chapter --- ch.";
AACR[126] = "circa --- ca.";
AACR[127] = "cislo --- cis.";
AACR[128] = "colored, coloured --- col.";
AACR[129] = "Compagnia --- Cia.";
AACR[130] = "Compagnie --- Cie";
AACR[131] = "Compania --- Cia.";
AACR[132] = "Company --- Co.";
AACR[133] = "compare --- cf.";
AACR[134] = "compiler --- comp.";
AACR[135] = "confer --- cf.";
AACR[136] = "copyright --- c";
AACR[137] = "Corporation --- Corp.";
AACR[138] = "corrected --- corr.";
AACR[139] = "corregido --- corr.";
AACR[140] = "corretto, -a --- corr.";
AACR[141] = "corrige, -e --- corr.";
AACR[142] = "czesc --- cz.";
AACR[143] = "declination --- decl.";
AACR[144] = "deel --- d.";
AACR[145] = "del (Danish, Norwegian, Swedish) --- d.";
AACR[146] = "departement --- dep.";
AACR[147] = "Department --- Dept.";
AACR[148] = "diameter --- diam.";
AACR[149] = "died --- d.";
AACR[150] = "diena --- d.";
AACR[151] = "djilid --- djil.";
AACR[152] = "document --- doc.";
AACR[153] = "dopunjeno --- dop.";
AACR[154] = "drukarnia --- druk.";
AACR[155] = "edicion --- ed.";
AACR[156] = "edition, -s --- ed., eds.";
AACR[157] = "editor --- ed.";
AACR[158] = "edizione --- ed.";
AACR[159] = "enlarged --- enl.";
AACR[160] = "equinox --- eq.";
AACR[161] = "erganzt --- erg.";
AACR[162] = "erweitert --- erw.";
AACR[163] = "establecimiento tipografico --- estab. tip.";
AACR[164] = "et alii --- et al.";
AACR[165] = "et cetera --- etc.";
AACR[166] = "evfolyam --- evf.";
AACR[167] = "facsimile, -s --- facsim., facsims.";
AACR[168] = "fascicle --- fasc.";
AACR[169] = "fascicule --- fasc.";
AACR[170] = "flourished --- fl.";
AACR[171] = "folio --- fol.";
AACR[172] = "following --- ff.";
AACR[173] = "foot, feet --- ft.";
AACR[174] = "frame, -s --- fr.";
AACR[175] = "frames per second --- fps";
AACR[176] = "fratelli --- f.lli";
AACR[177] = "Gebruder --- Gebr.";
AACR[178] = "gedruckt --- gedr.";
AACR[179] = "genealogical --- geneal.";
AACR[180] = "godina --- g.";
AACR[181] = "government --- govt.";
AACR[182] = "Government Printing Office --- G.P.O.";
AACR[183] = "Handschrift, -en --- Hs., Hss.";
AACR[184] = "Her (His) Majesty's Stationery Office --- H.M.S.O.";
AACR[185] = "Hermanos --- Hnos.";
AACR[186] = "hour, -s --- hr.";
AACR[187] = "id est --- i.e.";
AACR[188] = "Idus --- Id.";
AACR[189] = "illustration --- ill.";
AACR[190] = "illustrator --- ill.";
AACR[191] = "imienia --- im.";
AACR[192] = "imprenta --- impr.";
AACR[193] = "imprimerie --- impr.";
AACR[194] = "inch, -es --- in.";
AACR[195] = "inches per second --- ips";
AACR[196] = "including --- incl.";
AACR[197] = "Incorporated --- Inc.";
AACR[198] = "introduction --- introd.";
AACR[199] = "izdaja --- izd.";
AACR[200] = "izmenjeno --- izm.";
AACR[201] = "jaargang --- jaarg.";
AACR[202] = "Jahrgang --- Jahrg.";
AACR[203] = "javitott --- jav.";
AACR[204] = "jilid --- jil.";
AACR[205] = "Kalendae --- Kal.";
AACR[206] = "kiadas --- kiad.";
AACR[207] = "kilometre, -s --- km.";
AACR[208] = "kniha --- kn.";
AACR[209] = "knjiga --- knj.";
AACR[210] = "kotet --- kot.";
AACR[211] = "ksiegarnia --- ksieg.";
AACR[212] = "leto --- l.";
AACR[213] = "librarie --- libr.";
AACR[214] = "Lieferung --- Lfg.";
AACR[215] = "Limited --- Ltd.";
AACR[216] = "livraison --- livr.";
AACR[217] = "maatschappij --- mij.";
AACR[218] = "manuscript, -s --- ms., mss.";
AACR[219] = "menuo --- men.";
AACR[220] = "metai --- m.";
AACR[221] = "metre, -s --- m.";
AACR[222] = "mezzo-soprano --- Mz";
AACR[223] = "miesiecznik --- mies.";
AACR[224] = "millimetre, -s --- mm.";
AACR[225] = "minute, -s --- min.";
AACR[226] = "miscellaneous --- misc.";
AACR[227] = "monophonic --- mono.";
AACR[228] = "Nachfolger --- Nachf.";
AACR[229] = "naklad --- nakl.";
AACR[230] = "nakladatelstvi --- nakl.";
AACR[231] = "naukowy --- nauk.";
AACR[232] = "neue Folge --- n.F.";
AACR[233] = "new series --- new ser.";
AACR[234] = "New Testament --- N.T.";
AACR[235] = "no name (of publisher) --- s.n.";
AACR[236] = "no place (of publication) --- s.l.";
AACR[237] = "nombor --- no.";
AACR[238] = "nomor --- no.";
AACR[239] = "Nonae --- Non.";
AACR[240] = "nouveau, nouvelle --- nouv.";
AACR[241] = "number, -s --- no.";
AACR[242] = "numbered --- numb.";
AACR[243] = "numer --- nr.";
AACR[244] = "numero (Finnish) --- n:o";
AACR[245] = "numero (French) --- no";
AACR[246] = "numero (Italian) --- n.";
AACR[247] = "numero (Spanish) --- no.";
AACR[248] = "Nummer --- Nr.";
AACR[249] = "nummer --- nr.";
AACR[250] = "nuovamente --- nuov.";
AACR[251] = "odbitka --- obd.";
AACR[252] = "oddzial --- oddz.";
AACR[253] = "Old Testament --- O.T.";
AACR[254] = "omarbeidet --- omarb.";
AACR[255] = "oplag --- opl.";
AACR[256] = "opplag --- oppl.";
AACR[257] = "opracowane --- oprac.";
AACR[258] = "opus --- op.";
AACR[259] = "otisk --- it.";
AACR[260] = "page, -s --- p.";
AACR[261] = "paperback --- pbk.";
AACR[262] = "part, -s --- pt., pts.";
AACR[263] = "parte --- pt.";
AACR[264] = "partie, -s --- ptie, pties";
AACR[265] = "phonogram (copyright) --- p";
AACR[266] = "photograph, -s --- photo., photos.";
AACR[267] = "plate number, -s --- pl. no.";
AACR[268] = "poprawione --- popr.'";
AACR[269] = "portrait, -s --- port., ports.";
AACR[270] = "posthumous --- posth.";
AACR[271] = "predelan --- pred.";
AACR[272] = "preface --- pref.";
AACR[273] = "preliminary --- prelim.";
AACR[274] = "printing --- print.";
AACR[275] = "privately printed --- priv. print.";
AACR[276] = "projection --- proj.";
AACR[277] = "prosiren --- pros.";
AACR[278] = "przeklad --- przekl.";
AACR[279] = "przerobione --- przerob.";
AACR[280] = "pseudonym --- pseud.";
AACR[281] = "publishing --- pub.";
AACR[282] = "quadraphonic --- quad.";
AACR[283] = "redakcja --- red.";
AACR[284] = "refondu, -e --- ref.";
AACR[285] = "reimpression --- reimpr.";
AACR[286] = "report --- rept.";
AACR[287] = "reprinted --- repr.";
AACR[288] = "reproduced --- reprod.";
AACR[289] = "reviderade --- revid.";
AACR[290] = "revise, -e --- rev.";
AACR[291] = "revised --- rev.";
AACR[292] = "revolutions per minute --- rpm";
AACR[293] = "revu, -e --- rev.";
AACR[294] = "right ascension --- RA";
AACR[295] = "riveduto --- riv.";
AACR[296] = "rocnik --- roc.";
AACR[297] = "rocznik --- rocz.";
AACR[298] = "rok --- r.";
AACR[299] = "rozszerzone --- rozsz.";
AACR[300] = "second, -s --- sec.";
AACR[301] = "serie --- ser.";
AACR[302] = "series --- ser.";
AACR[303] = "sesit --- ses.";
AACR[304] = "signature --- sig.";
AACR[305] = "silent --- si.";
AACR[306] = "sine loco --- s.l.";
AACR[307] = "sine nomine --- s.n.";
AACR[308] = "sklad glowny --- skl. gl.";
AACR[309] = "soprano --- S";
AACR[310] = "sound --- sd.";
AACR[311] = "stabilimento tipografico --- stab. tip.";
AACR[312] = "stereophonic --- stereo.";
AACR[313] = "stevilka --- st.";
AACR[314] = "stronica --- str.";
AACR[315] = "superintendent --- supt.";
AACR[316] = "Superintendent of Documents --- Supt. of Docs.";
AACR[317] = "supplement --- suppl.";
AACR[318] = "svazek --- sv.";
AACR[319] = "szam --- sz.";
AACR[320] = "tahun --- th.";
AACR[321] = "talleres graficos --- tall. graf.";
AACR[322] = "Teil, Theil --- T.";
AACR[323] = "tenor --- T";
AACR[324] = "tipografia, tipografica --- tip.";
AACR[325] = "tiskarna --- tisk.";
AACR[326] = "title page --- t.p.";
AACR[327] = "tjetakan --- tjet.";
AACR[328] = "tome --- t.";
AACR[329] = "tomo --- t.";
AACR[330] = "towarzystwo --- tow.";
AACR[331] = "translator --- tr.";
AACR[332] = "typographical --- typog.";
AACR[333] = "typographie, typographique --- typ.";
AACR[334] = "udarbejdet --- udarb.";
AACR[335] = "udgave --- udg.";
AACR[336] = "udgivet --- udg.";
AACR[337] = "uitgaaf --- uitg.";
AACR[338] = "uitgegeven --- uitg.";
AACR[339] = "uitgevers --- uitg.";
AACR[340] = "umgearbeitet --- umgearb.";
AACR[341] = "unaccompanied --- unacc.";
AACR[342] = "Universitats-Buchdrucker, -ei --- Univ.-Buchdr.";
AACR[343] = "upplaga --- uppl.";
AACR[344] = "utarbeidet --- utarb.";
AACR[345] = "utgave --- utg.";
AACR[346] = "utgiven --- utg.";
AACR[347] = "uzupelnione --- uzup.";
AACR[348] = "verbesserte --- verb.";
AACR[349] = "vermehrte --- verm.";
AACR[350] = "volume, -s --- v.";
AACR[351] = "volume, -s (before Roman numerals) --- vol., vols.";
AACR[352] = "vuosikerta --- vuosik.";
AACR[353] = "vydani --- vyd.";
AACR[354] = "wydanie --- wyd.";
AACR[355] = "wydawnictwo --- wydawn.";
AACR[356] = "wydzial --- wydz.";
AACR[357] = "zalozba --- zal.";
AACR[358] = "zeszyt --- zesz.";
AACR[359] = "zvazok --- zv.";
AACR[360] = "zvezek --- zv.";
}

