El 03/04/2010 10:44 a.m., Jorge Llambías escribió: > On Sat, Apr 3, 2010 at 10:14 AM, Leo Molas <leos.molas@gmail.com> wrote: >>> >>> AR -> gugde'aru >>> US -> gugde'usu >>> AO -> gugde'a'o >>> LU -> gugdelu'u >>> RW -> gugderuve >>> CL -> gugdeculu >>> SE (Sweden) -> gugdesu'e >> >> Thanks xorxes in correcting it :) but I have a doubt: why {gugdelu'u} >> for example, doesn't break down? > > Because "gd" is not a valid initial, so "gu gdelu'u" is not possible. > There is no other possibility. The only stressed syllable is LU, and > it contains a consonant cluster, so it is a brivla, and since it is > not a lujvo form, it is a valid fu'ivla form. If it was "gugde lu'u" > it would have the stress on GUG, stress is very important to determine > brivla. > >> I have to admit that the method doesn't give us a beautiful result >> (neither a resembling one), and I even didn't like at all at first, but >> it's the plainest, it can live among other methods easily, and doesn't >> need too much work (if I, or whoever, make a program for it). What do >> you (jbopre) think? > > It's even simpler than the method for languages, because it uses the > same prefix for all cases. The resulting forms, with four syllables, > are not too long, and (unlike type-3 fu'ivla) they do sound like > ordinary lojban words. It's true that they don't resemble the name of > the country, but the code is fairly transparent. > > I have to say I didn't like the idea of using the ISO-codes to form > fu'ivla at first, but now I think it's not such a bad idea at all, as > long as the method used is simple and transparent. > > mu'o mi'e xorxes > Well, I did a little python script that generates the country fu'ivla. This is a extract from the output: IO -> gugde'i'o BN -> gugdebunu BG -> gugdebugu BF -> gugdebufu BI -> gugdebu'i KH -> gugdekuxe CM -> gugdecumu CA -> gugdecu'a I also did one that generates a dictionary-like definition: gugde'i'o = x1 is the country with the code ISO-3166 "IO" (British Indian Ocean Territory) for people x2 gugdebunu = x1 is the country with the code ISO-3166 "BN" (Brunei Darussalam) for people x2 gugdebugu = x1 is the country with the code ISO-3166 "BG" (Bulgaria) for people x2 gugdebufu = x1 is the country with the code ISO-3166 "BF" (Burkina Faso) for people x2 gugdebu'i = x1 is the country with the code ISO-3166 "BI" (Burundi) for people x2 gugdekuxe = x1 is the country with the code ISO-3166 "KH" (Cambodia) for people x2 gugdecumu = x1 is the country with the code ISO-3166 "CM" (Cameroon) for people x2 gugdecu'a = x1 is the country with the code ISO-3166 "CA" (Canada) for people x2 I extract the info from http://www.iso.org/iso/list-en1-semic-3.txt (it's in the attachments too, as iso-countries.txt). country-fuhivla1.py is a python program that gives the first map above, and its output is in the file result.txt country-fuhivla2.py is almost the same, but it gives the dictionary-like output. All of it is in resultdic.txt The language fu'ivla can be parsed as well, only with a few modifications (but it would be a really really bigger output file). I want to insist in the fact that this is a really easy way to coin the fu'ivla, it treat all countries the same way (so is culturally neutral), and can exist among other fu'ivla coined with another method. mu'o mi'e .leos. -- My lojban journal: http://learninglojban.wordpress.com My personal blog: http://leomolas.tumblr.com
"""you can asume this file is under GPLv3""" def fuhivla (s): result = 'gugde' for i in range(len(s)): if (s[i] in ('A','E','I','O','U')): result = result + '\'' + s[i].lower() elif s[i] == 'H': result = result + 'xe' elif s[i] == 'Q': result = result + 'ke' elif s[i] == 'W': result = result + 've' elif s[i] == 'Y': result = result + 'je' else: result = result + s[i].lower() + 'u' return result f = open('iso-countries.txt', 'r') list = f.readlines() listv, listr = [],[]; for i in range(len(list)): line = list[i] pos = line.find(';') '''this list has only vectors with the pattern ('name of the country','ISO code')''' listv = listv + [(line[:pos].title(),line[pos+1:-1])] '''this is the real deal''' listr = listr + [(line[pos+1:-1],fuhivla(line[pos+1:-1]))] for i in range(len(listr)): print listr[i][0] + ' -> ' + listr[i][1] + '\n'
"""you can asume this file is under GPLv3""" def fuhivla (s): result = 'gugde' for i in range(len(s)): if (s[i] in ('A','E','I','O','U')): result = result + '\'' + s[i].lower() elif s[i] == 'H': result = result + 'xe' elif s[i] == 'Q': result = result + 'ke' elif s[i] == 'W': result = result + 've' elif s[i] == 'Y': result = result + 'je' else: result = result + s[i].lower() + 'u' return result f = open('iso-countries.txt', 'r') list = f.readlines() listv, listr = [],[]; for i in range(len(list)): line = list[i] pos = line.find(';') '''this list has only vectors with the pattern ('name of the country','ISO code')''' listv = listv + [(line[:pos].title(),line[pos+1:-1])] '''this is the real deal''' listr = listr + [(line[pos+1:-1],fuhivla(line[pos+1:-1]),line[:pos].title())] for i in range(len(listr)): print listr[i][1] + ' = x1 is the country with the code ISO-3166 "' + listr[i][0] + '" (' + listr[i][2] + ') for people x2\n'
AFGHANISTAN;AF ÅLAND ISLANDS;AX ALBANIA;AL ALGERIA;DZ AMERICAN SAMOA;AS ANDORRA;AD ANGOLA;AO ANGUILLA;AI ANTARCTICA;AQ ANTIGUA AND BARBUDA;AG ARGENTINA;AR ARMENIA;AM ARUBA;AW AUSTRALIA;AU AUSTRIA;AT AZERBAIJAN;AZ BAHAMAS;BS BAHRAIN;BH BANGLADESH;BD BARBADOS;BB BELARUS;BY BELGIUM;BE BELIZE;BZ BENIN;BJ BERMUDA;BM BHUTAN;BT BOLIVIA, PLURINATIONAL STATE OF;BO BOSNIA AND HERZEGOVINA;BA BOTSWANA;BW BOUVET ISLAND;BV BRAZIL;BR BRITISH INDIAN OCEAN TERRITORY;IO BRUNEI DARUSSALAM;BN BULGARIA;BG BURKINA FASO;BF BURUNDI;BI CAMBODIA;KH CAMEROON;CM CANADA;CA CAPE VERDE;CV CAYMAN ISLANDS;KY CENTRAL AFRICAN REPUBLIC;CF CHAD;TD CHILE;CL CHINA;CN CHRISTMAS ISLAND;CX COCOS (KEELING) ISLANDS;CC COLOMBIA;CO COMOROS;KM CONGO;CG CONGO, THE DEMOCRATIC REPUBLIC OF THE;CD COOK ISLANDS;CK COSTA RICA;CR CÔTE D'IVOIRE;CI CROATIA;HR CUBA;CU CYPRUS;CY CZECH REPUBLIC;CZ DENMARK;DK DJIBOUTI;DJ DOMINICA;DM DOMINICAN REPUBLIC;DO ECUADOR;EC EGYPT;EG EL SALVADOR;SV EQUATORIAL GUINEA;GQ ERITREA;ER ESTONIA;EE ETHIOPIA;ET FALKLAND ISLANDS (MALVINAS);FK FAROE ISLANDS;FO FIJI;FJ FINLAND;FI FRANCE;FR FRENCH GUIANA;GF FRENCH POLYNESIA;PF FRENCH SOUTHERN TERRITORIES;TF GABON;GA GAMBIA;GM GEORGIA;GE GERMANY;DE GHANA;GH GIBRALTAR;GI GREECE;GR GREENLAND;GL GRENADA;GD GUADELOUPE;GP GUAM;GU GUATEMALA;GT GUERNSEY;GG GUINEA;GN GUINEA-BISSAU;GW GUYANA;GY HAITI;HT HEARD ISLAND AND MCDONALD ISLANDS;HM HOLY SEE (VATICAN CITY STATE);VA HONDURAS;HN HONG KONG;HK HUNGARY;HU ICELAND;IS INDIA;IN INDONESIA;ID IRAN, ISLAMIC REPUBLIC OF;IR IRAQ;IQ IRELAND;IE ISLE OF MAN;IM ISRAEL;IL ITALY;IT JAMAICA;JM JAPAN;JP JERSEY;JE JORDAN;JO KAZAKHSTAN;KZ KENYA;KE KIRIBATI;KI KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;KP KOREA, REPUBLIC OF;KR KUWAIT;KW KYRGYZSTAN;KG LAO PEOPLE'S DEMOCRATIC REPUBLIC;LA LATVIA;LV LEBANON;LB LESOTHO;LS LIBERIA;LR LIBYAN ARAB JAMAHIRIYA;LY LIECHTENSTEIN;LI LITHUANIA;LT LUXEMBOURG;LU MACAO;MO MACEDONIA, THE FORMER YUGOSLAV REPUBLIC OF;MK MADAGASCAR;MG MALAWI;MW MALAYSIA;MY MALDIVES;MV MALI;ML MALTA;MT MARSHALL ISLANDS;MH MARTINIQUE;MQ MAURITANIA;MR MAURITIUS;MU MAYOTTE;YT MEXICO;MX MICRONESIA, FEDERATED STATES OF;FM MOLDOVA, REPUBLIC OF;MD MONACO;MC MONGOLIA;MN MONTENEGRO;ME MONTSERRAT;MS MOROCCO;MA MOZAMBIQUE;MZ MYANMAR;MM NAMIBIA;NA NAURU;NR NEPAL;NP NETHERLANDS;NL NETHERLANDS ANTILLES;AN NEW CALEDONIA;NC NEW ZEALAND;NZ NICARAGUA;NI NIGER;NE NIGERIA;NG NIUE;NU NORFOLK ISLAND;NF NORTHERN MARIANA ISLANDS;MP NORWAY;NO OMAN;OM PAKISTAN;PK PALAU;PW PALESTINIAN TERRITORY, OCCUPIED;PS PANAMA;PA PAPUA NEW GUINEA;PG PARAGUAY;PY PERU;PE PHILIPPINES;PH PITCAIRN;PN POLAND;PL PORTUGAL;PT PUERTO RICO;PR QATAR;QA RÉUNION;RE ROMANIA;RO RUSSIAN FEDERATION;RU RWANDA;RW SAINT BARTHÉLEMY;BL SAINT HELENA, ASCENSION AND TRISTAN DA CUNHA;SH SAINT KITTS AND NEVIS;KN SAINT LUCIA;LC SAINT MARTIN;MF SAINT PIERRE AND MIQUELON;PM SAINT VINCENT AND THE GRENADINES;VC SAMOA;WS SAN MARINO;SM SAO TOME AND PRINCIPE;ST SAUDI ARABIA;SA SENEGAL;SN SERBIA;RS SEYCHELLES;SC SIERRA LEONE;SL SINGAPORE;SG SLOVAKIA;SK SLOVENIA;SI SOLOMON ISLANDS;SB SOMALIA;SO SOUTH AFRICA;ZA SOUTH GEORGIA AND THE SOUTH SANDWICH ISLANDS;GS SPAIN;ES SRI LANKA;LK SUDAN;SD SURINAME;SR SVALBARD AND JAN MAYEN;SJ SWAZILAND;SZ SWEDEN;SE SWITZERLAND;CH SYRIAN ARAB REPUBLIC;SY TAIWAN, PROVINCE OF CHINA;TW TAJIKISTAN;TJ TANZANIA, UNITED REPUBLIC OF;TZ THAILAND;TH TIMOR-LESTE;TL TOGO;TG TOKELAU;TK TONGA;TO TRINIDAD AND TOBAGO;TT TUNISIA;TN TURKEY;TR TURKMENISTAN;TM TURKS AND CAICOS ISLANDS;TC TUVALU;TV UGANDA;UG UKRAINE;UA UNITED ARAB EMIRATES;AE UNITED KINGDOM;GB UNITED STATES;US UNITED STATES MINOR OUTLYING ISLANDS;UM URUGUAY;UY UZBEKISTAN;UZ VANUATU;VU VENEZUELA, BOLIVARIAN REPUBLIC OF;VE VIET NAM;VN VIRGIN ISLANDS, BRITISH;VG VIRGIN ISLANDS, U.S.;VI WALLIS AND FUTUNA;WF WESTERN SAHARA;EH YEMEN;YE ZAMBIA;ZM ZIMBABWE;ZW
AF -> gugde'afu AX -> gugde'axu AL -> gugde'alu DZ -> gugdeduzu AS -> gugde'asu AD -> gugde'adu AO -> gugde'a'o AI -> gugde'a'i AQ -> gugde'ake AG -> gugde'agu AR -> gugde'aru AM -> gugde'amu AW -> gugde'ave AU -> gugde'a'u AT -> gugde'atu AZ -> gugde'azu BS -> gugdebusu BH -> gugdebuxe BD -> gugdebudu BB -> gugdebubu BY -> gugdebuje BE -> gugdebu'e BZ -> gugdebuzu BJ -> gugdebuju BM -> gugdebumu BT -> gugdebutu BO -> gugdebu'o BA -> gugdebu'a BW -> gugdebuve BV -> gugdebuvu BR -> gugdeburu IO -> gugde'i'o BN -> gugdebunu BG -> gugdebugu BF -> gugdebufu BI -> gugdebu'i KH -> gugdekuxe CM -> gugdecumu CA -> gugdecu'a CV -> gugdecuvu KY -> gugdekuje CF -> gugdecufu TD -> gugdetudu CL -> gugdeculu CN -> gugdecunu CX -> gugdecuxu CC -> gugdecucu CO -> gugdecu'o KM -> gugdekumu CG -> gugdecugu CD -> gugdecudu CK -> gugdecuku CR -> gugdecuru CI -> gugdecu'i HR -> gugdexeru CU -> gugdecu'u CY -> gugdecuje CZ -> gugdecuzu DK -> gugdeduku DJ -> gugdeduju DM -> gugdedumu DO -> gugdedu'o EC -> gugde'ecu EG -> gugde'egu SV -> gugdesuvu GQ -> gugdeguke ER -> gugde'eru EE -> gugde'e'e ET -> gugde'etu FK -> gugdefuku FO -> gugdefu'o FJ -> gugdefuju FI -> gugdefu'i FR -> gugdefuru GF -> gugdegufu PF -> gugdepufu TF -> gugdetufu GA -> gugdegu'a GM -> gugdegumu GE -> gugdegu'e DE -> gugdedu'e GH -> gugdeguxe GI -> gugdegu'i GR -> gugdeguru GL -> gugdegulu GD -> gugdegudu GP -> gugdegupu GU -> gugdegu'u GT -> gugdegutu GG -> gugdegugu GN -> gugdegunu GW -> gugdeguve GY -> gugdeguje HT -> gugdexetu HM -> gugdexemu VA -> gugdevu'a HN -> gugdexenu HK -> gugdexeku HU -> gugdexe'u IS -> gugde'isu IN -> gugde'inu ID -> gugde'idu IR -> gugde'iru IQ -> gugde'ike IE -> gugde'i'e IM -> gugde'imu IL -> gugde'ilu IT -> gugde'itu JM -> gugdejumu JP -> gugdejupu JE -> gugdeju'e JO -> gugdeju'o KZ -> gugdekuzu KE -> gugdeku'e KI -> gugdeku'i KP -> gugdekupu KR -> gugdekuru KW -> gugdekuve KG -> gugdekugu LA -> gugdelu'a LV -> gugdeluvu LB -> gugdelubu LS -> gugdelusu LR -> gugdeluru LY -> gugdeluje LI -> gugdelu'i LT -> gugdelutu LU -> gugdelu'u MO -> gugdemu'o MK -> gugdemuku MG -> gugdemugu MW -> gugdemuve MY -> gugdemuje MV -> gugdemuvu ML -> gugdemulu MT -> gugdemutu MH -> gugdemuxe MQ -> gugdemuke MR -> gugdemuru MU -> gugdemu'u YT -> gugdejetu MX -> gugdemuxu FM -> gugdefumu MD -> gugdemudu MC -> gugdemucu MN -> gugdemunu ME -> gugdemu'e MS -> gugdemusu MA -> gugdemu'a MZ -> gugdemuzu MM -> gugdemumu NA -> gugdenu'a NR -> gugdenuru NP -> gugdenupu NL -> gugdenulu AN -> gugde'anu NC -> gugdenucu NZ -> gugdenuzu NI -> gugdenu'i NE -> gugdenu'e NG -> gugdenugu NU -> gugdenu'u NF -> gugdenufu MP -> gugdemupu NO -> gugdenu'o OM -> gugde'omu PK -> gugdepuku PW -> gugdepuve PS -> gugdepusu PA -> gugdepu'a PG -> gugdepugu PY -> gugdepuje PE -> gugdepu'e PH -> gugdepuxe PN -> gugdepunu PL -> gugdepulu PT -> gugdeputu PR -> gugdepuru QA -> gugdeke'a RE -> gugderu'e RO -> gugderu'o RU -> gugderu'u RW -> gugderuve BL -> gugdebulu SH -> gugdesuxe KN -> gugdekunu LC -> gugdelucu MF -> gugdemufu PM -> gugdepumu VC -> gugdevucu WS -> gugdevesu SM -> gugdesumu ST -> gugdesutu SA -> gugdesu'a SN -> gugdesunu RS -> gugderusu SC -> gugdesucu SL -> gugdesulu SG -> gugdesugu SK -> gugdesuku SI -> gugdesu'i SB -> gugdesubu SO -> gugdesu'o ZA -> gugdezu'a GS -> gugdegusu ES -> gugde'esu LK -> gugdeluku SD -> gugdesudu SR -> gugdesuru SJ -> gugdesuju SZ -> gugdesuzu SE -> gugdesu'e CH -> gugdecuxe SY -> gugdesuje TW -> gugdetuve TJ -> gugdetuju TZ -> gugdetuzu TH -> gugdetuxe TL -> gugdetulu TG -> gugdetugu TK -> gugdetuku TO -> gugdetu'o TT -> gugdetutu TN -> gugdetunu TR -> gugdeturu TM -> gugdetumu TC -> gugdetucu TV -> gugdetuvu UG -> gugde'ugu UA -> gugde'u'a AE -> gugde'a'e GB -> gugdegubu US -> gugde'usu UM -> gugde'umu UY -> gugde'uje UZ -> gugde'uzu VU -> gugdevu'u VE -> gugdevu'e VN -> gugdevunu VG -> gugdevugu VI -> gugdevu'i WF -> gugdevefu EH -> gugde'exe YE -> gugdeje'e ZM -> gugdezumu Z -> gugdezu
gugde'afu = x1 is the country with the code ISO-3166 "AF" (Afghanistan) for people x2 gugde'axu = x1 is the country with the code ISO-3166 "AX" (ÅLand Islands) for people x2 gugde'alu = x1 is the country with the code ISO-3166 "AL" (Albania) for people x2 gugdeduzu = x1 is the country with the code ISO-3166 "DZ" (Algeria) for people x2 gugde'asu = x1 is the country with the code ISO-3166 "AS" (American Samoa) for people x2 gugde'adu = x1 is the country with the code ISO-3166 "AD" (Andorra) for people x2 gugde'a'o = x1 is the country with the code ISO-3166 "AO" (Angola) for people x2 gugde'a'i = x1 is the country with the code ISO-3166 "AI" (Anguilla) for people x2 gugde'ake = x1 is the country with the code ISO-3166 "AQ" (Antarctica) for people x2 gugde'agu = x1 is the country with the code ISO-3166 "AG" (Antigua And Barbuda) for people x2 gugde'aru = x1 is the country with the code ISO-3166 "AR" (Argentina) for people x2 gugde'amu = x1 is the country with the code ISO-3166 "AM" (Armenia) for people x2 gugde'ave = x1 is the country with the code ISO-3166 "AW" (Aruba) for people x2 gugde'a'u = x1 is the country with the code ISO-3166 "AU" (Australia) for people x2 gugde'atu = x1 is the country with the code ISO-3166 "AT" (Austria) for people x2 gugde'azu = x1 is the country with the code ISO-3166 "AZ" (Azerbaijan) for people x2 gugdebusu = x1 is the country with the code ISO-3166 "BS" (Bahamas) for people x2 gugdebuxe = x1 is the country with the code ISO-3166 "BH" (Bahrain) for people x2 gugdebudu = x1 is the country with the code ISO-3166 "BD" (Bangladesh) for people x2 gugdebubu = x1 is the country with the code ISO-3166 "BB" (Barbados) for people x2 gugdebuje = x1 is the country with the code ISO-3166 "BY" (Belarus) for people x2 gugdebu'e = x1 is the country with the code ISO-3166 "BE" (Belgium) for people x2 gugdebuzu = x1 is the country with the code ISO-3166 "BZ" (Belize) for people x2 gugdebuju = x1 is the country with the code ISO-3166 "BJ" (Benin) for people x2 gugdebumu = x1 is the country with the code ISO-3166 "BM" (Bermuda) for people x2 gugdebutu = x1 is the country with the code ISO-3166 "BT" (Bhutan) for people x2 gugdebu'o = x1 is the country with the code ISO-3166 "BO" (Bolivia, Plurinational State Of) for people x2 gugdebu'a = x1 is the country with the code ISO-3166 "BA" (Bosnia And Herzegovina) for people x2 gugdebuve = x1 is the country with the code ISO-3166 "BW" (Botswana) for people x2 gugdebuvu = x1 is the country with the code ISO-3166 "BV" (Bouvet Island) for people x2 gugdeburu = x1 is the country with the code ISO-3166 "BR" (Brazil) for people x2 gugde'i'o = x1 is the country with the code ISO-3166 "IO" (British Indian Ocean Territory) for people x2 gugdebunu = x1 is the country with the code ISO-3166 "BN" (Brunei Darussalam) for people x2 gugdebugu = x1 is the country with the code ISO-3166 "BG" (Bulgaria) for people x2 gugdebufu = x1 is the country with the code ISO-3166 "BF" (Burkina Faso) for people x2 gugdebu'i = x1 is the country with the code ISO-3166 "BI" (Burundi) for people x2 gugdekuxe = x1 is the country with the code ISO-3166 "KH" (Cambodia) for people x2 gugdecumu = x1 is the country with the code ISO-3166 "CM" (Cameroon) for people x2 gugdecu'a = x1 is the country with the code ISO-3166 "CA" (Canada) for people x2 gugdecuvu = x1 is the country with the code ISO-3166 "CV" (Cape Verde) for people x2 gugdekuje = x1 is the country with the code ISO-3166 "KY" (Cayman Islands) for people x2 gugdecufu = x1 is the country with the code ISO-3166 "CF" (Central African Republic) for people x2 gugdetudu = x1 is the country with the code ISO-3166 "TD" (Chad) for people x2 gugdeculu = x1 is the country with the code ISO-3166 "CL" (Chile) for people x2 gugdecunu = x1 is the country with the code ISO-3166 "CN" (China) for people x2 gugdecuxu = x1 is the country with the code ISO-3166 "CX" (Christmas Island) for people x2 gugdecucu = x1 is the country with the code ISO-3166 "CC" (Cocos (Keeling) Islands) for people x2 gugdecu'o = x1 is the country with the code ISO-3166 "CO" (Colombia) for people x2 gugdekumu = x1 is the country with the code ISO-3166 "KM" (Comoros) for people x2 gugdecugu = x1 is the country with the code ISO-3166 "CG" (Congo) for people x2 gugdecudu = x1 is the country with the code ISO-3166 "CD" (Congo, The Democratic Republic Of The) for people x2 gugdecuku = x1 is the country with the code ISO-3166 "CK" (Cook Islands) for people x2 gugdecuru = x1 is the country with the code ISO-3166 "CR" (Costa Rica) for people x2 gugdecu'i = x1 is the country with the code ISO-3166 "CI" (CÔTe D'Ivoire) for people x2 gugdexeru = x1 is the country with the code ISO-3166 "HR" (Croatia) for people x2 gugdecu'u = x1 is the country with the code ISO-3166 "CU" (Cuba) for people x2 gugdecuje = x1 is the country with the code ISO-3166 "CY" (Cyprus) for people x2 gugdecuzu = x1 is the country with the code ISO-3166 "CZ" (Czech Republic) for people x2 gugdeduku = x1 is the country with the code ISO-3166 "DK" (Denmark) for people x2 gugdeduju = x1 is the country with the code ISO-3166 "DJ" (Djibouti) for people x2 gugdedumu = x1 is the country with the code ISO-3166 "DM" (Dominica) for people x2 gugdedu'o = x1 is the country with the code ISO-3166 "DO" (Dominican Republic) for people x2 gugde'ecu = x1 is the country with the code ISO-3166 "EC" (Ecuador) for people x2 gugde'egu = x1 is the country with the code ISO-3166 "EG" (Egypt) for people x2 gugdesuvu = x1 is the country with the code ISO-3166 "SV" (El Salvador) for people x2 gugdeguke = x1 is the country with the code ISO-3166 "GQ" (Equatorial Guinea) for people x2 gugde'eru = x1 is the country with the code ISO-3166 "ER" (Eritrea) for people x2 gugde'e'e = x1 is the country with the code ISO-3166 "EE" (Estonia) for people x2 gugde'etu = x1 is the country with the code ISO-3166 "ET" (Ethiopia) for people x2 gugdefuku = x1 is the country with the code ISO-3166 "FK" (Falkland Islands (Malvinas)) for people x2 gugdefu'o = x1 is the country with the code ISO-3166 "FO" (Faroe Islands) for people x2 gugdefuju = x1 is the country with the code ISO-3166 "FJ" (Fiji) for people x2 gugdefu'i = x1 is the country with the code ISO-3166 "FI" (Finland) for people x2 gugdefuru = x1 is the country with the code ISO-3166 "FR" (France) for people x2 gugdegufu = x1 is the country with the code ISO-3166 "GF" (French Guiana) for people x2 gugdepufu = x1 is the country with the code ISO-3166 "PF" (French Polynesia) for people x2 gugdetufu = x1 is the country with the code ISO-3166 "TF" (French Southern Territories) for people x2 gugdegu'a = x1 is the country with the code ISO-3166 "GA" (Gabon) for people x2 gugdegumu = x1 is the country with the code ISO-3166 "GM" (Gambia) for people x2 gugdegu'e = x1 is the country with the code ISO-3166 "GE" (Georgia) for people x2 gugdedu'e = x1 is the country with the code ISO-3166 "DE" (Germany) for people x2 gugdeguxe = x1 is the country with the code ISO-3166 "GH" (Ghana) for people x2 gugdegu'i = x1 is the country with the code ISO-3166 "GI" (Gibraltar) for people x2 gugdeguru = x1 is the country with the code ISO-3166 "GR" (Greece) for people x2 gugdegulu = x1 is the country with the code ISO-3166 "GL" (Greenland) for people x2 gugdegudu = x1 is the country with the code ISO-3166 "GD" (Grenada) for people x2 gugdegupu = x1 is the country with the code ISO-3166 "GP" (Guadeloupe) for people x2 gugdegu'u = x1 is the country with the code ISO-3166 "GU" (Guam) for people x2 gugdegutu = x1 is the country with the code ISO-3166 "GT" (Guatemala) for people x2 gugdegugu = x1 is the country with the code ISO-3166 "GG" (Guernsey) for people x2 gugdegunu = x1 is the country with the code ISO-3166 "GN" (Guinea) for people x2 gugdeguve = x1 is the country with the code ISO-3166 "GW" (Guinea-Bissau) for people x2 gugdeguje = x1 is the country with the code ISO-3166 "GY" (Guyana) for people x2 gugdexetu = x1 is the country with the code ISO-3166 "HT" (Haiti) for people x2 gugdexemu = x1 is the country with the code ISO-3166 "HM" (Heard Island And Mcdonald Islands) for people x2 gugdevu'a = x1 is the country with the code ISO-3166 "VA" (Holy See (Vatican City State)) for people x2 gugdexenu = x1 is the country with the code ISO-3166 "HN" (Honduras) for people x2 gugdexeku = x1 is the country with the code ISO-3166 "HK" (Hong Kong) for people x2 gugdexe'u = x1 is the country with the code ISO-3166 "HU" (Hungary) for people x2 gugde'isu = x1 is the country with the code ISO-3166 "IS" (Iceland) for people x2 gugde'inu = x1 is the country with the code ISO-3166 "IN" (India) for people x2 gugde'idu = x1 is the country with the code ISO-3166 "ID" (Indonesia) for people x2 gugde'iru = x1 is the country with the code ISO-3166 "IR" (Iran, Islamic Republic Of) for people x2 gugde'ike = x1 is the country with the code ISO-3166 "IQ" (Iraq) for people x2 gugde'i'e = x1 is the country with the code ISO-3166 "IE" (Ireland) for people x2 gugde'imu = x1 is the country with the code ISO-3166 "IM" (Isle Of Man) for people x2 gugde'ilu = x1 is the country with the code ISO-3166 "IL" (Israel) for people x2 gugde'itu = x1 is the country with the code ISO-3166 "IT" (Italy) for people x2 gugdejumu = x1 is the country with the code ISO-3166 "JM" (Jamaica) for people x2 gugdejupu = x1 is the country with the code ISO-3166 "JP" (Japan) for people x2 gugdeju'e = x1 is the country with the code ISO-3166 "JE" (Jersey) for people x2 gugdeju'o = x1 is the country with the code ISO-3166 "JO" (Jordan) for people x2 gugdekuzu = x1 is the country with the code ISO-3166 "KZ" (Kazakhstan) for people x2 gugdeku'e = x1 is the country with the code ISO-3166 "KE" (Kenya) for people x2 gugdeku'i = x1 is the country with the code ISO-3166 "KI" (Kiribati) for people x2 gugdekupu = x1 is the country with the code ISO-3166 "KP" (Korea, Democratic People'S Republic Of) for people x2 gugdekuru = x1 is the country with the code ISO-3166 "KR" (Korea, Republic Of) for people x2 gugdekuve = x1 is the country with the code ISO-3166 "KW" (Kuwait) for people x2 gugdekugu = x1 is the country with the code ISO-3166 "KG" (Kyrgyzstan) for people x2 gugdelu'a = x1 is the country with the code ISO-3166 "LA" (Lao People'S Democratic Republic) for people x2 gugdeluvu = x1 is the country with the code ISO-3166 "LV" (Latvia) for people x2 gugdelubu = x1 is the country with the code ISO-3166 "LB" (Lebanon) for people x2 gugdelusu = x1 is the country with the code ISO-3166 "LS" (Lesotho) for people x2 gugdeluru = x1 is the country with the code ISO-3166 "LR" (Liberia) for people x2 gugdeluje = x1 is the country with the code ISO-3166 "LY" (Libyan Arab Jamahiriya) for people x2 gugdelu'i = x1 is the country with the code ISO-3166 "LI" (Liechtenstein) for people x2 gugdelutu = x1 is the country with the code ISO-3166 "LT" (Lithuania) for people x2 gugdelu'u = x1 is the country with the code ISO-3166 "LU" (Luxembourg) for people x2 gugdemu'o = x1 is the country with the code ISO-3166 "MO" (Macao) for people x2 gugdemuku = x1 is the country with the code ISO-3166 "MK" (Macedonia, The Former Yugoslav Republic Of) for people x2 gugdemugu = x1 is the country with the code ISO-3166 "MG" (Madagascar) for people x2 gugdemuve = x1 is the country with the code ISO-3166 "MW" (Malawi) for people x2 gugdemuje = x1 is the country with the code ISO-3166 "MY" (Malaysia) for people x2 gugdemuvu = x1 is the country with the code ISO-3166 "MV" (Maldives) for people x2 gugdemulu = x1 is the country with the code ISO-3166 "ML" (Mali) for people x2 gugdemutu = x1 is the country with the code ISO-3166 "MT" (Malta) for people x2 gugdemuxe = x1 is the country with the code ISO-3166 "MH" (Marshall Islands) for people x2 gugdemuke = x1 is the country with the code ISO-3166 "MQ" (Martinique) for people x2 gugdemuru = x1 is the country with the code ISO-3166 "MR" (Mauritania) for people x2 gugdemu'u = x1 is the country with the code ISO-3166 "MU" (Mauritius) for people x2 gugdejetu = x1 is the country with the code ISO-3166 "YT" (Mayotte) for people x2 gugdemuxu = x1 is the country with the code ISO-3166 "MX" (Mexico) for people x2 gugdefumu = x1 is the country with the code ISO-3166 "FM" (Micronesia, Federated States Of) for people x2 gugdemudu = x1 is the country with the code ISO-3166 "MD" (Moldova, Republic Of) for people x2 gugdemucu = x1 is the country with the code ISO-3166 "MC" (Monaco) for people x2 gugdemunu = x1 is the country with the code ISO-3166 "MN" (Mongolia) for people x2 gugdemu'e = x1 is the country with the code ISO-3166 "ME" (Montenegro) for people x2 gugdemusu = x1 is the country with the code ISO-3166 "MS" (Montserrat) for people x2 gugdemu'a = x1 is the country with the code ISO-3166 "MA" (Morocco) for people x2 gugdemuzu = x1 is the country with the code ISO-3166 "MZ" (Mozambique) for people x2 gugdemumu = x1 is the country with the code ISO-3166 "MM" (Myanmar) for people x2 gugdenu'a = x1 is the country with the code ISO-3166 "NA" (Namibia) for people x2 gugdenuru = x1 is the country with the code ISO-3166 "NR" (Nauru) for people x2 gugdenupu = x1 is the country with the code ISO-3166 "NP" (Nepal) for people x2 gugdenulu = x1 is the country with the code ISO-3166 "NL" (Netherlands) for people x2 gugde'anu = x1 is the country with the code ISO-3166 "AN" (Netherlands Antilles) for people x2 gugdenucu = x1 is the country with the code ISO-3166 "NC" (New Caledonia) for people x2 gugdenuzu = x1 is the country with the code ISO-3166 "NZ" (New Zealand) for people x2 gugdenu'i = x1 is the country with the code ISO-3166 "NI" (Nicaragua) for people x2 gugdenu'e = x1 is the country with the code ISO-3166 "NE" (Niger) for people x2 gugdenugu = x1 is the country with the code ISO-3166 "NG" (Nigeria) for people x2 gugdenu'u = x1 is the country with the code ISO-3166 "NU" (Niue) for people x2 gugdenufu = x1 is the country with the code ISO-3166 "NF" (Norfolk Island) for people x2 gugdemupu = x1 is the country with the code ISO-3166 "MP" (Northern Mariana Islands) for people x2 gugdenu'o = x1 is the country with the code ISO-3166 "NO" (Norway) for people x2 gugde'omu = x1 is the country with the code ISO-3166 "OM" (Oman) for people x2 gugdepuku = x1 is the country with the code ISO-3166 "PK" (Pakistan) for people x2 gugdepuve = x1 is the country with the code ISO-3166 "PW" (Palau) for people x2 gugdepusu = x1 is the country with the code ISO-3166 "PS" (Palestinian Territory, Occupied) for people x2 gugdepu'a = x1 is the country with the code ISO-3166 "PA" (Panama) for people x2 gugdepugu = x1 is the country with the code ISO-3166 "PG" (Papua New Guinea) for people x2 gugdepuje = x1 is the country with the code ISO-3166 "PY" (Paraguay) for people x2 gugdepu'e = x1 is the country with the code ISO-3166 "PE" (Peru) for people x2 gugdepuxe = x1 is the country with the code ISO-3166 "PH" (Philippines) for people x2 gugdepunu = x1 is the country with the code ISO-3166 "PN" (Pitcairn) for people x2 gugdepulu = x1 is the country with the code ISO-3166 "PL" (Poland) for people x2 gugdeputu = x1 is the country with the code ISO-3166 "PT" (Portugal) for people x2 gugdepuru = x1 is the country with the code ISO-3166 "PR" (Puerto Rico) for people x2 gugdeke'a = x1 is the country with the code ISO-3166 "QA" (Qatar) for people x2 gugderu'e = x1 is the country with the code ISO-3166 "RE" (RÉUnion) for people x2 gugderu'o = x1 is the country with the code ISO-3166 "RO" (Romania) for people x2 gugderu'u = x1 is the country with the code ISO-3166 "RU" (Russian Federation) for people x2 gugderuve = x1 is the country with the code ISO-3166 "RW" (Rwanda) for people x2 gugdebulu = x1 is the country with the code ISO-3166 "BL" (Saint BarthÉLemy) for people x2 gugdesuxe = x1 is the country with the code ISO-3166 "SH" (Saint Helena, Ascension And Tristan Da Cunha) for people x2 gugdekunu = x1 is the country with the code ISO-3166 "KN" (Saint Kitts And Nevis) for people x2 gugdelucu = x1 is the country with the code ISO-3166 "LC" (Saint Lucia) for people x2 gugdemufu = x1 is the country with the code ISO-3166 "MF" (Saint Martin) for people x2 gugdepumu = x1 is the country with the code ISO-3166 "PM" (Saint Pierre And Miquelon) for people x2 gugdevucu = x1 is the country with the code ISO-3166 "VC" (Saint Vincent And The Grenadines) for people x2 gugdevesu = x1 is the country with the code ISO-3166 "WS" (Samoa) for people x2 gugdesumu = x1 is the country with the code ISO-3166 "SM" (San Marino) for people x2 gugdesutu = x1 is the country with the code ISO-3166 "ST" (Sao Tome And Principe) for people x2 gugdesu'a = x1 is the country with the code ISO-3166 "SA" (Saudi Arabia) for people x2 gugdesunu = x1 is the country with the code ISO-3166 "SN" (Senegal) for people x2 gugderusu = x1 is the country with the code ISO-3166 "RS" (Serbia) for people x2 gugdesucu = x1 is the country with the code ISO-3166 "SC" (Seychelles) for people x2 gugdesulu = x1 is the country with the code ISO-3166 "SL" (Sierra Leone) for people x2 gugdesugu = x1 is the country with the code ISO-3166 "SG" (Singapore) for people x2 gugdesuku = x1 is the country with the code ISO-3166 "SK" (Slovakia) for people x2 gugdesu'i = x1 is the country with the code ISO-3166 "SI" (Slovenia) for people x2 gugdesubu = x1 is the country with the code ISO-3166 "SB" (Solomon Islands) for people x2 gugdesu'o = x1 is the country with the code ISO-3166 "SO" (Somalia) for people x2 gugdezu'a = x1 is the country with the code ISO-3166 "ZA" (South Africa) for people x2 gugdegusu = x1 is the country with the code ISO-3166 "GS" (South Georgia And The South Sandwich Islands) for people x2 gugde'esu = x1 is the country with the code ISO-3166 "ES" (Spain) for people x2 gugdeluku = x1 is the country with the code ISO-3166 "LK" (Sri Lanka) for people x2 gugdesudu = x1 is the country with the code ISO-3166 "SD" (Sudan) for people x2 gugdesuru = x1 is the country with the code ISO-3166 "SR" (Suriname) for people x2 gugdesuju = x1 is the country with the code ISO-3166 "SJ" (Svalbard And Jan Mayen) for people x2 gugdesuzu = x1 is the country with the code ISO-3166 "SZ" (Swaziland) for people x2 gugdesu'e = x1 is the country with the code ISO-3166 "SE" (Sweden) for people x2 gugdecuxe = x1 is the country with the code ISO-3166 "CH" (Switzerland) for people x2 gugdesuje = x1 is the country with the code ISO-3166 "SY" (Syrian Arab Republic) for people x2 gugdetuve = x1 is the country with the code ISO-3166 "TW" (Taiwan, Province Of China) for people x2 gugdetuju = x1 is the country with the code ISO-3166 "TJ" (Tajikistan) for people x2 gugdetuzu = x1 is the country with the code ISO-3166 "TZ" (Tanzania, United Republic Of) for people x2 gugdetuxe = x1 is the country with the code ISO-3166 "TH" (Thailand) for people x2 gugdetulu = x1 is the country with the code ISO-3166 "TL" (Timor-Leste) for people x2 gugdetugu = x1 is the country with the code ISO-3166 "TG" (Togo) for people x2 gugdetuku = x1 is the country with the code ISO-3166 "TK" (Tokelau) for people x2 gugdetu'o = x1 is the country with the code ISO-3166 "TO" (Tonga) for people x2 gugdetutu = x1 is the country with the code ISO-3166 "TT" (Trinidad And Tobago) for people x2 gugdetunu = x1 is the country with the code ISO-3166 "TN" (Tunisia) for people x2 gugdeturu = x1 is the country with the code ISO-3166 "TR" (Turkey) for people x2 gugdetumu = x1 is the country with the code ISO-3166 "TM" (Turkmenistan) for people x2 gugdetucu = x1 is the country with the code ISO-3166 "TC" (Turks And Caicos Islands) for people x2 gugdetuvu = x1 is the country with the code ISO-3166 "TV" (Tuvalu) for people x2 gugde'ugu = x1 is the country with the code ISO-3166 "UG" (Uganda) for people x2 gugde'u'a = x1 is the country with the code ISO-3166 "UA" (Ukraine) for people x2 gugde'a'e = x1 is the country with the code ISO-3166 "AE" (United Arab Emirates) for people x2 gugdegubu = x1 is the country with the code ISO-3166 "GB" (United Kingdom) for people x2 gugde'usu = x1 is the country with the code ISO-3166 "US" (United States) for people x2 gugde'umu = x1 is the country with the code ISO-3166 "UM" (United States Minor Outlying Islands) for people x2 gugde'uje = x1 is the country with the code ISO-3166 "UY" (Uruguay) for people x2 gugde'uzu = x1 is the country with the code ISO-3166 "UZ" (Uzbekistan) for people x2 gugdevu'u = x1 is the country with the code ISO-3166 "VU" (Vanuatu) for people x2 gugdevu'e = x1 is the country with the code ISO-3166 "VE" (Venezuela, Bolivarian Republic Of) for people x2 gugdevunu = x1 is the country with the code ISO-3166 "VN" (Viet Nam) for people x2 gugdevugu = x1 is the country with the code ISO-3166 "VG" (Virgin Islands, British) for people x2 gugdevu'i = x1 is the country with the code ISO-3166 "VI" (Virgin Islands, U.S.) for people x2 gugdevefu = x1 is the country with the code ISO-3166 "WF" (Wallis And Futuna) for people x2 gugde'exe = x1 is the country with the code ISO-3166 "EH" (Western Sahara) for people x2 gugdeje'e = x1 is the country with the code ISO-3166 "YE" (Yemen) for people x2 gugdezumu = x1 is the country with the code ISO-3166 "ZM" (Zambia) for people x2 gugdezu = x1 is the country with the code ISO-3166 "Z" (Zimbabwe) for people x2
Attachment:
signature.asc
Description: OpenPGP digital signature